diff --git a/conandata.yml b/conandata.yml index fa0305261c7..babc7c0a1b8 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,16 +1,16 @@ -version: "5.9.0-beta.1" +version: "5.9.0" requirements: - - "cura_resources/5.9.0-beta.1" - - "uranium/5.9.0-beta.1" - - "curaengine/5.9.0-beta.1" - - "cura_binary_data/5.9.0-beta.1" - - "fdm_materials/5.9.0-beta.1" + - "cura_resources/5.9.0" + - "uranium/5.9.0" + - "curaengine/5.9.0" + - "cura_binary_data/5.9.0" + - "fdm_materials/5.9.0" - "dulcificum/0.2.1" - "pysavitar/5.3.0" - "pynest2d/5.3.0" - "native_cad_plugin/2.0.0" requirements_internal: - - "fdm_materials/5.9.0-beta.1" + - "fdm_materials/5.9.0" - "cura_private_data/(latest)@internal/testing" urls: default: @@ -124,6 +124,19 @@ pyinstaller: Windows: "./icons/Cura.ico" Macos: "./icons/cura.icns" Linux: "./icons/cura-128.png" + blacklist: + - [ "assimp" ] + - [ "qt", "charts" ] + - [ "qt", "coap" ] + - [ "qt", "data", "vis" ] + - [ "qt", "lab", "animat" ] + - [ "qt", "mqtt" ] + - [ "qt", "net", "auth" ] + - [ "qt", "quick3d" ] + - [ "qt", "timeline" ] + - [ "qt", "virt", "key" ] + - [ "qt", "wayland", "compos" ] + - [ "qt", "5", "compat" ] pycharm_targets: - jinja_path: .run_templates/pycharm_cura_run.run.xml.jinja module_name: Cura diff --git a/conanfile.py b/conanfile.py index 999cca3362c..73336e41f3f 100644 --- a/conanfile.py +++ b/conanfile.py @@ -217,6 +217,62 @@ def _generate_cura_version(self, location): python_installs=self._python_installs(), )) + def _delete_unwanted_binaries(self, root): + dynamic_binary_file_exts = [".so", ".dylib", ".dll", ".pyd", ".pyi"] + prohibited = [ + "qt5compat", + "qtcharts", + "qtcoap", + "qtdatavis3d", + "qtlottie", + "qtmqtt", + "qtnetworkauth", + "qtquick3d", + "qtquick3dphysics", + "qtquicktimeline", + "qtvirtualkeyboard", + "qtwayland" + ] + forbiddens = [x.encode() for x in prohibited] + to_remove_files = [] + to_remove_dirs = [] + for root, dir_, files in os.walk(root): + for filename in files: + if not any([(x in filename) for x in dynamic_binary_file_exts]): + continue + pathname = os.path.join(root, filename) + still_exist = True + for forbidden in prohibited: + if forbidden.lower() in str(pathname).lower(): + to_remove_files.append(pathname) + still_exist = False + break + if not still_exist: + continue + with open(pathname, "rb") as file: + bytez = file.read().lower() + for forbidden in forbiddens: + if bytez.find(forbidden) >= 0: + to_remove_files.append(pathname) + for dirname in dir_: + for forbidden in prohibited: + if forbidden.lower() == str(dirname).lower(): + pathname = os.path.join(root, dirname) + to_remove_dirs.append(pathname) + break + for file in to_remove_files: + try: + os.remove(file) + print(f"deleted file: {file}") + except Exception as ex: + print(f"WARNING: Attempt to delete file {file} results in: {str(ex)}") + for dir_ in to_remove_dirs: + try: + rmdir(self, dir_) + print(f"deleted dir_: {dir_}") + except Exception as ex: + print(f"WARNING: Attempt to delete folder {dir_} results in: {str(ex)}") + def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, entitlements_file): pyinstaller_metadata = self.conan_data["pyinstaller"] datas = [] @@ -281,13 +337,27 @@ def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, e version = self.conf.get("user.cura:version", default = self.version, check_type = str) cura_version = Version(version) + # filter all binary files in binaries on the blacklist + blacklist = pyinstaller_metadata["blacklist"] + filtered_binaries = [b for b in binaries if not any([all([(part in b[0].lower()) for part in parts]) for parts in blacklist])] + + # In case the installer isn't actually pyinstaller (Windows at the moment), outright remove the offending files: + specifically_delete = set(binaries) - set(filtered_binaries) + for (unwanted_path, _) in specifically_delete: + try: + os.remove(unwanted_path) + print(f"delete: {unwanted_path}") + except Exception as ex: + print(f"WARNING: Attempt to delete binary {unwanted_path} results in: {str(ex)}") + + # Write the actual file: with open(os.path.join(location, "UltiMaker-Cura.spec"), "w") as f: f.write(pyinstaller.render( name = str(self.options.display_name).replace(" ", "-"), display_name = self._app_name, entrypoint = entrypoint_location, datas = datas, - binaries = binaries, + binaries = filtered_binaries, venv_script_path = str(self._script_dir), hiddenimports = pyinstaller_metadata["hiddenimports"], collect_all = pyinstaller_metadata["collect_all"], @@ -405,8 +475,10 @@ def generate(self): for dependency in self.dependencies.host.values(): for bindir in dependency.cpp_info.bindirs: + self._delete_unwanted_binaries(bindir) copy(self, "*.dll", bindir, str(self._site_packages), keep_path = False) for libdir in dependency.cpp_info.libdirs: + self._delete_unwanted_binaries(libdir) copy(self, "*.pyd", libdir, str(self._site_packages), keep_path = False) copy(self, "*.pyi", libdir, str(self._site_packages), keep_path = False) copy(self, "*.dylib", libdir, str(self._base_dir.joinpath("lib")), keep_path = False) @@ -496,6 +568,11 @@ def deploy(self): self._generate_cura_version(os.path.join(self._site_packages, "cura")) + self._delete_unwanted_binaries(self._site_packages) + self._delete_unwanted_binaries(self.package_folder) + self._delete_unwanted_binaries(self._base_dir) + self._delete_unwanted_binaries(self._share_dir) + entitlements_file = "'{}'".format(Path(self.cpp_info.res_paths[2], "MacOS", "cura.entitlements")) self._generate_pyinstaller_spec(location = self._base_dir, entrypoint_location = "'{}'".format(os.path.join(self.package_folder, self.cpp_info.bindirs[0], self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace("\\", "\\\\"), diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 742d1872cb5..18b762bb2c5 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -252,19 +252,23 @@ def render(self, renderer): if not self.getMeshData() or not self.isVisible(): return True + theme = self._application.getTheme() if not self._shader: self._shader = OpenGL.getInstance().createShaderProgram(Resources.getPath(Resources.Shaders, "default.shader")) self._grid_shader = OpenGL.getInstance().createShaderProgram(Resources.getPath(Resources.Shaders, "grid.shader")) - theme = self._application.getTheme() - self._grid_shader.setUniformValue("u_plateColor", Color(*theme.getColor("buildplate").getRgb())) self._grid_shader.setUniformValue("u_gridColor0", Color(*theme.getColor("buildplate_grid").getRgb())) self._grid_shader.setUniformValue("u_gridColor1", Color(*theme.getColor("buildplate_grid_minor").getRgb())) + plate_color = Color(*theme.getColor("buildplate").getRgb()) + if self._global_container_stack.getMetaDataEntry("has_textured_buildplate", False): + plate_color.setA(0.5) + self._grid_shader.setUniformValue("u_plateColor", plate_color) + renderer.queueNode(self, mode = RenderBatch.RenderMode.Lines) renderer.queueNode(self, mesh = self._origin_mesh, backface_cull = True) - renderer.queueNode(self, mesh = self._grid_mesh, shader = self._grid_shader, backface_cull = True) + renderer.queueNode(self, mesh = self._grid_mesh, shader = self._grid_shader, backface_cull = True, transparent = True, sort = -10) if self._disallowed_area_mesh: - renderer.queueNode(self, mesh = self._disallowed_area_mesh, shader = self._shader, transparent = True, backface_cull = True, sort = -9) + renderer.queueNode(self, mesh = self._disallowed_area_mesh, shader = self._shader, transparent = True, backface_cull = True, sort = -5) if self._error_mesh: renderer.queueNode(self, mesh=self._error_mesh, shader=self._shader, transparent=True, diff --git a/cura/PrinterOutput/FormatMaps.py b/cura/PrinterOutput/FormatMaps.py index 80eb8049a33..3a03da71fdf 100644 --- a/cura/PrinterOutput/FormatMaps.py +++ b/cura/PrinterOutput/FormatMaps.py @@ -34,18 +34,12 @@ class FormatMaps: "asa": {"name": "ASA", "guid": "f79bc612-21eb-482e-ad6c-87d75bdde066"}, "nylon12-cf": {"name": "Nylon 12 CF", "guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, "nylon-cf": {"name": "Nylon CF", "guid": "17abb865-ca73-4ccd-aeda-38e294c9c60b"}, - "nylon": {"name": "Nylon", "guid": "9475b03d-fd19-48a2-b7b5-be1fb46abb02"}, - "pc": {"name": "PC", "guid": "62414577-94d1-490d-b1e4-7ef3ec40db02"}, - "petg": {"name": "PETG", "guid": "2d004bbd-d1bb-47f8-beac-b066702d5273"}, + "pet": {"name": "PETG", "guid": "2d004bbd-d1bb-47f8-beac-b066702d5273"}, "pla": {"name": "PLA", "guid": "abb9c58e-1f56-48d1-bd8f-055fde3a5b56"}, "pva": {"name": "PVA", "guid": "add51ef2-86eb-4c39-afd5-5586564f0715"}, "wss1": {"name": "RapidRinse", "guid": "a140ef8f-4f26-4e73-abe0-cfc29d6d1024"}, "sr30": {"name": "SR-30", "guid": "77873465-83a9-4283-bc44-4e542b8eb3eb"}, - "bvoh": {"name": "BVOH", "guid": "923e604c-8432-4b09-96aa-9bbbd42207f4"}, - "cpe": {"name": "CPE", "guid": "da1872c1-b991-4795-80ad-bdac0f131726"}, - "hips": {"name": "HIPS", "guid": "a468d86a-220c-47eb-99a5-bbb47e514eb0"}, - "tpu": {"name": "TPU 95A", "guid": "19baa6a9-94ff-478b-b4a1-8157b74358d2"}, - "im-pla": {"name": "Tough", "guid": "96fca5d9-0371-4516-9e96-8e8182677f3c"} + "im-pla": {"name": "Tough", "guid": "de031137-a8ca-4a72-bd1b-17bb964033ad"} # /!\ When changing this list, make sure the changes are reported accordingly on Digital Factory } diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index 9090a5f209d..c6e7a7123a3 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -47,6 +47,7 @@ AppDir: QT_PLUGIN_PATH: "$APPDIR/qt/plugins" QML2_IMPORT_PATH: "$APPDIR/qt/qml" QT_QPA_PLATFORMTHEME: xdgdesktopportal + QT_QPA_PLATFORM: xcb GDK_PIXBUF_MODULEDIR: $APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders GDK_PIXBUF_MODULE_FILE: $APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache path_mappings: diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 3769db4d146..ece76f1c4a8 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -1354,7 +1354,6 @@ def _updateActiveMachine(self, global_stack): return machine_manager.setQualityChangesGroup(quality_changes_group, no_dialog = True) else: - self._quality_type_to_apply = self._quality_type_to_apply.lower() if self._quality_type_to_apply else None quality_group_dict = container_tree.getCurrentQualityGroups() if self._quality_type_to_apply in quality_group_dict: quality_group = quality_group_dict[self._quality_type_to_apply] diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index af015396e30..e3e15f53810 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -68,6 +68,9 @@ def __init__(self) -> None: """ super().__init__() + self._init_done = False + self._immediate_slice_after_init = False + # Find out where the engine is located, and how it is called. # This depends on how Cura is packaged and which OS we are running on. executable_name = "CuraEngine" @@ -268,6 +271,10 @@ def initialize(self) -> None: self._machine_error_checker = application.getMachineErrorChecker() self._machine_error_checker.errorCheckFinished.connect(self._onStackErrorCheckFinished) + self._init_done = True + if self._immediate_slice_after_init: + self.slice() + def close(self) -> None: """Terminate the engine process. @@ -342,6 +349,11 @@ def getLatestSnapshot(self) -> Optional[QImage]: def slice(self) -> None: """Perform a slice of the scene.""" + if not self._init_done: + self._immediate_slice_after_init = True + return + self._immediate_slice_after_init = False + self._createSnapshot() self.startPlugins() diff --git a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py index c0ce594ecf4..30b807753aa 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py @@ -196,7 +196,7 @@ def getListOfFilesInProject(self, library_project_id: str, on_finished: Callable url = "{}/projects/{}/files".format(self.CURA_API_ROOT, library_project_id) self._http.get(url, scope = self._scope, - callback = self._parseCallback(on_finished, DigitalFactoryFileResponse, failed), + callback = self._parseCallback(on_finished, DigitalFactoryFileResponse, failed, default_values = {'username': ''}), error_callback = failed, timeout = self.DEFAULT_REQUEST_TIMEOUT) @@ -205,7 +205,8 @@ def _parseCallback(self, Callable[[List[CloudApiClientModel]], Any]], model: Type[CloudApiClientModel], on_error: Optional[Callable] = None, - pagination_manager: Optional[PaginationManager] = None) -> Callable[[QNetworkReply], None]: + pagination_manager: Optional[PaginationManager] = None, + default_values: Dict[str, str] = None) -> Callable[[QNetworkReply], None]: """ Creates a callback function so that it includes the parsing of the response into the correct model. @@ -234,7 +235,7 @@ def parse(reply: QNetworkReply) -> None: if status_code >= 300 and on_error is not None: on_error() else: - self._parseModels(response, on_finished, model, pagination_manager = pagination_manager) + self._parseModels(response, on_finished, model, pagination_manager = pagination_manager, default_values = default_values) self._anti_gc_callbacks.append(parse) return parse @@ -262,7 +263,8 @@ def _parseModels(self, on_finished: Union[Callable[[CloudApiClientModel], Any], Callable[[List[CloudApiClientModel]], Any]], model_class: Type[CloudApiClientModel], - pagination_manager: Optional[PaginationManager] = None) -> None: + pagination_manager: Optional[PaginationManager] = None, + default_values: Dict[str, str] = None) -> None: """Parses the given models and calls the correct callback depending on the result. :param response: The response from the server, after being converted to a dict. @@ -279,7 +281,10 @@ def _parseModels(self, if "links" in response and pagination_manager: pagination_manager.setLinks(response["links"]) if isinstance(data, list): - results = [model_class(**c) for c in data] # type: List[CloudApiClientModel] + results = [] # type: List[CloudApiClientModel] + for model_data in data: + complete_model_data = (default_values | model_data) if default_values is not None else model_data + results.append(model_class(**complete_model_data)) on_finished_list = cast(Callable[[List[CloudApiClientModel]], Any], on_finished) on_finished_list(results) else: diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 34ef562fd32..5c655dc8cc3 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -112,15 +112,13 @@ def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode=MeshWriter. match file_format: case "application/x-makerbot-sketch": filename, filedata = "print.gcode", gcode_text_io.getvalue() - self._PNG_FORMATS = self._PNG_FORMAT case "application/x-makerbot": filename, filedata = "print.jsontoolpath", du.gcode_2_miracle_jtp(gcode_text_io.getvalue()) - self._PNG_FORMATS = self._PNG_FORMAT + self._PNG_FORMAT_METHOD case _: raise Exception("Unsupported Mime type") png_files = [] - for png_format in self._PNG_FORMATS: + for png_format in (self._PNG_FORMAT + self._PNG_FORMAT_METHOD): width, height, prefix = png_format["width"], png_format["height"], png_format["prefix"] thumbnail_buffer = self._createThumbnail(width, height) if thumbnail_buffer is None: @@ -252,7 +250,7 @@ def _getMeta(self, root_nodes: List[SceneNode]) -> Tuple[Dict[str, any], str]: meta["preferences"] = dict() bounds = application.getBuildVolume().getBoundingBox() meta["preferences"]["instance0"] = { - "machineBounds": [bounds.right, bounds.back, bounds.left, bounds.front] if bounds is not None else None, + "machineBounds": [bounds.right, bounds.front, bounds.left, bounds.back] if bounds is not None else None, "printMode": CuraApplication.getInstance().getIntentManager().currentIntentCategory, } diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 10b68edaa09..b4333219145 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -256,9 +256,19 @@ def cumulativeLineDuration(self) -> List[float]: polylines = self.getLayerData() if polylines is not None: for polyline in polylines.polygons: - for line_duration in list((polyline.lineLengths / polyline.lineFeedrates)[0]): + for line_index in range(len(polyline.lineLengths)): + line_length = polyline.lineLengths[line_index] + line_feedrate = polyline.lineFeedrates[line_index][0] + + if line_feedrate > 0.0: + line_duration = line_length / line_feedrate + else: + # Something is wrong with this line, set an arbitrary non-null duration + line_duration = 0.1 + total_duration += line_duration / SimulationView.SIMULATION_FACTOR self._cumulative_line_duration.append(total_duration) + # for tool change we add an extra tool path self._cumulative_line_duration.append(total_duration) # set current cached layer @@ -583,7 +593,7 @@ def calculateColorSchemeLimits(self) -> None: self._max_thickness = sys.float_info.min self._min_flow_rate = sys.float_info.max self._max_flow_rate = sys.float_info.min - self._cumulative_line_duration = {} + self._cumulative_line_duration = [] # The colour scheme is only influenced by the visible lines, so filter the lines by if they should be visible. visible_line_types = [] diff --git a/plugins/SimulationView/layers3d.shader b/plugins/SimulationView/layers3d.shader index 2bf77e89fae..494a07083da 100644 --- a/plugins/SimulationView/layers3d.shader +++ b/plugins/SimulationView/layers3d.shader @@ -360,8 +360,8 @@ geometry41core = ((v_prev_line_type[0] != 1) && (v_line_type[0] == 1)) || ((v_prev_line_type[0] != 4) && (v_line_type[0] == 4)) )) { - float w = size_x; - float h = size_y; + float w = max(0.05, size_x); + float h = max(0.05, size_y); myEmitVertex(v_vertex[0] + vec3( w, h, w), u_starts_color, normalize(vec3( 1.0, 1.0, 1.0)), viewProjectionMatrix * (gl_in[0].gl_Position + vec4( w, h, w, 0.0))); // Front-top-left myEmitVertex(v_vertex[0] + vec3(-w, h, w), u_starts_color, normalize(vec3(-1.0, 1.0, 1.0)), viewProjectionMatrix * (gl_in[0].gl_Position + vec4(-w, h, w, 0.0))); // Front-top-right diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index 411146d0653..81c0ca05c83 100755 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -1,11 +1,12 @@ # Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. +import datetime import json import os import platform import time -from typing import Optional, Set, TYPE_CHECKING +from typing import Any, Optional, Set, TYPE_CHECKING from PyQt6.QtCore import pyqtSlot, QObject from PyQt6.QtNetwork import QNetworkRequest @@ -33,7 +34,18 @@ class SliceInfo(QObject, Extension): no model files are being sent (Just a SHA256 hash of the model). """ - info_url = "https://stats.ultimaker.com/api/cura" + info_url = "https://statistics.ultimaker.com/api/v2/cura/slice" + + _adjust_flattened_names = { + "extruders_extruder": "extruders", + "extruders_settings": "extruders", + "models_model": "models", + "models_transformation_data": "models_transformation", + "print_settings_": "", + "print_times": "print_time", + "active_machine_": "", + "slice_uuid": "slice_id", + } def __init__(self, parent = None): QObject.__init__(self, parent) @@ -112,6 +124,26 @@ def _getUserModifiedSettingKeys(self) -> list: return list(sorted(user_modified_setting_keys)) + def _flattenData(self, data: Any, result: dict, current_flat_key: Optional[str] = None, lift_list: bool = False) -> None: + if isinstance(data, dict): + for key, value in data.items(): + total_flat_key = key if current_flat_key is None else f"{current_flat_key}_{key}" + self._flattenData(value, result, total_flat_key, lift_list) + elif isinstance(data, list): + for item in data: + self._flattenData(item, result, current_flat_key, True) + else: + actual_flat_key = current_flat_key.lower() + for key, value in self._adjust_flattened_names.items(): + if actual_flat_key.startswith(key): + actual_flat_key = actual_flat_key.replace(key, value) + if lift_list: + if actual_flat_key not in result: + result[actual_flat_key] = [] + result[actual_flat_key].append(data) + else: + result[actual_flat_key] = data + def _onWriteStarted(self, output_device): try: if not self._application.getPreferences().getValue("info/send_slice_info"): @@ -125,8 +157,7 @@ def _onWriteStarted(self, output_device): global_stack = machine_manager.activeMachine data = dict() # The data that we're going to submit. - data["time_stamp"] = time.time() - data["schema_version"] = 0 + data["schema_version"] = 1000 data["cura_version"] = self._application.getVersion() data["cura_build_type"] = ApplicationMetadata.CuraBuildType org_id = user_profile.get("organization_id", None) if user_profile else None @@ -298,6 +329,11 @@ def _onWriteStarted(self, output_device): "time_backend": int(round(time_backend)), } + # Massage data into format used in the DB: + flat_data = dict() + self._flattenData(data, flat_data) + data = flat_data + # Convert data to bytes binary_data = json.dumps(data).encode("utf-8") diff --git a/requirements.txt b/requirements.txt index 344a0156d8d..83da635cd29 100644 --- a/requirements.txt +++ b/requirements.txt @@ -31,16 +31,6 @@ PyQt6-Qt6==6.6.0 \ --hash=sha256:8cb30d64a4d32465ea1686bc827cbe452225fb387c4873356b0fa7b9ae63534f \ --hash=sha256:a151f34712cd645111e89cb30b02e5fb69c9dcc3603ab3c03a561e874bd7cbcf \ --hash=sha256:e5483ae04bf107411c7469f1be9f9e2eb9840303e788b3ac524fe30af90d45f4 -PyQt6-NetworkAuth==6.6.0 \ - --hash=sha256:7b90b81792fe53105287c8cbb5e4b22bc44a482268ffb7d3e33f852807f86182 \ - --hash=sha256:c7e2335159aa795e2fe6fb069ccce6308672ab80f26c50fab57caf957371cbb5 \ - --hash=sha256:cdfc0bfaea16a9e09f075bdafefb996aa9fdec392052ba4fb3cbac233c1958fb \ - --hash=sha256:f60ff9a62f5129dc2a9d4c495fb47f9a03e4dfb666b50fb7d61f46e89bf7b6a2 -PyQt6-NetworkAuth-Qt6==6.6.0 \ - --hash=sha256:481d9093e1fb1ac6843d8beabcd359cc34b74b9a2cbb3e2b68d96bd3f178d4e0 \ - --hash=sha256:4cc48fd375730a0ba5fbed9d64abb2914f587377560a78a63aff893f9e276a45 \ - --hash=sha256:5006deabf55304d4a3e0b3c954f93e5835546b11e789d14653a2493d12d3a063 \ - --hash=sha256:bcd56bfc892fec961c51eba3c0bf32ba8317a762d9e254d3830569611ed569d6 certifi==2023.5.7; \ --hash=sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716 diff --git a/resources/conandata.yml b/resources/conandata.yml index 3aff2227065..9d7f9f67025 100644 --- a/resources/conandata.yml +++ b/resources/conandata.yml @@ -1 +1 @@ -version: "5.9.0-beta.1" +version: "5.9.0" diff --git a/resources/definitions/ankermake_m5.def.json b/resources/definitions/ankermake_m5.def.json index 4e4b3498b3c..4a70851e33a 100644 --- a/resources/definitions/ankermake_m5.def.json +++ b/resources/definitions/ankermake_m5.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "ankermake_m5_platform.obj", "has_machine_quality": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "ankermake_m5_extruder_0" }, "platform_texture": "ankermake_m5.png", "preferred_material": "generic_pla", diff --git a/resources/definitions/ankermake_m5c.def.json b/resources/definitions/ankermake_m5c.def.json index 2f49e0f030e..131bd6bd7a8 100644 --- a/resources/definitions/ankermake_m5c.def.json +++ b/resources/definitions/ankermake_m5c.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "ankermake_m5c_platform.obj", "has_machine_quality": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "ankermake_m5c_extruder_0" }, "platform_texture": "ankermake_m5c.png", "preferred_material": "generic_pla", diff --git a/resources/definitions/dagoma_sigma_pro.def.json b/resources/definitions/dagoma_sigma_pro.def.json index 8bbac5a4837..3f39c9f713f 100644 --- a/resources/definitions/dagoma_sigma_pro.def.json +++ b/resources/definitions/dagoma_sigma_pro.def.json @@ -11,6 +11,7 @@ "platform": "dagoma_sigma_pro.obj", "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, + "has_textured_buildplate": true, "has_variants": true, "machine_extruder_trains": { "0": "dagoma_sigma_pro_extruder" }, "platform_texture": "dagoma_sigma_pro.png", diff --git a/resources/definitions/dagoma_sigma_pro_dual.def.json b/resources/definitions/dagoma_sigma_pro_dual.def.json index eb11b37603b..cd1702228cb 100644 --- a/resources/definitions/dagoma_sigma_pro_dual.def.json +++ b/resources/definitions/dagoma_sigma_pro_dual.def.json @@ -11,6 +11,7 @@ "platform": "dagoma_sigma_pro.obj", "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, + "has_textured_buildplate": true, "has_variants": true, "machine_extruder_trains": { diff --git a/resources/definitions/eazao_m500.def.json b/resources/definitions/eazao_m500.def.json index 70ab78a5a66..f4ad1dd03e9 100644 --- a/resources/definitions/eazao_m500.def.json +++ b/resources/definitions/eazao_m500.def.json @@ -9,8 +9,8 @@ "manufacturer": "Eazao", "file_formats": "text/x-gcode", "has_machine_quality": false, - "has_materials": false, "machine_extruder_trains": { "0": "eazao_m500_extruder_0" }, + "preferred_material": "eazao_clay", "preferred_quality_type": "normal" }, "overrides": @@ -19,7 +19,6 @@ "acceleration_travel": { "value": 300 }, "adhesion_type": { "default_value": "'none'" }, "bottom_layers": { "value": 2 }, - "cool_fan_enabled": { "value": false }, "infill_sparse_density": { "value": 0 }, "initial_bottom_layers": { "value": 2 }, "jerk_print": { "value": 10 }, @@ -58,7 +57,6 @@ "retraction_amount": { "value": 7 }, "retraction_combing": { "value": "'noskin'" }, "retraction_count_max": { "value": 100 }, - "retraction_enable": { "value": false }, "retraction_extrusion_window": { "value": 10 }, "retraction_hop": { "value": 0.2 }, "speed_print": { "value": 20.0 }, diff --git a/resources/definitions/eazao_m600.def.json b/resources/definitions/eazao_m600.def.json index 35a946e25e5..e76d9239094 100644 --- a/resources/definitions/eazao_m600.def.json +++ b/resources/definitions/eazao_m600.def.json @@ -9,8 +9,8 @@ "manufacturer": "Eazao", "file_formats": "text/x-gcode", "has_machine_quality": false, - "has_materials": false, "machine_extruder_trains": { "0": "eazao_m600_extruder_0" }, + "preferred_material": "eazao_clay", "preferred_quality_type": "normal" }, "overrides": @@ -19,7 +19,6 @@ "acceleration_travel": { "value": 300 }, "adhesion_type": { "default_value": "'none'" }, "bottom_layers": { "value": 2 }, - "cool_fan_enabled": { "value": false }, "infill_sparse_density": { "value": 0 }, "initial_bottom_layers": { "value": 2 }, "jerk_print": { "value": 10 }, @@ -58,7 +57,6 @@ "retraction_amount": { "value": 7 }, "retraction_combing": { "value": "'noskin'" }, "retraction_count_max": { "value": 100 }, - "retraction_enable": { "value": false }, "retraction_extrusion_window": { "value": 10 }, "retraction_hop": { "value": 0.2 }, "speed_print": { "value": 20.0 }, diff --git a/resources/definitions/eazao_m700.def.json b/resources/definitions/eazao_m700.def.json index 8459b3625da..98e35f46e1b 100644 --- a/resources/definitions/eazao_m700.def.json +++ b/resources/definitions/eazao_m700.def.json @@ -9,8 +9,8 @@ "manufacturer": "Eazao", "file_formats": "text/x-gcode", "has_machine_quality": false, - "has_materials": false, "machine_extruder_trains": { "0": "eazao_m700_extruder_0" }, + "preferred_material": "eazao_clay", "preferred_quality_type": "normal" }, "overrides": @@ -19,7 +19,6 @@ "acceleration_travel": { "value": 300 }, "adhesion_type": { "default_value": "none" }, "bottom_layers": { "value": 2 }, - "cool_fan_enabled": { "value": false }, "infill_sparse_density": { "value": 0 }, "initial_bottom_layers": { "value": 2 }, "jerk_print": { "value": 10 }, @@ -58,7 +57,6 @@ "retraction_amount": { "value": 7 }, "retraction_combing": { "value": "'noskin'" }, "retraction_count_max": { "value": 100 }, - "retraction_enable": { "value": false }, "retraction_extrusion_window": { "value": 10 }, "retraction_hop": { "value": 0.2 }, "speed_print": { "value": 20.0 }, diff --git a/resources/definitions/eazao_potter.def.json b/resources/definitions/eazao_potter.def.json index 0ff84ab4291..110ea1efb50 100644 --- a/resources/definitions/eazao_potter.def.json +++ b/resources/definitions/eazao_potter.def.json @@ -9,8 +9,8 @@ "manufacturer": "Eazao", "file_formats": "text/x-gcode", "has_machine_quality": false, - "has_materials": false, "machine_extruder_trains": { "0": "eazao_potter_extruder_0" }, + "preferred_material": "eazao_clay", "preferred_quality_type": "normal" }, "overrides": @@ -19,7 +19,6 @@ "acceleration_travel": { "value": 300 }, "adhesion_type": { "default_value": "'none'" }, "bottom_layers": { "value": 3 }, - "cool_fan_enabled": { "value": false }, "infill_sparse_density": { "value": 0 }, "initial_bottom_layers": { "value": 3 }, "jerk_print": { "value": 10 }, @@ -58,7 +57,6 @@ "retraction_amount": { "value": 7 }, "retraction_combing": { "value": "'noskin'" }, "retraction_count_max": { "value": 100 }, - "retraction_enable": { "value": false }, "retraction_extrusion_window": { "value": 10 }, "retraction_hop": { "value": 0.2 }, "speed_print": { "value": 25.0 }, diff --git a/resources/definitions/eazao_zero.def.json b/resources/definitions/eazao_zero.def.json index df6f4faa183..d4ae902fa6f 100644 --- a/resources/definitions/eazao_zero.def.json +++ b/resources/definitions/eazao_zero.def.json @@ -9,8 +9,8 @@ "manufacturer": "Eazao", "file_formats": "text/x-gcode", "has_machine_quality": false, - "has_materials": false, "machine_extruder_trains": { "0": "eazao_zero_extruder_0" }, + "preferred_material": "eazao_clay", "preferred_quality_type": "normal" }, "overrides": @@ -20,7 +20,6 @@ "acceleration_travel": { "value": 300 }, "adhesion_type": { "default_value": "none" }, "bottom_layers": { "value": 3 }, - "cool_fan_enabled": { "value": false }, "infill_sparse_density": { "value": 0 }, "initial_bottom_layers": { "value": 3 }, "jerk_print": { "value": 10 }, @@ -58,9 +57,7 @@ "optimize_wall_printing_order": { "value": "True" }, "retraction_amount": { "value": 7 }, "retraction_combing": { "value": "'noskin'" }, - "retraction_combing_max_distance": { "value": 0 }, "retraction_count_max": { "value": 100 }, - "retraction_enable": { "value": false }, "retraction_extrusion_window": { "value": 10 }, "retraction_hop": { "value": 0.2 }, "speed_print": { "value": 25.0 }, diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index b6d72946e34..5faa4d32086 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -15,9 +15,11 @@ "preferred_material": "generic_pla", "preferred_quality_type": "normal", "machine_extruder_trains": { "0": "fdmextruder" }, + "has_textured_buildplate": false, "supports_usb_connection": true, "supports_network_connection": false, - "supports_abstract_color": false + "supports_abstract_color": false, + "variants_name_has_translation": false }, "settings": { @@ -8948,7 +8950,8 @@ "unit": "%", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_extruder": true, - "settable_per_mesh": true + "settable_per_mesh": true, + "enabled": "scarf_joint_seam_length > 0" }, "scarf_split_distance": { @@ -8958,10 +8961,12 @@ "default_value": 1.0, "minimum_value": 0.1, "maximum_value": 100.0, + "maximum_value_warning": "scarf_joint_seam_length", "unit": "mm", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_extruder": true, - "settable_per_mesh": true + "settable_per_mesh": true, + "enabled": "scarf_joint_seam_length > 0" }, "wall_0_start_speed_ratio": { @@ -8978,13 +8983,13 @@ }, "wall_0_acceleration": { - "label": "Outer Wall Acceleration", + "label": "Outer Wall Start Acceleration", "description": "This is the acceleration with which to reach the top speed when printing an outer wall.", "enabled": "wall_0_start_speed_ratio < 100.0", "type": "float", "default_value": 20.0, "minimum_value": 1.0, - "maximum_value": 1000.0, + "maximum_value": 100000.0, "unit": "mm/s\u00b2", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_extruder": true, @@ -9005,13 +9010,13 @@ }, "wall_0_deceleration": { - "label": "Outer Wall Deceleration", + "label": "Outer Wall End Deceleration", "description": "This is the deceleration with which to end printing an outer wall.", "enabled": "wall_0_end_speed_ratio < 100.0", "type": "float", "default_value": 20.0, "minimum_value": 1.0, - "maximum_value": 1000.0, + "maximum_value": 100000.0, "unit": "mm/s\u00b2", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_extruder": true, diff --git a/resources/definitions/flyingbear_ghost_4s.def.json b/resources/definitions/flyingbear_ghost_4s.def.json index fe5b82a49f8..807d0365237 100644 --- a/resources/definitions/flyingbear_ghost_4s.def.json +++ b/resources/definitions/flyingbear_ghost_4s.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "oducceu", "platform": "flyingbear_platform.obj", + "has_textured_buildplate": true, "platform_texture": "flyingbear_platform.png", "quality_definition": "flyingbear_base" }, diff --git a/resources/definitions/flyingbear_ghost_5.def.json b/resources/definitions/flyingbear_ghost_5.def.json index 26108d9eeb2..b72a3a18fd4 100644 --- a/resources/definitions/flyingbear_ghost_5.def.json +++ b/resources/definitions/flyingbear_ghost_5.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "oducceu", "platform": "flyingbear_platform.obj", + "has_textured_buildplate": true, "platform_texture": "flyingbear_platform.png", "quality_definition": "flyingbear_base" }, diff --git a/resources/definitions/flyingbear_ghost_6.def.json b/resources/definitions/flyingbear_ghost_6.def.json index 26c067285e0..8c5287cb4ee 100644 --- a/resources/definitions/flyingbear_ghost_6.def.json +++ b/resources/definitions/flyingbear_ghost_6.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "barrnet", "platform": "flyingbear_platform.obj", + "has_textured_buildplate": true, "platform_texture": "flyingbear_platform.png", "quality_definition": "flyingbear_base" }, diff --git a/resources/definitions/hellbot_adonis.def.json b/resources/definitions/hellbot_adonis.def.json index 8f797dc6686..2a7022e7c13 100644 --- a/resources/definitions/hellbot_adonis.def.json +++ b/resources/definitions/hellbot_adonis.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "hellbot_adonis.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_adonis_extruder" }, "platform_offset": [ 0, diff --git a/resources/definitions/hellbot_hidra.def.json b/resources/definitions/hellbot_hidra.def.json index 810f308a19f..fe1d580354a 100644 --- a/resources/definitions/hellbot_hidra.def.json +++ b/resources/definitions/hellbot_hidra.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "hellbot_hidra.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_hidra_extruder_0", diff --git a/resources/definitions/hellbot_hidra_plus.def.json b/resources/definitions/hellbot_hidra_plus.def.json index 60654b9dec8..dc718dc5f26 100644 --- a/resources/definitions/hellbot_hidra_plus.def.json +++ b/resources/definitions/hellbot_hidra_plus.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "hellbot_hidra_plus.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_hidra_plus_extruder_0", diff --git a/resources/definitions/hellbot_magna_2_230.def.json b/resources/definitions/hellbot_magna_2_230.def.json index 10be0b79fc7..c2e200b1008 100644 --- a/resources/definitions/hellbot_magna_2_230.def.json +++ b/resources/definitions/hellbot_magna_2_230.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_230.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_230_extruder_0" }, "platform_texture": "Magna2_230.png" }, diff --git a/resources/definitions/hellbot_magna_2_230_dual.def.json b/resources/definitions/hellbot_magna_2_230_dual.def.json index 31501cbea12..3ba073d89be 100644 --- a/resources/definitions/hellbot_magna_2_230_dual.def.json +++ b/resources/definitions/hellbot_magna_2_230_dual.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_230.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_230_dual_extruder_0", diff --git a/resources/definitions/hellbot_magna_2_300.def.json b/resources/definitions/hellbot_magna_2_300.def.json index 3fd09e49f33..565119e31f7 100644 --- a/resources/definitions/hellbot_magna_2_300.def.json +++ b/resources/definitions/hellbot_magna_2_300.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_300.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_300_extruder_0" }, "platform_texture": "Magna2_300.png" }, diff --git a/resources/definitions/hellbot_magna_2_300_dual.def.json b/resources/definitions/hellbot_magna_2_300_dual.def.json index 11d98cf1501..9e0e72f1457 100644 --- a/resources/definitions/hellbot_magna_2_300_dual.def.json +++ b/resources/definitions/hellbot_magna_2_300_dual.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_300.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_300_dual_extruder_0", diff --git a/resources/definitions/hellbot_magna_2_400.def.json b/resources/definitions/hellbot_magna_2_400.def.json index c27273c67b6..8bc7c21811d 100644 --- a/resources/definitions/hellbot_magna_2_400.def.json +++ b/resources/definitions/hellbot_magna_2_400.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_400.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_400_extruder_0" }, "platform_texture": "Magna2_400.png" }, diff --git a/resources/definitions/hellbot_magna_2_400_dual.def.json b/resources/definitions/hellbot_magna_2_400_dual.def.json index 560bd800b4f..00f10c1117b 100644 --- a/resources/definitions/hellbot_magna_2_400_dual.def.json +++ b/resources/definitions/hellbot_magna_2_400_dual.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_400.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_400_dual_extruder_0", diff --git a/resources/definitions/hellbot_magna_2_500.def.json b/resources/definitions/hellbot_magna_2_500.def.json index d718fd36359..fe83fab70a3 100644 --- a/resources/definitions/hellbot_magna_2_500.def.json +++ b/resources/definitions/hellbot_magna_2_500.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_500.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_500_extruder_0" }, "platform_texture": "Magna2_500.png" }, diff --git a/resources/definitions/hellbot_magna_2_500_dual.def.json b/resources/definitions/hellbot_magna_2_500_dual.def.json index cb5e8b94be6..a8f6fc5b374 100644 --- a/resources/definitions/hellbot_magna_2_500_dual.def.json +++ b/resources/definitions/hellbot_magna_2_500_dual.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_500.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_500_dual_extruder_0", diff --git a/resources/definitions/hellbot_magna_I.def.json b/resources/definitions/hellbot_magna_I.def.json index 263a182ebc7..7425aa3db46 100644 --- a/resources/definitions/hellbot_magna_I.def.json +++ b/resources/definitions/hellbot_magna_I.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "hellbot_magna.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_i_extruder" }, "platform_offset": [ 0, diff --git a/resources/definitions/hellbot_magna_SE.def.json b/resources/definitions/hellbot_magna_SE.def.json index 0c010151e69..a449a60f019 100644 --- a/resources/definitions/hellbot_magna_SE.def.json +++ b/resources/definitions/hellbot_magna_SE.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "hellbot_magna_SE.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_SE_extruder" }, "platform_texture": "hellbot_magna_SE.png" }, diff --git a/resources/definitions/hellbot_magna_SE_300.def.json b/resources/definitions/hellbot_magna_SE_300.def.json index bc60eb3aa75..bb83df4a374 100644 --- a/resources/definitions/hellbot_magna_SE_300.def.json +++ b/resources/definitions/hellbot_magna_SE_300.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_SE_300.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_SE_300_extruder" }, "platform_texture": "Hellbot_Magna_SE_300.png" }, diff --git a/resources/definitions/hellbot_magna_SE_Pro.def.json b/resources/definitions/hellbot_magna_SE_Pro.def.json index 65f32c2aabb..aa71aab37be 100644 --- a/resources/definitions/hellbot_magna_SE_Pro.def.json +++ b/resources/definitions/hellbot_magna_SE_Pro.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_SE_Pro.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_SE_Pro_extruder" }, "platform_texture": "Hellbot_magna_SE_Pro.png" }, diff --git a/resources/definitions/hellbot_magna_dual.def.json b/resources/definitions/hellbot_magna_dual.def.json index e41fcb7ccef..9488ec2a435 100644 --- a/resources/definitions/hellbot_magna_dual.def.json +++ b/resources/definitions/hellbot_magna_dual.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "hellbot_magna.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_dual_extruder_1", diff --git a/resources/definitions/inat_base.def.json b/resources/definitions/inat_base.def.json index 1d95bbbde44..5bd5258d5af 100644 --- a/resources/definitions/inat_base.def.json +++ b/resources/definitions/inat_base.def.json @@ -16,7 +16,8 @@ "preferred_material": "generic_pla", "preferred_quality_type": "standard", "preferred_variant_name": "0.4mm", - "variants_name": "Extruder:" + "variants_name": "Extruder", + "variants_name_has_translation": true }, "overrides": { diff --git a/resources/definitions/koonovo_base.def.json b/resources/definitions/koonovo_base.def.json index f46c39ec1ef..d194902e5c8 100644 --- a/resources/definitions/koonovo_base.def.json +++ b/resources/definitions/koonovo_base.def.json @@ -12,6 +12,7 @@ "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "koonovo_base_extruder_0" }, "platform_texture": "koonovo.png", "preferred_material": "generic_pla", diff --git a/resources/definitions/peopoly_moai.def.json b/resources/definitions/peopoly_moai.def.json index 9ce1438fe3b..20d3bafa0a7 100644 --- a/resources/definitions/peopoly_moai.def.json +++ b/resources/definitions/peopoly_moai.def.json @@ -11,6 +11,7 @@ "platform": "moai.obj", "has_machine_quality": true, "has_materials": false, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "peopoly_moai_extruder_0" }, "platform_texture": "moai.jpg" }, diff --git a/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json b/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json index 722f4dade54..4876738f6e5 100644 --- a/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json +++ b/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json @@ -25,7 +25,7 @@ "preferred_quality_type": "extra_fast", "preferred_variant_name": "0.84mm (Green)", "supported_actions": [], - "variants_name": "Print core" + "variants_name": "Print Core" }, "overrides": { diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index bd814cc79c1..fb8b876fb5c 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -51,7 +51,8 @@ "supported_actions": [ "DiscoverUM3Action" ], "supports_network_connection": true, "supports_usb_connection": false, - "variants_name": "Print core" + "variants_name": "Print Core", + "variants_name_has_translation": true }, "overrides": { diff --git a/resources/definitions/ultimaker3_extended.def.json b/resources/definitions/ultimaker3_extended.def.json index 5afbbce1da7..bdfd5f93a56 100644 --- a/resources/definitions/ultimaker3_extended.def.json +++ b/resources/definitions/ultimaker3_extended.def.json @@ -36,7 +36,8 @@ "preferred_variant_name": "AA 0.4", "quality_definition": "ultimaker3", "supported_actions": [ "DiscoverUM3Action" ], - "variants_name": "Print core" + "variants_name": "Print Core", + "variants_name_has_translation": true }, "overrides": { diff --git a/resources/definitions/ultimaker_factor4.def.json b/resources/definitions/ultimaker_factor4.def.json index 909f180b09a..710ee29a409 100644 --- a/resources/definitions/ultimaker_factor4.def.json +++ b/resources/definitions/ultimaker_factor4.def.json @@ -43,7 +43,8 @@ "supports_material_export": true, "supports_network_connection": true, "supports_usb_connection": false, - "variants_name": "Print core", + "variants_name": "Print Core", + "variants_name_has_translation": true, "weight": -1 }, "overrides": diff --git a/resources/definitions/ultimaker_method.def.json b/resources/definitions/ultimaker_method.def.json index ced7411148c..5e78c3f6308 100644 --- a/resources/definitions/ultimaker_method.def.json +++ b/resources/definitions/ultimaker_method.def.json @@ -16,6 +16,7 @@ "chromatik_", "3D-Fuel_", "bestfilament_", + "eazao_", "emotiontech_", "eryone_", "eSUN_", @@ -82,6 +83,7 @@ "supports_usb_connection": false, "variant_definition": "ultimaker_method", "variants_name": "Extruder", + "variants_name_has_translation": true, "weight": -1 }, "overrides": diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 6dea197f182..ff2f9fc2218 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -26,6 +26,7 @@ "supports_network_connection": true, "supports_usb_connection": false, "variants_name": "Extruder", + "variants_name_has_translation": true, "weight": -1 }, "overrides": @@ -158,6 +159,7 @@ "bridge_wall_material_flow": { "value": "material_flow" }, "bridge_wall_speed": { "value": "speed_wall" }, "brim_width": { "value": 5 }, + "cool_during_extruder_switch": { "value": "'only_last_extruder'" }, "cool_fan_enabled": { "force_depends_on_settings": [ "support_extruder_nr" ] @@ -342,6 +344,7 @@ "multiple_mesh_overlap": { "value": 0 }, "optimize_wall_printing_order": { "value": true }, "prime_blob_enable": { "enabled": false }, + "prime_tower_enable": { "default_value": true }, "prime_tower_flow": { "value": "material_flow" }, "prime_tower_line_width": { diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 7700f2d3058..37b11ad4eff 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -16,6 +16,7 @@ "chromatik_", "3D-Fuel_", "bestfilament_", + "eazao_", "emotiontech_", "eryone_", "eSUN_", @@ -68,6 +69,7 @@ "supports_usb_connection": false, "variant_definition": "ultimaker_methodx", "variants_name": "Extruder", + "variants_name_has_translation": true, "weight": -1 }, "overrides": diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 9faf3c4a86b..d12fa8ac59d 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -16,6 +16,7 @@ "chromatik_", "3D-Fuel_", "bestfilament_", + "eazao_", "emotiontech_", "eryone_", "eSUN_", @@ -66,6 +67,7 @@ "supports_network_connection": true, "supports_usb_connection": false, "variants_name": "Extruder", + "variants_name_has_translation": true, "weight": -1 }, "overrides": diff --git a/resources/definitions/ultimaker_original.def.json b/resources/definitions/ultimaker_original.def.json index e7870129ed9..826a612c6c6 100644 --- a/resources/definitions/ultimaker_original.def.json +++ b/resources/definitions/ultimaker_original.def.json @@ -68,6 +68,7 @@ "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E6 ;extrude 6 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Y50 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 205 }, + "material_print_temp_wait": { "value": true }, "speed_slowdown_layers": { "value": 2 } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 76534f16097..27957af727d 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -50,7 +50,8 @@ "supported_actions": [ "DiscoverUM3Action" ], "supports_material_export": true, "supports_usb_connection": false, - "variants_name": "Print core", + "variants_name": "Print Core", + "variants_name_has_translation": true, "weight": -1 }, "overrides": diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 76a3e017736..46d46d33eb4 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -54,7 +54,8 @@ "supports_material_export": true, "supports_network_connection": true, "supports_usb_connection": false, - "variants_name": "Print core", + "variants_name": "Print Core", + "variants_name_has_translation": true, "weight": -2 }, "overrides": diff --git a/resources/definitions/ultimaker_s7.def.json b/resources/definitions/ultimaker_s7.def.json index 12cd714dd9f..14d9b211686 100644 --- a/resources/definitions/ultimaker_s7.def.json +++ b/resources/definitions/ultimaker_s7.def.json @@ -40,7 +40,8 @@ "supports_material_export": true, "supports_network_connection": true, "supports_usb_connection": false, - "variants_name": "Print core", + "variants_name": "Print Core", + "variants_name_has_translation": true, "weight": -2 }, "overrides": diff --git a/resources/definitions/ultimaker_sketch.def.json b/resources/definitions/ultimaker_sketch.def.json index ee753d0eaa6..2f96b52397f 100644 --- a/resources/definitions/ultimaker_sketch.def.json +++ b/resources/definitions/ultimaker_sketch.def.json @@ -16,6 +16,7 @@ "chromatik_", "3D-Fuel_", "bestfilament_", + "eazao_", "emotiontech_", "eryone_", "eSUN_", @@ -71,6 +72,7 @@ "supports_network_connection": true, "supports_usb_connection": false, "variants_name": "Extruder", + "variants_name_has_translation": true, "weight": -1 }, "overrides": @@ -126,8 +128,23 @@ "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, "machine_start_gcode": { "default_value": "M140 S50 T0; Set Platform Temp\nM104 S220 T0; Set Extruder Temp\nG90; Use Absolute Positioning\nG28; Home\nM132 X Y Z A B; Set Current Position to Home\nG161 X Y F3300; Move to min axes positions\nM7 T0; Wait For Platform to Heat\nM6 T0; Wait For Extruders to Heat\nM651; Turn on back fan\nM907 X100 Y100 Z40 A80 B20; Set Stepper Currents\nM106; Enable Cooling Fan\n; Purge Line\nG92 E0; Reset Extruder Axis Position\nG1 X-26.18 Y-75.90 Z0.200 F420\nG1 X26.18 Y-75.90 E10\nG92 E0; Reset Extruder Axis Position\n; Start GCode\n" }, "machine_width": { "default_value": 150 }, + "material_bed_temperature": + { + "maximum_value": 100, + "maximum_value_warning": 70 + }, + "material_bed_temperature_layer_0": + { + "maximum_value": 100, + "maximum_value_warning": 70 + }, "material_diameter": { "default_value": 1.75 }, "material_flow": { "default_value": 100 }, + "material_print_temperature": + { + "maximum_value": 240, + "maximum_value_warning": 230 + }, "min_bead_width": { "minimum_value": "line_width * 0.5", @@ -148,6 +165,7 @@ "enabled": true, "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" }, + "print_sequence": { "enabled": false }, "raft_margin": { "value": "5" }, "retract_at_layer_change": { "value": true }, "retraction_amount": diff --git a/resources/definitions/ultimaker_sketch_large.def.json b/resources/definitions/ultimaker_sketch_large.def.json index a0ed0c9365e..49ae05a6140 100644 --- a/resources/definitions/ultimaker_sketch_large.def.json +++ b/resources/definitions/ultimaker_sketch_large.def.json @@ -20,6 +20,7 @@ "supports_network_connection": true, "supports_usb_connection": false, "variants_name": "Extruder", + "variants_name_has_translation": true, "weight": -1 }, "overrides": diff --git a/resources/definitions/ultimaker_sketch_sprint.def.json b/resources/definitions/ultimaker_sketch_sprint.def.json index fac4a8f75f0..cde655e70f6 100644 --- a/resources/definitions/ultimaker_sketch_sprint.def.json +++ b/resources/definitions/ultimaker_sketch_sprint.def.json @@ -16,6 +16,7 @@ "chromatik_", "3D-Fuel_", "bestfilament_", + "eazao_", "emotiontech_", "eryone_", "eSUN_", @@ -57,6 +58,7 @@ ], "has_machine_quality": true, "has_materials": true, + "has_textured_buildplate": true, "has_variants": true, "machine_extruder_trains": { "0": "ultimaker_sketch_sprint_extruder" }, "platform_offset": [ @@ -72,6 +74,7 @@ "supports_network_connection": true, "supports_usb_connection": false, "variants_name": "Extruder", + "variants_name_has_translation": true, "weight": -1 }, "overrides": @@ -171,11 +174,12 @@ "material_flow": { "default_value": 100 }, "material_print_temperature": { - "maximum_value": 280, + "maximum_value": 260, "maximum_value_warning": 240 }, "min_bead_width": { "value": 0.3 }, "multiple_mesh_overlap": { "value": "0" }, + "print_sequence": { "enabled": false }, "raft_airgap": { "value": 0.35 }, "raft_base_acceleration": { "value": "acceleration_layer_0" }, "raft_base_speed": diff --git a/resources/definitions/uni_200.def.json b/resources/definitions/uni_200.def.json index 9b1d498408d..c58264e1ee2 100644 --- a/resources/definitions/uni_200.def.json +++ b/resources/definitions/uni_200.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "Nail` Gimadeev (C)", "platform": "uni_200_platform.stl", + "has_textured_buildplate": true, "platform_texture": "uni.png", "quality_definition": "uni_base" }, diff --git a/resources/definitions/uni_250.def.json b/resources/definitions/uni_250.def.json index a6300a32e2e..ae2aad97147 100644 --- a/resources/definitions/uni_250.def.json +++ b/resources/definitions/uni_250.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "Nail` Gimadeev (C)", "platform": "uni_250_platform.stl", + "has_textured_buildplate": true, "platform_texture": "uni.png", "quality_definition": "uni_base" }, diff --git a/resources/definitions/uni_300.def.json b/resources/definitions/uni_300.def.json index a5c8be60a6b..6d801b68f83 100644 --- a/resources/definitions/uni_300.def.json +++ b/resources/definitions/uni_300.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "Nail` Gimadeev (C)", "platform": "uni_300_platform.stl", + "has_textured_buildplate": true, "platform_texture": "uni.png", "quality_definition": "uni_base" }, diff --git a/resources/definitions/uni_mini.def.json b/resources/definitions/uni_mini.def.json index 5c08db9fb3a..be327eef4ab 100644 --- a/resources/definitions/uni_mini.def.json +++ b/resources/definitions/uni_mini.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "Nail` Gimadeev (C)", "platform": "uni_mini_platform.stl", + "has_textured_buildplate": true, "platform_texture": "uni.png", "quality_definition": "uni_base" }, diff --git a/resources/extruders/ultimaker_method_extruder_left.def.json b/resources/extruders/ultimaker_method_extruder_left.def.json index 560a09f9f74..9f6ad4e02be 100644 --- a/resources/extruders/ultimaker_method_extruder_left.def.json +++ b/resources/extruders/ultimaker_method_extruder_left.def.json @@ -15,8 +15,8 @@ "maximum_value": 1 }, "machine_extruder_cooling_fan_number": { "default_value": 0 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{(layer_z > 1 ? cool_fan_speed/100 : cool_fan_speed_0/100)}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 8 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/extruders/ultimaker_method_extruder_right.def.json b/resources/extruders/ultimaker_method_extruder_right.def.json index 31da366404b..c590c4e05f6 100644 --- a/resources/extruders/ultimaker_method_extruder_right.def.json +++ b/resources/extruders/ultimaker_method_extruder_right.def.json @@ -15,8 +15,8 @@ "maximum_value": 1 }, "machine_extruder_cooling_fan_number": { "default_value": 1 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{(layer_z > 1 ? cool_fan_speed/100 : cool_fan_speed_0/100)}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 8 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/extruders/ultimaker_methodx_extruder_left.def.json b/resources/extruders/ultimaker_methodx_extruder_left.def.json index b16a358371c..99d12c79444 100644 --- a/resources/extruders/ultimaker_methodx_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_left.def.json @@ -15,8 +15,8 @@ "maximum_value": "1" }, "machine_extruder_cooling_fan_number": { "default_value": 0 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{(layer_z > 1 ? cool_fan_speed/100 : cool_fan_speed_0/100)}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 8 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/extruders/ultimaker_methodx_extruder_right.def.json b/resources/extruders/ultimaker_methodx_extruder_right.def.json index 15ddccfd628..c2438424a92 100644 --- a/resources/extruders/ultimaker_methodx_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_right.def.json @@ -15,8 +15,8 @@ "maximum_value": "1" }, "machine_extruder_cooling_fan_number": { "default_value": 1 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{(layer_z > 1 ? cool_fan_speed/100 : cool_fan_speed_0/100)}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 8 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/extruders/ultimaker_methodxl_extruder_left.def.json b/resources/extruders/ultimaker_methodxl_extruder_left.def.json index 5ac02aa38e7..4301e1a8e29 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_left.def.json @@ -15,8 +15,8 @@ "maximum_value": "1" }, "machine_extruder_cooling_fan_number": { "default_value": 0 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{(layer_z > 1 ? cool_fan_speed/100 : cool_fan_speed_0/100)}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 10 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/extruders/ultimaker_methodxl_extruder_right.def.json b/resources/extruders/ultimaker_methodxl_extruder_right.def.json index be807a3d4b7..4a15d6a0451 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_right.def.json @@ -15,8 +15,8 @@ "maximum_value": "1" }, "machine_extruder_cooling_fan_number": { "default_value": 1 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{(layer_z > 1 ? cool_fan_speed/100 : cool_fan_speed_0/100)}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 10 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index f3a07dca99b..a47909e6f3f 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -2840,6 +2840,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Y offset trysky" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Velikost trysky" + msgctxt "@label" msgid "Nozzle size" msgstr "Velikost trysky" diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 8ecc8509d2c..7cadd3bf6f8 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -1049,6 +1049,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Materiál navíc pro extruzi po změně trysky." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Primární pozice extruderu X" @@ -2493,6 +2497,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID trysky" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Velikost trysky" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Množství materiálu navíc pro změnu trysky" @@ -2801,6 +2809,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Akcelerace tisku" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Trh při tisku" diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 1a466d8f274..6541919a19e 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -2677,6 +2677,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "" + msgctxt "@label" msgid "Nozzle size" msgstr "" diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index dc245b634cc..39d687a2eca 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 14:27+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -142,11 +141,10 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Die Anwendung muss neu gestartet werden, damit die Änderungen in Kraft treten." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Materialprofile und Plug-ins aus dem Marketplace hinzufügen- Materialprofile und Plug-ins sichern und synchronisieren- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der UltiMaker Community" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Materialprofile und Plug-ins aus dem Marketplace hinzufügen" +"- Materialprofile und Plug-ins sichern und synchronisieren" +"- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der UltiMaker Community" msgctxt "@heading" msgid "-- incomplete --" @@ -200,45 +198,38 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
For materials that support it, the new custom profile will inherit properties from %1." msgstr "Nur vom Benutzer geänderte Einstellungen werden im benutzerdefinierten Profil gespeichert.
Für Materialien, bei denen dies unterstützt ist, übernimmt das neue benutzerdefinierte Profil Eigenschaften von %1." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL-Renderer: {renderer}
  • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL-Anbieter: {vendor}
  • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL-Version: {version}
  • " msgctxt "@label crash message" -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" +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

    " +"

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

    " " " -msgstr "

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

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

    " msgctxt "@label crash message" -msgid "" -"

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

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" +msgid "

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

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    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.

    " +"

    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.

    " +"

    Backups sind im Konfigurationsordner abgelegt.

    " +"

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

    " " " -msgstr "

    Hoppla, bei UltiMaker Cura ist ein Problem aufgetreten.

    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.

    Backups sind im Konfigurationsordner abgelegt.

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

    " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

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

    \n" -"

    {model_names}

    \n" -"

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

    \n" -"

    View print quality guide

    " -msgstr "

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

    {model_names}

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

    Leitfaden zu Druckqualität anzeigen

    " +msgid "

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

    \n

    {model_names}

    \n

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

    \n

    View print quality guide

    " +msgstr "

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

    " +"

    {model_names}

    " +"

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

    " +"

    Leitfaden zu Druckqualität anzeigen

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -398,7 +389,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Drucker manuell hinzufügen" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Drucker {name} ({model}) aus Ihrem Konto wird hinzugefügt" @@ -439,7 +429,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Dateien (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Alle unterstützten Typen ({0})" @@ -532,7 +521,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Soll dieser %1 wirklich an den Anfang der Warteschlange vorgezogen werden?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Möchten Sie {printer_name} wirklich vorübergehend entfernen?" @@ -545,7 +533,6 @@ 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!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Möchten Sie {0} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!" @@ -710,12 +697,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Sie können keine Verbindung zu Ihrem UltiMaker-Drucker herstellen?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Import des Profils aus Datei {0} kann erst durchgeführt werden, wenn ein Drucker hinzugefügt wurde." -#, 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." @@ -797,12 +782,7 @@ msgid "Checks models and print configuration for possible printing issues and gi msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen." msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Wählt zwischen den verfügbaren Techniken zur Erzeugung von Stützstrukturen. Mit „Normal“ wird eine Stützstruktur direkt unter den überhängenden Teilen erzeugt, die direkt darauf liegen. In der Einstellung „Tree“ wird eine Baumstützstruktur erzeugt, die zu den überhängenden Teilen reicht und diese stützt. Die Stützstruktur verästelt sich innerhalb des Modells und stützt es so gut wie möglich vom Druckbett aus." msgctxt "@action:inmenu menubar:edit" @@ -841,10 +821,6 @@ msgctxt "@label" msgid "Color scheme" msgstr "Farbschema" -msgctxt "@label" -msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." -msgstr "Kombination nicht empfohlen. Laden Sie den BB-Kern in Slot 1 (links) für bessere Zuverlässigkeit." - msgctxt "@info" msgid "Compare and save." msgstr "Vergleichen und speichern." @@ -1009,7 +985,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Konnte kein Archiv von Benutzer-Datenverzeichnis {} erstellen" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Bei dem Versuch, auf {device} zu schreiben, wurde ein Dateiname nicht gefunden." @@ -1038,12 +1013,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Materialarchiv konnte nicht in {} gespeichert werden:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Konnte nicht als {0} gespeichert werden: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}" @@ -1052,26 +1025,20 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Daten konnten nicht in Drucker geladen werden." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}Keine Berechtigung zum Ausführen des Prozesses." +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}" +"Keine Berechtigung zum Ausführen des Prozesses." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}Betriebssystem blockiert es (Antivirenprogramm?)" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}" +"Betriebssystem blockiert es (Antivirenprogramm?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}Ressource ist vorübergehend nicht verfügbar" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "EnginePlugin konnte nicht gestartet werden: {self._plugin_id}" +"Ressource ist vorübergehend nicht verfügbar" msgctxt "@title:window" msgid "Crash Report" @@ -1157,16 +1124,14 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kann nicht starten" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura hat Materialprofile entdeckt, die auf dem Host-Drucker der Gruppe {0} noch nicht installiert wurden." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "Cura wurde von UltiMaker in Zusammenarbeit mit der Community entwickelt.Cura verwendet mit Stolz die folgenden Open Source-Projekte:" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura wurde von UltiMaker in Zusammenarbeit mit der Community entwickelt." +"Cura verwendet mit Stolz die folgenden Open Source-Projekte:" msgctxt "@label" msgid "Cura language" @@ -1180,6 +1145,14 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "CuraEngine Backend" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "CuraEngine-Plugin zur stufenweisen Glättung des Flusses, um Sprünge bei hohem Fluss zu begrenzen" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Währung:" @@ -1436,12 +1409,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Auswerfen" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Wechseldatenträger auswerfen {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Ausgeworfen {0}. Sie können den Datenträger jetzt sicher entfernen." @@ -1530,10 +1501,6 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Material exportieren" -msgctxt "@action:inmenu menubar:help" -msgid "Export Package For Technical Support" -msgstr "" - msgctxt "@title:window" msgid "Export Profile" msgstr "Profil exportieren" @@ -1554,7 +1521,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Export erfolgreich ausgeführt" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil wurde nach {0} exportiert" @@ -1591,7 +1557,6 @@ msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "Extruder Start G-Code Dauer" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "Extruder {0}" @@ -1616,7 +1581,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Die Erstellung eines Materialarchivs zur Synchronisierung mit Druckern ist fehlgeschlagen." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Auswurf fehlgeschlagen {0}. Möglicherweise wird das Laufwerk von einem anderen Programm verwendet." @@ -1625,27 +1589,22 @@ 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" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Export des Profils nach {0} fehlgeschlagen: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Export des Profils nach {0} fehlgeschlagen: Fehlermeldung von Writer-Plugin." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Import des Profils aus Datei {0} fehlgeschlagen:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Import des Profils aus Datei {0} fehlgeschlagen:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Import des Profils aus Datei {0}: {1} fehlgeschlagen" @@ -1662,7 +1621,6 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Speichern des Materialarchivs fehlgeschlagen" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "Schreiben auf bestimmten Cloud-Drucker fehlgeschlagen: {0} nicht in entfernten Clustern." @@ -1691,7 +1649,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Datei wurde gespeichert" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Datei {0} enthält kein gültiges Profil." @@ -1915,7 +1872,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Rasterplatzierung" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Gruppe #{group_nr}" @@ -2400,10 +2356,6 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Makerbot-Druckdatei-Writer" -msgctxt "@item:inlistbox" -msgid "Makerbot Sketch Printfile" -msgstr "Makerbot-Sketch-Druckdatei" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter konnte nicht im angegebenen Pfad speichern." @@ -2646,7 +2598,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Netzwerkfehler" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Neue %s-stabile Firmware verfügbar" @@ -2659,7 +2610,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Neue UltiMaker-Drucker können mit Digital Factory verbunden und aus der Ferne überwacht werden." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Es können neue Funktionen oder Bug-Fixes für Ihren {machine_name} verfügbar sein! Falls noch nicht geschehen, wird empfohlen, die Firmware auf Ihrem Drucker auf Version {latest_version} zu aktualisieren." @@ -2706,7 +2656,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Keine Kostenschätzung verfügbar" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Kein benutzerdefiniertes Profil für das Importieren in Datei {0}" @@ -2807,6 +2756,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Y-Versatz Düse" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Düsengröße" + msgctxt "@label" msgid "Nozzle size" msgstr "Düsengröße" @@ -2843,7 +2796,6 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Nur obere Schichten anzeigen" -#, 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." @@ -3057,12 +3009,10 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Erteilen Sie bitte die erforderlichen Freigaben bei der Autorisierung dieser Anwendung." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "Stellen Sie sicher, dass der Drucker verbunden ist:– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist.– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten." +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Stellen Sie sicher, dass der Drucker verbunden ist:" +"– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist." +"– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten." msgctxt "@text" msgid "Please name your printer" @@ -3089,12 +3039,11 @@ msgid "Please remove the print" msgstr "Bitte den Ausdruck entfernen" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:- Mit der Druckraumgröße kompatibel sind- Einem aktiven Extruder zugewiesen sind- Nicht alle als Modifier Meshes eingerichtet sind" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Bitte überprüfen Sie die Einstellungen und prüfen Sie, ob Ihre Modelle:" +"- Mit der Druckraumgröße kompatibel sind" +"- Einem aktiven Extruder zugewiesen sind" +"- Nicht alle als Modifier Meshes eingerichtet sind" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -3396,7 +3345,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Profileinstellungen" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} hat einen unbekannten Dateityp oder ist beschädigt." @@ -3421,22 +3369,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programmiersprache" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Projektdatei {0} enthält einen unbekannten Maschinentyp {1}. Importieren der Maschine ist nicht möglich. Stattdessen werden die Modelle importiert." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Projektdatei {0} ist beschädigt: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Projektdatei {0} verwendet Profile, die nicht mit dieser UltiMaker Cura-Version kompatibel sind." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Auf Projektdatei {0} kann plötzlich nicht mehr zugegriffen werden: {1}." @@ -3565,7 +3509,6 @@ msgctxt "@label" msgid "Qt version" msgstr "Qt Version" -#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Der Qualitätstyp „{0}“ ist nicht mit der aktuell aktiven Maschinendefinition „{1}“ kompatibel." @@ -3806,12 +3749,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Speichern auf Wechseldatenträger" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Auf Wechseldatenträger speichern {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Auf Wechseldatenträger {0} gespeichert als {1}" @@ -3820,7 +3761,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Wird gespeichert" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Wird auf Wechseldatenträger gespeichert {0}" @@ -3837,10 +3777,6 @@ msgctxt "@placeholder" msgid "Search" msgstr "Suche" -msgctxt "@label:textbox" -msgid "Search Printer" -msgstr "Drucker suchen" - msgctxt "@info" msgid "Search in the browser" msgstr "Suche im Browser" @@ -4073,6 +4009,10 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Online-&Dokumentation anzeigen" +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Online-Fehlerbehebung anzeigen" + msgctxt "@label:checkbox" msgid "Show all" msgstr "Alle anzeigen" @@ -4198,11 +4138,9 @@ msgid "Solid view" msgstr "Solide Ansicht" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen.Klicken Sie, um diese Einstellungen sichtbar zu machen." +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Einige ausgeblendete Einstellungen verwenden Werte, die von ihren normalen, berechneten Werten abweichen." +"Klicken Sie, um diese Einstellungen sichtbar zu machen." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -4217,11 +4155,9 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Einige in %1 definierte Einstellungswerte wurden überschrieben." msgctxt "@tooltip" -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.Klicken Sie, um den Profilmanager zu öffnen." +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten." +"Klicken Sie, um den Profilmanager zu öffnen." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -4303,7 +4239,6 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Material wurde erfolgreich importiert %1" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profil {0} erfolgreich importiert." @@ -4510,7 +4445,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Das für das Drucken der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Die Datei {0} ist bereits vorhanden. Soll die Datei wirklich überschrieben werden?" @@ -4574,15 +4508,11 @@ msgid "The nozzle inserted in this extruder." msgstr "Die in diesem Extruder eingesetzte Düse." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Das Muster des Füllmaterials des Drucks:Für schnelle Drucke von nicht funktionalen Modellen wählen Sie die Linien-, Zickzack- oder Blitz-Füllung.Für funktionale Teile, die keiner großen Belastung ausgesetzt sind, empfehlen wir ein Raster-, Dreieck- oder Tri-Hexagon-Muster.Für funktionale 3D-Drucke, die eine hohe Festigkeit in mehreren Richtungen erfordern, verwenden Sie am besten die Würfel-, Würfel-Unterbereich-, Viertelwürfel-, Octahedral- und Gyroid-Füllungen." +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Das Muster des Füllmaterials des Drucks:" +"Für schnelle Drucke von nicht funktionalen Modellen wählen Sie die Linien-, Zickzack- oder Blitz-Füllung." +"Für funktionale Teile, die keiner großen Belastung ausgesetzt sind, empfehlen wir ein Raster-, Dreieck- oder Tri-Hexagon-Muster." +"Für funktionale 3D-Drucke, die eine hohe Festigkeit in mehreren Richtungen erfordern, verwenden Sie am besten die Würfel-, Würfel-Unterbereich-, Viertelwürfel-, Octahedral- und Gyroid-Füllungen." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4701,8 +4631,8 @@ msgid "This configuration is not available because %1 is not recognized. Please msgstr "Diese Konfigurationen sind nicht verfügbar, weil %1 nicht erkannt wird. Besuchen Sie bitte %2 für das Herunterladen des korrekten Materialprofils." msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" -msgstr "Dies ist eine Cura-Universal-Projektdatei. Möchten Sie sie als Cura-Universal-Projekt öffnen oder die Modelle daraus importieren?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Dies ist eine Cura Universal Projektdatei. Möchten Sie es als Cura Projekt oder Cura Universal Project öffnen oder die Modelle daraus importieren?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4738,7 +4668,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Dieser Drucker steuert eine Gruppe von %1 Druckern an." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Dieses Profil {0} enthält falsche Daten, Importieren nicht möglich." @@ -4752,11 +4681,9 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Dieses Projekt enthält Materialien oder Plug-ins, die derzeit nicht in Cura installiert sind.
    Installieren Sie die fehlenden Pakete und öffnen Sie das Projekt erneut." msgctxt "@label" -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.Klicken Sie, um den Wert des Profils wiederherzustellen." +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Diese Einstellung hat einen vom Profil abweichenden Wert." +"Klicken Sie, um den Wert des Profils wiederherzustellen." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4773,11 +4700,9 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änderung ändert den Wert für alle Extruder." msgctxt "@label" -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.Klicken Sie, um den berechneten Wert wiederherzustellen." +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Diese Einstellung wird normalerweise berechnet; aktuell ist jedoch ein Absolutwert eingestellt." +"Klicken Sie, um den berechneten Wert wiederherzustellen." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4811,7 +4736,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Um die Materialprofile automatisch mit all Ihren mit Digital Factory verbundenen Druckern zu synchronisieren, müssen Sie in Cura angemeldet sein." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Bitte besuchen Sie {website_link}, um eine Verbindung herzustellen" @@ -4824,7 +4748,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Um direkt auf Ihrem Drucker über das Netzwerk zu drucken, muss der Drucker über ein Netzwerkkabel oder per WLAN mit dem Netzwerk verbunden sein. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie G-Code-Dateien auf einen USB-Stick kopieren und diesen am Drucker anschließen." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Wenn Sie {printer_name} dauerhaft entfernen möchten, dann besuchen Sie bitte die {digital_factory_link}" @@ -4969,17 +4892,14 @@ 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" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Die ausführbare Datei des lokalen EnginePlugin-Servers kann nicht gefunden werden für: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "Laufendes EnginePlugin kann nicht beendet werden: {self._plugin_id}Zugriff verweigert." +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "Laufendes EnginePlugin kann nicht beendet werden: {self._plugin_id}" +"Zugriff verweigert." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4989,14 +4909,6 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "Die Datei mit den Beispieldaten kann nicht gelesen werden." -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" - -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" - msgctxt "@info:title" msgid "Unable to slice" msgstr "Slicing nicht möglich" @@ -5009,12 +4921,10 @@ 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)." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Schneiden (Slicing) ist nicht möglich, da Objekte vorhanden sind, die mit dem deaktivierten Extruder %s verbunden sind." -#, 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}" @@ -5023,7 +4933,6 @@ 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." -#, 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}" @@ -5032,7 +4941,6 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Es kann kein neuer Anmeldevorgang gestartet werden. Bitte überprüfen Sie, ob noch ein weiterer Anmeldevorgang aktiv ist." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "Es kann nicht in die Datei geschrieben werden: {0}" @@ -5085,7 +4993,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Unbekanntes Paket" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Unbekannter Fehlercode beim Upload des Druckauftrags: {0}" @@ -5258,10 +5165,6 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "Upgrades von Konfigurationen von Cura 5.6 auf Cura 5.7." -msgctxt "description" -msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" - msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Benutzerdefinierte Firmware hochladen" @@ -5406,10 +5309,6 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "Versions-Upgrade 5.6 auf 5.7" -msgctxt "name" -msgid "Version Upgrade 5.8 to 5.9" -msgstr "" - msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Drucker in der Digital Factory anzeigen" @@ -5462,7 +5361,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Warnhinweis" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Warnung: Das Profil wird nicht angezeigt, weil sein Qualitätstyp „{0}“ für die aktuelle Konfiguration nicht verfügbar ist. Wechseln Sie zu einer Material-/Düsenkombination, die mit diesem Qualitätstyp kompatibel ist." @@ -5584,31 +5482,19 @@ msgid "Yes" msgstr "Ja" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr "Es werden gleich alle Drucker aus Cura entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden.Möchten Sie wirklich fortfahren?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Es wird gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n" -"Möchten Sie wirklich fortfahren." -msgstr[1] "" -"Es werden gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \n" -"Möchten Sie wirklich fortfahren." +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Es wird gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \nMöchten Sie wirklich fortfahren." +msgstr[1] "Es werden gleich {0} Drucker aus Cura entfernt. Der Vorgang kann nicht rückgängig gemacht werden. \nMöchten Sie wirklich fortfahren." msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Sie versuchen, sich mit einem Drucker zu verbinden, auf dem Ultimaker Connect nicht läuft. Bitte aktualisieren Sie die Firmware des Druckers." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Sie versuchen, sich mit {0} zu verbinden, aber dieser Drucker ist nicht der Host, der die Gruppe verwaltet. Besuchen Sie die Website, um den Drucker als Host der Gruppe zu konfigurieren." @@ -5619,7 +5505,9 @@ msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläc msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Sie haben einige Profileinstellungen personalisiert.Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden." +msgstr "Sie haben einige Profileinstellungen personalisiert." +"Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?" +"Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -5649,12 +5537,10 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Ihr neuer Drucker wird automatisch in Cura angezeigt." -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Your printer {printer_name} could be connected via cloud." " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Your printer {printer_name} could be connected via cloud. Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgctxt "@label" msgid "Z" @@ -5716,7 +5602,6 @@ msgctxt "@label" msgid "version: %1" msgstr "Version: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} wird bis zur nächsten Synchronisierung entfernt." @@ -5725,18 +5610,38 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." -#~ msgctxt "description" -#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -#~ msgstr "CuraEngine-Plugin zur stufenweisen Glättung des Flusses, um Sprünge bei hohem Fluss zu begrenzen" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Kombination nicht empfohlen. Laden Sie den BB-Kern in Slot 1 (links) für bessere Zuverlässigkeit." -#~ msgctxt "name" -#~ msgid "CuraEngineGradualFlow" -#~ msgstr "CuraEngineGradualFlow" +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot-Sketch-Druckdatei" + +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Drucker suchen" + +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Dies ist eine Cura-Universal-Projektdatei. Möchten Sie sie als Cura-Universal-Projekt öffnen oder die Modelle daraus importieren?" + +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Exportpaket für technischen Support" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Die Modelldaten können nicht an die Engine gesendet werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support." -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting" -#~ msgstr "Online-Fehlerbehebung anzeigen" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Die Modelldaten können nicht an die Engine gesendet werden. Bitte versuchen Sie, ein weniger detailliertes Modell zu verwenden oder die Anzahl der Instanzen zu reduzieren." -#~ msgctxt "@text:window" -#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -#~ msgstr "Dies ist eine Cura Universal Projektdatei. Möchten Sie es als Cura Projekt oder Cura Universal Project öffnen oder die Modelle daraus importieren?" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Aktualisiert Konfigurationen von Cura 5.8 auf Cura 5.9." + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Versionsaktualisierung 5.8 auf 5.9" diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po index 8def199b846..06d0134a3f4 100644 --- a/resources/i18n/de_DE/fdmextruder.def.json.po +++ b/resources/i18n/de_DE/fdmextruder.def.json.po @@ -1,9 +1,8 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -125,10 +124,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Düsen-ID" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X-Versatz Düse" @@ -157,10 +152,6 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Die für das Drucken verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." @@ -204,3 +195,11 @@ msgstr "Die Y-Koordinate des Düsenversatzes." msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Die Y-Koordinate der Startposition beim Einschalten des Extruders." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Düsenlänge" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem untersten Teil des Druckkopfs." diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 4498668ad62..d68cf6a89b2 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -94,7 +94,7 @@ msgstr "Die Funktion Anpassschichten berechnet die Schichthöhe je nach Form des msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "Fügen Sie zusätzliche Linien in das Füllmuster ein, um darüber liegende Schichten zu stützen. Diese Option verhindert Löcher oder Kunststoffklumpen, die manchmal bei komplex geformten Schichten auftreten, weil die darunter liegende Füllung die darüber liegende Schicht nicht richtig stützt. „Walls\" (Wände) unterstützt nur die Umrisse der Schicht, während „Walls and Lines\" (Wände und Linien) auch die Enden der Linien unterstützt, aus denen die Schicht besteht." msgctxt "infill_wall_line_count description" msgid "" @@ -444,11 +444,11 @@ msgstr "Breite des Brim-Elements" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "Gebläsegeschwindigkeit in der Höhe aufbauen" msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "Gebläsegeschwindigkeit in der Schicht aufbauen" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" @@ -492,7 +492,7 @@ msgstr "Build-Volumen-Temperatur Warnung" msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "Volumen-Gebläsezahl aufbauen" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -732,11 +732,11 @@ msgstr "Erkennt Brücken und ändert die Druckgeschwindigkeit, Fluss- und Lüfte msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "Bestimmt die Länge jedes Schritts bei der Änderung des Flusses beim Extrudieren entlang der Kappnaht. Ein kleinerer Abstand führt zu einem präziseren, aber auch komplexeren G-Code." msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "Bestimmt die Länge der Kappnaht, einer Nahtart, die die Z-Naht weniger sichtbar machen sollte. Muss höher als 0 sein, um wirksam zu sein." msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." @@ -1028,7 +1028,7 @@ msgstr "Extensives Stitching versucht die Löcher im Netz mit sich berührenden msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "Zusätzliche Fülllinien zur Unterstützung von Schichten" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" @@ -1042,6 +1042,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "X-Position Extruder-Einzug" @@ -2438,7 +2442,7 @@ msgstr "Keine" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "Keine" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2484,6 +2488,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Düsen-ID" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Düsengröße" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel" @@ -2614,15 +2622,15 @@ msgstr "Beschleunigung Außenwand" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "Beschleunigung der Außenwand" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "Verlangsamung der Außenwand" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "Endgeschwindigkeitsverhältnis der Außenwand" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" @@ -2650,11 +2658,11 @@ msgstr "Geschwindigkeit Außenwand" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "Geschwindigkeitsaufteilung der Außenwand" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "Anfangsgeschwindigkeitsverhältnis der Außenwand" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" @@ -2792,6 +2800,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Beschleunigung Druck" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Ruckfunktion Drucken" @@ -3298,15 +3310,15 @@ msgstr "Kompensation der Schrumpfung des Skalierungsfaktors" msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "Kappnahtlänge" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "Kappnaht-Starthöhe" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "Kappnaht-Schrittlänge" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -4366,7 +4378,7 @@ msgstr "Bezeichnet die Höhe über horizontalen Teilen Ihres Modell, in der die msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "Die Höhe, auf der sich die Lüfter bei normaler Lüftergeschwindigkeit drehen. Bei den Schichten darunter erhöht sich die Lüftergeschwindigkeit allmählich von der anfänglichen Lüftergeschwindigkeit bis zur normalen Lüftergeschwindigkeit." msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4476,7 +4488,7 @@ msgstr "Dies bezeichnet die größte Breite der zu entfernenden oberen Außenhau msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "Die Schicht, bei der sich die Lüfter des Druckers mit voller Lüftergeschwindigkeit drehen. Dieser Wert wird berechnet und auf eine ganze Zahl gerundet." msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4764,7 +4776,7 @@ msgstr "Die Anzahl der Linien für die Brim-Stützstruktur. Eine größere Anzah msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "Die Nummer des Lüfters, der das Druckvolumen kühlt. Wenn dieser Wert auf 0 gesetzt ist, bedeutet dies, dass es keinen Lüfter für das Druckvolumen gibt" msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4860,7 +4872,7 @@ msgstr "Die maximale unmittelbare Geschwindigkeitsänderung für die erste Schic msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "Das Verhältnis der ausgewählten Schichthöhe, bei der die Kappnaht beginnt. Eine niedrigere Zahl führt zu einer größeren Nahthöhe. Muss niedriger als 100 sein, um wirksam zu sein." msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -5192,23 +5204,23 @@ msgstr "Damit wird der Abstand für das unmittelbare Coasting des Extruders vor msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "Dies ist die Beschleunigung, mit der die Höchstgeschwindigkeit beim Drucken einer Außenwand erreicht wird." msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "Dies ist die Verlangsamung, mit der der Druck einer Außenwand beendet wird." msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "Dies ist die maximale Länge eines Extrusionspfads beim Aufteilen eines längeren Pfads, um die Beschleunigung/Verlangsamung der Außenwand anzuwenden. Ein kleinerer Abstand erzeugt einen präziseren, aber auch ausführlicheren G-Code." msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "Dies ist das Verhältnis der Höchstgeschwindigkeit zum Ende beim Drucken einer Außenwand." msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "Dies ist das Verhältnis der Höchstgeschwindigkeit zu Beginn des Drucks einer Außenwand." msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5592,15 +5604,15 @@ msgstr "Wände" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "Nur Wände" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "Wände und Linien" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "Wände, die über diesen Winkel hinaus überhängen, werden mit den Einstellungen für überhängende Wände gedruckt. Bei einem Wert von 90 werden keine Wände als überhängend behandelt. Ein Überhang, der von einer Stütze gestützt wird, wird ebenfalls nicht als Überhang behandelt. Darüber hinaus wird auch jede Linie, die weniger als halb überhängt, nicht als Überhang behandelt." msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 0e3026a751e..ee260270343 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 14:27+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -142,11 +141,10 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Tendrá que reiniciar la aplicación para que estos cambios tengan efecto." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Añada perfiles de materiales y complementos del Marketplace - Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales - Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad UltiMaker" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Añada perfiles de materiales y complementos del Marketplace " +"- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales " +"- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad UltiMaker" msgctxt "@heading" msgid "-- incomplete --" @@ -200,45 +198,38 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Solo la configuración modificada por el usuario se guardar en el perfil personalizado.
    El nuevo perfil personalizado heredar las propiedades de %1 para los materiales compatibles." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Representador de OpenGL: {renderer}
  • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Proveedor de OpenGL: {vendor}
  • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versión de OpenGL: {version}
  • " msgctxt "@label crash message" -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" +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 "

    Se ha producido un error grave en Cura. Envíenos este informe de errores para que podamos solucionar el problema.

    " +"

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

    " " " -msgstr "

    Se ha producido un error grave en Cura. Envíenos este informe de errores para que podamos solucionar el problema.

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

    " msgctxt "@label crash message" -msgid "" -"

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

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" +msgid "

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

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " +msgstr "

    ¡Vaya! UltiMaker Cura ha encontrado un error.

    " +"

    Hemos detectado un error irreversible durante el inicio, posiblemente como consecuencia de varios archivos de configuración erróneos. Le recomendamos que realice una copia de seguridad y que restablezca los ajustes.

    " +"

    Las copias de seguridad se encuentran en la carpeta de configuración.

    " +"

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

    " " " -msgstr "

    ¡Vaya! UltiMaker Cura ha encontrado un error.

    Hemos detectado un error irreversible durante el inicio, posiblemente como consecuencia de varios archivos de configuración erróneos. Le recomendamos que realice una copia de seguridad y que restablezca los ajustes.

    Las copias de seguridad se encuentran en la carpeta de configuración.

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

    " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

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

    \n" -"

    {model_names}

    \n" -"

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

    \n" -"

    View print quality guide

    " -msgstr "

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

    {model_names}

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

    Ver guía de impresión de calidad

    " +msgid "

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

    \n

    {model_names}

    \n

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

    \n

    View print quality guide

    " +msgstr "

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

    " +"

    {model_names}

    " +"

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

    " +"

    Ver guía de impresión de calidad

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -398,7 +389,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Añadir impresora manualmente" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Añadiendo la impresora {name} ({model}) de su cuenta" @@ -439,7 +429,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos los archivos (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Todos los tipos compatibles ({0})" @@ -532,7 +521,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "¿Seguro que desea mover %1 al principio de la cola?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "¿Seguro que desea eliminar {printer_name} temporalmente?" @@ -545,7 +533,6 @@ 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!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "¿Seguro que desea eliminar {0}? ¡Esta acción no se puede deshacer!" @@ -710,12 +697,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "¿No puede conectarse a la impresora UltiMaker?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "No se puede importar el perfil de {0} antes de añadir una impresora." -#, 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}" @@ -797,12 +782,7 @@ msgid "Checks models and print configuration for possible printing issues and gi msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos." msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Elige entre las técnicas disponibles para generar soporte. El soporte \"Normal\" crea una estructura de soporte directamente debajo de las partes en voladizo y lleva estas áreas hacia abajo. El soporte en \"Árbol\" crea ramas en las áreas en voladizo que sostienen el modelo al final de estas ramas y permite que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión." msgctxt "@action:inmenu menubar:edit" @@ -841,10 +821,6 @@ msgctxt "@label" msgid "Color scheme" msgstr "Combinación de colores" -msgctxt "@label" -msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." -msgstr "Combinación no recomendada. Cargue el núcleo BB a la ranura 1 (izquierda) para que sea más fiable." - msgctxt "@info" msgid "Compare and save." msgstr "Comparar y guardar." @@ -1009,7 +985,6 @@ 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: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}." @@ -1038,12 +1013,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "No se pudo guardar el archivo de material en {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "No se pudo guardar en {0}: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "No se pudo guardar en unidad extraíble {0}: {1}" @@ -1052,26 +1025,20 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "No se han podido cargar los datos en la impresora." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}No se tiene permiso para ejecutar el proceso." +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}" +"No se tiene permiso para ejecutar el proceso." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}El sistema operativo lo está bloqueando (¿antivirus?)" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}" +"El sistema operativo lo está bloqueando (¿antivirus?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}El recurso no está disponible temporalmente" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}" +"El recurso no está disponible temporalmente" msgctxt "@title:window" msgid "Crash Report" @@ -1157,16 +1124,14 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura no puede iniciarse" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "UltiMaker ha desarrollado Cura en cooperación con la comunidad.Cura se enorgullece de utilizar los siguientes proyectos de código abierto:" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "UltiMaker ha desarrollado Cura en cooperación con la comunidad." +"Cura se enorgullece de utilizar los siguientes proyectos de código abierto:" msgctxt "@label" msgid "Cura language" @@ -1180,6 +1145,14 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "Backend de CuraEngine" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Complemento de CuraEngine para suavizar gradualmente el flujo con el fin de limitar los saltos de flujo elevados" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "Flujo gradual de CuraEngine" + msgctxt "@label" msgid "Currency:" msgstr "Moneda:" @@ -1436,12 +1409,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Expulsar" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Expulsar dispositivo extraíble {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad." @@ -1530,10 +1501,6 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Exportar material" -msgctxt "@action:inmenu menubar:help" -msgid "Export Package For Technical Support" -msgstr "" - msgctxt "@title:window" msgid "Export Profile" msgstr "Exportar perfil" @@ -1554,7 +1521,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportación correcta" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado a {0}" @@ -1591,7 +1557,6 @@ msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "Duración del código G de inicio del extrusor" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "Extrusor {0}" @@ -1616,7 +1581,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Error al crear un archivo de materiales para sincronizarlo con las impresoras." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad." @@ -1625,27 +1589,22 @@ 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" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Error al exportar el perfil a {0}: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Error al exportar el perfil a {0}: Error en el complemento de escritura." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Error al importar el perfil de {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Error al importar el perfil de {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Error al importar el perfil de {0}: {1}" @@ -1662,7 +1621,6 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Se ha producido un error al guardar el archivo de material" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "Fallo al escribir en una impresora en nube específica: {0} no está en grupos remotos." @@ -1691,7 +1649,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Archivo guardado" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "El archivo {0} no contiene ningún perfil válido." @@ -1915,7 +1872,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Colocación de cuadrícula" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "N.º de grupo {group_nr}" @@ -2400,10 +2356,6 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Escritor de archivos de impresión Makerbot" -msgctxt "@item:inlistbox" -msgid "Makerbot Sketch Printfile" -msgstr "\"Printfile\" de bocetos de \"Markerbot\"" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter no pudo guardar en la ruta designada." @@ -2646,7 +2598,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Error de red" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nuevo firmware de %s estable disponible" @@ -2659,7 +2610,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Las nuevas impresoras UltiMaker pueden conectarse a Digital Factory y supervisarse a distancia." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no dispone de la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}." @@ -2706,7 +2656,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Ningún cálculo de costes disponible" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "No hay ningún perfil personalizado para importar en el archivo {0}" @@ -2807,6 +2756,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Desplazamiento de la tobera sobre el eje Y" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Tamaño de la tobera" + msgctxt "@label" msgid "Nozzle size" msgstr "Tamaño de la tobera" @@ -2843,7 +2796,6 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Mostrar solo capas superiores" -#, 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}" @@ -3057,12 +3009,11 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Conceda los permisos necesarios al autorizar esta aplicación." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "Asegúrese de que la impresora está conectada:- Compruebe que la impresora está encendida.- Compruebe que la impresora está conectada a la red.- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube." +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Asegúrese de que la impresora está conectada:" +"- Compruebe que la impresora está encendida." +"- Compruebe que la impresora está conectada a la red." +"- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube." msgctxt "@text" msgid "Please name your printer" @@ -3089,12 +3040,11 @@ msgid "Please remove the print" msgstr "Retire la impresión" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "Revise la configuración y compruebe si sus modelos:- Se integran en el volumen de impresión- Están asignados a un extrusor activado- No están todos definidos como mallas modificadoras" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Revise la configuración y compruebe si sus modelos:" +"- Se integran en el volumen de impresión" +"- Están asignados a un extrusor activado" +"- No están todos definidos como mallas modificadoras" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -3396,7 +3346,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Ajustes del perfil" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "El perfil {0} tiene un tipo de archivo desconocido o está corrupto." @@ -3421,22 +3370,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Lenguaje de programación" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "El archivo del proyecto {0} contiene un tipo de máquina desconocida {1}. No se puede importar la máquina, en su lugar, se importarán los modelos." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "El archivo de proyecto {0} está dañado: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "El archivo de proyecto {0} se ha creado con perfiles desconocidos para esta versión de Ultimaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "El archivo de proyecto {0} está repentinamente inaccesible: {1}." @@ -3565,7 +3510,6 @@ msgctxt "@label" msgid "Qt version" msgstr "Versión Qt" -#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "El tipo de calidad '{0}' no es compatible con la definición actual de máquina activa '{1}'." @@ -3806,12 +3750,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Guardar en unidad extraíble" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Guardar en unidad extraíble {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Guardado en unidad extraíble {0} como {1}" @@ -3820,7 +3762,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Guardando" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Guardando en unidad extraíble {0}" @@ -3837,10 +3778,6 @@ msgctxt "@placeholder" msgid "Search" msgstr "Buscar" -msgctxt "@label:textbox" -msgid "Search Printer" -msgstr "Buscar impresora" - msgctxt "@info" msgid "Search in the browser" msgstr "Buscar en el navegador" @@ -4073,6 +4010,10 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Mostrar &documentación en línea" +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Mostrar resolución de problemas online" + msgctxt "@label:checkbox" msgid "Show all" msgstr "Mostrar todo" @@ -4198,11 +4139,9 @@ msgid "Solid view" msgstr "Vista de sólidos" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.Haga clic para mostrar estos ajustes." +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados." +"Haga clic para mostrar estos ajustes." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -4217,11 +4156,9 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Algunos de los valores de configuración definidos en %1 se han anulado." msgctxt "@tooltip" -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.Haga clic para abrir el administrador de perfiles." +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil." +"Haga clic para abrir el administrador de perfiles." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -4303,7 +4240,6 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "El material se ha importado correctamente en %1" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado correctamente." @@ -4510,7 +4446,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "El archivo {0} ya existe. ¿Está seguro de que desea sobrescribirlo?" @@ -4574,15 +4509,11 @@ msgid "The nozzle inserted in this extruder." msgstr "Tobera insertada en este extrusor." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Patrón del material de relleno de la impresión:Para impresiones rpidas de modelos no funcionales, elija lnea, zigzag o relleno ligero.Para una pieza funcional que no est sujeta a mucha tensin, recomendamos rejilla, tringulo o trihexgono.Para las impresiones 3D funcionales que requieran una alta resistencia en varias direcciones, utilice cbico, subdivisin cbica, cbico bitruncado, octeto o giroide." +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Patrón del material de relleno de la impresión:" +"Para impresiones rpidas de modelos no funcionales, elija lnea, zigzag o relleno ligero." +"Para una pieza funcional que no est sujeta a mucha tensin, recomendamos rejilla, tringulo o trihexgono." +"Para las impresiones 3D funcionales que requieran una alta resistencia en varias direcciones, utilice cbico, subdivisin cbica, cbico bitruncado, octeto o giroide." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4701,8 +4632,8 @@ msgid "This configuration is not available because %1 is not recognized. Please msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto." msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" -msgstr "Este es un archivo de proyectos Cura Universal. ¿Quiere abrirlo como Proyecto Cura Universal o importar los modelos a partir de él?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Este es un archivo de proyecto Cura Universal. ¿Desea abrirlo como proyecto Cura o proyecto Universal Cura o importar los modelos desde él?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4738,7 +4669,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Esta impresora aloja un grupo de %1 impresoras." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Este perfil {0} contiene datos incorrectos, no se han podido importar." @@ -4752,11 +4682,9 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Este proyecto contiene materiales o complementos que actualmente no están instalados en Cura.
    Instale los paquetes que faltan y vuelva a abrir el proyecto." msgctxt "@label" -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.Haga clic para restaurar el valor del perfil." +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Este ajuste tiene un valor distinto del perfil." +"Haga clic para restaurar el valor del perfil." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4773,11 +4701,9 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores." msgctxt "@label" -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.Haga clic para restaurar el valor calculado." +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido." +"Haga clic para restaurar el valor calculado." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4811,7 +4737,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Para sincronizar automáticamente los perfiles de material con todas sus impresoras conectadas a Digital Factory debe iniciar sesión en Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Para establecer una conexión, visite {website_link}" @@ -4824,7 +4749,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Para eliminar {printer_name} permanentemente, visite {digital_factory_link}" @@ -4969,17 +4893,14 @@ 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" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "No se puede encontrar el ejecutable del servidor EnginePlugin local para: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "No se puede detener el EnginePlugin en ejecución: {self._plugin_id}El acceso se ha denegado." +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "No se puede detener el EnginePlugin en ejecución: {self._plugin_id}" +"El acceso se ha denegado." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4989,14 +4910,6 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "No se puede leer el archivo de datos de ejemplo." -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" - -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" - msgctxt "@info:title" msgid "Unable to slice" msgstr "No se puede segmentar" @@ -5009,12 +4922,10 @@ 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." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado." -#, 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}." @@ -5023,7 +4934,6 @@ 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." -#, 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}" @@ -5032,7 +4942,6 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "No se puede iniciar un nuevo proceso de inicio de sesión. Compruebe si todavía está activo otro intento de inicio de sesión." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "No se puede escribir en el archivo: {0}" @@ -5085,7 +4994,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Paquete desconocido" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de error desconocido al cargar el trabajo de impresión: {0}" @@ -5258,10 +5166,6 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "Actualiza las configuraciones de Cura 5.6 a Cura 5.7." -msgctxt "description" -msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" - msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Cargar firmware personalizado" @@ -5406,10 +5310,6 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "Actualización de la versión 5.6 a la 5.7" -msgctxt "name" -msgid "Version Upgrade 5.8 to 5.9" -msgstr "" - msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Ver impresoras en Digital Factory" @@ -5462,7 +5362,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Advertencia" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Advertencia: el perfil no es visible porque su tipo de calidad '{0}' no está disponible para la configuración actual. Cambie a una combinación de material/tobera que pueda utilizar este tipo de calidad." @@ -5584,31 +5483,19 @@ msgid "Yes" msgstr "Sí" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.¿Seguro que desea continuar?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Está a punto de eliminar {0} impresora de Cura. Esta acción no se puede deshacer.\n" -"¿Seguro que desea continuar?" -msgstr[1] "" -"Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n" -"¿Seguro que desea continuar?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Está a punto de eliminar {0} impresora de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?" +msgstr[1] "Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Está intentando conectarse a {0} pero ese no es el host de un grupo. Puede visitar la página web para configurarlo como host de grupo." @@ -5619,7 +5506,9 @@ msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Re msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Ha personalizado algunos ajustes del perfil.¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?También puede descartar los cambios para cargar los valores predeterminados de'%1'." +msgstr "Ha personalizado algunos ajustes del perfil." +"¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?" +"También puede descartar los cambios para cargar los valores predeterminados de'%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -5649,12 +5538,10 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Su nueva impresora aparecerá automáticamente en Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Su impresora {printer_name} podría estar conectada a través de la nube. Administre su cola de impresión y supervise las impresiones desde cualquier lugar conectando su impresora a Digital Factory" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Su impresora {printer_name} podría estar conectada a través de la nube." +" Administre su cola de impresión y supervise las impresiones desde cualquier lugar conectando su impresora a Digital Factory" msgctxt "@label" msgid "Z" @@ -5716,7 +5603,6 @@ msgctxt "@label" msgid "version: %1" msgstr "versión: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} se eliminará hasta la próxima sincronización de la cuenta." @@ -5725,18 +5611,38 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Error al descargar los complementos {}" -#~ msgctxt "description" -#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -#~ msgstr "Complemento de CuraEngine para suavizar gradualmente el flujo con el fin de limitar los saltos de flujo elevados" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Combinación no recomendada. Cargue el núcleo BB a la ranura 1 (izquierda) para que sea más fiable." -#~ msgctxt "name" -#~ msgid "CuraEngineGradualFlow" -#~ msgstr "Flujo gradual de CuraEngine" +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "\"Printfile\" de bocetos de \"Markerbot\"" + +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Buscar impresora" + +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Este es un archivo de proyectos Cura Universal. ¿Quiere abrirlo como Proyecto Cura Universal o importar los modelos a partir de él?" + +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Exportar paquete para asistencia técnica" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "No se han podido enviar los datos del modelo al motor. Vuelva a intentarlo o póngase en contacto con el servicio de asistencia." -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting" -#~ msgstr "Mostrar resolución de problemas online" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Imposible enviar los datos del modelo al motor. Intente utilizar un modelo menos detallado o reduzca el número de instancias." -#~ msgctxt "@text:window" -#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -#~ msgstr "Este es un archivo de proyecto Cura Universal. ¿Desea abrirlo como proyecto Cura o proyecto Universal Cura o importar los modelos desde él?" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Actualiza las configuraciones de Cura 5.8 a Cura 5.9." + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Actualización de la versión 5.8 a 5.9" diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po index 303d3962828..1e6872451f8 100644 --- a/resources/i18n/es_ES/fdmextruder.def.json.po +++ b/resources/i18n/es_ES/fdmextruder.def.json.po @@ -1,9 +1,8 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -125,10 +124,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Id. de la tobera" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Desplazamiento de la tobera sobre el eje X" @@ -157,10 +152,6 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "El tren extrusor que se utiliza para imprimir. Se emplea en la extrusión múltiple." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." @@ -204,3 +195,11 @@ msgstr "Coordenada Y del desplazamiento de la tobera." msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Coordenada Y de la posición de inicio cuando se enciende el extrusor." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longitud de la boquilla" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "La diferencia de altura entre la punta de la boquilla y la parte más baja del cabezal de impresión." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index 1fe58ecec32..aad9b40a909 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -94,7 +94,7 @@ msgstr "Las capas de adaptación calculan las alturas de las capas dependiendo d msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "Añade líneas adicionales en el patrón de relleno para soportar las pieles de arriba. Esta opción evita los agujeros o las manchas de plástico que a veces aparecen en las pieles de formas complejas, debido a que el relleno de abajo no soporta correctamente la capa de piel que se está imprimiendo arriba. \"Muros\" soporta solo los contornos de la piel, mientras que \"Muros y líneas\" soporta también los extremos de las líneas que componen la piel." msgctxt "infill_wall_line_count description" msgid "" @@ -444,11 +444,11 @@ msgstr "Ancho del borde" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "Construir velocidad del ventilador en altura" msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "Construir velocidad de abanico en capa" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" @@ -492,7 +492,7 @@ msgstr "Advertencia de temperatura de volumen de construcción" msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "Número del ventilador de volumen de construcción" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -732,11 +732,11 @@ msgstr "Detección de puentes y modificación de los ajustes de velocidad de imp msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "Determina la longitud de cada paso en el cambio de flujo al extruir a lo largo de la costura de la bufanda. Una distancia menor dará como resultado un código G más preciso pero también más complejo." msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "Determina la longitud de la costura de la bufanda, un tipo de costura que debería hacer menos visible la costura Z. Debe ser superior a 0 para ser eficaz." msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." @@ -1028,7 +1028,7 @@ msgstr "Cosido amplio intenta coser los agujeros abiertos en la malla cerrando e msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "Líneas de relleno adicionales para soportar las pieles" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" @@ -1042,6 +1042,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Material adicional que debe cebarse tras el cambio de tobera." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Posición de preparación del extrusor sobre el eje X" @@ -2438,7 +2442,7 @@ msgstr "Ninguno" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "Ninguno" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2484,6 +2488,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Id. de la tobera" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Tamaño de la tobera" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Volumen de cebado adicional tras cambio de tobera" @@ -2614,15 +2622,15 @@ msgstr "Aceleración de pared exterior" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "Aceleración de la pared exterior" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "Desaceleración de la pared exterior" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "Relación de velocidad final de la pared exterior" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" @@ -2650,11 +2658,11 @@ msgstr "Velocidad de pared exterior" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "Distancia de división de la velocidad de la pared exterior" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "Relación de velocidad inicial de la pared exterior" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" @@ -2792,6 +2800,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Aceleración de la impresión" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Impulso de impresión" @@ -3298,15 +3310,15 @@ msgstr "Factor de escala para la compensación de la contracción" msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "Longitud de la costura de la bufanda" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "Altura de inicio de la costura de la bufanda" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "Longitud del paso de la costura de la bufanda" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -4366,7 +4378,7 @@ msgstr "Altura por encima de las piezas horizontales del modelo del que imprimir msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "La altura a la que giran los ventiladores a velocidad de ventilador normal. En las capas inferiores, la velocidad de los ventiladores aumenta gradualmente desde la velocidad inicial de los ventiladores hasta la velocidad normal de los ventiladores." msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4476,7 +4488,7 @@ msgstr "Anchura máxima de las áreas superiores de forro que se deben retirar. msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "La capa en la que los ventiladores de la construcción giran a la velocidad máxima del ventilador. Este valor se calcula y redondea a un número entero." msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4764,7 +4776,7 @@ msgstr "Número de líneas utilizadas para el borde de soporte. Más líneas de msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "El número del ventilador que enfría el volumen de construcción. Si este valor es 0, significa que no hay ventilador de volumen de construcción." msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4860,7 +4872,7 @@ msgstr "Cambio en la velocidad instantánea máxima de la capa inicial." msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "La relación de la altura de capa seleccionada en la que comenzará la costura de la bufanda. Un número menor dará como resultado una mayor altura de la costura. Debe ser inferior a 100 para ser efectivo." msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -5192,23 +5204,23 @@ msgstr "Controla la distancia del depósito por inercia del extrusor justo antes msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "Esta es la aceleración con la que alcanzar la velocidad máxima al imprimir una pared exterior." msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "Esta es la deceleración con la que finalizar la impresión de una pared exterior." msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "Esta es la longitud máxima de una trayectoria de extrusión cuando se divide una trayectoria más larga para aplicar la aceleración/desaceleración de la pared exterior. Una distancia menor creará un código G más preciso, pero también más prolijo." msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "Esta es la relación de la velocidad máxima con la que se debe terminar al imprimir una pared exterior." msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "Esta es la relación de la velocidad máxima con la que se debe empezar al imprimir una pared exterior." msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5592,15 +5604,15 @@ msgstr "Paredes" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "Solo muros" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "Muros y líneas" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "Los muros que sobresalgan más de este ángulo se imprimirán utilizando la configuración de muros en voladizo. Cuando el valor es 90, ningún muro se tratará como saliente. Los salientes que se apoyen en soportes tampoco se tratarán como salientes. Además, cualquier línea que tenga menos de la mitad de saliente tampoco se tratará como saliente." msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index e0af9f2fba8..2e2900a9a1e 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -6000,3 +6000,15 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index 6948d8a3b77..7ae63602296 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -2815,6 +2815,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Suuttimen Y-siirtymä" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Suuttimen koko" + msgctxt "@label" msgid "Nozzle size" msgstr "Suuttimen koko" diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index 7be52d3c5bb..38cfa3f6421 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -1046,6 +1046,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "" +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Suulakkeen esitäytön X-sijainti" @@ -2488,6 +2492,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Suuttimen tunnus" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Suuttimen koko" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "" @@ -2796,6 +2804,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Tulostuksen kiihtyvyys" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Tulostuksen nykäisy" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index 921d5c79e3d..b1eada18000 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 14:27+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -142,10 +141,7 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Vous devez redémarrer l'application pour appliquer ces changements." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "- Ajoutez des profils de matériaux et des plug-ins à partir de la Marketplace- Sauvegardez et synchronisez vos profils de matériaux et vos plug-ins- Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker" msgctxt "@heading" @@ -200,45 +196,38 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Seuls les paramètres modifiés par l'utilisateur seront enregistrés dans le profil personnalisé.
    Pour les matériaux qui le permettent, le nouveau profil personnalisé héritera des propriétés de %1." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Moteur de rendu OpenGL: {renderer}
  • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Revendeur OpenGL: {vendor}
  • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Version OpenGL: {version}
  • " msgctxt "@label crash message" -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" +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

    " +"

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

    " " " -msgstr "

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

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

    " msgctxt "@label crash message" -msgid "" -"

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

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" +msgid "

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

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    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.

    " +"

    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.

    " +"

    Les sauvegardes se trouvent dans le dossier de configuration.

    " +"

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

    " " " -msgstr "

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

    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.

    Les sauvegardes se trouvent dans le dossier de configuration.

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

    " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

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

    \n" -"

    {model_names}

    \n" -"

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

    \n" -"

    View print quality guide

    " -msgstr "

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

    {model_names}

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

    Consultez le guide de qualité d'impression

    " +msgid "

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

    \n

    {model_names}

    \n

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

    \n

    View print quality guide

    " +msgstr "

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

    " +"

    {model_names}

    " +"

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

    " +"

    Consultez le guide de qualité d'impression

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -398,7 +387,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Ajouter l'imprimante manuellement" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Ajout de l'imprimante {name} ({model}) à partir de votre compte" @@ -439,7 +427,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tous les fichiers (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Tous les types supportés ({0})" @@ -532,7 +519,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Voulez-vous vraiment supprimer {printer_name} temporairement?" @@ -545,7 +531,6 @@ 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 !" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Voulez-vous vraiment supprimer l'objet {0}? Cette action est irréversible!" @@ -710,12 +695,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Impossible de vous connecter à votre imprimante UltiMaker ?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Impossible d'importer le profil depuis {0} avant l'ajout d'une imprimante." -#, 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" @@ -797,12 +780,7 @@ msgid "Checks models and print configuration for possible printing issues and gi msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions." msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Choisit entre les stratégies de support disponibles. Le support « Normal » créé une structure de support directement sous les zones en porte-à-faux et fait descendre les supports directement vers le bas. Le support « Arborescent » génère une structure de branches depuis le plateau tout autour du modèle qui vont supporter les portes-à-faux sans toucher le modèle ailleur que les zones supportées." msgctxt "@action:inmenu menubar:edit" @@ -841,10 +819,6 @@ msgctxt "@label" msgid "Color scheme" msgstr "Modèle de couleurs" -msgctxt "@label" -msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." -msgstr "Combinaison non recommandée. Chargez le noyau BB dans l'emplacement 1 (gauche) pour une meilleure fiabilité." - msgctxt "@info" msgid "Compare and save." msgstr "Comparer et enregistrer." @@ -1009,7 +983,6 @@ 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: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Impossible de trouver un nom de fichier lors d'une tentative d'écriture sur {device}." @@ -1038,12 +1011,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Impossible d'enregistrer l'archive du matériau dans {} :" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Impossible d'enregistrer {0} : {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}" @@ -1052,26 +1023,20 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Impossible de transférer les données à l'imprimante." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}Il n'y a pas d'autorisation pour exécuter le processus." +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}" +"Il n'y a pas d'autorisation pour exécuter le processus." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}Le système d'exploitation le bloque (antivirus ?)" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}" +"Le système d'exploitation le bloque (antivirus ?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}La ressource est temporairement indisponible" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "Impossible de démarrer EnginePlugin : {self._plugin_id}" +"La ressource est temporairement indisponible" msgctxt "@title:window" msgid "Crash Report" @@ -1157,16 +1122,14 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Échec du démarrage de Cura" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura a détecté des profils de matériau qui ne sont pas encore installés sur l'imprimante hôte du groupe {0}." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker 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.Cura est fier d'utiliser les projets open source suivants :" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker." +"Cura est fier d'utiliser les projets open source suivants :" msgctxt "@label" msgid "Cura language" @@ -1180,6 +1143,14 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "Système CuraEngine" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plugin CuraEngine permettant de lisser progressivement le débit afin de limiter les sauts lorsque le débit est élevé" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Devise:" @@ -1436,12 +1407,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Ejecter" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Ejecter le lecteur amovible {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Lecteur {0} éjecté. Vous pouvez maintenant le retirer en tout sécurité." @@ -1530,10 +1499,6 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Exporter un matériau" -msgctxt "@action:inmenu menubar:help" -msgid "Export Package For Technical Support" -msgstr "" - msgctxt "@title:window" msgid "Export Profile" msgstr "Exporter un profil" @@ -1554,7 +1519,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "L'exportation a réussi" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil exporté vers {0}" @@ -1591,7 +1555,6 @@ msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "Durée du G-code du début de l'extrudeuse" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "Extrudeuse {0}" @@ -1616,7 +1579,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Échec de la création de l'archive des matériaux à synchroniser avec les imprimantes." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Impossible d'éjecter {0}. Un autre programme utilise peut-être ce lecteur." @@ -1625,27 +1587,22 @@ 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" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Échec de l'exportation du profil vers {0} : {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Échec de l'exportation du profil vers {0}: le plugin du générateur a rapporté une erreur." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Échec de l'importation du profil depuis le fichier {0} :" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Échec de l'importation du profil depuis le fichier {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Impossible d'importer le profil depuis {0}: {1}" @@ -1662,7 +1619,6 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Échec de l'enregistrement de l'archive des matériaux" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "Échec de l'écriture sur une imprimante cloud spécifique : {0} pas dans les groupes distants." @@ -1691,7 +1647,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Fichier enregistré" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Le fichier {0} ne contient pas de profil valide." @@ -1915,7 +1870,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Positionnement de la grille" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Groupe nº {group_nr}" @@ -2400,10 +2354,6 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Écrivain de fichier d'impression Makerbot" -msgctxt "@item:inlistbox" -msgid "Makerbot Sketch Printfile" -msgstr "Fichier d'impression Makerbot Sketch" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter n'a pas pu sauvegarder dans le chemin désigné." @@ -2646,7 +2596,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Erreur de réseau" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nouveau %s firmware stable disponible" @@ -2659,7 +2608,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Les nouvelles imprimantes UltiMaker peuvent être connectées à Digital Factory et contrôlées à distance." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne l'avez pas encore fait, il est recommandé de mettre à jour le micrologiciel de votre imprimante avec la version {latest_version}." @@ -2706,7 +2654,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Aucune estimation des coûts n'est disponible" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Aucun profil personnalisé à importer dans le fichier {0}" @@ -2807,6 +2754,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Décalage buse Y" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Taille de la buse" + msgctxt "@label" msgid "Nozzle size" msgstr "Taille de la buse" @@ -2843,7 +2794,6 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Afficher uniquement les couches supérieures" -#, 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" @@ -3057,12 +3007,11 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Veuillez donner les permissions requises lors de l'autorisation de cette application." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "Assurez-vous que votre imprimante est connectée:- Vérifiez si l'imprimante est sous tension.- Vérifiez si l'imprimante est connectée au réseau.- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud." +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Assurez-vous que votre imprimante est connectée:" +"- Vérifiez si l'imprimante est sous tension." +"- Vérifiez si l'imprimante est connectée au réseau." +"- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud." msgctxt "@text" msgid "Please name your printer" @@ -3089,12 +3038,11 @@ msgid "Please remove the print" msgstr "Supprimez l'imprimante" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "Veuillez vérifier les paramètres et si vos modèles:- S'intègrent dans le volume de fabrication- Sont affectés à un extrudeur activé- N sont pas tous définis comme des mailles de modificateur" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Veuillez vérifier les paramètres et si vos modèles:" +"- S'intègrent dans le volume de fabrication" +"- Sont affectés à un extrudeur activé" +"- N sont pas tous définis comme des mailles de modificateur" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -3396,7 +3344,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Paramètres du profil" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Le profil {0} est un type de fichier inconnu ou est corrompu." @@ -3421,22 +3368,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Langage de programmation" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Le fichier projet {0} contient un type de machine inconnu {1}. Impossible d'importer la machine. Les modèles seront importés à la place." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Le fichier de projet {0} est corrompu: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Le fichier de projet {0} a été réalisé en utilisant des profils inconnus de cette version d'UltiMaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Le fichier de projet {0} est soudainement inaccessible: {1}." @@ -3565,7 +3508,6 @@ msgctxt "@label" msgid "Qt version" msgstr "Version Qt" -#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Le type de qualité '{0}' n'est pas compatible avec la définition actuelle de la machine active '{1}'." @@ -3806,12 +3748,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Enregistrer sur un lecteur amovible" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Enregistrer sur un lecteur amovible {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Enregistré sur le lecteur amovible {0} sous {1}" @@ -3820,7 +3760,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Enregistrement" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Enregistrement sur le lecteur amovible {0}" @@ -3837,10 +3776,6 @@ msgctxt "@placeholder" msgid "Search" msgstr "Rechercher" -msgctxt "@label:textbox" -msgid "Search Printer" -msgstr "Rechercher l'imprimante" - msgctxt "@info" msgid "Search in the browser" msgstr "Rechercher dans le navigateur" @@ -4073,6 +4008,10 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Afficher la &documentation en ligne" +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Afficher le dépannage en ligne" + msgctxt "@label:checkbox" msgid "Show all" msgstr "Afficher tout" @@ -4198,11 +4137,9 @@ msgid "Solid view" msgstr "Vue solide" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée.Cliquez pour rendre ces paramètres visibles." +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Certains paramètres masqués utilisent des valeurs différentes de leur valeur normalement calculée." +"Cliquez pour rendre ces paramètres visibles." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -4217,11 +4154,9 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Certaines valeurs de paramètres définies dans %1 ont été remplacées." msgctxt "@tooltip" -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. Cliquez pour ouvrir le gestionnaire de profils." +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. " +"Cliquez pour ouvrir le gestionnaire de profils." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -4303,7 +4238,6 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Matériau %1 importé avec succès" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Importation du profil {0} réussie." @@ -4510,7 +4444,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Le chemin d'extrusion à utiliser pour l'impression du support. Cela est utilisé en multi-extrusion." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Le fichier {0} existe déjà. Êtes-vous sûr de vouloir le remplacer?" @@ -4574,15 +4507,11 @@ msgid "The nozzle inserted in this extruder." msgstr "Buse insérée dans cet extrudeur." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Motif de remplissage de la pièce :Pour l'impression rapide de modèles 3D non fonctionnels, choisissez un remplissage de type ligne, zigzag ou éclair.Pour les parties fonctionnelles soumises à de faibles contraintes, nous recommandons un remplissage de type grille, triangle ou trihexagonal.Pour les impressions 3D fonctionnelles qui nécessitent une résistance élevée dans plusieurs directions, utilisez un remplissage de type cubique, subdivision cubique, quart cubique, octaédrique ou gyroïde." +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Motif de remplissage de la pièce :" +"Pour l'impression rapide de modèles 3D non fonctionnels, choisissez un remplissage de type ligne, zigzag ou éclair." +"Pour les parties fonctionnelles soumises à de faibles contraintes, nous recommandons un remplissage de type grille, triangle ou trihexagonal." +"Pour les impressions 3D fonctionnelles qui nécessitent une résistance élevée dans plusieurs directions, utilisez un remplissage de type cubique, subdivision cubique, quart cubique, octaédrique ou gyroïde." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4701,8 +4630,8 @@ msgid "This configuration is not available because %1 is not recognized. Please msgstr "Cette configuration n'est pas disponible car %1 n'est pas reconnu. Veuillez visiter %2 pour télécharger le profil matériel correct." msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" -msgstr "Il s'agit d'un fichier de projet Cura Universal. Souhaitez-vous l'ouvrir en tant que projet Cura Universal ou importer les modèles qu'il contient ?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Il s'agit d'un fichier de type Projet Universel Cura. Souhaitez-vous l'ouvrir en tant que Projet Universel Cura ou importer les modèles qu'il contient ?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4738,7 +4667,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Le profil {0} contient des données incorrectes ; échec de l'importation." @@ -4752,11 +4680,9 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Ce projet comporte des contenus ou des plugins qui ne sont pas installés dans Cura pour le moment.
    Installez les packages manquants et ouvrez à nouveau le projet." msgctxt "@label" -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.Cliquez pour restaurer la valeur du profil." +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Ce paramètre possède une valeur qui est différente du profil." +"Cliquez pour restaurer la valeur du profil." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4773,11 +4699,9 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Ce paramètre est toujours partagé par toutes les extrudeuses. Le modifier ici entraînera la modification de la valeur pour toutes les extrudeuses." msgctxt "@label" -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.Cliquez pour restaurer la valeur calculée." +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Ce paramètre est normalement calculé mais il possède actuellement une valeur absolue définie." +"Cliquez pour restaurer la valeur calculée." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4811,7 +4735,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Pour synchroniser automatiquement les profils de matériaux avec toutes vos imprimantes connectées à Digital Factory, vous devez être connecté à Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Pour établir une connexion, veuillez visiter le site {website_link}" @@ -4824,7 +4747,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Pour imprimer directement sur votre imprimante via le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble Ethernet ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Pour supprimer {printer_name} définitivement, visitez le site {digital_factory_link}" @@ -4969,17 +4891,14 @@ 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" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "L'exécutable du serveur EnginePlugin local est introuvable pour : {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "L'EnginePlugin en cours d'exécution ne peut pas être arrêté : {self._plugin_id}L'accès est refusé." +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "L'EnginePlugin en cours d'exécution ne peut pas être arrêté : {self._plugin_id}" +"L'accès est refusé." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4989,14 +4908,6 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "Impossible de lire le fichier de données d'exemple." -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" - -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" - msgctxt "@info:title" msgid "Unable to slice" msgstr "Impossible de découper" @@ -5009,12 +4920,10 @@ 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." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Impossible de couper car il existe des objets associés à l'extrudeuse désactivée %s." -#, 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}" @@ -5023,7 +4932,6 @@ 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." -#, 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}" @@ -5032,7 +4940,6 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossible de lancer une nouvelle procédure de connexion. Vérifiez si une autre tentative de connexion est toujours active." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "Impossible d'écrire dans un fichier : {0}" @@ -5085,7 +4992,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Dossier inconnu" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Code d'erreur inconnu lors du téléchargement d'une tâche d'impression: {0}" @@ -5258,10 +5164,6 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "Met à jour les configurations de Cura 5.6 à Cura 5.7." -msgctxt "description" -msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" - msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Charger le firmware personnalisé" @@ -5406,10 +5308,6 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "Mise à jour de la version 5.6 à 5.7" -msgctxt "name" -msgid "Version Upgrade 5.8 to 5.9" -msgstr "" - msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Afficher les imprimantes dans Digital Factory" @@ -5462,7 +5360,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Avertissement" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Avertissement: le profil n'est pas visible car son type de qualité '{0}' n'est pas disponible pour la configuration actuelle. Passez à une combinaison matériau/buse qui peut utiliser ce type de qualité." @@ -5584,31 +5481,20 @@ msgid "Yes" msgstr "Oui" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible.Voulez-vous vraiment continuer?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible." +"Voulez-vous vraiment continuer?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Vous êtes sur le point de supprimer {0} imprimante de Cura. Cette action est irréversible.\n" -"Voulez-vous vraiment continuer?" -msgstr[1] "" -"Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\n" -"Voulez-vous vraiment continuer?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Vous êtes sur le point de supprimer {0} imprimante de Cura. Cette action est irréversible.\nVoulez-vous vraiment continuer?" +msgstr[1] "Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\nVoulez-vous vraiment continuer?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Vous tentez de vous connecter à une imprimante qui n'exécute pas UltiMaker Connect. Veuillez mettre à jour l'imprimante avec le dernier micrologiciel." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Vous tentez de vous connecter à {0} mais ce n'est pas l'hôte de groupe. Vous pouvez visiter la page Web pour la configurer en tant qu'hôte de groupe." @@ -5619,7 +5505,9 @@ msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauve msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Vous avez personnalisé certains paramètres de profil.Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'." +msgstr "Vous avez personnalisé certains paramètres de profil." +"Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?" +"Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -5649,12 +5537,10 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Votre nouvelle imprimante apparaîtra automatiquement dans Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Votre imprimante {printer_name} pourrait être connectée via le cloud. Gérez votre file d'attente d'impression et surveillez vos impressions depuis n'importe où en connectant votre imprimante à Digital Factory" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Votre imprimante {printer_name} pourrait être connectée via le cloud." +" Gérez votre file d'attente d'impression et surveillez vos impressions depuis n'importe où en connectant votre imprimante à Digital Factory" msgctxt "@label" msgid "Z" @@ -5716,7 +5602,6 @@ msgctxt "@label" msgid "version: %1" msgstr "version : %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "L'imprimante {printer_name} sera supprimée jusqu'à la prochaine synchronisation de compte." @@ -5725,18 +5610,38 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Échec de téléchargement des plugins {}" -#~ msgctxt "description" -#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -#~ msgstr "Plugin CuraEngine permettant de lisser progressivement le débit afin de limiter les sauts lorsque le débit est élevé" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Combinaison non recommandée. Chargez le noyau BB dans l'emplacement 1 (gauche) pour une meilleure fiabilité." + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Fichier d'impression Makerbot Sketch" + +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Rechercher l'imprimante" -#~ msgctxt "name" -#~ msgid "CuraEngineGradualFlow" -#~ msgstr "CuraEngineGradualFlow" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Il s'agit d'un fichier de projet Cura Universal. Souhaitez-vous l'ouvrir en tant que projet Cura Universal ou importer les modèles qu'il contient ?" -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting" -#~ msgstr "Afficher le dépannage en ligne" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Paquet d'exportation pour l'assistance technique" -#~ msgctxt "@text:window" -#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -#~ msgstr "Il s'agit d'un fichier de type Projet Universel Cura. Souhaitez-vous l'ouvrir en tant que Projet Universel Cura ou importer les modèles qu'il contient ?" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Impossible d'envoyer les données du modèle au moteur. Veuillez réessayer ou contacter le service d'assistance." + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Impossible d'envoyer les données du modèle au moteur. Veuillez essayer d'utiliser un modèle moins détaillé ou de réduire le nombre d'instances." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Met à jour les configurations de Cura 5.8 vers Cura 5.9." + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Mise à jour de la version 5.8 à 5.9" diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po index c3fa3937430..18907d89761 100644 --- a/resources/i18n/fr_FR/fdmextruder.def.json.po +++ b/resources/i18n/fr_FR/fdmextruder.def.json.po @@ -1,9 +1,8 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -125,10 +124,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID buse" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Buse Décalage X" @@ -157,10 +152,6 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Le train d'extrudeuse utilisé pour l'impression. Cela est utilisé en multi-extrusion." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." @@ -204,3 +195,11 @@ msgstr "Les coordonnées Y du décalage de la buse." msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Les coordonnées Y de la position de départ lors de la mise en marche de l'extrudeuse." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longueur de la buse" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Différence de hauteur entre l'extrémité de la buse et la partie la plus basse de la tête d'impression." diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index a0aa8e8b2f9..703d55a11b9 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -94,7 +94,7 @@ msgstr "Cette option calcule la hauteur des couches en fonction de la forme du m msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "Ajoutez des lignes supplémentaires dans le motif de remplissage pour soutenir les peaux situées au-dessus. Cette option permet d'éviter les trous ou les bulles de plastique qui apparaissent parfois dans les peaux de forme complexe, parce que le remplissage en dessous ne soutient pas correctement la couche de peau imprimée au-dessus. L'option \"Murs\" ne prend en charge que les contours de la peau, tandis que l'option \"Murs et lignes\" prend également en charge les extrémités des lignes qui composent la peau." msgctxt "infill_wall_line_count description" msgid "" @@ -444,11 +444,11 @@ msgstr "Largeur de la bordure" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "Construire la vitesse du ventilateur en hauteur" msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "Vitesse du ventilateur de construction à la couche" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" @@ -492,7 +492,7 @@ msgstr "Avertissement de la température du volume de construction" msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "Numéro du ventilateur de volume de construction" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -732,11 +732,11 @@ msgstr "Détecter les ponts et modifier la vitesse d'impression, le débit et le msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "Détermine la longueur de chaque étape du changement de flux lors de l'extrusion le long de la couture du foulard. Une distance plus petite se traduira par un code G plus précis mais aussi plus complexe." msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "Détermine la longueur du joint d'écharpe, un type de joint qui devrait rendre le joint Z moins visible. La valeur doit être supérieure à 0 pour être efficace." msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." @@ -1028,7 +1028,7 @@ msgstr "Le raccommodage consiste en la suppression des trous dans le maillage en msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "Lignes de remplissage supplémentaires pour soutenir les peaux" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" @@ -1042,6 +1042,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Matériel supplémentaire à amorcer après le changement de buse." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Extrudeuse Position d'amorçage X" @@ -2438,7 +2442,7 @@ msgstr "Aucun" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "Aucune" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2484,6 +2488,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID buse" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Taille de la buse" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Montant de l'amorce supplémentaire lors d'un changement de buse" @@ -2614,15 +2622,15 @@ msgstr "Accélération de la paroi externe" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "Accélération du mur extérieur" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "Décélération du mur extérieur" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "Rapport de vitesse de fin de mur extérieur" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" @@ -2650,11 +2658,11 @@ msgstr "Vitesse d'impression de la paroi externe" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "Distance de division de la vitesse de mur extérieur" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "Rapport de vitesse de départ du mur extérieur" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" @@ -2792,6 +2800,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Accélération de l'impression" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Imprimer en saccade" @@ -3298,15 +3310,15 @@ msgstr "Mise à l'échelle du facteur de compensation de contraction" msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "Longueur de la couture de l'écharpe" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "Hauteur de départ de la couture de l'écharpe" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "Longueur du pas de couture de l'écharpe" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -4366,7 +4378,7 @@ msgstr "La hauteur au-dessus des parties horizontales dans votre modèle pour la msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "Hauteur à laquelle les ventilateurs tournent à la vitesse normale. Dans les couches inférieures, la vitesse du ventilateur passe progressivement de la vitesse initiale à la vitesse normale." msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4476,7 +4488,7 @@ msgstr "La plus grande largeur des zones de la couche extérieure supérieure à msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "La couche à laquelle les ventilateurs de construction tournent à pleine vitesse. Cette valeur est calculée et arrondie à un nombre entier." msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4764,7 +4776,7 @@ msgstr "Nombre de lignes utilisées pour la bordure du support. L'augmentation d msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "Le numéro du ventilateur qui refroidit le volume de construction. S'il est fixé à 0, cela signifie qu'il n'y a pas de ventilateur de volume de construction." msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4860,7 +4872,7 @@ msgstr "Le changement instantané maximal de vitesse pour la couche initiale." msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "Le ratio de la hauteur de couche sélectionnée à laquelle la couture de l'écharpe commencera. Un nombre inférieur entraînera une plus grande hauteur de couture. Il doit être inférieur à 100 pour être efficace." msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -5192,23 +5204,23 @@ msgstr "Ce paramètre contrôle la distance que l'extrudeuse doit parcourir en r msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "Il s'agit de l'accélération permettant d'atteindre la vitesse maximale lors de l'impression d'un mur extérieur." msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "Il s'agit de la décélération permettant de terminer l'impression d'un mur extérieur." msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "Il s'agit de la longueur maximale d'un chemin d'extrusion lors de la division d'un chemin plus long pour appliquer l'accélération/décélération du mur extérieur. Une distance plus petite créera un code G plus précis mais aussi plus verbeux." msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "Il s'agit du ratio de la vitesse maximale à laquelle il faut terminer lors de l'impression d'un mur extérieur." msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "Il s'agit du rapport entre la vitesse maximale et la vitesse de départ lors de l'impression d'un mur extérieur." msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5592,15 +5604,15 @@ msgstr "Parois" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "Murs uniquement" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "Murs et lignes" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "Les murs qui dépassent de plus de cet angle seront imprimés en utilisant les paramètres des murs en surplomb. Lorsque la valeur est de 90, aucun mur n'est traité comme étant en surplomb. Les surplombs qui sont soutenus par un support ne seront pas non plus traités comme des surplombs. En outre, toute ligne dont le surplomb est inférieur à la moitié ne sera pas non plus traitée comme un surplomb." msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index 5c546f1d029..b350cd7bf3f 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -2825,6 +2825,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Fúvóka Y eltolás" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Fúvóka méret" + msgctxt "@label" msgid "Nozzle size" msgstr "Fúvóka méret" diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 1a0e40680f3..85a1b50c17e 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -1049,6 +1049,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Egy extra anyagmennyiség, amivel több anyagot tol vissza a fejbe fúvókaváltás után." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Extruder kezdő X helyzet" @@ -2495,6 +2499,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Fúvóka ID" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Fúvóka méret" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Fúvókaváltási extra visszatolt anyag" @@ -2803,6 +2811,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Nyomtatási gyorsulás" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Nyomtatás löket" diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index c046ceb144c..96fd6261e9a 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 14:27+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -142,11 +141,10 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Per rendere effettive le modifiche è necessario riavviare l'applicazione." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Aggiungi profili materiale e plugin dal Marketplace- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Aggiungi profili materiale e plugin dal Marketplace" +"- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin" +"- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker" msgctxt "@heading" msgid "-- incomplete --" @@ -200,45 +198,38 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Solo le impostazioni modificate dall'utente verranno salvate nel profilo personalizzato.
    Per i materiali che lo supportano, il nuovo profilo personalizzato erediterà le proprietà da %1." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Renderer OpenGL: {renderer}
  • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Fornitore OpenGL: {vendor}
  • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versione OpenGL: {version}
  • " msgctxt "@label crash message" -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" +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

    " +"

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

    " " " -msgstr "

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

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

    " msgctxt "@label crash message" -msgid "" -"

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

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" +msgid "

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

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    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.

    " +"

    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.

    " +"

    I backup sono contenuti nella cartella configurazione.

    " +"

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

    " " " -msgstr "

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

    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.

    I backup sono contenuti nella cartella configurazione.

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

    " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

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

    \n" -"

    {model_names}

    \n" -"

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

    \n" -"

    View print quality guide

    " -msgstr "

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

    {model_names}

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

    Visualizza la guida alla qualità di stampa

    " +msgid "

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

    \n

    {model_names}

    \n

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

    \n

    View print quality guide

    " +msgstr "

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

    " +"

    {model_names}

    " +"

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

    " +"

    Visualizza la guida alla qualità di stampa

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -398,7 +389,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Aggiungere la stampante manualmente" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Aggiunta della stampante {name} ({model}) dall'account" @@ -439,7 +429,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tutti i file (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Tutti i tipi supportati ({0})" @@ -532,7 +521,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Sei sicuro di voler spostare %1 all’inizio della coda?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Rimuovere temporaneamente {printer_name}?" @@ -545,7 +533,6 @@ 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!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Rimuovere {0}? Questa operazione non può essere annullata!" @@ -710,12 +697,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Non è possibile effettuare la connessione alla stampante UltiMaker?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Impossibile importare il profilo da {0} prima di aggiungere una stampante." -#, 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}" @@ -797,12 +782,7 @@ msgid "Checks models and print configuration for possible printing issues and gi msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti." msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Scegliere tra le tecniche disponibili per generare il supporto. Il supporto \"normale\" crea una struttura di supporto direttamente sotto le parti di sbalzo e rilascia tali aree direttamente al di sotto. La struttura \"ad albero\" crea delle ramificazioni verso le aree di sbalzo che supportano il modello sulle punte di tali ramificazioni consentendo a queste ultime di avanzare intorno al modello per supportarlo il più possibile dal piano di stampa." msgctxt "@action:inmenu menubar:edit" @@ -841,10 +821,6 @@ msgctxt "@label" msgid "Color scheme" msgstr "Schema colori" -msgctxt "@label" -msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." -msgstr "Combinazione sconsigliata. Monta il BB core nello slot 1 (a sinistra) per una maggiore affidabilità." - msgctxt "@info" msgid "Compare and save." msgstr "Confronta e risparmia." @@ -1009,7 +985,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Impossibile creare un archivio dalla directory dei dati utente: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Impossibile trovare un nome file durante il tentativo di scrittura su {device}." @@ -1038,12 +1013,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Impossibile salvare archivio materiali in {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Impossibile salvare {0}: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Impossibile salvare su unità rimovibile {0}: {1}" @@ -1052,26 +1025,20 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Impossibile caricare i dati sulla stampante." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}Autorizzazione mancante per eseguire il processo." +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}" +"Autorizzazione mancante per eseguire il processo." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}Il sistema operativo lo sta bloccando (antivirus?)" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}" +"Il sistema operativo lo sta bloccando (antivirus?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}La risorsa non è temporaneamente disponibile" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "Impossibile avviare EnginePlugin: {self._plugin_id}" +"La risorsa non è temporaneamente disponibile" msgctxt "@title:window" msgid "Crash Report" @@ -1157,16 +1124,14 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Impossibile avviare Cura" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura ha rilevato dei profili di materiale non ancora installati sulla stampante host del gruppo {0}." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "Cura è stato sviluppato da UltiMaker in cooperazione con la comunità.Cura è orgogliosa di utilizzare i seguenti progetti open source:" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura è stato sviluppato da UltiMaker in cooperazione con la comunità." +"Cura è orgogliosa di utilizzare i seguenti progetti open source:" msgctxt "@label" msgid "Cura language" @@ -1180,6 +1145,14 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "Back-end CuraEngine" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plugin CuraEngine per risistemare gradualmente il flusso e limitare balzi a flusso elevato" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Valuta:" @@ -1436,12 +1409,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Rimuovi" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Rimuovi il dispositivo rimovibile {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Espulso {0}. È ora possibile rimuovere in modo sicuro l'unità." @@ -1530,10 +1501,6 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Esporta materiale" -msgctxt "@action:inmenu menubar:help" -msgid "Export Package For Technical Support" -msgstr "" - msgctxt "@title:window" msgid "Export Profile" msgstr "Esporta profilo" @@ -1554,7 +1521,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Esportazione riuscita" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profilo esportato su {0}" @@ -1591,7 +1557,6 @@ msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "Durata del G-code di inizio dell'estrusore" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "Estrusore {0}" @@ -1616,7 +1581,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Impossibile creare archivio di materiali da sincronizzare con le stampanti." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Espulsione non riuscita {0}. È possibile che un altro programma stia utilizzando l’unità." @@ -1625,27 +1589,22 @@ 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" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Impossibile esportare il profilo su {0}: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Impossibile esportare il profilo su {0}: Rilevata anomalia durante scrittura plugin." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Impossibile importare il profilo da {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Impossibile importare il profilo da {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Impossibile importare il profilo da {0}: {1}" @@ -1662,7 +1621,6 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Impossibile salvare archivio materiali" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "Scrittura non riuscita sulla stampante cloud specifica: {0} non è presente nei cluster remoti." @@ -1691,7 +1649,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "File salvato" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Il file {0} non contiene nessun profilo valido." @@ -1915,7 +1872,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Posizionamento nella griglia" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Gruppo #{group_nr}" @@ -2400,10 +2356,6 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Scrittore di File di Stampa Makerbot" -msgctxt "@item:inlistbox" -msgid "Makerbot Sketch Printfile" -msgstr "File di stampa Makerbot Sketch" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter non è riuscito a salvare nel percorso designato." @@ -2646,7 +2598,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Errore di rete" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nuovo firmware %s stabile disponibile" @@ -2659,7 +2610,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Le nuove stampanti UltiMaker possono essere connesse a Digital Factory e monitorate da remoto." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Nuove funzionalità o bug fix potrebbero essere disponibili per {machine_name}. Se non è già stato fatto in precedenza, si consiglia di aggiornare il firmware della stampante alla versione {latest_version}." @@ -2706,7 +2656,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Nessuna stima di costo disponibile" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nessun profilo personalizzato da importare nel file {0}" @@ -2807,6 +2756,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Scostamento Y ugello" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Dimensione ugello" + msgctxt "@label" msgid "Nozzle size" msgstr "Dimensione ugello" @@ -2843,7 +2796,6 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Mostra solo strati superiori" -#, 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}" @@ -3057,12 +3009,11 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Fornire i permessi necessari al momento dell'autorizzazione di questa applicazione." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "Accertarsi che la stampante sia collegata:- Controllare se la stampante è accesa.- Controllare se la stampante è collegata alla rete.- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud." +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Accertarsi che la stampante sia collegata:" +"- Controllare se la stampante è accesa." +"- Controllare se la stampante è collegata alla rete." +"- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud." msgctxt "@text" msgid "Please name your printer" @@ -3089,12 +3040,11 @@ msgid "Please remove the print" msgstr "Rimuovere la stampa" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "Verificare le impostazioni e controllare se i modelli:- Rientrano nel volume di stampa- Sono assegnati a un estrusore abilitato- Non sono tutti impostati come maglie modificatore" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Verificare le impostazioni e controllare se i modelli:" +"- Rientrano nel volume di stampa" +"- Sono assegnati a un estrusore abilitato" +"- Non sono tutti impostati come maglie modificatore" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -3396,7 +3346,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Impostazioni profilo" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Il profilo {0} ha un tipo di file sconosciuto o corrotto." @@ -3421,22 +3370,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Lingua di programmazione" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Il file di progetto {0} contiene un tipo di macchina sconosciuto {1}. Impossibile importare la macchina. Verranno invece importati i modelli." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Il file di progetto {0} è danneggiato: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Il file di progetto {0} è realizzato con profili sconosciuti a questa versione di UltiMaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Il file di progetto {0} è diventato improvvisamente inaccessibile: {1}." @@ -3565,7 +3510,6 @@ msgctxt "@label" msgid "Qt version" msgstr "Versione Qt" -#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Il tipo di qualità '{0}' non è compatibile con la definizione di macchina attiva corrente '{1}'." @@ -3806,12 +3750,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Salva su unità rimovibile" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Salva su unità rimovibile {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Salvato su unità rimovibile {0} come {1}" @@ -3820,7 +3762,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Salvataggio in corso" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Salvataggio su unità rimovibile {0}" @@ -3837,10 +3778,6 @@ msgctxt "@placeholder" msgid "Search" msgstr "Cerca" -msgctxt "@label:textbox" -msgid "Search Printer" -msgstr "Cerca stampante" - msgctxt "@info" msgid "Search in the browser" msgstr "Cerca nel browser" @@ -4073,6 +4010,10 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Mostra documentazione &online" +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Mostra ricerca e riparazione dei guasti online" + msgctxt "@label:checkbox" msgid "Show all" msgstr "Mostra tutto" @@ -4198,11 +4139,9 @@ msgid "Solid view" msgstr "Visualizzazione compatta" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.Fare clic per rendere visibili queste impostazioni." +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato." +"Fare clic per rendere visibili queste impostazioni." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -4217,11 +4156,9 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Alcuni valori delle impostazioni definiti in %1 sono stati sovrascritti." msgctxt "@tooltip" -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.Fare clic per aprire la gestione profili." +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo." +"Fare clic per aprire la gestione profili." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -4303,7 +4240,6 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Materiale importato correttamente %1" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Profilo {0} importato correttamente." @@ -4510,7 +4446,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Il file {0} esiste già. Sei sicuro di volerlo sovrascrivere?" @@ -4574,15 +4509,11 @@ msgid "The nozzle inserted in this extruder." msgstr "L’ugello inserito in questo estrusore." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "La configurazione del materiale di riempimento della stampa:Per stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine.Per le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale.Per le stampe 3D funzionali che richiedono un'elevata resistenza in più direzioni utilizzare cubico, suddivisione cubica, quarto cubico, ottetto e giroide." +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "La configurazione del materiale di riempimento della stampa:" +"Per stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine." +"Per le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale." +"Per le stampe 3D funzionali che richiedono un'elevata resistenza in più direzioni utilizzare cubico, suddivisione cubica, quarto cubico, ottetto e giroide." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4701,8 +4632,8 @@ msgid "This configuration is not available because %1 is not recognized. Please msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciuto. Visitare %2 per scaricare il profilo materiale corretto." msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" -msgstr "Questo è un file di progetto di Cura Universal. Desideri aprirlo come Cura Universal Project o importarne i modelli?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Questo è un file del Progetto Universale Cura. Si desidera aprirlo come progetto Cura o Progetto Universale Cura o importare i modelli da esso?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4738,7 +4669,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Questa stampante comanda un gruppo di %1 stampanti." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Questo profilo {0} contiene dati errati, impossibile importarlo." @@ -4752,11 +4682,9 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Questo progetto contiene materiali o plugin attualmente non installati in Cura.
    Installa i pacchetti mancanti e riapri il progetto." msgctxt "@label" -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.Fare clic per ripristinare il valore del profilo." +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Questa impostazione ha un valore diverso dal profilo." +"Fare clic per ripristinare il valore del profilo." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4773,11 +4701,9 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori." msgctxt "@label" -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.Fare clic per ripristinare il valore calcolato." +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto." +"Fare clic per ripristinare il valore calcolato." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4811,7 +4737,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Per sincronizzare automaticamente i profili del materiale con tutte le stampanti collegate a Digital Factory è necessario aver effettuato l'accesso a Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Per stabilire una connessione, visitare {website_link}" @@ -4824,7 +4749,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Per stampare direttamente sulla stampante in rete, verificare che la stampante desiderata sia collegata alla rete mediante un cavo di rete o mediante collegamento alla rete WIFI. Se non si esegue il collegamento di Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Per rimuovere definitivamente {printer_name}, visitare {digital_factory_link}" @@ -4969,17 +4893,14 @@ 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" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Impossibile trovare il server EnginePlugin locale eseguibile per: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "Impossibile interrompere l'esecuzione di EnginePlugin: {self._plugin_id}Accesso negato." +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "Impossibile interrompere l'esecuzione di EnginePlugin: {self._plugin_id}" +"Accesso negato." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4989,14 +4910,6 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "Impossibile leggere il file di dati di esempio." -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" - -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" - msgctxt "@info:title" msgid "Unable to slice" msgstr "Sezionamento impossibile" @@ -5009,12 +4922,10 @@ 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." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Impossibile effettuare il sezionamento in quanto vi sono oggetti associati a Extruder %s disabilitato." -#, 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}" @@ -5023,7 +4934,6 @@ 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." -#, 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}" @@ -5032,7 +4942,6 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Impossibile avviare un nuovo processo di accesso. Verificare se è ancora attivo un altro tentativo di accesso." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "Non è possibile scrivere sul file: {0}" @@ -5085,7 +4994,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Pacchetto sconosciuto" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Codice di errore sconosciuto durante il caricamento del processo di stampa: {0}" @@ -5258,10 +5166,6 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "Aggiorna le configurazioni da Cura 5.6 a Cura 5.7." -msgctxt "description" -msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" - msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Carica il firmware personalizzato" @@ -5406,10 +5310,6 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "Aggiornamento della versione 5.6 a 5.7" -msgctxt "name" -msgid "Version Upgrade 5.8 to 5.9" -msgstr "" - msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Visualizza le stampanti in Digital Factory" @@ -5462,7 +5362,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Avvertenza" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Avvertenza: il profilo non è visibile in quanto il tipo di qualità '{0}' non è disponibile per la configurazione corrente. Passare alla combinazione materiale/ugello che consente di utilizzare questo tipo di qualità." @@ -5584,31 +5483,20 @@ msgid "Yes" msgstr "Sì" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. Continuare?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. " +"Continuare?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\n" -"Continuare?" -msgstr[1] "" -"Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\n" -"Continuare?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\nContinuare?" +msgstr[1] "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\nContinuare?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Si sta tentando di connettersi a una stampante che non esegue Ultimaker Connect. Aggiornare la stampante con il firmware più recente." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Tentativo di connessione a {0} in corso, che non è l'host di un gruppo. È possibile visitare la pagina web per configurarla come host del gruppo." @@ -5619,7 +5507,9 @@ msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Alcune impostazioni di profilo sono state personalizzate.Mantenere queste impostazioni modificate dopo il cambio dei profili?In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'." +msgstr "Alcune impostazioni di profilo sono state personalizzate." +"Mantenere queste impostazioni modificate dopo il cambio dei profili?" +"In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -5649,12 +5539,10 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "La nuova stampante apparirà automaticamente in Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Impossibile connettere la stampante {printer_name} tramite cloud. Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando la stampante a Digital Factory" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Impossibile connettere la stampante {printer_name} tramite cloud." +" Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando la stampante a Digital Factory" msgctxt "@label" msgid "Z" @@ -5716,7 +5604,6 @@ msgctxt "@label" msgid "version: %1" msgstr "versione: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} sarà rimossa fino alla prossima sincronizzazione account." @@ -5725,18 +5612,38 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Impossibile scaricare i plugin {}" -#~ msgctxt "description" -#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -#~ msgstr "Plugin CuraEngine per risistemare gradualmente il flusso e limitare balzi a flusso elevato" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Combinazione sconsigliata. Monta il BB core nello slot 1 (a sinistra) per una maggiore affidabilità." + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "File di stampa Makerbot Sketch" + +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Cerca stampante" -#~ msgctxt "name" -#~ msgid "CuraEngineGradualFlow" -#~ msgstr "CuraEngineGradualFlow" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Questo è un file di progetto di Cura Universal. Desideri aprirlo come Cura Universal Project o importarne i modelli?" -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting" -#~ msgstr "Mostra ricerca e riparazione dei guasti online" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Esportare il pacchetto per l'assistenza tecnica" -#~ msgctxt "@text:window" -#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -#~ msgstr "Questo è un file del Progetto Universale Cura. Si desidera aprirlo come progetto Cura o Progetto Universale Cura o importare i modelli da esso?" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Impossibile inviare i dati del modello al motore. Riprovare o contattare l'assistenza." + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Impossibile inviare i dati del modello al motore. Provare a utilizzare un modello meno dettagliato o a ridurre il numero di istanze." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Aggiorna le configurazioni da Cura 5.8 a Cura 5.9." + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Aggiornamento della versione 5.8 alla 5.9" diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index 33f025b25e6..0e73950b987 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -1,9 +1,8 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -83,15 +82,15 @@ msgstr "Durata del G-code di inizio dell'estrusore" msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" -msgstr "Posizione assoluta avvio estrusore" +msgstr "Assoluto posizione avvio estrusore" msgctxt "machine_extruder_start_pos_x label" msgid "Extruder Start Position X" -msgstr "Posizione X avvio estrusore" +msgstr "X posizione avvio estrusore" msgctxt "machine_extruder_start_pos_y label" msgid "Extruder Start Position Y" -msgstr "Posizione Y avvio estrusore" +msgstr "Y posizione avvio estrusore" msgctxt "machine_settings label" msgid "Machine" @@ -99,7 +98,7 @@ msgstr "Macchina" msgctxt "machine_settings description" msgid "Machine specific settings" -msgstr "Impostazioni specifiche della macchina" +msgstr "Impostazioni macchina specifiche" msgctxt "machine_extruder_end_pos_abs description" msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." @@ -125,10 +124,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID ugello" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Offset X ugello" @@ -157,10 +152,6 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Treno estrusore utilizzato per la stampa. Utilizzato nell’estrusione multipla." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." @@ -204,3 +195,11 @@ msgstr "La coordinata y dell’offset dell’ugello." msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "La coordinata y della posizione di partenza all’accensione dell’estrusore." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Lunghezza ugello" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "La differenza di altezza tra la punta dell'ugello e la parte più bassa della testina di stampa." diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 8e601b43387..fdf1dd72cd0 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -94,7 +94,7 @@ msgstr "Gli strati adattivi calcolano l’altezza degli strati in base alla form msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "Aggiunge linee supplementari nel modello di riempimento per supportare gli strati sovrastanti. Questa opzione impedisce la formazione di vuoti o bolle di plastica che a volte compaiono nei modelli più complessi a causa del fatto che il riempimento sottostante non supporta correttamente lo strato stampato al di sopra.'Pareti' supporta solo i margini dello strato, mentre 'Pareti e linee' supporta anche le estremità delle file che compongono lo strato." msgctxt "infill_wall_line_count description" msgid "" @@ -444,11 +444,11 @@ msgstr "Larghezza del brim" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "Velocità della ventola di costruzione per altezza " msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "Velocità della ventola di costruzione per strato" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" @@ -492,7 +492,7 @@ msgstr "Avviso sulla temperatura del volume di costruzione" msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "Numero ventola volume di stampa" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -732,11 +732,11 @@ msgstr "Rileva i ponti e modifica la velocità di stampa, il flusso e le imposta msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "Determina la lunghezza di ciascun passo nella modifica del flusso durante l'estrusione lungo la cucitura a sciarpa. Una distanza minore determina un codice G più preciso ma anche più complesso." msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "Determina la lunghezza della cucitura a sciarpa, un tipo di cucitura che dovrebbe rendere la cucitura Z meno visibile. Deve essere superiore a 0 per essere efficace." msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." @@ -1028,7 +1028,7 @@ msgstr "Questa funzione tenta di 'ricucire' i fori aperti nella maglia chiudendo msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "Linee di rinforzo extra per sostenere gli strati superiori" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" @@ -1042,6 +1042,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Materiale extra per l'innesco dopo il cambio dell'ugello." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Posizione X innesco estrusore" @@ -2438,7 +2442,7 @@ msgstr "Nessuno" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "Nessuno" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2484,6 +2488,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID ugello" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Dimensione ugello" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello" @@ -2614,15 +2622,15 @@ msgstr "Accelerazione parete esterna" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "Accelerazione parete esterna" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "Decelerazione parete esterna" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "Rapporto di velocità finale parete esterna" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" @@ -2650,11 +2658,11 @@ msgstr "Velocità di stampa della parete esterna" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "Velocità distanza di divisione della parete esterna" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "Rapporto di velocità iniziale parete esterna" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" @@ -2792,6 +2800,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Accelerazione di stampa" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Jerk stampa" @@ -3298,15 +3310,15 @@ msgstr "Fattore di scala per la compensazione della contrazione" msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "Lunghezza cucitura a sciarpa" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "Altezza iniziale cucitura a sciarpa" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "Lunghezza passo cucitura a sciarpa" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -4366,7 +4378,7 @@ msgstr "Altezza sopra le parti orizzontali del modello che stampano lo stampo." msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "L'altezza alla quale le ventole girano a velocità regolare. Nei livelli sottostanti la velocità delle ventole aumenta gradualmente da Velocità iniziale della ventola a Velocità regolare della ventola." msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4476,7 +4488,7 @@ msgstr "Larghezza massima delle aree di rivestimento superiore che è possibile msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "Lo strato a cui le ventole di costruzione girano alla massima velocità. Questo valore viene calcolato e arrotondato a un numero intero." msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4764,7 +4776,7 @@ msgstr "Corrisponde al numero di linee utilizzate per il brim del supporto. Più msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "Il numero della ventola che raffredda il volume di stampa. Se è impostato su 0, significa che non è presente alcuna ventola per il volume di stampa." msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4860,7 +4872,7 @@ msgstr "Indica il cambio della velocità istantanea massima dello strato inizial msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "Il rapporto tra l'altezza dello strato selezionato e l'inizio della cucitura a sciarpa. Un numero più basso comporta un'altezza di cucitura maggiore. Per essere efficace, deve essere inferiore a 100." msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -5192,23 +5204,23 @@ msgstr "Questo comanda la distanza che l’estrusore deve percorrere in coasting msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "Si tratta dell'accelerazione con cui si raggiunge la velocità massima quando si stampa una parete esterna." msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "Si tratta della decelerazione con cui terminare la stampa di una parete esterna." msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "È la lunghezza massima di un percorso di estrusione se si divide un percorso più lungo per poter utilizzare l'accelerazione/decelerazione della parete esterna. Una distanza minore crea un codice G più preciso ma anche più laborioso." msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "Si tratta del rapporto della velocità massima con cui terminare la stampa di una parete esterna." msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "Questo è il rapporto della velocità massima da cui partire quando si stampa una parete esterna." msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5592,15 +5604,15 @@ msgstr "Pareti" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "Solo pareti" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "Pareti e linee" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "Le pareti che sporgono più di questo angolo verranno stampate utilizzando le impostazioni per le pareti sporgenti. Con un valore di 90, nessun muro verrà considerato come sporgente. Anche le sporgenze sostenute da un supporto non verranno trattate come tali. Infine, qualsiasi linea che sia meno della metà della sporgenza non verrà gestita come tale." msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index 9fc29bbf89c..8c56b50aa03 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 14:27+0200\n" -"PO-Revision-Date: 2024-08-04 04:18+0000\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: 2024-10-30 02:53+0000\n" "Last-Translator: h1data \n" "Language-Team: Japanese \n" "Language: ja_JP\n" @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -93,7 +92,7 @@ msgstr "モデルを複製(&M)..." msgctxt "@action:inmenu menubar:file" msgid "&New Project..." -msgstr "新しいプロジェクト(&N)..." +msgstr "新規プロジェクト(&N)..." msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." @@ -140,10 +139,7 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*これらの変更を有効にするには、アプリケーションを再起動する必要があります。" msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" msgstr "" "- マーケットプレイスから材料プロファイルとプラグインを追加\n" "- 材料プロファイルとプラグインのバックアップと同期\n" @@ -201,44 +197,36 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "ユーザーが変更した設定のみがカスタムプロファイルに保存されます。
    その設定に対応する材料の場合、新しいカスタムプロファイルは %1からプロパティを継承します。" -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGLレンダラー: {renderer}
  • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGLベンダー: {vendor}
  • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGLバージョン: {version}
  • " msgctxt "@label crash message" -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" -" " +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" +"

    「レポート送信」ボタンを使用すると、バグレポートが自動的に当社サーバーに送信されます/p>\n" +" " msgctxt "@label crash message" -msgid "" -"

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

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" -" " +msgid "

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

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    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" +" " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

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

    \n" -"

    {model_names}

    \n" -"

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

    \n" -"

    View print quality guide

    " +msgid "

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

    \n

    {model_names}

    \n

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

    \n

    View print quality guide

    " msgstr "" "

    モデルのサイズおよび材料の構成により、いくつかの3Dモデルの印刷は最適化されません。:

    \n" "

    {model_names}

    \n" @@ -388,7 +376,7 @@ msgstr "プリンターを追加" msgctxt "@label" msgid "Add printer" -msgstr "プリンターの追加" +msgstr "プリンターを追加" msgctxt "@label" msgid "Add printer by IP" @@ -402,7 +390,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "手動でプリンタを追加" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "アカウントからプリンター{name}({model})を追加しています" @@ -443,7 +430,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "全てのファイル (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "サポートされたすべてのタイプ ({0})" @@ -518,7 +504,7 @@ msgstr "%1 を中止してよろしいですか?" msgctxt "@label" msgid "Are you sure you want to abort the print?" -msgstr "本当にプリントを中止してもいいですか?" +msgstr "本当にプリントを中止してもよろしいですか?" msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to delete %1?" @@ -536,7 +522,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "%1 をキューの最上位に移動しますか?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "{printer_name}を一時的に削除してもよろしいですか?" @@ -549,7 +534,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "%1を取り外しますか?この操作は取り消しできません。" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "{0}を取り除いてもよろしいですか?この操作は元に戻せません。" @@ -714,12 +698,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "UltiMakerプリンターに接続できませんか?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "プリンタを追加する前に、{0}からプロファイルのインポートはできません。" -#, 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}の取り込みをスキップしました。" @@ -801,12 +783,7 @@ msgid "Checks models and print configuration for possible printing issues and gi msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "" "サポート生成に利用する方式を選択します。\n" "\n" @@ -850,10 +827,6 @@ msgctxt "@label" msgid "Color scheme" msgstr "カラースキーム" -msgctxt "@label" -msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." -msgstr "組み合わせは推奨されません。信頼性を高めるため、BBコアをスロット1(左)に装填してください。" - msgctxt "@info" msgid "Compare and save." msgstr "変更を比較して保存します。" @@ -940,7 +913,7 @@ msgstr "直径変更の確認" msgctxt "@title:window" msgid "Confirm Remove" -msgstr "モデルを取り除きました" +msgstr "モデルを削除しました" msgctxt "@action:button" msgid "Connect" @@ -1018,7 +991,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "デバイス{device}に書き出すためのファイル名が見つかりませんでした。" @@ -1047,12 +1019,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "材料アーカイブを{}に保存できませんでした:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "{0}を保存できませんでした: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "リムーバブルドライブ{0}に保存することができませんでした: {1}" @@ -1061,29 +1031,20 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "データをプリンタにアップロードできませんでした。" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." msgstr "" "EnginePluginを開始できませんでした:{self._plugin_id}\n" "処理を実行する権限がありません。" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" msgstr "" "EnginePluginを開始できませんでした:{self._plugin_id}\n" "OSによりブロックされています(ウイルス対策?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" msgstr "" "EnginePluginを開始できませんでした:{self._plugin_id}\n" "リソースは一時的に利用できません" @@ -1122,7 +1083,7 @@ msgstr "新規作成" msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" -msgstr "現在の設定/上書き値から新しいプロファイルを作成します" +msgstr "現在の設定と上書きされた値から新しいプロファイルを作成します" msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." @@ -1172,15 +1133,12 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Curaを開始できません" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Curaはグループ{0}のホストプリンターにまだインストールされていない材料プロフィールを検出しました。" msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" msgstr "" "CuraはUltiMakerおよびコミュニティの協力によって開発されています。\n" "Curaは以下の素晴らしいオープンソースプロジェクトを使用しています:" @@ -1197,6 +1155,14 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "Curaエンジンバックエンド" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "フローを段階的に滑らかにして高フローのジャンプを制限するためのCuraEngineプラグイン" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "通貨:" @@ -1453,12 +1419,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "取り出す" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "リムーバブルデバイス{0}を取り出す" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0}取り出し完了。デバイスを安全に取り外せます。" @@ -1547,10 +1511,6 @@ msgctxt "@title:window" msgid "Export Material" msgstr "材料をエクスポート" -msgctxt "@action:inmenu menubar:help" -msgid "Export Package For Technical Support" -msgstr "" - msgctxt "@title:window" msgid "Export Profile" msgstr "プロファイルを書き出す" @@ -1571,7 +1531,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "書き出し完了" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "{0}にプロファイルを書き出しました" @@ -1608,7 +1567,6 @@ msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "エクストルーダー開始Gコードの時間" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "エクストルーダー {0}" @@ -1633,7 +1591,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "プリンターと同期する際、材料アーカイブの作成に失敗しました。" -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "{0}取り出し失敗。他のプログラムがデバイスを使用しているため。" @@ -1642,27 +1599,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "材料のエクスポートに失敗しました %1: %2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "{0}にプロファイルを書き出すのに失敗しました: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "{0}にプロファイルを書き出すことに失敗しました。:ライタープラグイン失敗の報告。" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0}からプロファイルのインポートに失敗しました:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0}からプロファイルのインポートに失敗しました:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0}からプロファイルのインポートに失敗しました:{1}" @@ -1679,7 +1631,6 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "材料アーカイブの保存に失敗しました" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "特定のクラウドプリンタへの書き込みに失敗しました:{0} はリモートクラスタにありません。" @@ -1708,7 +1659,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "ファイル保存完了" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "ファイル{0}には、正しいプロファイルが含まれていません。" @@ -1823,7 +1773,7 @@ msgstr "リトフェインの場合、暗いピクセルは、より多くの光 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" -msgstr "レイヤービュー互換モードを強制。(再起動が必要)" +msgstr "レイヤービュー互換モードを強制(再起動が必要)" msgid "FreeCAD trackpad" msgstr "FreeCADトラックパッド" @@ -1932,7 +1882,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "格子状に配置" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "グループ #{group_nr}" @@ -2417,10 +2366,6 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Makerbotプリントファイルライター" -msgctxt "@item:inlistbox" -msgid "Makerbot Sketch Printfile" -msgstr "Makerbotスケッチ プリントファイル" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriterが指定されたパスに保存できませんでした。" @@ -2662,7 +2607,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "ネットワークエラー" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "%sの新しい安定版ファームウェアが利用可能です" @@ -2675,7 +2619,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "新しいUltiMakerプリンターは、Digital Factoryに接続してリモートで監視できます。" -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "お使いの{machine_name}について新機能またはバグ修正が利用できる可能性があります。まだ最新のバージョンでない場合は、プリンターのファームウェアをバージョン{latest_version}に更新することを推奨します。" @@ -2721,7 +2664,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "コスト予測がありません" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "ファイル{0}にはカスタムプロファイルがインポートされていません" @@ -2822,6 +2764,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "ノズルオフセットY" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "ノズルサイズ" + msgctxt "@label" msgid "Nozzle size" msgstr "ノズルサイズ" @@ -2858,14 +2804,13 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "トップのレイヤーを表示する" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "G-codeは一度に1つしか読み込めません。{0}の取り込みをスキップしました。" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "申し訳ありません。スライス処理中に予期せぬエラーが発生しました。設定でデータ共有を無効にしていない場合は、クラッシュログを自動的に受信し分析を行います。また、Issue trackerでプロジェクトの詳細を共有いただけると助かります。" +msgstr "申し訳ありません。スライス処理中に予期せぬエラーが発生しました。環境設定でデータ共有を無効にしていない場合は、クラッシュログを自動的に受信し分析を行います。また、Issue trackerでプロジェクトの詳細を共有いただけると助かります。" msgctxt "@action:button" msgid "Open" @@ -2985,7 +2930,7 @@ msgstr[0] "%1個の設定を上書きします。" msgctxt "@title:menu menubar:toplevel" msgid "P&references" -msgstr "プレファレンス(&R)" +msgstr "環境設定(&R)" msgctxt "@item:inlistbox" msgid "PNG Image" @@ -3071,11 +3016,7 @@ msgid "Please give the required permissions when authorizing this application." msgstr "このアプリケーションの許可において必要な権限を与えてください。" msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." msgstr "" "プリンタが接続されているか、以下を確認してください:\n" "- プリンタの電源が入っていること。\n" @@ -3107,11 +3048,7 @@ msgid "Please remove the print" msgstr "造形物を取り出してください" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" msgstr "" "設定を見直し、モデルが次の状態かどうかを確認してください。\n" "- 造形サイズに合っている\n" @@ -3416,7 +3353,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "プロファイル設定" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "プロファイル{0}に不明な種別または破損したファイルがあります。" @@ -3441,22 +3377,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "プログラミング言語" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "プロジェクトファイル {0} に不明なマシンタイプ {1} があります。マシンをインポートできません。代わりにモデルをインポートします。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "プロジェクトファイル{0}は破損しています:{1}。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "プロジェクトファイル{0}はこのバージョンのUltiMaker Curaでは認識できないプロファイルを使用して作成されています。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "プロジェクトファイル{0}が突然アクセスできなくなりました:{1}。" @@ -3499,7 +3431,7 @@ msgstr "UltiMakerのプリンターのアクションを提供します。(ベ msgctxt "description" msgid "Provides removable drive hotplugging and writing support." -msgstr "取り外し可能なドライブホットプラギングおよび書き出しのサポートを提供。" +msgstr "取り外し可能なドライブホットプラギングおよび書き出しのサポートを提供します。" msgctxt "description" msgid "Provides support for exporting Cura profiles." @@ -3585,7 +3517,6 @@ msgctxt "@label" msgid "Qt version" msgstr "Qtバージョン" -#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "クオリティータイプ「{0}」は、現在アクティブなプリンター定義「{1}」と互換性がありません。" @@ -3826,12 +3757,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "リムーバブルドライブに保存" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "リムーバブルドライブ{0}に {1}として保存" @@ -3840,7 +3769,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "保存中" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存中" @@ -3857,10 +3785,6 @@ msgctxt "@placeholder" msgid "Search" msgstr "検索" -msgctxt "@label:textbox" -msgid "Search Printer" -msgstr "プリンターを検索" - msgctxt "@info" msgid "Search in the browser" msgstr "ブラウザで検索" @@ -3955,7 +3879,7 @@ msgstr "監視ロガー" msgctxt "@label Description for application dependency" msgid "Serial communication library" -msgstr "シリアル通信ンライブラリー" +msgstr "シリアル通信ライブラリー" msgctxt "@action:inmenu" msgid "Set as Active Extruder" @@ -3971,7 +3895,7 @@ msgstr "表示項目設定" msgctxt "@info:progress" msgid "Setting up preferences..." -msgstr "プレファレンスをセットアップ中..." +msgstr "環境設定をセットアップ中..." msgctxt "@info:progress" msgid "Setting up scene..." @@ -4093,6 +4017,10 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "オンラインドキュメントを表示(&D)" +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "オンライントラブルシューティングを表示" + msgctxt "@label:checkbox" msgid "Show all" msgstr "すべて表示する" @@ -4218,10 +4146,7 @@ msgid "Solid view" msgstr "ソリッドビュー" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." msgstr "" "いくつかの非表示設定が通常の計算結果と異なる値となっています。\n" "\n" @@ -4240,10 +4165,7 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "%1で定義された一部の設定値が上書きされました。" msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." msgstr "" "いくつかの設定/上書きされた値はプロファイルに保存された値と異なります。\n" "\n" @@ -4319,7 +4241,7 @@ msgstr "強度" msgctxt "description" msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "匿名のスライス情報を登録します。設定により無効になる可能性があります。" +msgstr "匿名のスライス情報を登録します。環境設定により無効になる場合があります。" msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" @@ -4329,7 +4251,6 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "材料を%1からインポートしました" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "プロファイル{0}の取り込みが完了しました。" @@ -4535,7 +4456,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "{0} は既に存在します。ファイルを上書きしますか?" @@ -4598,14 +4518,7 @@ msgid "The nozzle inserted in this extruder." msgstr "ノズルが入ったエクストルーダー。" msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." msgstr "" "プリントのインフィル材料のパターン:\n" "\n" @@ -4732,8 +4645,8 @@ msgid "This configuration is not available because %1 is not recognized. Please msgstr "%1 が認識されていないためこの構成は利用できません。%2 から適切な材料プロファイルをダウンロードしてください。" msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" -msgstr "これはCura Universal Projectファイルです。Cura Universal Projectとして開きますか?それともそこからモデルをインポートしますか?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "これはCura Universal Projectファイルです。Cura ProjectまたはCura Universal Projectとして開きますか?それともそこからモデルをインポートしますか?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4768,7 +4681,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "このプリンターは %1 プリンターのループのホストプリンターです。" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "このプロファイル{0}には、正しくないデータが含まれているため、インポートできません。" @@ -4782,10 +4694,7 @@ msgid "This project contains materials or plugins that are currently not install msgstr "このプロジェクトには、現在Curaにインストールされていない材料またはプラグインが含まれています。
    不足しているパッケージをインストールすると、プロジェクトが再度開きます。" msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." msgstr "" "設定された値がプロファイルと異なります。\n" "\n" @@ -4805,10 +4714,7 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。" msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." msgstr "" "この設定は通常の場合計算されますが、現状は絶対値に固定されています。\n" "\n" @@ -4846,7 +4752,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "材料プロファイルをDigital Factoryに接続されているすべてのプリンターと自動的に同期するには、Curaにサインインしている必要があります。" -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "接続を確立するには、{website_link}にアクセスしてください" @@ -4859,7 +4764,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "印刷ジョブをネットワーク上のプリンターに直接送信するため、ネットワークケーブルを使用してプリンターを確実にネットワークに接続するか、プリンターをWiFiネットワークに接続されていることを確認してください。Curaをプリンタに接続していない場合でも、USBドライブを使用してg-codeファイルをプリンターに転送することができます。" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "{printer_name}を完全に削除するには、{digital_factory_link}にアクセスしてください" @@ -5004,16 +4908,12 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "全ての造形物の造形サイズに対し、適切な位置が確認できません" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "以下のローカルEnginePluginサーバーの実行可能ファイルが見つかりません:{self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." msgstr "" "実行中のEnginePluginを強制終了できません: {self._plugin_id}\n" "アクセスが拒否されました。" @@ -5026,14 +4926,6 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "サンプルのデータファイルを読み取ることができません。" -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" - -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" - msgctxt "@info:title" msgid "Unable to slice" msgstr "スライスできません" @@ -5046,12 +4938,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。" -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "無効なエクストルーダー %s に関連付けられている造形物があるため、スライスできません。" -#, 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}" @@ -5060,7 +4950,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。" -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}" @@ -5069,7 +4958,6 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "新しいサインインプロセスを開始できません。別のサインインの試行がアクティブなままになっていないか確認します。" -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "ファイルに書き込めません:{0}" @@ -5122,7 +5010,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "不明なパッケージ" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "プリントジョブのアップロード時の不明なエラーコード:{0}" @@ -5189,115 +5076,111 @@ msgstr "更新中..." msgctxt "description" msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "コンフィグレーションをCura 2.1 からCura 2.2へアップグレード。" +msgstr "Cura 2.1 からCura 2.2に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "コンフィグレーションをCura 2.2からCura 2.4へアップグレード。" +msgstr "Cura 2.2 からCura 2.4に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "コンフィグレーションをCura 2.5 からCura 2.6へアップグレード。" +msgstr "Cura 2.5 からCura 2.6に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "コンフィグレーションをCura 2.6からCura 2.7へアップグレード。" +msgstr "Cura 2.6 からCura 2.7に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "コンフィグレーションCura 2.7からCura 3.0へアップグレード。" +msgstr "Cura 2.7からCura 3.0に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" +msgstr "Cura 3.0からCura 3.1に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "コンフィグレーションをCura 3.2からCura 3.3へアップグレード。" +msgstr "Cura 3.2からCura 3.3に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "コンフィグレーションをCura 3.3からCura 3.4へアップグレード。" +msgstr "Cura 3.3からCura 3.4に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "コンフィグレーションをCura 3.4からCura 3.5へアップグレード。" +msgstr "Cura 3.4 から Cura 3.5 に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "コンフィグレーションをCura 3.5からCura 4.0へアップグレード。" +msgstr "Cura 3.5からCura 4.0に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "コンフィグレーションをCura 4.0からCura 4.1へアップグレード。" +msgstr "Cura 4.0 から Cura 4.1 に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "コンフィギュレーションをCura 4.1からCura 4.2へアップグレード。" +msgstr "Cura 4.1からCura 4.2に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。" +msgstr "Cura 4.11からCura 4.12に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Cura 4.13からCura 5.0に設定をアップグレードします。" +msgstr "Cura 4.13からCura 5.0に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。" +msgstr "Cura 4.2からCura 4.3に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "コンフィグレーションをCura 4.3からCura 4.4へアップグレード。" +msgstr "Cura 4.3からCura 4.4に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" +msgstr "Cura 4.4からCura 4.5に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" +msgstr "Cura 4.5からCura 4.6に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" +msgstr "Cura 4.6.0からCura 4.6.2に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "構成をCura 4.6.2からCura 4.7に更新します。" +msgstr "Cura 4.6.2からCura 4.7に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "設定をCura 4.7からCura 4.8へアップグレード。" +msgstr "Cura 4.7からCura 4.8に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" +msgstr "Cura 4.8からCura 4.9に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Cura 4.9からCura 4.10に設定をアップグレードします。" +msgstr "Cura 4.9からCura 4.10に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "コンフィグレーションをCura 5.2からCura 5.3へアップグレード。" +msgstr "Cura 5.2からCura 5.3に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "コンフィグレーションをCura 3.4からCura 3.5へアップグレード。" +msgstr "Cura 5.3からCura 5.4に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "構成をCura 5.4からCura 5.5にアップグレードします。" +msgstr "Cura 5.4からCura 5.5に構成をアップグレードします。" msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "構成をCura 5.6からCura 5.7にアップグレードします。" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" +msgstr "Cura 5.6からCura 5.7に構成をアップグレードします。" msgctxt "@action:button" msgid "Upload custom Firmware" @@ -5337,51 +5220,51 @@ msgstr "値" msgctxt "name" msgid "Version Upgrade 2.1 to 2.2" -msgstr "バージョンを2.1 から2.2へアップグレード" +msgstr "バージョン2.1 から2.2へのアップグレード" msgctxt "name" msgid "Version Upgrade 2.2 to 2.4" -msgstr "バージョンを2.2 から2.4へアップグレード" +msgstr "バージョン2.2 から2.4へのアップグレード" msgctxt "name" msgid "Version Upgrade 2.5 to 2.6" -msgstr "バージョンを2.5から2.6へアップグレード" +msgstr "バージョン2.5から2.6へのアップグレード" msgctxt "name" msgid "Version Upgrade 2.6 to 2.7" -msgstr "バージョンを2.6から2.7へアップグレード" +msgstr "バージョン2.6から2.7へのアップグレード" msgctxt "name" msgid "Version Upgrade 2.7 to 3.0" -msgstr "バージョンを2.7から3.0へアップグレード" +msgstr "バージョン2.7から3.0へのアップグレード" msgctxt "name" msgid "Version Upgrade 3.0 to 3.1" -msgstr "バージョンを3.0から3.1へアップグレード" +msgstr "バージョン3.0から3.1へのアップグレード" msgctxt "name" msgid "Version Upgrade 3.2 to 3.3" -msgstr "バージョンを3.2から3.3へアップグレード" +msgstr "バージョン3.2から3.3へのアップグレード" msgctxt "name" msgid "Version Upgrade 3.3 to 3.4" -msgstr "バージョンを3.3から3.4へアップグレード" +msgstr "バージョン3.3から3.4へのアップグレード" msgctxt "name" msgid "Version Upgrade 3.4 to 3.5" -msgstr "バージョンを3.4から3.5へアップグレード" +msgstr "バージョン3.4 から 3.5へのアップグレード" msgctxt "name" msgid "Version Upgrade 3.5 to 4.0" -msgstr "バージョンを3.5から4.0へアップグレード" +msgstr "バージョン3.5 から 4.0へのアップグレード" msgctxt "name" msgid "Version Upgrade 4.0 to 4.1" -msgstr "バージョンを4.0から4.1へアップグレード" +msgstr "バージョン4.0 から 4.1 へのアップグレード" msgctxt "name" msgid "Version Upgrade 4.1 to 4.2" -msgstr "バージョンを4.0から4.1へアップグレード" +msgstr "バージョン4.0 から 4.1 へのアップグレード" msgctxt "name" msgid "Version Upgrade 4.11 to 4.12" @@ -5393,15 +5276,15 @@ msgstr "バージョン4.13から5.0へのアップグレード" msgctxt "name" msgid "Version Upgrade 4.2 to 4.3" -msgstr "バージョンを4.2から4.3へアップグレード" +msgstr "バージョン4.2から4.3へのアップグレード" msgctxt "name" msgid "Version Upgrade 4.3 to 4.4" -msgstr "バージョンを4.3から4.4へアップグレード" +msgstr "バージョン4.3から4.4へのアップグレード" msgctxt "name" msgid "Version Upgrade 4.4 to 4.5" -msgstr "バージョンを4.4から4.5へアップグレード" +msgstr "バージョン4.4から4.5へのアップグレード" msgctxt "name" msgid "Version Upgrade 4.5 to 4.6" @@ -5409,11 +5292,11 @@ msgstr "バージョン4.5から4.6へのアップグレード" msgctxt "name" msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0から4.6.2へのバージョン更新" +msgstr "バージョン4.6.0から4.6.2へのアップグレード" msgctxt "name" msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2から4.7へのバージョン更新" +msgstr "バージョン4.6.2から4.7へのアップグレード" msgctxt "name" msgid "Version Upgrade 4.7 to 4.8" @@ -5429,23 +5312,19 @@ msgstr "バージョン4.9から4.10へのアップグレード" msgctxt "name" msgid "Version Upgrade 5.2 to 5.3" -msgstr "バージョンを5.2から5.3へアップグレード" +msgstr "バージョン5.2から5.3へのアップグレード" msgctxt "name" msgid "Version Upgrade 5.3 to 5.4" -msgstr "バージョンを3.4から3.5へアップグレード" +msgstr "バージョン5.3から5.4へのアップグレード" msgctxt "name" msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4から5.5へのバージョンアップ" +msgstr "バージョン5.4から5.5へのアップグレード" msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" -msgstr "5.6から5.7へのバージョンアップ" - -msgctxt "name" -msgid "Version Upgrade 5.8 to 5.9" -msgstr "" +msgstr "バージョン5.6から5.7へのアップグレード" msgctxt "@button" msgid "View printers in Digital Factory" @@ -5499,7 +5378,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "警告" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:現在の構成ではクオリティータイプ「{0}」を使用できないため、プロファイルは表示されません。このクオリティータイプを使用できる材料/ノズルの組み合わせに切り替えてください。" @@ -5621,30 +5499,20 @@ msgid "Yes" msgstr "はい" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr "" "Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n" "続行してもよろしいですか?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n" -"続行してもよろしいですか?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n続行してもよろしいですか?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Ultimaker Connectを実行していないプリンターに接続しようとしています。プリンターを最新のファームウェアに更新してください。" -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "{0}に接続を試みていますが、これはグループのホストではありません。グループホストとして設定するには、ウェブページを参照してください。" @@ -5655,7 +5523,9 @@ msgstr "現在バックアップは存在しません。[今すぐバックア msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "一部のプロファイル設定がカスタマイズされています。これらの変更された設定をプロファイルの切り替え後も維持しますか?変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" +msgstr "一部のプロファイル設定がカスタマイズされています。" +"これらの変更された設定をプロファイルの切り替え後も維持しますか?" +"変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" msgctxt "@label" msgid "You need to accept the license to install the package" @@ -5685,11 +5555,8 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "新しいプリンターがUltiMaker Curaに自動的に表示されます" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgstr "" "プリンター{printer_name}はクラウドを通じて接続可能です。\n" "プリンターをDigital Factoryに接続して、どこからでも印刷のキュー管理や監視を行えます。" @@ -5754,7 +5621,6 @@ msgctxt "@label" msgid "version: %1" msgstr "バージョン: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "次回のアカウントの同期までに{printer_name}は削除されます。" @@ -5763,42 +5629,38 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}プラグインのダウンロードに失敗しました" -#~ msgctxt "@label crash message" -#~ 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" -#~ "

    「レポート送信」ボタンを使用すると、バグレポートが自動的に当社サーバーに送信されます/p>\n" -#~ " " - -#~ msgctxt "@label crash message" -#~ msgid "" -#~ "

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

    \n" -#~ "

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -#~ "

    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" -#~ " " - -#~ msgctxt "description" -#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -#~ msgstr "フローを段階的に滑らかにして高フローのジャンプを制限するためのCuraEngineプラグイン" - -#~ msgctxt "name" -#~ msgid "CuraEngineGradualFlow" -#~ msgstr "CuraEngineGradualFlow" - -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting" -#~ msgstr "オンライントラブルシューティングを表示" - -#~ msgctxt "@text:window" -#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -#~ msgstr "これはCura Universal Projectファイルです。Cura ProjectまたはCura Universal Projectとして開きますか?それともそこからモデルをインポートしますか?" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "組み合わせは推奨されません。信頼性を高めるため、BBコアをスロット1(左)に装填してください。" + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot Sketchプリントファイル" + +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "プリンターを検索" + +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "これはCura Universal Projectファイルです。Cura Universal Projectとして開きますか?それともそこからモデルをインポートしますか?" + +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "技術サポート用にパッケージをエクスポート" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "モデルデータをエンジンに送信できません。もう一度試すか、サポートにお問い合わせください。" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "モデルデータをエンジンに送信できません。詳細度の低いモデルの使用またはインスタンス数の低減をお試しください。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Cura 5.8から Cura 5.9に構成をアップグレードします。" + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "バージョン5.8から5.9へのアップグレード" diff --git a/resources/i18n/ja_JP/fdmextruder.def.json.po b/resources/i18n/ja_JP/fdmextruder.def.json.po index fc5aee3c1da..c132e601c01 100644 --- a/resources/i18n/ja_JP/fdmextruder.def.json.po +++ b/resources/i18n/ja_JP/fdmextruder.def.json.po @@ -1,10 +1,9 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" -"PO-Revision-Date: 2024-08-03 02:34+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"PO-Revision-Date: 2024-10-27 13:25+0000\n" "Last-Translator: h1data \n" "Language-Team: Japanese \n" "Language: ja_JP\n" @@ -15,7 +14,7 @@ msgstr "" msgctxt "platform_adhesion description" msgid "Adhesion" -msgstr "密着性" +msgstr "接着" msgctxt "material_diameter description" msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." @@ -23,7 +22,7 @@ msgstr "使用するフィラメントの太さの調整。この値を使用す msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" +msgstr "ビルドプレートとの接着" msgctxt "material_diameter label" msgid "Diameter" @@ -125,10 +124,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ノズルID" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "ノズルX座標オフセット" @@ -157,10 +152,6 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "印刷に使用するエクストルーダーの列。デュアルノズル印刷時に使用。" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" @@ -204,3 +195,11 @@ msgstr "ノズルのY座標のオフセット。" msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "エクストルーダーをオンにする際の開始位置Y座標。" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "ノズルの長さ" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "ノズル先端とプリントヘッドの最下部との高さの差。" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 111047d1f19..3300e8f66a9 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" -"PO-Revision-Date: 2024-08-03 02:34+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" +"PO-Revision-Date: 2024-10-30 02:17+0000\n" "Last-Translator: h1data \n" "Language-Team: Japanese \n" "Language: ja_JP\n" @@ -46,15 +46,15 @@ msgstr "使用する整数線の方向のリスト。リストの要素は、層 msgctxt "support_bottom_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(境界面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" msgctxt "support_interface_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(境界面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" msgctxt "support_roof_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(境界面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" msgctxt "infill_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." @@ -70,7 +70,7 @@ msgstr "プリントヘッドの領域を持つポリゴンのリストは入力 msgctxt "support_tree_branch_reach_limit description" msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "枝がサポートポイントからどれくらい移動できるかについての推奨値。枝は、目的地(ビルドプレートまたはモデルの平らな部分)に到達するためであればこの値に違反することができます。この値を小さくすることで、サポートをより頑丈にできますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。 " +msgstr "枝がサポートポイントからどれくらい移動できるかについての推奨値。枝は、目的地(ビルドプレートまたはモデルの平らな部分)に到達するためであればこの値に違反することができます。この値を小さくすることで、サポートをより頑丈にできますが、枝の量が増加します。(材料の使用量やプリント時間も増加します) " msgctxt "extruder_prime_pos_abs label" msgid "Absolute Extruder Prime Position" @@ -94,19 +94,19 @@ msgstr "適応レイヤーは、レイヤーの高さをモデルの形状に合 msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "インフィルパターンにラインを追加して、上にあるスキンをサポートします。このオプションは、下のインフィルが上にプリントされるスキンレイヤーを正しくサポートしていないことにより複雑な形状のスキンに時々現れる、穴やプラスチックの塊を防ぎます。「ウォール」はスキンのアウトラインのみをサポートするのに対して、「ウォールとライン」はスキンを構成するラインの端もサポートします。" 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 "" -"インフィル領域の周りに壁を追加します。追加された壁によってトップ/ボトム面の線に生じるたるみを少なくし、トップ/ボトム面の材料を追加した場合と同等の品質で印刷できることになります。\n" +"インフィル領域の周りにウォールを追加します。追加されたウォールによってトップ/ボトム面の線に生じるたるみを少なくし、トップ/ボトム面の材料を追加した場合と同等の品質で印刷できることになります。\n" "この機能はインフィルポリゴン接合と組み合わせて、正しく設定した場合、移動や引き戻しなしに全てのインフィル領域を1つの造形パスにまとめることができます。" msgctxt "platform_adhesion description" msgid "Adhesion" -msgstr "密着性" +msgstr "接着" msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" @@ -114,11 +114,11 @@ msgstr "接着傾向" msgctxt "skin_overlap description" msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "スキンラインのライン幅と壁の最内部に対する割合として、壁とスキンの中央ラインの終端が交差する量を調整します。わずかな交差によって、壁がスキンと堅く接合されます。スキンと壁のライン幅が等しくかつ割合が50%を超えると、スキンが壁を通過している可能性があります。これは、その時点でスキンエクストルーダーのノズル位置が、すでに壁の中央を過ぎている可能性があるためです。" +msgstr "スキンラインのライン幅とウォールの最内部に対する割合として、ウォールとスキンの中央ラインの終端が重なる量を調整します。わずかな重複によって、ウォールがスキンと堅く接合されます。スキンとウォールのライン幅が等しくかつ割合が50%を超えると、スキンがウォールを通過している可能性があります。これは、その時点でスキンエクストルーダーのノズル位置が、すでにウォールの中央を過ぎている可能性があるためです。" msgctxt "skin_overlap_mm description" msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "壁とスキンの中央ラインの終端が交差する量を調整します。わずかな交差によって、壁がスキンと堅く接合されます。スキンと壁のライン幅が等しくかつ割合が50%を超えると、スキンが壁を通過している可能性があります。これは、その時点でスキンエクストルーダーのノズル位置が、すでに壁の中央を過ぎている可能性があるためです。" +msgstr "ウォールとスキンの中央ラインの終端が重なる量を調整します。わずかな交差によって、ウォールがスキンと堅く接合されます。スキンとウォールのライン幅が等しくかつ割合が50%を超えると、スキンがウォールを通過している可能性があります。これは、その時点でスキンエクストルーダーのノズル位置が、すでにウォールの中央を過ぎている可能性があるためです。" msgctxt "infill_sparse_density description" msgid "Adjusts the density of infill of the print." @@ -174,7 +174,7 @@ msgstr "オブジェクトリストを並べ替えて、印刷順序を手動で msgctxt "alternate_extra_perimeter label" msgid "Alternate Extra Wall" -msgstr "代替予備壁" +msgstr "代替の追加ウォール" msgctxt "alternate_carve_order label" msgid "Alternate Mesh Removal" @@ -182,7 +182,7 @@ msgstr "代替メッシュの削除" msgctxt "material_alternate_walls label" msgid "Alternate Wall Directions" -msgstr "ウォールの代替の向き" +msgstr "代替ウォールの向き" msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." @@ -222,11 +222,11 @@ msgstr "サポートのルーフに適用されるオフセット値。" msgctxt "support_interface_offset description" msgid "Amount of offset applied to the support interface polygons." -msgstr "サポートインターフェイスポリゴンに適用されるオフセット値。" +msgstr "サポート境界面ポリゴンに適用されるオフセット値。" msgctxt "wipe_retraction_amount description" msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "拭き取りシーケンス中に出ないように押し戻すフィラメントの量。" +msgstr "拭き取りシーケンス中に出ないように引き戻すフィラメントの量。" msgctxt "sub_div_rad_add description" msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." @@ -250,7 +250,7 @@ msgstr "エクストルーダーのオフセットを座標システムに適用 msgctxt "interlocking_enable description" msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "モデルが接触する箇所に、インターロックビーム構造を生成します。その結果、モデル、特に異なる材料でプリントされたモデル間の密着性が向上します。" +msgstr "モデルが接触する箇所に、インターロックビーム構造を生成します。その結果、モデル、特に異なる材料でプリントされたモデル間の接着が向上します。" msgctxt "travel_avoid_other_parts label" msgid "Avoid Printed Parts When Traveling" @@ -294,7 +294,7 @@ msgstr "底層初期レイヤー" msgctxt "bottom_skin_expand_distance label" msgid "Bottom Skin Expand Distance" -msgstr "底面展開距離" +msgstr "底面拡張距離" msgctxt "bottom_skin_preshrink label" msgid "Bottom Skin Removal Width" @@ -406,15 +406,15 @@ msgstr "ブリッジサードスキンの速度" msgctxt "bridge_wall_coast label" msgid "Bridge Wall Coasting" -msgstr "ブリッジ壁コースティング" +msgstr "ブリッジウォールコースティング" msgctxt "bridge_wall_material_flow label" msgid "Bridge Wall Flow" -msgstr "ブリッジ壁フロー" +msgstr "ブリッジウォールフロー" msgctxt "bridge_wall_speed label" msgid "Bridge Wall Speed" -msgstr "ブリッジ壁速度" +msgstr "ブリッジウォール速度" msgctxt "adhesion_type option brim" msgid "Brim" @@ -446,15 +446,15 @@ msgstr "ブリム幅" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "高さでのビルドファン速度" msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "レイヤーでのビルドファン速度" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" +msgstr "ビルドプレートとの接着" msgctxt "adhesion_extruder_nr label" msgid "Build Plate Adhesion Extruder" @@ -494,7 +494,7 @@ msgstr "ビルドボリューム温度警告" msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "ビルドボリュームファンの数" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -614,7 +614,7 @@ msgstr "サポートライン両端を接続します。この設定を有効に 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 "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。" +msgstr "内側のウォール形状に沿ったラインを使用してインフィルパターンと内側のウォールが合うところで接合します。この設定を有効にすると、インフィルがウォールにより接着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。" msgctxt "connect_skin_polygons description" msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." @@ -734,15 +734,15 @@ msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速 msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "スカーフシームに沿って押し出す際のフロー変更における各ステップの長さを決定します。距離が短いほどより精密になりますが、Gコードはより複雑になります。" msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "Zシームをより目立たなくする、スカーフシームの長さを決定します。効果を得るには、0より大きい値にする必要があります。" msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "ウォールをプリントする順序を決定します。アウターウォールを先にプリントすると、インナーウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、アウターウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。インナーウォールの合計が奇数の場合、「中央の最後のライン」は必ず最後にプリントされます。" +msgstr "ウォールをプリントする順序を決定します。外側のウォールを先にプリントすると、内側のウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、外側のウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。内側のウォールの合計が奇数の場合、「中央の最後のライン」は必ず最後にプリントされます。" msgctxt "infill_mesh_order description" msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." @@ -810,11 +810,11 @@ msgstr "サポート構造の上部/下部からプリントまでの距離で msgctxt "infill_wipe_dist description" msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "インフィルラインごとに挿入された移動距離は壁のインフィルへの接着をより良くします。このオプションは、インフィルオーバーラップに似ていますが、押出なく、インフィルラインの片側にのみあります。" +msgstr "インフィルがウォールにより接着するための、インフィルラインが終わるたびに追加される移動の距離です。このオプションはインフィル重複に似ていますが、吐出がなくインフィルラインの片側の端に適用されます。" msgctxt "wall_0_wipe_dist description" msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "外壁の後に挿入された移動の距離はZシームをよりよく隠します。" +msgstr "Zシームを更に隠すための、外側のウォールの後に追加する移動の距離です。" msgctxt "draft_shield_dist description" msgid "Distance of the draft shield from the print, in the X/Y directions." @@ -942,7 +942,7 @@ msgstr "サポートフロアを有効にする" msgctxt "support_interface_enable label" msgid "Enable Support Interface" -msgstr "サポートインタフェースを有効にする" +msgstr "サポート境界面を有効にする" msgctxt "support_roof_enable label" msgid "Enable Support Roof" @@ -962,7 +962,7 @@ msgstr "モデルの周りに壁(ooze shield)を作る。これを生成す msgctxt "gradual_flow_enabled description" msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "段階的なフローの変化を有効にします。有効にすると,フローは目標フローまで段階的に増減します。これは,押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" +msgstr "段階的なフローの変化を有効にします。有効にすると、フロー量は目標フローまで段階的に増加/減少します。これは、エクストルーダーモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" msgctxt "ppr_enable description" msgid "Enable print process reporting for setting threshold values for possible fault detection." @@ -970,7 +970,7 @@ msgstr "印刷プロセスのレポートを有効にして、問題の検出の msgctxt "small_skin_on_surface description" msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "最上位のスキンレイヤー(空気にさらされている)上の小さな(最大「小さな上部/下部幅」)領域を、デフォルトパターンの代わりに壁で埋められるようにします。" +msgstr "最上位のスキンレイヤー(空気にさらされている)上の小さな(最大「小さな上部/下部幅」)領域を、デフォルトパターンの代わりにウォールで埋められるようにします。" msgctxt "jerk_enabled description" msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." @@ -1014,7 +1014,7 @@ msgstr "排他" msgctxt "experimental label" msgid "Experimental" -msgstr "実験" +msgstr "実験的" msgctxt "z_seam_corner option z_seam_corner_outer" msgid "Expose Seam" @@ -1030,11 +1030,11 @@ msgstr "強めのスティッチングは、穴をメッシュで塞いでデー msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "スキンをサポートするための追加のインフィルライン" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" -msgstr "外側インフィル壁の数" +msgstr "追加インフィルウォールの数" msgctxt "skin_outline_count label" msgid "Extra Skin Wall Count" @@ -1044,6 +1044,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "ノズル切替え後のプライムに必要な余剰材料。" +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "エクストルーダープライムX位置" @@ -1070,7 +1074,7 @@ msgstr "押出クールダウン速度修飾子" msgctxt "speed_equalize_flow_width_factor description" msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "" +msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm³/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。" msgctxt "cool_fan_speed label" msgid "Fan Speed" @@ -1178,15 +1182,15 @@ msgstr "最初のレイヤーの最も外側のウォールライン上のフロ msgctxt "wall_0_material_flow description" msgid "Flow compensation on the outermost wall line." -msgstr "最外壁のフロー補正。" +msgstr "最も外側のウォールのフロー補正。" msgctxt "wall_0_material_flow_roofing description" msgid "Flow compensation on the top surface outermost wall line." -msgstr "最外の壁ラインにおける流量補正。" +msgstr "最も外側のウォールラインにおける流量補正。" msgctxt "wall_x_material_flow_roofing description" msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "最外のラインを除く、全ての壁ラインにおけるトップサーフェス壁ラインのフロー補正" +msgstr "最外のラインを除く、全てのウォールラインにおける最上部ウォールラインのフロー補正" msgctxt "skin_material_flow description" msgid "Flow compensation on top/bottom lines." @@ -1198,11 +1202,11 @@ msgstr "最も外側のウォールラインを除くすべてのウォールラ msgctxt "wall_x_material_flow description" msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "最外壁以外の壁のフロー補正。" +msgstr "最も外側以外のウォールのフロー補正。" msgctxt "wall_material_flow description" msgid "Flow compensation on wall lines." -msgstr "壁のフロー補正。" +msgstr "ウォールラインのフロー補正。" msgctxt "material_flow description" msgid "Flow compensation: the amount of material extruded is multiplied by this value." @@ -1230,11 +1234,11 @@ msgstr "フラッシュパージ速度" msgctxt "reset_flow_duration description" msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "この値より長い移動の場合,素材フローはパスの目標フローにリセットされます。" +msgstr "この値より長い移動の場合、材料フローはパスの目標フローにリセットされます。" msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。" +msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅が接着するよう変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。" msgctxt "z_seam_position option front" msgid "Front" @@ -1306,11 +1310,11 @@ msgstr "サポートを生成" msgctxt "support_brim_enable description" msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの吸着性が高まります。" +msgstr "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの接着が向上します。" msgctxt "support_interface_enable description" msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "モデルとサポートの間に密なインターフェースを生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。" +msgstr "モデルとサポートの間に密な境界面を生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。" msgctxt "support_bottom_enable description" msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." @@ -1390,7 +1394,7 @@ msgstr "Griffin" msgctxt "group_outer_walls label" msgid "Group Outer Walls" -msgstr "外壁をグループ化" +msgstr "外側のウォールをグループ化" msgctxt "infill_pattern option gyroid" msgid "Gyroid" @@ -1430,11 +1434,11 @@ msgstr "シーム表示/非表示" msgctxt "hole_xy_offset label" msgid "Hole Horizontal Expansion" -msgstr "穴の水平展開" +msgstr "穴の水平拡張" msgctxt "hole_xy_offset_max_diameter label" msgid "Hole Horizontal Expansion Max Diameter" -msgstr "穴の水平展開の最大直径" +msgstr "穴の水平拡張の最大直径" msgctxt "small_hole_max_size description" msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." @@ -1442,7 +1446,7 @@ msgstr "これより直径が小さな輪郭の穴とパーツは、Small Featur msgctxt "xy_offset label" msgid "Horizontal Expansion" -msgstr "水平展開" +msgstr "水平拡張" msgctxt "material_shrinkage_percentage_xy label" msgid "Horizontal Scaling Factor Shrinkage Compensation" @@ -1462,7 +1466,7 @@ msgstr "流量の変化を補正するためにフィラメントを移動する msgctxt "material_break_retracted_position description" msgid "How far to retract the filament in order to break it cleanly." -msgstr "フィラメントをきれいに引き出すにはフィラメントをどこまで引き戻すか。" +msgstr "フィラメントをきれいに引き出すためフィラメントをどこまで引き戻すか。" msgctxt "material_break_preparation_speed description" msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." @@ -1514,7 +1518,7 @@ msgstr "プリンタ起動gcodeスクリプト完了時に、各エクストル msgctxt "support_interface_priority description" msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "サポートインターフェイスとサポートが重なる場合にどのように相互作用するかを示します。現在、サポートルーフにのみ実装されています。" +msgstr "サポート境界面とサポートが重なる場合にどのように相互作用するかを示します。現在、サポートルーフにのみ実装されています。" msgctxt "support_tree_min_height_to_model description" msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." @@ -1538,19 +1542,19 @@ msgstr "異なる数のウォール間を相次いで行き来する場合は、 msgctxt "raft_base_margin description" msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "ラフトベースが有効になっている場合、これはモデルの周囲の追加のラフト領域であり、それ自体もまたラフトで構成されます。このマージンを増やすとより強いラフトを作ることができますが、より多くの材料を使用してプリントできる領域が少なくなります。" +msgstr "ラフト土台が有効の場合、ラフト自体で構成される追加のラフト領域がモデルの周囲に作成されます。このマージンを増やすことで、より多くの材料を使いプリントの領域が狭くなる一方、より強いラフトを作ることができます。" msgctxt "raft_margin description" msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。" +msgstr "ラフトが有効の場合、ラフト自体で構成される追加のラフト領域がモデルの周囲に作成されます。このマージンを増やすことで、より多くの材料を使いプリントの領域が狭くなる一方、より強いラフトを作ることができます。" msgctxt "raft_interface_margin description" msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "ラフトの中央が有効になっている場合、これはモデルの周囲の追加のラフト領域であり、それ自体もまたラフトで構成されます。このマージンを増やすとより強いラフトを作ることができますが、より多くの材料を使用してプリントできる領域が少なくなります。" +msgstr "ラフト中間層が有効の場合、ラフト自体で構成される追加のラフト領域がモデルの周囲に作成されます。このマージンを増やすことで、より多くの材料を使いプリントの領域が狭くなる一方、より強いラフトを作ることができます。" msgctxt "raft_surface_margin description" msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "ラフトの上部が有効になっている場合、これはモデルの周囲の追加のラフト領域であり、それ自体もまたラフトで構成されます。このマージンを増やすとより強いラフトを作ることができますが、より多くの材料を使用してプリントできる領域が少なくなります。" +msgstr "ラフト上層部が有効の場合、ラフト自体で構成される追加のラフト領域がモデルの周囲に作成されます。このマージンを増やすことで、より多くの材料を使いプリントの領域が狭くなる一方、より強いラフトを作ることができます。" msgctxt "meshfix_union_all description" msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." @@ -1630,11 +1634,11 @@ msgstr "インフィルオーバーハング角度" msgctxt "infill_overlap_mm label" msgid "Infill Overlap" -msgstr "インフィル公差" +msgstr "インフィルの重なり" msgctxt "infill_overlap label" msgid "Infill Overlap Percentage" -msgstr "インフィル公差率" +msgstr "インフィルの重なり (%)" msgctxt "infill_pattern label" msgid "Infill Pattern" @@ -1694,11 +1698,11 @@ msgstr "初期レイヤーの高さ" msgctxt "xy_offset_layer_0 label" msgid "Initial Layer Horizontal Expansion" -msgstr "初期層水平展開" +msgstr "初期層水平拡張" msgctxt "wall_x_material_flow_layer_0 label" msgid "Initial Layer Inner Wall Flow" -msgstr "初期レイヤーインナーウォールのフロー" +msgstr "初期レイヤー内側ウォールのフロー" msgctxt "jerk_layer_0 label" msgid "Initial Layer Jerk" @@ -1710,7 +1714,7 @@ msgstr "初期レイヤーのライン幅" msgctxt "wall_0_material_flow_layer_0 label" msgid "Initial Layer Outer Wall Flow" -msgstr "初期レイヤーアウターウォールのフロー" +msgstr "初期レイヤーにおける外側ウォールのフロー" msgctxt "acceleration_print_layer_0 label" msgid "Initial Layer Print Acceleration" @@ -1746,7 +1750,7 @@ msgstr "初期レイヤー移動速度" msgctxt "layer_0_z_overlap label" msgid "Initial Layer Z Overlap" -msgstr "初期レイヤーZのオーバーラップ" +msgstr "初期レイヤーZ座標の重なり" msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" @@ -1758,23 +1762,23 @@ msgstr "初期層の最大フロー加速度" msgctxt "acceleration_wall_x label" msgid "Inner Wall Acceleration" -msgstr "内壁加速度" +msgstr "内側ウォールの加速度" msgctxt "wall_x_extruder_nr label" msgid "Inner Wall Extruder" -msgstr "内壁用エクストルーダー" +msgstr "内側ウォール用エクストルーダー" msgctxt "jerk_wall_x label" msgid "Inner Wall Jerk" -msgstr "内壁ジャーク" +msgstr "内側ウォールジャーク" msgctxt "speed_wall_x label" msgid "Inner Wall Speed" -msgstr "内壁速度" +msgstr "内側ウォール速度" msgctxt "wall_x_material_flow label" msgid "Inner Wall(s) Flow" -msgstr "内壁のフロー" +msgstr "内側ウォールのフロー" msgctxt "wall_line_width_x label" msgid "Inner Wall(s) Line Width" @@ -1782,7 +1786,7 @@ msgstr "内側ウォールライン幅" msgctxt "wall_0_inset description" msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。" +msgstr "外側ウォールの経路にはめ込む。外側ウォールがノズルよりも小さく、外側ウォールの後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく外側ウォールと重なるようにします。" msgctxt "brim_location option inside" msgid "Inside Only" @@ -1794,11 +1798,11 @@ msgstr "内側から外側へ" msgctxt "support_interface_priority option interface_lines_overwrite_support_area" msgid "Interface lines preferred" -msgstr "インターフェイスラインを優先" +msgstr "境界面のラインを優先" msgctxt "support_interface_priority option interface_area_overwrite_support_area" msgid "Interface preferred" -msgstr "インターフェイスを優先" +msgstr "境界面を優先" msgctxt "prime_tower_mode option interleaved" msgid "Interleaved" @@ -1894,15 +1898,15 @@ msgstr "レイヤー始点Y座標" msgctxt "raft_base_thickness description" msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。" +msgstr "ラフトの土台となる層の厚さ。プリンターのビルドプレートにしっかり接着する厚い層でなければなりません。" msgctxt "raft_interface_thickness description" msgid "Layer thickness of the middle raft layer." -msgstr "中間のラフト層の層の厚さ。" +msgstr "中間のラフト層の厚さ。" msgctxt "raft_surface_thickness description" msgid "Layer thickness of the top raft layers." -msgstr "トップラフト層の層厚。" +msgstr "トップラフト層の厚さ。" msgctxt "support_skip_zag_per_mm description" msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." @@ -2050,7 +2054,7 @@ msgstr "オーバーハング印刷可能" msgctxt "multiple_mesh_overlap description" msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "触れているメッシュを少し重ねてください。これによって、より良い接着をします。" +msgstr "触れているメッシュを少し重ねます。これによって、メッシュ同士の接着をより良くします。" msgctxt "support_conical_enabled description" msgid "Make support areas smaller at the bottom than at the overhang." @@ -2069,7 +2073,7 @@ msgid "" "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" "It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" msgstr "" -"エアギャップで失われたフィラメントを補うために、モデルの1つ目と2つ目の層をZ方向にオーバーラップさせます。最初のモデルレイヤーより上のすべてのモデルは、この量だけ下にシフトされます。\n" +"エアギャップで失われたフィラメントを補うために、モデルの1つ目と2つ目の層をZ方向で重なるようにします。最初のモデルレイヤーより上のすべてのモデルは、この量だけ下にシフトされます。\n" "この設定により、2つ目のレイヤーが最初のレイヤーの下に印刷される場合があることに注意してください。これは意図された動作です。" msgctxt "meshfix description" @@ -2174,7 +2178,7 @@ msgstr "最大引き戻し回数" msgctxt "max_skin_angle_for_expansion label" msgid "Maximum Skin Angle for Expansion" -msgstr "表面展開最大角" +msgstr "表面拡張最大角" msgctxt "machine_max_feedrate_e label" msgid "Maximum Speed E" @@ -2278,7 +2282,7 @@ msgstr "スタンバイ温度までの最短時間" msgctxt "bridge_wall_min_length label" msgid "Minimum Bridge Wall Length" -msgstr "ブリッジ壁の最小長さ" +msgstr "ブリッジウォール長さの最小値" msgctxt "min_even_wall_line_width label" msgid "Minimum Even Wall Line Width" @@ -2318,7 +2322,7 @@ msgstr "最小ポリゴン円周" msgctxt "min_skin_width_for_expansion label" msgid "Minimum Skin Width for Expansion" -msgstr "表面展開最小角" +msgstr "表面拡張最小幅" msgctxt "cool_min_speed label" msgid "Minimum Speed" @@ -2334,7 +2338,7 @@ msgstr "最小サポートフロア領域" msgctxt "minimum_interface_area label" msgid "Minimum Support Interface Area" -msgstr "最小サポートインターフェイス領域" +msgstr "サポート境界面の最小面積" msgctxt "minimum_roof_area label" msgid "Minimum Support Roof Area" @@ -2358,7 +2362,7 @@ msgstr "最小ウォールライン幅" msgctxt "minimum_interface_area description" msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "サポートインターフェイスポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" +msgstr "サポート境界面ポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" msgctxt "minimum_support_area description" msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." @@ -2418,11 +2422,11 @@ msgstr "複数のスカートラインを使用すると、小さなモデル形 msgctxt "support_infill_density_multiplier_initial_layer description" msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." -msgstr "サポート材の初期層におけるインフィルのマルチプライヤー。この値を増やすことで、ベッド接着力を高めることができます。" +msgstr "サポート材の初期層におけるインフィル密度の倍率です。この値を増やすことで、ベッドとの接着力を高めることができます。" msgctxt "initial_layer_line_width_factor description" msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "最初のレイヤーに線幅の乗数です。この値を増やすと、ベッドの接着性が向上します。" +msgstr "最初のレイヤーにおけるライン幅の乗数です。この値を増やすと、ベッドとの接着が向上します。" msgctxt "material_no_load_move_factor label" msgid "No Load Move Factor" @@ -2442,7 +2446,7 @@ msgstr "なし" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "なし" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2488,6 +2492,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ノズルID" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "ノズルサイズ" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "ノズル切替え後のプライムに必要な余剰量" @@ -2498,7 +2506,7 @@ msgstr "ノズルスイッチ押し戻し速度" msgctxt "switch_extruder_retraction_speed label" msgid "Nozzle Switch Retract Speed" -msgstr "ノズルスイッチ引き込み速度" +msgstr "ノズルスイッチ引き戻し速度" msgctxt "switch_extruder_retraction_amount label" msgid "Nozzle Switch Retraction Distance" @@ -2602,11 +2610,11 @@ msgstr "最適な枝範囲" msgctxt "optimize_wall_printing_order label" msgid "Optimize Wall Printing Order" -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. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。" +msgstr "引き戻しと移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。" msgctxt "machine_nozzle_tip_outer_diameter label" msgid "Outer Nozzle Diameter" @@ -2614,35 +2622,35 @@ msgstr "ノズル外径" msgctxt "acceleration_wall_0 label" msgid "Outer Wall Acceleration" -msgstr "外壁加速度" +msgstr "外側ウォール加速度" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "外側ウォールにおける加速度" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "外側ウォールにおける減速" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "外側ウォールにおける終了速度の比率" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" -msgstr "外壁用エクストルーダー" +msgstr "外側ウォール用エクストルーダー" msgctxt "wall_0_material_flow label" msgid "Outer Wall Flow" -msgstr "外壁のフロー" +msgstr "外側ウォールのフロー" msgctxt "wall_0_inset label" msgid "Outer Wall Inset" -msgstr "外壁はめ込み" +msgstr "外側ウォールはめ込み" msgctxt "jerk_wall_0 label" msgid "Outer Wall Jerk" -msgstr "外壁ジャーク" +msgstr "外側ウォールジャーク" msgctxt "wall_line_width_0 label" msgid "Outer Wall Line Width" @@ -2650,23 +2658,23 @@ msgstr "外側ウォールライン幅" msgctxt "speed_wall_0 label" msgid "Outer Wall Speed" -msgstr "外壁速度" +msgstr "外側ウォール速度" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "外側ウォールでの速度スプリットの距離" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "外側ウォールにおける開始速度の比率" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" -msgstr "外壁移動距離" +msgstr "外側ウォールワイプ距離" msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "同じレイヤー内の異なる島の外壁は順次印刷されます。有効にすると、壁は1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島の壁がグループ化されるため、島間の移動回数が減少します。" +msgstr "同じレイヤー内の異なる島の外側ウォールは順次印刷されます。有効にすると、ウォールは1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島のウォールがグループ化されるため、島間の移動回数が減少します。" msgctxt "brim_location option outside" msgid "Outside Only" @@ -2678,15 +2686,15 @@ msgstr "外側から内側へ" msgctxt "wall_overhang_angle label" msgid "Overhanging Wall Angle" -msgstr "張り出し壁アングル" +msgstr "オーバーハングウォール角" msgctxt "wall_overhang_speed_factor label" msgid "Overhanging Wall Speed" -msgstr "張り出し壁速度" +msgstr "オーバーハングウォール速度" msgctxt "wall_overhang_speed_factor description" msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "張り出し壁は、この割合で通常の印刷速度で印刷されます。" +msgstr "オーバーハングウォールは、通常の印刷速度に対して指定された割合で印刷されます。" msgctxt "wipe_pause description" msgid "Pause after the unretract." @@ -2694,7 +2702,7 @@ msgstr "引き戻し前に一時停止します。" msgctxt "bridge_fan_speed description" msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "ブリッジ壁とスキンを印刷する際に使用するファン速度の割合。" +msgstr "ブリッジウォールとスキンを印刷する際に使用するファン速度の割合。" msgctxt "bridge_fan_speed_2 description" msgid "Percentage fan speed to use when printing the second bridge skin layer." @@ -2762,7 +2770,7 @@ msgstr "プライムタワーの最大ブリッジ距離" msgctxt "prime_tower_min_shell_thickness label" msgid "Prime Tower Minimum Shell Thickness" -msgstr "プライムタワー最小シェル厚" +msgstr "プライムタワーにおけるシェル厚さの最小値" msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" @@ -2796,6 +2804,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "印刷加速度" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "印刷ジャーク" @@ -2814,7 +2826,7 @@ msgstr "印刷速度" msgctxt "fill_outline_gaps label" msgid "Print Thin Walls" -msgstr "薄壁印刷" +msgstr "薄いウォールを印刷" msgctxt "brim_location description" msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." @@ -2842,7 +2854,7 @@ msgstr "ノズルサイズよりも細い壁を作ります。" msgctxt "raft_surface_monotonic description" msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "ラフト上面のラインを、常に単一方向の隣接するラインと重なる順序で印刷します。これにより印刷に少し時間がかかりますが、モデルの表面や底面の見た目がより均一になります。" +msgstr "ラフト上層部のラインを、常に単一方向の隣接するラインと重なる順序で印刷します。これにより印刷に少し時間がかかりますが、モデルの表面や底面の見た目がより均一になります。" msgctxt "bridge_skin_speed_2 description" msgid "Print speed to use when printing the second bridge skin layer." @@ -2862,7 +2874,7 @@ msgstr "印刷温度警告" 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 "壁より前にインフィルをプリントします。はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します。はじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" +msgstr "ウォールより前にインフィルをプリントします。ウォールからプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します。インフィルからプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" msgctxt "roofing_monotonic description" msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." @@ -2886,7 +2898,7 @@ msgstr "最も内側のスカートラインを複数のレイヤーに分けて msgctxt "alternate_extra_perimeter description" msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。" +msgstr "すべてのレイヤーごとに予備のウォールを印刷します。これによりインフィルは追加の壁に挟まれ、より強い印刷物が得られます。" msgctxt "resolution label" msgid "Quality" @@ -2906,67 +2918,67 @@ msgstr "ラフト間のラップ" msgctxt "raft_base_margin label" msgid "Raft Base Extra Margin" -msgstr "ラフトベースの追加マージン" +msgstr "ラフト土台の追加マージン" msgctxt "raft_base_extruder_nr label" msgid "Raft Base Extruder" -msgstr "ラフトベースエクストルーダー" +msgstr "ラフト土台用エクストルーダー" msgctxt "raft_base_fan_speed label" msgid "Raft Base Fan Speed" -msgstr "ラフトベースファン速度" +msgstr "ラフト土台ファン速度" msgctxt "raft_base_flow label" msgid "Raft Base Flow" -msgstr "ラフトベース フロー" +msgstr "ラフト土台フロー量" msgctxt "raft_base_infill_overlap_mm label" msgid "Raft Base Infill Overlap" -msgstr "ラフトベース インフィル オーバーラップ" +msgstr "ラフト土台でのインフィルの重なり" msgctxt "raft_base_infill_overlap label" msgid "Raft Base Infill Overlap Percentage" -msgstr "ラフトベース インフィル オーバーラップ比率" +msgstr "ラフト土台でのインフィルの重なり (%)" msgctxt "raft_base_line_spacing label" msgid "Raft Base Line Spacing" -msgstr "ラフトベースラインスペース" +msgstr "ラフト土台のライン間隔" msgctxt "raft_base_line_width label" msgid "Raft Base Line Width" -msgstr "ラフトベースライン幅" +msgstr "ラフト土台のライン幅" msgctxt "raft_base_acceleration label" msgid "Raft Base Print Acceleration" -msgstr "ラフトベース印刷加速度" +msgstr "ラフト土台の印刷加速度" msgctxt "raft_base_jerk label" msgid "Raft Base Print Jerk" -msgstr "ラフトベース印刷ジャーク" +msgstr "ラフト土台の印刷ジャーク" msgctxt "raft_base_speed label" msgid "Raft Base Print Speed" -msgstr "ラフトベース印刷速度" +msgstr "ラフト土台の印刷速度" msgctxt "raft_base_smoothing label" msgid "Raft Base Smoothing" -msgstr "ラフトベースのスムージング" +msgstr "ラフト土台のスムージング" msgctxt "raft_base_thickness label" msgid "Raft Base Thickness" -msgstr "ラフトベース厚さ" +msgstr "ラフト土台の厚さ" msgctxt "raft_base_wall_count label" msgid "Raft Base Wall Count" -msgstr "ラフトベースウォール数" +msgstr "ラフト土台のウォール数" msgctxt "raft_margin label" msgid "Raft Extra Margin" -msgstr "ラフトの余分なマージン" +msgstr "ラフトの追加マージン" msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" -msgstr "ラフトファン速度" +msgstr "ラフトのファン速度" msgctxt "raft_flow label" msgid "Raft Flow" @@ -2974,27 +2986,27 @@ msgstr "ラフトフロー" msgctxt "raft_interface_flow label" msgid "Raft Interface Flow" -msgstr "ラフトインターフェース フロー" +msgstr "ラフト境界面フロー量" msgctxt "raft_interface_infill_overlap_mm label" msgid "Raft Interface Infill Overlap" -msgstr "ラフトインターフェース インフィルオーバーラップ" +msgstr "ラフト境界面でのインフィルの重なり" msgctxt "raft_interface_infill_overlap label" msgid "Raft Interface Infill Overlap Percentage" -msgstr "ラフトインターフェース インフィルオーバーラップ比率" +msgstr "ラフト境界面でのインフィルの重なり (%)" msgctxt "raft_interface_z_offset label" msgid "Raft Interface Z Offset" -msgstr "ラフトインターフェースのZオフセット" +msgstr "ラフト境界面のZオフセット" msgctxt "raft_interface_margin label" msgid "Raft Middle Extra Margin" -msgstr "ラフトの中央の追加マージン" +msgstr "ラフト中間層の追加マージン" msgctxt "raft_interface_extruder_nr label" msgid "Raft Middle Extruder" -msgstr "ラフト中間エクストルーダー" +msgstr "ラフト中間層用エクストルーダー" msgctxt "raft_interface_fan_speed label" msgid "Raft Middle Fan Speed" @@ -3002,11 +3014,11 @@ msgstr "ラフト中間層ファン速度" msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" -msgstr "ラフト中間レイヤー" +msgstr "ラフト中間層レイヤー数" msgctxt "raft_interface_line_width label" msgid "Raft Middle Line Width" -msgstr "ラフト中央ライン幅" +msgstr "ラフト中間層ライン幅" msgctxt "raft_interface_acceleration label" msgid "Raft Middle Print Acceleration" @@ -3018,23 +3030,23 @@ msgstr "ラフト中間層印刷ジャーク" msgctxt "raft_interface_speed label" msgid "Raft Middle Print Speed" -msgstr "ラフト中間印刷速度" +msgstr "ラフト中間層印刷速度" msgctxt "raft_interface_smoothing label" msgid "Raft Middle Smoothing" -msgstr "ラフト中央のスムージング" +msgstr "ラフト中間層スムージング" msgctxt "raft_interface_line_spacing label" msgid "Raft Middle Spacing" -msgstr "ラフト中間スペース" +msgstr "ラフト中間層スペース" msgctxt "raft_interface_thickness label" msgid "Raft Middle Thickness" -msgstr "ラフト中央厚さ" +msgstr "ラフト中間層の厚さ" msgctxt "raft_interface_wall_count label" msgid "Raft Middle Wall Count" -msgstr "ラフト中央の壁の数" +msgstr "ラフト中間層のウォール数" msgctxt "raft_acceleration label" msgid "Raft Print Acceleration" @@ -3050,47 +3062,47 @@ msgstr "ラフト印刷速度" msgctxt "raft_smoothing label" msgid "Raft Smoothing" -msgstr "ラフト補整" +msgstr "ラフトスムージング" msgctxt "raft_surface_flow label" msgid "Raft Surface Flow" -msgstr "ラフトサーフェス フロー" +msgstr "ラフト表層フロー量" msgctxt "raft_surface_infill_overlap_mm label" msgid "Raft Surface Infill Overlap" -msgstr "ラフトサーフェス インフィルオーバーラップ" +msgstr "ラフト表面でのインフィルの重なり" msgctxt "raft_surface_infill_overlap label" msgid "Raft Surface Infill Overlap Percentage" -msgstr "ラフトサーフェス インフィルオーバーラップ比率" +msgstr "ラフト表面でのインフィルの重なり (%)" msgctxt "raft_surface_z_offset label" msgid "Raft Surface Z Offset" -msgstr "ラフトサーフェスのZオフセット" +msgstr "ラフト表層のZオフセット" msgctxt "raft_surface_margin label" msgid "Raft Top Extra Margin" -msgstr "ラフト上部の追加マージン" +msgstr "ラフト上層部の追加マージン" msgctxt "raft_surface_extruder_nr label" msgid "Raft Top Extruder" -msgstr "ラフトトップエクストルーダー" +msgstr "ラフト上層部用エクストルーダー" msgctxt "raft_surface_fan_speed label" msgid "Raft Top Fan Speed" -msgstr "ラフト上層ファン速度" +msgstr "ラフト上層部ファン速度" msgctxt "raft_surface_thickness label" msgid "Raft Top Layer Thickness" -msgstr "ラフト最上層厚さ" +msgstr "ラフト上層部の厚さ" msgctxt "raft_surface_layers label" msgid "Raft Top Layers" -msgstr "ラフト最上層" +msgstr "ラフト上層部レイヤー数" msgctxt "raft_surface_line_width label" msgid "Raft Top Line Width" -msgstr "ラフト最上ライン幅" +msgstr "ラフト上層部ライン幅" msgctxt "raft_surface_acceleration label" msgid "Raft Top Print Acceleration" @@ -3098,27 +3110,27 @@ msgstr "ラフト上層層印刷加速度" msgctxt "raft_surface_jerk label" msgid "Raft Top Print Jerk" -msgstr "ラフト上層印刷ジャーク" +msgstr "ラフト上層部印刷ジャーク" msgctxt "raft_surface_speed label" msgid "Raft Top Print Speed" -msgstr "ラフト上層印刷速度" +msgstr "ラフト上層部印刷速度" msgctxt "raft_surface_smoothing label" msgid "Raft Top Smoothing" -msgstr "ラフト上部のスムージング" +msgstr "ラフト上層部のスムージング" msgctxt "raft_surface_line_spacing label" msgid "Raft Top Spacing" -msgstr "ラフト最上面スペース" +msgstr "ラフト上層部スペース" msgctxt "raft_surface_wall_count label" msgid "Raft Top Wall Count" -msgstr "ラフト上部の壁の数" +msgstr "ラフト上層部のウォール数" msgctxt "raft_wall_count label" msgid "Raft Wall Count" -msgstr "ラフトの壁の数" +msgstr "ラフトのウォール数" msgctxt "z_seam_type option random" msgid "Random" @@ -3134,7 +3146,7 @@ msgstr "どのインフィルラインが最初に印刷されるかをランダ msgctxt "magic_fuzzy_skin_enabled description" msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。" +msgstr "外側のウォールを印刷する際ランダムに振動を起こし、表面を粗くぼやけた見た目にします。" msgctxt "machine_shape option rectangular" msgid "Rectangular" @@ -3174,7 +3186,7 @@ msgstr "重複メッシュの削除" msgctxt "raft_base_remove_inside_corners label" msgid "Remove Raft Base Inside Corners" -msgstr "ラフトベースの内側の角を削除" +msgstr "ラフト土台内側の角を削除" msgctxt "raft_remove_inside_corners label" msgid "Remove Raft Inside Corners" @@ -3182,11 +3194,11 @@ msgstr "ラフト内側コーナーの削除" msgctxt "raft_interface_remove_inside_corners label" msgid "Remove Raft Middle Inside Corners" -msgstr "ラフト中央の内側の角を削除" +msgstr "ラフト中間層内側の角を削除" msgctxt "raft_surface_remove_inside_corners label" msgid "Remove Raft Top Inside Corners" -msgstr "ラフト上部の内側の角を削除" +msgstr "ラフト上層部の内側の角を削除" msgctxt "carve_multiple_volumes description" msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." @@ -3198,15 +3210,15 @@ msgstr "最初に印刷したレイヤーの下に空のレイヤーがある場 msgctxt "raft_base_remove_inside_corners description" msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "ラフトベースから内側の角を取り除き、ラフトを凸状にします。" +msgstr "ラフト土台から内側の角を取り除き、ラフトを凸状にします。" msgctxt "raft_interface_remove_inside_corners description" msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "ラフトの中央から内側の角を取り除き、ラフトを凸状にします。" +msgstr "ラフト中間層から内側の角を取り除き、ラフトを凸状にします。" msgctxt "raft_surface_remove_inside_corners description" msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "ラフトの上部から内側の角を取り除き、ラフトを凸状にします。" +msgstr "ラフト上層部から内側の角を取り除き、ラフトを凸状にします。" msgctxt "raft_remove_inside_corners description" msgid "Remove inside corners from the raft, causing the raft to become convex." @@ -3242,7 +3254,7 @@ msgstr "土台設定" msgctxt "travel_retract_before_outer_wall label" msgid "Retract Before Outer Wall" -msgstr "外壁の前に引き戻す" +msgstr "外側ウォールの前に引き戻す" msgctxt "retract_at_layer_change label" msgid "Retract at Layer Change" @@ -3266,7 +3278,7 @@ msgstr "引き戻し距離" msgctxt "retraction_extra_prime_amount label" msgid "Retraction Extra Prime Amount" -msgstr "余分な押し戻し量の引き戻し" +msgstr "引き戻し後の押し出し量" msgctxt "retraction_min_travel label" msgid "Retraction Minimum Travel" @@ -3274,11 +3286,11 @@ msgstr "引き戻し最小移動距離" msgctxt "retraction_prime_speed label" msgid "Retraction Prime Speed" -msgstr "押し戻し速度の取り消し" +msgstr "引き戻し後の押し戻し速度" msgctxt "retraction_retract_speed label" msgid "Retraction Retract Speed" -msgstr "引き戻し速度の取り消し" +msgstr "引き戻し速度" msgctxt "retraction_speed label" msgid "Retraction Speed" @@ -3294,7 +3306,7 @@ msgstr "ファン速度を0~1にスケール" msgctxt "machine_scale_fan_speed_zero_to_one description" msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "ファン速度は0縲鰀256ではなく、0縲鰀1になるようスケールします。" +msgstr "ファン速度を0~256ではなく、0~1でスケールします。" msgctxt "material_shrinkage_percentage label" msgid "Scaling Factor Shrinkage Compensation" @@ -3302,15 +3314,15 @@ msgstr "スケールファクタ収縮補正" msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "スカーフシームの長さ" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "スカーフシームを開始する高さ" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "スカーフシームのステップ長" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -3370,15 +3382,15 @@ msgstr "スキンエッジサポートの厚さ" msgctxt "expand_skins_expand_distance label" msgid "Skin Expand Distance" -msgstr "表面展開距離" +msgstr "表面拡張距離" msgctxt "skin_overlap_mm label" msgid "Skin Overlap" -msgstr "表面公差" +msgstr "表面の重なり" msgctxt "skin_overlap label" msgid "Skin Overlap Percentage" -msgstr "表面公差量" +msgstr "表面の重なり (%)" msgctxt "skin_preshrink label" msgid "Skin Removal Width" @@ -3386,7 +3398,7 @@ msgstr "表面除去幅" msgctxt "min_skin_width_for_expansion description" msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。" +msgstr "これより狭いスキン領域は拡張されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。" msgctxt "support_zag_skip_count description" msgid "Skip one in every N connection lines to make the support structure easier to break away." @@ -3482,7 +3494,7 @@ msgstr "小型形体は通常のプリント速度に対してこの割合でプ msgctxt "small_skin_width description" msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "小さな上部/下部領域は、デフォルトの上部/下部パターンの代わりに壁で埋められます。これにより、ぎくしゃくした動きを防げます。デフォルトでは最上位の(空気にさらされている)レイヤーはオフになっています(「表面の小さな上部/下部」を参照)。" +msgstr "小さな上部/下部領域は、デフォルトの上部/下部パターンの代わりにウォールで構成されます。これにより、ぎくしゃくした動きを防げます。デフォルトでは最上位の(空気にさらされている)レイヤーはオフになっています(「表面の小さな上部/下部」を参照)。" msgctxt "brim_smart_ordering label" msgid "Smart Brim" @@ -3626,7 +3638,7 @@ msgstr "支持材床面フロー" msgctxt "support_bottom_offset label" msgid "Support Floor Horizontal Expansion" -msgstr "サポートフロア水平展開" +msgstr "サポートフロア水平拡張" msgctxt "jerk_support_bottom label" msgid "Support Floor Jerk" @@ -3662,7 +3674,7 @@ msgstr "支持材のフロー" msgctxt "support_offset label" msgid "Support Horizontal Expansion" -msgstr "サポート水平展開" +msgstr "サポート水平拡張" msgctxt "acceleration_support_infill label" msgid "Support Infill Acceleration" @@ -3694,55 +3706,55 @@ msgstr "サポートインフィル速度" msgctxt "acceleration_support_interface label" msgid "Support Interface Acceleration" -msgstr "サポートインタフェース加速度" +msgstr "サポート境界面加速度" msgctxt "support_interface_density label" msgid "Support Interface Density" -msgstr "サポートインタフェース密度" +msgstr "サポート境界面密度" msgctxt "support_interface_extruder_nr label" msgid "Support Interface Extruder" -msgstr "サポートインタフェースエクストルーダー" +msgstr "サポート境界面用エクストルーダー" msgctxt "support_interface_material_flow label" msgid "Support Interface Flow" -msgstr "支持材界面フロー" +msgstr "サポート境界面フロー" msgctxt "support_interface_offset label" msgid "Support Interface Horizontal Expansion" -msgstr "サポートインターフェイス水平展開" +msgstr "サポート境界面水平拡張" msgctxt "jerk_support_interface label" msgid "Support Interface Jerk" -msgstr "サポートインタフェースジャーク" +msgstr "サポート境界面ジャーク" msgctxt "support_interface_angles label" msgid "Support Interface Line Directions" -msgstr "サポート面のライン方向" +msgstr "サポート境界面のライン方向" msgctxt "support_interface_line_width label" msgid "Support Interface Line Width" -msgstr "サポート面のライン幅" +msgstr "サポート境界面のライン幅" msgctxt "support_interface_pattern label" msgid "Support Interface Pattern" -msgstr "サポートインタフェースパターン" +msgstr "サポート境界面パターン" msgctxt "support_interface_priority label" msgid "Support Interface Priority" -msgstr "サポートインターフェイスの優先順位" +msgstr "サポート境界面の優先順位" msgctxt "speed_support_interface label" msgid "Support Interface Speed" -msgstr "サポートインタフェース速度" +msgstr "サポート境界面の速度" msgctxt "support_interface_height label" msgid "Support Interface Thickness" -msgstr "サポートインタフェース厚さ" +msgstr "サポート境界面の厚さ" msgctxt "support_interface_wall_count label" msgid "Support Interface Wall Line Count" -msgstr "サポートインターフェースのウォールライン数" +msgstr "サポート境界面のウォールライン数" msgctxt "jerk_support label" msgid "Support Jerk" @@ -3794,7 +3806,7 @@ msgstr "支持材天井面フロー" msgctxt "support_roof_offset label" msgid "Support Roof Horizontal Expansion" -msgstr "サポートルーフ水平展開" +msgstr "サポートルーフ水平拡張" msgctxt "jerk_support_roof label" msgid "Support Roof Jerk" @@ -3906,7 +3918,7 @@ msgstr "最も内側のブリムラインと2番目に内側のブリムライ msgctxt "alternate_carve_order description" msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "交差するメッシュがどのレイヤーに属しているかを切り替えることで、オーバーラップしているメッシュを絡み合うようにします。この設定をオフにすると、一方のメッシュはオーバーラップ内のすべてのボリュームを取得し、他方のメッシュは他から削除されます。" +msgstr "重複するメッシュがどのレイヤーに属しているかを切り替えることで、重なったメッシュが絡み合うようにします。この設定をオフにすると、一方のメッシュは重複内すべてのボリュームを取得し、他方のメッシュは他から削除されます。" msgctxt "adaptive_layer_height_threshold description" msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." @@ -3990,7 +4002,7 @@ msgstr "ラフトの中間層印刷時の加速度。" msgctxt "acceleration_wall_0 description" msgid "The acceleration with which the outermost walls are printed." -msgstr "最も外側の壁をプリントする際の加速度。" +msgstr "最も外側のウォールをプリントする際の加速度。" msgctxt "acceleration_prime_tower description" msgid "The acceleration with which the prime tower is printed." @@ -4018,15 +4030,15 @@ msgstr "サポート材プリント時の加速スピード。" msgctxt "raft_surface_acceleration description" msgid "The acceleration with which the top raft layers are printed." -msgstr "ラフトのトップ印刷時の加速度。" +msgstr "ラフトの上層部印刷時の加速度。" msgctxt "acceleration_wall_x_roofing description" msgid "The acceleration with which the top surface inner walls are printed." -msgstr "上面内壁をプリントする際の加速度" +msgstr "最上部内側のウォールをプリントする際の加速度。" msgctxt "acceleration_wall_0_roofing description" msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "上面の最外壁が印刷される際の加速度。" +msgstr "最上部の最も外側のウォールが印刷される際の加速度。" msgctxt "acceleration_wall description" msgid "The acceleration with which the walls are printed." @@ -4046,11 +4058,11 @@ msgstr "移動中の加速度。" msgctxt "raft_base_flow description" msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." -msgstr "ラフトベースのプリント中に押出す材料の量(通常の押出ラインに対する相対的な量)。フローを増やすことで、接着力やラフト構造の強度を向上させることができます。" +msgstr "ラフト土台のプリント中に押出す材料の量(通常の押出ラインに対する相対的な量)。フロー量を増やすことで、接着力やラフト構造の強度を向上させることができます。" msgctxt "raft_interface_flow description" msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." -msgstr "ラフトインターフェースのプリント中に押出す材料の量(通常の押出ラインに対する相対的な量)。フローを増やすことで、接着力やラフト構造の強度を向上させることができます。" +msgstr "ラフト境界面のプリント中に押出す材料の量(通常の押出ラインに対する相対的な量)。フローを増やすことで、接着力やラフト構造の強度を向上させることができます。" msgctxt "raft_flow description" msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." @@ -4058,7 +4070,7 @@ msgstr "ラフトのプリント中に押出す材料の量(通常の押出ラ msgctxt "raft_surface_flow description" msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." -msgstr "ラフトサーフェスのプリント中に押出す材料の量(通常の押出ラインに対する相対的な量)。フローを増やすことで、接着力やラフト構造の強度を向上させることができます。" +msgstr "ラフト表面のプリント中に押出す材料の量(通常の押出ラインに対する相対的な量)。フロー量を増やすことで、接着力やラフト構造の強度を向上させることができます。" msgctxt "ironing_flow description" msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." @@ -4066,35 +4078,35 @@ msgstr "通常のスキンラインに対してアイロン時にノズルから msgctxt "infill_overlap description" msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルと壁のオーバーラップ量 (インフィルライン幅に対する%)。少しのオーバーラップによって壁がインフィルにしっかりつながります。" +msgstr "インフィルのライン幅に対する割合で示される、インフィルとウォールが重なる量。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" msgctxt "raft_base_infill_overlap description" msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルとラフトベースのウォールとのオーバーラップの量(インフィルラインの幅に対する割合)。わずかなオーバーラップにより、ウォールがインフィルにしっかりと接続されます。" +msgstr "インフィルとラフト土台のウォールが重なる量(インフィルラインの幅に対する割合)。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" msgctxt "raft_base_infill_overlap_mm description" msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルとラフトベースのウォールとのオーバーラップの量。わずかなオーバーラップにより、ウォールがインフィルにしっかりと接続されます。" +msgstr "インフィルとラフト土台のウォールが重なる量。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" msgctxt "raft_interface_infill_overlap description" msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルとラフトインターフェースのウォールとのオーバーラップの量(インフィルラインの幅に対する割合)。わずかなオーバーラップにより、ウォールがインフィルにしっかりと接続されます。" +msgstr "インフィルとラフト境界面のウォールが重なる量(インフィルラインの幅に対する割合)。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" msgctxt "raft_interface_infill_overlap_mm description" msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルとラフトインターフェースのウォールとのオーバーラップの量。わずかなオーバーラップにより、ウォールがインフィルにしっかりと接続されます。" +msgstr "インフィルとラフト境界面のウォールが重なる量。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" msgctxt "raft_surface_infill_overlap description" msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルとラフトサーフェスのウォールとのオーバーラップの量(インフィルラインの幅に対する割合)。わずかなオーバーラップにより、ウォールがインフィルにしっかりと接続されます。" +msgstr "インフィルとラフト表面のウォールが重なる量(インフィルラインの幅に対する割合)。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" msgctxt "raft_surface_infill_overlap_mm description" msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルとラフトサーフェスのウォールとのオーバーラップの量。わずかなオーバーラップにより、ウォールがインフィルにしっかりと接続されます。" +msgstr "インフィルとラフト表面のウォールが重なる量。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" msgctxt "infill_overlap_mm description" msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。" +msgstr "インフィルと壁が重なる量。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" msgctxt "switch_extruder_retraction_amount description" msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." @@ -4154,7 +4166,7 @@ msgstr "サポート構造のフロアの密度です。高い値は、サポー msgctxt "support_roof_density description" msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "サポート材のルーフの部分の密度を調整します 大きな値ではオーバーハングの成功率があがりますが、サポート材が除去しにくくなります。" +msgstr "サポート材のルーフ部分の密度を調整します。値を大きくするとオーバーハングの成功率が上がりますが、サポート材が除去しにくくなります。" msgctxt "bridge_skin_density_2 description" msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." @@ -4206,15 +4218,15 @@ msgstr "ノズルが既に印刷された部分を移動する際の間隔。" msgctxt "raft_base_line_spacing description" msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "ベースラフト層のラフトライン間の距離。間隔を広くすると、ラフトをブルドプレートから外すのが簡単になります。" +msgstr "ラフトの土台層のラフトライン間の距離。間隔を広くすると、ラフトをブルドプレートから外すのが簡単になります。" msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。" +msgstr "ラフトの中間層とラフトラインとの距離。中間層の間隔はかなり広くなければならず、ラフトの上層部を支えるために十分な密度であるべきです。" msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。" +msgstr "ラフトの上層部とラフト線との距離。サーフェスが強固になるよう、間隔は線の幅と同じなるようにします。" msgctxt "prime_tower_raft_base_line_spacing description" msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." @@ -4222,7 +4234,7 @@ msgstr "プライムタワーラフト層の独自のラフトライン間の距 msgctxt "interlocking_depth description" msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると密着性が低下します。" +msgstr "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると接着が低下します。" msgctxt "brim_width description" msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." @@ -4238,15 +4250,15 @@ msgstr "ノズルからの熱がフィラメントに伝達される距離。" msgctxt "bottom_skin_expand_distance description" msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" +msgstr "スキンがインフィルまで到達する距離です。高い値の場合、スキンはインフィルのパターンに隣接しやすく、近接するウォールのレイヤーもスキンに接着しやすくなります。低い値の場合、材料の使用量を節約します。" msgctxt "expand_skins_expand_distance description" msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" +msgstr "スキンがインフィルまで到達する距離です。高い値の場合、スキンはインフィルのパターンに隣接しやすく、近接するウォールのレイヤーもスキンに接着しやすくなります。低い値の場合、材料の使用量を節約します。" msgctxt "top_skin_expand_distance description" msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" +msgstr "スキンがインフィルまで到達する距離です。高い値の場合、スキンはインフィルのパターンに隣接しやすく、近接するウォールのレイヤーもスキンに接着しやすくなります。低い値の場合、材料の使用量を節約します。" msgctxt "wipe_move_distance description" msgid "The distance to move the head back and forth across the brush." @@ -4294,7 +4306,7 @@ msgstr "スカートまたはブリムをプリントする際に使用するエ msgctxt "adhesion_extruder_nr description" msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。これはマルチエクストルージョン時に使用されます。" +msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。複数のエクストルーダーがある場合に使用されます。" msgctxt "support_extruder_nr description" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." @@ -4314,7 +4326,7 @@ msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷 msgctxt "wall_0_extruder_nr description" msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "外壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" +msgstr "外側ウォール印刷用のエクストルーダー。デュアルノズル印刷時に使用。" msgctxt "top_bottom_extruder_nr description" msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." @@ -4334,7 +4346,7 @@ msgstr "ベースラフト層印刷時のファン速度。" msgctxt "raft_interface_fan_speed description" msgid "The fan speed for the middle raft layer." -msgstr "ミドルラフト印刷時のファンの速度。" +msgstr "ミドルラフト層印刷時のファンの速度。" msgctxt "raft_fan_speed description" msgid "The fan speed for the raft." @@ -4354,7 +4366,7 @@ msgstr "画像ファイルの位置。この画像の輝度値でサポートの msgctxt "speed_slowdown_layers description" msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。" +msgstr "ビルドプレートとの接着をより良くして印刷成功する可能性を向上させるために、最初の数層を残りのモデルよりも遅く印刷します。スピードはこのレイヤー数にわたって段階的に上昇します。" msgctxt "raft_airgap description" msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." @@ -4370,7 +4382,7 @@ msgstr "型を印刷するためのモデルの水平部分上の高さ。" msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。" msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4433,8 +4445,8 @@ 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" -"複数のスカートラインがこの距離から外側に展開されます。" +"スカートと印刷の最初の層の間の水平距離。\n" +"これは最小距離です。複数のスカートラインがこの距離から外側に拡張されます。" msgctxt "lightning_infill_straightening_angle description" msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." @@ -4462,7 +4474,7 @@ msgstr "ミドルラフト層印刷時のジャーク。" msgctxt "raft_jerk description" msgid "The jerk with which the raft is printed." -msgstr "ラフトが印刷時のジャーク。" +msgstr "ラフト印刷時のジャーク。" msgctxt "raft_surface_jerk description" msgid "The jerk with which the top raft layers are printed." @@ -4482,7 +4494,7 @@ msgstr "削除するスキンエリアの最大幅。この値より小さいす msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "ビルドファンが最大速度で回転するレイヤー。この値は計算され整数に丸められます。" msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4578,7 +4590,7 @@ msgstr "プライムタワーがプリントされる際の最大瞬間速度を msgctxt "jerk_support_interface description" msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "どのルーフとフロアのサポート部分を印刷するかによって最大瞬間速度は変化します。" +msgstr "サポートのルーフとフロアを印刷する際の最大瞬間速度変化です。" msgctxt "jerk_support_roof description" msgid "The maximum instantaneous velocity change with which the roofs of support are printed." @@ -4674,11 +4686,11 @@ msgstr "スカートまたはブリム最短の長さ。この長さにすべて msgctxt "min_odd_wall_line_width description" msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "中央ラインギャップフィラーのポリラインウォールの最小ライン幅。この設定は、2本のウォールラインのプリントから、2個のアウターウォールと中央の1個の中心ウォールのプリントに切り替わるモデルの厚さを決定します。最小奇数ウォールライン幅を大きくすると、最大偶数ウォールライン幅も大きくなります。最大奇数ウォールライン幅は、2×最小偶数ウォールライン幅として計算されます。" +msgstr "中央ラインギャップフィラーのポリラインウォールの最小ライン幅。この設定は、2本のウォールラインのプリントから、2個の外側ウォールと中央の1個の中心ウォールのプリントに切り替わるモデルの厚さを決定します。最小奇数ウォールライン幅を大きくすると、最大偶数ウォールライン幅も大きくなります。最大奇数ウォールライン幅は、2×最小偶数ウォールライン幅として計算されます。" msgctxt "min_even_wall_line_width description" msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "通常の多角形ウォールの最小ライン幅。この設定は、1本の薄いウォールラインのプリントから、2本のウォールラインのプリントに切り替わるモデルの厚さを決定します。最小偶数ウォールライン幅を大きくすると、最大奇数ウォールライン幅も大きくなります。最大偶数ウォールライン幅は、アウターウォールライン幅 + 0.5 * 最小奇数ウォールライン幅として計算されます。" +msgstr "通常の多角形ウォールの最小ライン幅。この設定は、1本の薄いウォールラインのプリントから、2本のウォールラインのプリントに切り替わるモデルの厚さを決定します。最小偶数ウォールライン幅を大きくすると、最大奇数ウォールライン幅も大きくなります。最大偶数ウォールライン幅は、外側ウォールライン幅 + 0.5 * 最小奇数ウォールライン幅として計算されます。" msgctxt "cool_min_speed description" msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." @@ -4706,7 +4718,7 @@ msgstr "1つのレイヤーに最低限費やす時間。1つの層に必ず設 msgctxt "prime_tower_min_volume description" msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "十分な材料を吐出するための、主たるタワーにおける各層の最小容積。" +msgstr "十分な材料を吐出するための、プライムタワーにおける各層の最小容積。" msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" @@ -4738,7 +4750,7 @@ msgstr "ラフトのベースレイヤーにある線状パターンの周囲に msgctxt "raft_interface_wall_count description" msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "ラフトの中間層の線形パターンの周囲に印刷する輪郭の数。" +msgstr "ラフトの中間層で線形パターンの周囲に印刷する輪郭の数。" msgctxt "raft_surface_wall_count description" msgid "The number of contours to print around the linear pattern in the top layers of the raft." @@ -4762,7 +4774,7 @@ msgstr "ラフトのベースと表面の間にあるレイヤーの数。これ msgctxt "brim_line_count description" msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。" +msgstr "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させます。" msgctxt "support_brim_line_count description" msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." @@ -4770,7 +4782,7 @@ msgstr "サポートブリムに使用される線の数。ブリムの線数を msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "ビルドボリュームを冷却するファンの数。これが0に設定されている場合、ビルドボリュームファンがないことを意味します。" msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4790,19 +4802,19 @@ msgstr "サポートインフィルを囲むウォールの数。ウォールを msgctxt "support_bottom_wall_count description" msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースフロアを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" +msgstr "サポート境界面の底を囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" msgctxt "support_roof_wall_count description" msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" +msgstr "サポート境界面のルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" msgctxt "support_interface_wall_count description" msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" +msgstr "サポート境界面を囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" msgctxt "wall_distribution_count description" msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width." -msgstr "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、アウターウォールの幅が変化しないことを意味します。" +msgstr "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、外側のウォール幅が変化しないことを意味します。" msgctxt "wall_line_count description" msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." @@ -4842,7 +4854,7 @@ msgstr "サポートのフロアが印刷されるパターン。" msgctxt "support_interface_pattern description" msgid "The pattern with which the interface of the support with the model is printed." -msgstr "モデルとサポートのインタフェースが印刷されるパターン。" +msgstr "モデルとサポートの境界面が印刷されるパターン。" msgctxt "support_roof_pattern description" msgid "The pattern with which the roofs of the support are printed." @@ -4866,7 +4878,7 @@ msgstr "初期レイヤーの最大瞬時速度の変更。" msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "スカーフシーム開始時の、選択したレイヤーの高さの比率。数値が低いほどシームは高くなります。効果を得るには値を100未満にする必要があります。" msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -4894,7 +4906,7 @@ msgstr "通常の印刷時とスタンバイ時のウィンドウで平均化さ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "内側のウォールをプリントする速度。外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。" +msgstr "内側のウォールをプリントする速度。外側より内側のウォールを高速でプリントすると、印刷時間の短縮になります。外側ウォールのプリント速度とインフィルのプリント速度の中間に設定するのが適切です。" msgctxt "bridge_skin_speed description" msgid "The speed at which bridge skin regions are printed." @@ -4950,7 +4962,7 @@ msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の msgctxt "switch_extruder_retraction_speed description" msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "ノズル切り替え中のフィラメントの引き込み速度。" +msgstr "ノズル切り替え中のフィラメントの引き戻し速度。" msgctxt "retraction_retract_speed description" msgid "The speed at which the filament is retracted during a retraction move." @@ -4978,11 +4990,11 @@ msgstr "ミドルラフト層が印刷される速度。ノズルから吐出さ msgctxt "speed_wall_0 description" msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "最も外側のウォールをプリントする速度。外側の壁を低速でプリントすると表面の質が改善しますが、内壁と外壁のプリント速度の差が大きすぎると、印刷の質が悪化します。" +msgstr "最も外側のウォールをプリントする速度。外側のウォールを低速でプリントすると表面の質が改善しますが、内側と外側のウォールでプリント速度の差が大きすぎると、印刷の質が悪化します。" msgctxt "speed_prime_tower description" msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "主たるタワーをプリントする速度。異なるフィラメントの印刷で密着性が最適ではない場合、低速にてプライムタワーをプリントすることでより安定させることができます。" +msgstr "プライムタワーをプリントする速度。異なるフィラメントの印刷で接着性が最適ではない場合、低速でプライムタワーをプリントすることでより安定させることができます。" msgctxt "cool_fan_speed description" msgid "The speed at which the print cooling fans spin." @@ -5034,7 +5046,7 @@ msgstr "上部表面通過時の速度。" msgctxt "material_break_speed description" msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引戻し速度。" +msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引き戻し速度。" msgctxt "speed_roofing description" msgid "The speed at which top surface skin layers are printed." @@ -5110,7 +5122,7 @@ msgstr "スキンエッジをサポートする追加のインフィルの厚さ msgctxt "support_interface_height description" msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "底面または上部のモデルと接触するサポートのインターフェイスの厚さ。" +msgstr "底面または上部のモデルと接触するサポート境界面の厚さ。" msgctxt "support_bottom_height description" msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." @@ -5158,7 +5170,7 @@ msgstr "造形可能領域の幅(X方向)。" msgctxt "support_brim_width description" msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。" +msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、材料の使用が増える代わりにビルドプレートへの接着性が強化されます。" msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." @@ -5174,11 +5186,11 @@ msgstr "プライムタワーの幅。" msgctxt "magic_fuzzy_skin_thickness description" msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "振動が起こる幅。内壁は変更されていないので、これを外壁の幅より小さく設定することをお勧めします。" +msgstr "振動が起こる幅。内側ウォールに対しては適用されないので、この値は外側ウォールの幅より小さく設定することをお勧めします。" msgctxt "retraction_extrusion_window description" msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "最大の引き戻し回数。この値は引き戻し距離と同じであることで、同じ箇所に対して引き戻し移動の回数が制限される効果があります。" +msgstr "最大引き戻し回数が強制される幅。この値は引き戻し処理とほぼ同じで、同じ材料の塊における引き戻しが制限される場合に有効です。" msgctxt "prime_tower_position_x description" msgid "The x coordinate of the position of the prime tower." @@ -5198,31 +5210,31 @@ msgstr "この設定は、ブリッジ壁が始まる直前に、エクストル msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "外側ウォールをプリントする際における最高速度に達するまでの加速度です。" msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "外側ウォールのプリントを終了する際の減速度です。" msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "外側ウォールの加減速を適用するために長いパスを分割する際の造形パスの最大長です。距離が短いほど精度が上がりますが、Gコードが冗長になります。" msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "外側ウォールをプリントする際における終了時の最高速度の比率です。" msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "外側ウォールをプリントする際における開始時の最高速度の比率です。" msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "この設定は、ラフトベースのアウトラインの内側の角をどの程度丸くするかを制御します。内側の角はここで指定した値と等しい半径の半円に丸められます。この設定では、ラフトの輪郭にある円より小さい穴も削除されます。" +msgstr "この設定は、ラフト土台のアウトラインの内側の角をどの程度丸くするかを制御します。内側の角はここで指定した値と等しい半径の半円に丸められます。この設定では、ラフトの輪郭にある円より小さい穴も削除されます。" msgctxt "raft_interface_smoothing description" msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "この設定は、ラフトの中央のアウトラインの内側の角をどの程度丸くするかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定では、ラフトの輪郭にある円より小さい穴も削除されます。" +msgstr "この設定は、ラフト中間層のアウトラインの内側の角をどの程度丸くするかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定では、ラフトの輪郭にある円より小さい穴も削除されます。" msgctxt "raft_smoothing description" msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5230,7 +5242,7 @@ msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸め msgctxt "raft_surface_smoothing description" msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "この設定は、ラフト上部の輪郭の内側の角をどの程度丸くするかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定ではラフトの輪郭にある円より小さい穴も削除されます。" +msgstr "この設定は、ラフト上層部の輪郭の内側の角をどの程度丸くするかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定ではラフトの輪郭にある円より小さい穴も削除されます。" msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." @@ -5262,7 +5274,7 @@ msgstr "上部レイヤー" msgctxt "top_skin_expand_distance label" msgid "Top Skin Expand Distance" -msgstr "上面展開距離" +msgstr "上面拡張距離" msgctxt "top_skin_preshrink label" msgid "Top Skin Removal Width" @@ -5286,19 +5298,19 @@ msgstr "上面内壁の流れ" msgctxt "acceleration_wall_0_roofing label" msgid "Top Surface Outer Wall Acceleration" -msgstr "上面外壁加速度" +msgstr "上面外側ウォール加速度" msgctxt "wall_0_material_flow_roofing label" msgid "Top Surface Outer Wall Flow" -msgstr "上面最外壁の流れ" +msgstr "上面外側ウォールのフロー" msgctxt "jerk_wall_0_roofing label" msgid "Top Surface Outer Wall Jerk" -msgstr "上面内壁の最大瞬間速度変化" +msgstr "上面内側ウォールジャーク" msgctxt "speed_wall_0_roofing label" msgid "Top Surface Outer Wall Speed" -msgstr "上面の最外壁速度" +msgstr "上面外側ウォール速度" msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" @@ -5474,7 +5486,7 @@ msgstr "変更なし" msgctxt "meshfix_union_all label" msgid "Union Overlapping Volumes" -msgstr "重複ボリュームを結合" +msgstr "重複部分を統合" msgctxt "bridge_wall_min_length description" msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." @@ -5498,7 +5510,7 @@ msgstr "プリントヘッドの移動に異なるジャーク値を使用しま msgctxt "relative_extrusion description" msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、G-codeの後処理が容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、G-codeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。" +msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、G-codeのポストプロセッシングが容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、G-codeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。" msgctxt "support_use_towers description" msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." @@ -5526,7 +5538,7 @@ msgstr "垂直スケールファクタ収縮補正" msgctxt "slicing_tolerance description" msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。排他は最も細かく、包括は最もフィットし、中間は元の表面に最も近くなります。" +msgstr "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。包括は最も細かく、排他は最もフィットし、中間は元の表面に最も近くなります。" msgctxt "material_bed_temp_wait label" msgid "Wait for Build Plate Heatup" @@ -5598,15 +5610,15 @@ msgstr "ウォール" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "ウォールのみ" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "ウォールとライン" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "この角度を超えるオーバーハングとなるウォールは、オーバーハングの設定を用いてプリントされます。値が90の場合、どのウォールもオーバーハングとして扱われません。サポートにより支えられているオーバーハングについてもオーバーハングとして扱われません。さらに、半分未満がオーバーハングとなっているラインもまたオーバーハングとして扱われません。" msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." @@ -5630,7 +5642,7 @@ msgstr "ゼロを超える場合、この距離より長い移動量をコーミ msgctxt "hole_xy_offset_max_diameter description" msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "0より大きい場合、穴の水平展開が小さい穴に対して徐々に適用されます(小さい穴はさらに展開されます)。0に設定すると、すべての穴に穴の水平展開が適用されます。穴の水平展開の最大直径より大きい穴は展開されません。" +msgstr "0より大きい場合、穴の水平拡張が小さい穴に対して徐々に適用されます(小さい穴はさらに拡張されます)。0に設定すると、すべての穴に穴の水平拡張が適用されます。穴の水平拡張の最大直径より大きい穴は拡張されません。" msgctxt "hole_xy_offset description" msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." @@ -5646,11 +5658,11 @@ msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値 msgctxt "raft_interface_z_offset description" msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." -msgstr "ラフトインターフェースの第1層をプリントする際に、カスタマイズされたベースとインターフェースとの間の接着力をカスタマイズされたこのオフセット値を使用します。オフセット値をマイナスにすると接着力が向上します。" +msgstr "ラフト境界面の第1層をプリントする際に、土台と境界面との接着を調整するためこのオフセット値だけ平行移動します。オフセット値をマイナスにすると接着力が向上します。" msgctxt "raft_surface_z_offset description" msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." -msgstr "ラフトサーフェスの第1層をプリントする際に、カスタマイズされたベースとインターフェースとの間の接着力をカスタマイズされたこのオフセット値を使用します。オフセット値をマイナスにすると接着力が向上します。" +msgstr "ラフト表面の第1層をプリントする際、境界面と表面との接着を調整するためこのオフセット値だけ移動します。オフセット値をマイナスにすると接着力が向上します。" msgctxt "bridge_skin_material_flow_2 description" msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." @@ -5682,7 +5694,7 @@ msgstr "拭き取りの際、ビルドプレートが下降してノズルとプ msgctxt "retraction_hop_enabled description" msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "引き戻し終了時にビルドプレートが下降してノズルと造形物の間に隙間を作ります。ノズルが移動中に造形物に当たって造形物をビルドプレートから剥がしてしまう可能性を減らします。" +msgstr "引き戻し終了時にビルドプレートを下降させてノズルと造形物の間に隙間を作ります。ノズルが移動中に造形物に当たり造形物をビルドプレートから剥がしてしまう可能性を減らします。" msgctxt "support_xy_overrides_z description" msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." @@ -5874,7 +5886,7 @@ msgstr "ワイプ引き戻し時の余分押し戻し量" msgctxt "wipe_retraction_prime_speed label" msgid "Wipe Retraction Prime Speed" -msgstr "ワイプ引き戻し下準備速度" +msgstr "ワイプ引き戻し後の押し出し速度" msgctxt "wipe_retraction_retract_speed label" msgid "Wipe Retraction Retract Speed" @@ -5950,7 +5962,7 @@ msgstr "Zシーム合わせ" msgctxt "z_seam_on_vertex label" msgid "Z Seam On Vertex" -msgstr "頂点のZシーム" +msgstr "Zシームを頂点に配置" msgctxt "z_seam_position label" msgid "Z Seam Position" @@ -6012,13 +6024,9 @@ msgctxt "travel description" msgid "travel" msgstr "移動経路" -#~ msgctxt "speed_equalize_flow_width_factor description" -#~ msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm3/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -#~ msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm3/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。" - #~ msgctxt "machine_nozzle_head_distance label" #~ msgid "Nozzle Length" -#~ msgstr "ノズル長さ" +#~ msgstr "ノズルの長さ" #~ msgctxt "machine_nozzle_head_distance description" #~ msgid "The height difference between the tip of the nozzle and the lowest part of the print head." diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 63a1a8b3c8b..de8aef4e00d 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 14:27+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -140,11 +139,10 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*이러한 변경 사항을 적용하려면 응용 프로그램을 재시작해야 합니다." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- 재료 설정 및 Marketplace 플러그인 추가- 재료 설정과 플러그인 백업 및 동기화- UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- 재료 설정 및 Marketplace 플러그인 추가" +"- 재료 설정과 플러그인 백업 및 동기화" +"- UltiMaker 커뮤니티에서 48,000명 이상의 사용자와 아이디어를 공유하고 도움 받기" msgctxt "@heading" msgid "-- incomplete --" @@ -198,45 +196,38 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "사용자 지정 프로필에는 사용자가 변경한 설정만 저장됩니다.
    이를 지원하는 재료의 경우 새 사용자 지정 프로필은 %1의 속성을 상속합니다." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Renderer: {renderer}
  • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL 공급업체: {vendor}
  • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL 버전: {version}
  • " msgctxt "@label crash message" -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" +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 "

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

    " +"

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

    " " " -msgstr "

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

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

    " msgctxt "@label crash message" -msgid "" -"

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

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" +msgid "

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

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " +msgstr "

    죄송합니다, UltiMaker Cura가 정상적이지 않습니다. </ p> </ b>" +"                    

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

    백업은 설정 폴더에서 찾을 수 있습니다. </ p>" +"                    

    문제를 해결하기 위해이 오류 보고서를 보내주십시오. </ p>" " " -msgstr "

    죄송합니다, UltiMaker Cura가 정상적이지 않습니다. </ p> </ b>                    

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

    백업은 설정 폴더에서 찾을 수 있습니다. </ p>                    

    문제를 해결하기 위해이 오류 보고서를 보내주십시오. </ p> " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

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

    \n" -"

    {model_names}

    \n" -"

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

    \n" -"

    View print quality guide

    " -msgstr "

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

    {model_names}

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

    인쇄 품질 가이드 보기

    " +msgid "

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

    \n

    {model_names}

    \n

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

    \n

    View print quality guide

    " +msgstr "

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

    " +"

    {model_names}

    " +"

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

    " +"

    인쇄 품질 가이드 보기

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -395,7 +386,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "수동으로 프린터 추가" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "사용자 계정에서 프린터 {name}({model}) 추가" @@ -436,7 +426,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "모든 파일 (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "지원되는 모든 유형 ({0})" @@ -529,7 +518,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "%1(을)를 대기열의 맨 위로 이동하시겠습니까?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "일시적으로 {printer_name}을(를) 제거하시겠습니까?" @@ -542,7 +530,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "%1을 제거 하시겠습니까? 이것은 취소 할 수 없습니다!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "정말로 {0}을(를) 제거하시겠습니까? 이 작업을 실행 취소할 수 없습니다." @@ -707,12 +694,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "UltiMaker 프린터로 연결할 수 없습니까?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "프린터가 추가되기 전 {0}에서 프로파일을 가져올 수 없습니다." -#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "G-코드가 로드되어 있으면 다른 파일을 열 수 없습니다. {0} 가져 오기를 건너 뛰었습니다." @@ -794,12 +779,7 @@ msgid "Checks models and print configuration for possible printing issues and gi msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." msgctxt "@action:inmenu menubar:edit" @@ -838,10 +818,6 @@ msgctxt "@label" msgid "Color scheme" msgstr "색 구성표" -msgctxt "@label" -msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." -msgstr "권장하지 않는 조합입니다. 안정성을 높이려면 BB 코어를 1번 슬롯(왼쪽)에 탑재하세요." - msgctxt "@info" msgid "Compare and save." msgstr "비교하고 저장합니다." @@ -1006,7 +982,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "사용자 데이터 디렉터리에서 압축 파일을 만들 수 없습니다: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "{device} 장치에 쓸 때 파일 이름을 찾을 수 없습니다." @@ -1035,12 +1010,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "재료 아카이브를 {}에 저장할 수 없음:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "{0}: {1} 에 저장할 수 없습니다" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "이동식 드라이브 {0}: {1} 에 저장할 수 없습니다 :" @@ -1049,26 +1022,20 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "데이터를 프린터로 업로드할 수 없음." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}프로세스를 실행할 권한이 없습니다." +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}" +"프로세스를 실행할 권한이 없습니다." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}운영 체제가 이를 차단하고 있습니다(바이러스 백신?)" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}" +"운영 체제가 이를 차단하고 있습니다(바이러스 백신?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}리소스를 일시적으로 사용할 수 없습니다" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "EnginePlugin을 시작할 수 없습니다: {self._plugin_id}" +"리소스를 일시적으로 사용할 수 없습니다" msgctxt "@title:window" msgid "Crash Report" @@ -1154,16 +1121,14 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "큐라를 시작할 수 없습니다" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura가 {0} 그룹의 호스트 프린터에 설치되지 않은 재료 프로파일을 감지했습니다." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "Cura는 커뮤니티와 공동으로 UltiMaker 에 의해 개발되었습니다.Cura는 다음의 오픈 소스 프로젝트를 사용합니다:" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura는 커뮤니티와 공동으로 UltiMaker 에 의해 개발되었습니다." +"Cura는 다음의 오픈 소스 프로젝트를 사용합니다:" msgctxt "@label" msgid "Cura language" @@ -1177,6 +1142,14 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "CuraEngine 백엔드" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "점진적으로 흐름을 평활화하여 높은 흐름 점프를 제한하는 CuraEngine 플러그인" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "통화:" @@ -1433,12 +1406,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "꺼내기" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "이동식 장치 {0} 꺼내기" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0}가 배출됐습니다. 이제 드라이브를 안전하게 제거 할 수 있습니다." @@ -1527,10 +1498,6 @@ msgctxt "@title:window" msgid "Export Material" msgstr "재료 내보내기" -msgctxt "@action:inmenu menubar:help" -msgid "Export Package For Technical Support" -msgstr "" - msgctxt "@title:window" msgid "Export Profile" msgstr "프로파일 내보내기" @@ -1551,7 +1518,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "내보내기 완료" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "프로파일을 {0} 에 내보냅니다" @@ -1588,7 +1554,6 @@ msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "압출기 시작 G-코드 지속 시간" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "압출기 {0}" @@ -1613,7 +1578,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "프린터와 동기화할 재료의 아카이브 저장에 실패했습니다." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "{0}를 배출하지 못했습니다. 다른 프로그램이 드라이브를 사용 중일 수 있습니다." @@ -1622,27 +1586,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "재료를 내보내는데 실패했습니다" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "프로파일을 {0}: {1}로 내보내는데 실패했습니다" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "프로파일을 {0}로 내보내지 못했습니다. Writer 플러그인이 오류를 보고했습니다." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0}에서 프로파일을 가져오지 못했습니다:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0}에서 프로파일을 가져오지 못했습니다:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0}에서 프로파일을 가져오지 못했습니다 {1}" @@ -1659,7 +1618,6 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "재료 아카이브를 저장하는 데 실패함" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "특정 클라우드 프린터에 쓰기 실패: {0}이(가) 원격 클러스터에 없음" @@ -1688,7 +1646,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "파일이 저장됨" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "파일 {0}에 유효한 프로파일이 포함되어 있지 않습니다." @@ -1912,7 +1869,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "그리드 배치" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "그룹 #{group_nr}" @@ -2397,10 +2353,6 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Makerbot 프린트파일 작성기" -msgctxt "@item:inlistbox" -msgid "Makerbot Sketch Printfile" -msgstr "Makerbot Sketch Printfile" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter가 지정된 경로에 저장할 수 없습니다." @@ -2642,7 +2594,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "네트워크 오류" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "안정적인 신규 %s 펌웨어를 사용할 수 있습니다" @@ -2655,7 +2606,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "새 UltiMaker 프린터를 Digital Factory에 연결하여 원격으로 모니터링할 수 있습니다." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "사용자의 {machine_name}에서 새로운 기능 또는 버그 수정 사항을 사용할 수 있습니다! 완료하지 않은 경우 프린터의 펌웨어를 버전 {latest_version}으로 업데이트하는 것이 좋습니다." @@ -2701,7 +2651,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "비용 추산 이용 불가" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "{0}(으)로 가져올 사용자 정의 프로파일이 없습니다" @@ -2802,6 +2751,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "노즐 오프셋 Y" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "노즐 크기" + msgctxt "@label" msgid "Nozzle size" msgstr "노즐 크기" @@ -2838,7 +2791,6 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "상단 레이어 만 표시" -#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" msgstr "한 번에 하나의 G-코드 파일만 로드 할 수 있습니다. {0} 가져 오기를 건너 뛰었습니다." @@ -3051,12 +3003,9 @@ msgid "Please give the required permissions when authorizing this application." msgstr "이 응용 프로그램을 인증할 때 필요한 권한을 제공하십시오." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오.- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오." +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "프린터에 연결이 있는지 확인하십시오.⏎- 프린터가 켜져 있는지 확인하십시오." +"- 프린터가 네트워크에 연결되어 있는지 확인하십시오.⏎- 클라우드로 연결된 프린터를 탐색할 수 있도록 로그인되어 있는지 확인하십시오." msgctxt "@text" msgid "Please name your printer" @@ -3083,12 +3032,11 @@ msgid "Please remove the print" msgstr "프린트물을 제거하십시오" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오.- 출력 사이즈 내에 맞춤화됨- 활성화된 익스트루더로 할당됨- 수정자 메쉬로 전체 설정되지 않음" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "설정을 검토하고 모델이 다음 사항에 해당하는지 확인하십시오." +"- 출력 사이즈 내에 맞춤화됨" +"- 활성화된 익스트루더로 할당됨" +"- 수정자 메쉬로 전체 설정되지 않음" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -3388,7 +3336,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "프로파일 설정" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "프로파일 {0}에 알 수 없는 파일 유형이 있거나 손상되었습니다." @@ -3413,22 +3360,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "프로그래밍 언어" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "프로젝트 파일 {0}에 알 수 없는 기기 유형 {1}이(가) 포함되어 있습니다. 기기를 가져올 수 없습니다. 대신 모델을 가져옵니다." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "프로젝트 파일 {0}이 손상됨: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "프로젝트 파일 {0}이(가) 이 버전의 UltiMaker Cura에서 확인할 수 없는 프로파일을 사용하였습니다." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "프로젝트 파일 {0}에 갑자기 접근할 수 없습니다: {1}." @@ -3557,7 +3500,6 @@ msgctxt "@label" msgid "Qt version" msgstr "Qt 버전" -#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "'{0}' 품질 타입은 현재 활성 기기 정의 '{1}'와(과) 호환되지 않습니다." @@ -3798,12 +3740,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "이동식 드라이브에 저장" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "이동식 드라이브 {0}에 저장" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "이동식 드라이브 {0}에 {1}로 저장되었습니다." @@ -3812,7 +3752,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "저장" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "이동식 드라이브 {0}에 저장" @@ -3829,10 +3768,6 @@ msgctxt "@placeholder" msgid "Search" msgstr "검색" -msgctxt "@label:textbox" -msgid "Search Printer" -msgstr "프린터 검색" - msgctxt "@info" msgid "Search in the browser" msgstr "브라우저에서 검색" @@ -4065,6 +4000,10 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "온라인 문서 표시" +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "온라인 문제 해결 표시" + msgctxt "@label:checkbox" msgid "Show all" msgstr "모두 보이기" @@ -4190,11 +4129,9 @@ msgid "Solid view" msgstr "솔리드 뷰" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다.이 설정을 표시하려면 클릭하십시오." +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "일부 숨겨진 설정은 일반적인 계산 값과 다른 값을 사용합니다." +"이 설정을 표시하려면 클릭하십시오." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -4209,11 +4146,9 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "%1에 정의된 일부 설정 값이 재정의되었습니다." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다.프로파일 매니저를 열려면 클릭하십시오." +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "일부 설정/대체 값은 프로파일에 저장된 값과 다릅니다." +"프로파일 매니저를 열려면 클릭하십시오." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -4295,7 +4230,6 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "재료를 성공적으로 가져왔습니다" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "프로파일 {0}을(를) 성공적으로 가져왔습니다." @@ -4501,7 +4435,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "파일 {0}이 이미 있습니다. 덮어 쓰시겠습니까?" @@ -4564,15 +4497,11 @@ msgid "The nozzle inserted in this extruder." msgstr "이 익스트루더에 삽입 된 노즐." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "프린트의 인필 재료 패턴:비기능성 모델을 빠르게 프린트하려면 선, 지그재그 또는 라이트닝 인필을 선택합니다.많은 응력을 받지 않는 기능성 부품의 경우 그리드 또는 삼각형 또는 삼-육각형을 사용하는 것이 좋습니다.여러 방향에서 높은 강도를 요구하는 기능성 3D 객체의 경우에는 큐빅, 세분된 큐빅, 쿼터 큐빅, 옥텟 및 자이로이드를 사용합니다." +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "프린트의 인필 재료 패턴:" +"비기능성 모델을 빠르게 프린트하려면 선, 지그재그 또는 라이트닝 인필을 선택합니다." +"많은 응력을 받지 않는 기능성 부품의 경우 그리드 또는 삼각형 또는 삼-육각형을 사용하는 것이 좋습니다." +"여러 방향에서 높은 강도를 요구하는 기능성 3D 객체의 경우에는 큐빅, 세분된 큐빅, 쿼터 큐빅, 옥텟 및 자이로이드를 사용합니다." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4691,8 +4620,8 @@ msgid "This configuration is not available because %1 is not recognized. Please msgstr "%1이(가) 인식되지 않기 때문에 이 구성을 사용할 수 없습니다. %2에 방문하여 올바른 재료 프로파일을 다운로드하십시오." msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" -msgstr "이 항목은 Cura Universal 프로젝트 파일입니다. 해당 파일을 Cura Universal 프로젝트로 열거나, 파일에서 모델을 불러올까요?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Cura 범용 프로젝트 파일입니다. Cura 프로젝트 또는 Cura 범용 프로젝트로 열거나 파일에서 모델을 가져오시겠습니까?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4727,7 +4656,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "이 프린터는 %1개 프린터 그룹의 호스트입니다." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "프로파일 {0}에는 정확하지 않은 데이터가 포함되어 있으므로, 불러올 수 없습니다." @@ -4741,11 +4669,9 @@ msgid "This project contains materials or plugins that are currently not install msgstr "이 프로젝트에는 현재 Cura에 설치되지 않은 재료 또는 플러그인이 포함되어 있습니다.
    누락된 패키지를 설치하고 프로젝트를 다시 엽니다." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "이 설정에는 프로파일과 다른 값이 있습니다.프로파일 값을 복원하려면 클릭하십시오." +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "이 설정에는 프로파일과 다른 값이 있습니다." +"프로파일 값을 복원하려면 클릭하십시오." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4761,11 +4687,9 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "이 설정은 항상 모든 익스트루더 사이에 공유됩니다. 여기서 변경하면 모든 익스트루더에 대한 값이 변경됩니다." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다.계산 된 값을 복원하려면 클릭하십시오." +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "이 설정은 일반적으로 계산되지만 현재는 절대 값이 설정되어 있습니다." +"계산 된 값을 복원하려면 클릭하십시오." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4799,7 +4723,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Digital Factory에 연결된 모든 프린터와 자동으로 재료 프로파일을 동기화하려면 Cura에 가입되어 있어야 합니다." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "연결을 설정하려면 {website_link}에 방문하십시오." @@ -4812,7 +4735,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "네트워크를 통해 프린터로 직접 프린팅하려면 네트워크 케이블을 사용하거나 프린터를 WIFI 네트워크에 연결하여 프린터가 네트워크에 연결되어 있는지 확인하십시오. Cura를 프린터에 연결하지 않은 경우에도 USB 드라이브를 사용하여 g-코드 파일을 프린터로 전송할 수 있습니다." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "{printer_name}을(를) 영구적으로 제거하려면 {digital_factory_link}을(를) 방문하십시오." @@ -4957,17 +4879,14 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "모든 개체가 출력할 수 있는 최대 사이즈 내에 위치할 수 없습니다" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "{self._plugin_id}에 대한 로컬 EnginePlugin 서버 실행 파일을 찾을 수 없습니다." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "실행 중인 EnginePlugin을 종료할 수 없습니다. {self._plugin_id}접속이 거부되었습니다." +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "실행 중인 EnginePlugin을 종료할 수 없습니다. {self._plugin_id}" +"접속이 거부되었습니다." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4977,14 +4896,6 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "예시 데이터 파일을 읽을 수 없습니다." -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" - -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" - msgctxt "@info:title" msgid "Unable to slice" msgstr "슬라이스 할 수 없습니다" @@ -4997,12 +4908,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "프라임 타워 또는 위치가 유효하지 않아 슬라이스 할 수 없습니다." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "비활성화된 익스트루더 %s(와)과 연결된 개체가 있기 때문에 슬라이스할 수 없습니다." -#, 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}" @@ -5011,7 +4920,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "선택한 소재 또는 구성과 호환되지 않기 때문에 현재 소재로 슬라이스 할 수 없습니다." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "현재 설정으로 슬라이스 할 수 없습니다. 다음 설정에는 오류가 있습니다 : {0}" @@ -5020,7 +4928,6 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "새 로그인 작업을 시작할 수 없습니다. 다른 로그인 작업이 진행 중인지 확인하십시오." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "파일에 쓰기 불가: {0}" @@ -5073,7 +4980,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "알 수 없는 패키지" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "프린트 작업 업로드 시 알 수 없는 오류 코드: {0}" @@ -5246,10 +5152,6 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "Cura 5.6에서 Cura 5.7로 구성을 업그레이드합니다." -msgctxt "description" -msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" - msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "사용자 정의 펌웨어 업로드" @@ -5394,10 +5296,6 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "5.6에서 5.7로 버전 업그레이드" -msgctxt "name" -msgid "Version Upgrade 5.8 to 5.9" -msgstr "" - msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Digital Factory에서 프린터 보기" @@ -5450,7 +5348,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "경고" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "경고: 프로파일은 '{0}' 품질 타입을 현재 구성에 이용할 수 없기 때문에 찾을 수 없습니다. 이 품질 타입을 사용할 수 있는 재료/노즐 조합으로 전환하십시오." @@ -5572,28 +5469,19 @@ msgid "Yes" msgstr "예" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. 정말로 계속하시겠습니까?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "Cura에서 모든 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. " +"정말로 계속하시겠습니까?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Cura에서 {0} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n" -"정말로 계속하시겠습니까?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Cura에서 {0} 프린터를 제거하려고 합니다. 이 작업은 실행 취소할 수 없습니다. \n정말로 계속하시겠습니까?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "UltiMaker Connect를 실행하지 않는 프린터에 연결하려 합니다. 프린터를 최신 펌웨어로 업데이트해 주십시오." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "연결 시도 중인 {0}이(가) 그룹의 호스트가 아닙니다. 웹 페이지에서 그룹 호스트로 설정할 수 있습니다." @@ -5604,7 +5492,9 @@ msgstr "현재 백업이 없습니다. ‘지금 백업’ 버튼을 사용하 msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "일부 프로파일 설정을 사용자 정의했습니다.프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." +msgstr "일부 프로파일 설정을 사용자 정의했습니다." +"프로파일 전환 후에도 변경된 설정을 유지하시겠습니까?" +"또는 변경 사항을 버리고 '%1'에서 기본값을 로드할 수 있습니다." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -5634,12 +5524,10 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "새 프린터가 Cura에 자동으로 나타납니다." -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Your printer {printer_name} could be connected via cloud." " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Your printer {printer_name} could be connected via cloud. Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" msgctxt "@label" msgid "Z" @@ -5701,7 +5589,6 @@ msgctxt "@label" msgid "version: %1" msgstr "버전: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "다음 계정 동기화 시까지 {printer_name}이(가) 제거됩니다." @@ -5710,18 +5597,38 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}개의 플러그인을 다운로드하지 못했습니다" -#~ msgctxt "description" -#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -#~ msgstr "점진적으로 흐름을 평활화하여 높은 흐름 점프를 제한하는 CuraEngine 플러그인" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "권장하지 않는 조합입니다. 안정성을 높이려면 BB 코어를 1번 슬롯(왼쪽)에 탑재하세요." + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot Sketch Printfile" + +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "프린터 검색" -#~ msgctxt "name" -#~ msgid "CuraEngineGradualFlow" -#~ msgstr "CuraEngineGradualFlow" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "이 항목은 Cura Universal 프로젝트 파일입니다. 해당 파일을 Cura Universal 프로젝트로 열거나, 파일에서 모델을 불러올까요?" -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting" -#~ msgstr "온라인 문제 해결 표시" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "기술 지원을 위해 패키지 내보내기" -#~ msgctxt "@text:window" -#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -#~ msgstr "Cura 범용 프로젝트 파일입니다. Cura 프로젝트 또는 Cura 범용 프로젝트로 열거나 파일에서 모델을 가져오시겠습니까?" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "모델 데이터를 엔진에 전송할 수 없습니다. 다시 시도하거나 지원팀에 문의해 주세요." + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "모델 데이터를 엔진에 전송할 수 없습니다. 덜 세부적인 모델을 사용하거나 인스턴스 수를 줄이세요." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Cura 5.8에서 Cura 5.9로 구성을 업그레이드합니다." + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "5.8에서 5.9로 버전 업그레이드" diff --git a/resources/i18n/ko_KR/fdmextruder.def.json.po b/resources/i18n/ko_KR/fdmextruder.def.json.po index efd12f75aec..702ca2e4b1d 100644 --- a/resources/i18n/ko_KR/fdmextruder.def.json.po +++ b/resources/i18n/ko_KR/fdmextruder.def.json.po @@ -1,9 +1,8 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -125,10 +124,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "노즐 ID" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "노즐 X 오프셋" @@ -157,10 +152,6 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." @@ -204,3 +195,11 @@ msgstr "노즐 오프셋의 y 좌표." msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "익스트루더를 켤 때 시작 위치의 y 좌표." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "노즐 길이" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "노즐 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다." diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 0c3cd0fb96c..8b336f642b0 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -94,7 +94,7 @@ msgstr "어댑티브 레이어는 모델의 모양에 따라 레이어의 높이 msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "위 스킨을 지지하기 위해 내부채움 패턴에 선을 추가로 더합니다. 이 옵션은 아래의 내부채움이 위에 출력되는 스킨 레이어를 제대로 지지하지 못해 복잡한 모양의 스킨에 구멍이나 플라스틱 방울이 생기는 것을 방지합니다. '벽'은 스킨의 윤곽선만 지지하는 반면 '벽 및 선'은 스킨을 이루는 선의 끝부분도 지지합니다." msgctxt "infill_wall_line_count description" msgid "" @@ -444,11 +444,11 @@ msgstr "브림 너비" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "높이에서 팬 속도 설정" msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "레이어에서 팬 속도 설정" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" @@ -492,7 +492,7 @@ msgstr "빌드 볼륨 온도 경고" msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "빌드 볼륨 팬 번호" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -732,11 +732,11 @@ msgstr "브릿지가 출력되는 중에 브리지를 감지하고 인쇄 속도 msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "스카프 솔기를 따라 압출할 때 흐름 변화에서 각 단계의 길이를 결정합니다. 거리가 짧을수록 더 정밀하지만 G코드도 복잡해집니다." msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "Z 솔기를 덜 보이게 하는 솔기 유형인 스카프 솔기의 길이를 결정합니다. 0보다 커야 효과적입니다." msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." @@ -1028,7 +1028,7 @@ msgstr "광범위한 스티칭은 다각형을 만지면서 구멍을 닫음으 msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "스킨을 지지하는 추가 내부채움 선" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" @@ -1042,6 +1042,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "노즐 스위치 후 프라이밍하는 추가 소재의 양입니다." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "익스트루더 프라임 X 위치" @@ -2438,7 +2442,7 @@ msgstr "None" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "없음" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2484,6 +2488,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "노즐 ID" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "노즐 크기" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "노즐 스위치 엑스트라 프라임 양" @@ -2614,15 +2622,15 @@ msgstr "외벽 가속도" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "외벽 가속" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "외벽 감속" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "외벽 종료 속도 비율" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" @@ -2650,11 +2658,11 @@ msgstr "외벽 속도" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "외벽 속도 분할 거리" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "외벽 시작 속도 비율" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" @@ -2792,6 +2800,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "프린팅 가속도" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Jerk 프린팅" @@ -3298,15 +3310,15 @@ msgstr "확장 배율 수축 보상" msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "스카프 솔기 길이" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "스카프 솔기 시작 높이" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "스카프 솔기 단계 길이" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -4366,7 +4378,7 @@ msgstr "모델의 수평 부분 위의 높이로 몰드를 프린팅합니다." msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "일반 팬 속도에서 팬이 회전하는 높이입니다. 아래 레이어에서는 팬 속도가 초기 팬 속도에서 일반 팬 속도로 점차 증가합니다." msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4476,7 +4488,7 @@ msgstr "제거 할 상단 스킨 영역의 가장 큰 너비. 이 값보다 작 msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "빌드 팬이 최대 팬 속도로 회전하는 레이어입니다. 이 값은 계산되어 정수로 반올림됩니다." msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4764,7 +4776,7 @@ msgstr "서포트 브림에 사용되는 라인의 수. 브림 라인이 많아 msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "빌드 볼륨을 냉각하는 팬의 수입니다. 0으로 설정하면 빌드 볼륨 팬이 없는 것을 나타냅니다." msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4860,7 +4872,7 @@ msgstr "초기 레이어의 프린팅 최대 순간 속도 변화." msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "스카프 솔기가 시작되는 선택한 레이어 높이의 비율입니다. 숫자가 낮을수록 솔기 높이가 커집니다. 100보다 낮아야 효과적입니다." msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -5192,23 +5204,23 @@ msgstr "이것은 브릿지 벽이 시작되기 직전에 익스트루더가 있 msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "외벽을 출력할 때 최고 속도에 도달하는 가속도입니다." msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "외벽 출력을 종료할 때의 감속도입니다." msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "외벽 가속/감속을 적용하기 위해 긴 경로를 분할 때 압출 경로의 최대 길이입니다. 거리가 짧을수록 더 정밀해지지만 G코드도 복잡해집니다." msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "외벽을 출력할 때 종료되는 최고 속도의 비율입니다." msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "외벽을 출력할 때 시작되는 최고 속도의 비율입니다." msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5592,15 +5604,15 @@ msgstr "벽" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "벽만" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "벽 및 선" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "이 각도보다 더 돌출된 벽은 돌출 벽 설정을 사용하여 출력됩니다. 값이 90인 경우 벽은 돌출부로 간주하지 않습니다. 지지대가 지지하는 돌출부도 돌출부로 간주하지 않습니다. 또한 돌출부의 절반보다 짧은 선도 돌출부로 간주하지 않습니다." msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index f6cc44bded5..6e1497d5078 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 14:27+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -142,11 +141,10 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*U moet de toepassing opnieuw starten voordat deze wijzigingen van kracht worden." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze- Deel ideeën met 48.000+ gebruikers in de Ultimaker-community of vraag hen om ondersteuning" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats" +"- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze" +"- Deel ideeën met 48.000+ gebruikers in de Ultimaker-community of vraag hen om ondersteuning" msgctxt "@heading" msgid "-- incomplete --" @@ -200,45 +198,38 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Alleen door de gebruiker gewijzigde instellingen worden opgeslagen in het aangepast profiel.
    Voor materialen die dit ondersteunen, neemt het nieuwe aangepaste profiel eigenschappen over van %1 ." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL-renderer: {renderer}
  • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL-leverancier: {vendor}
  • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL-versie: {version}
  • " msgctxt "@label crash message" -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" +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

    " +"

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

    " " " -msgstr "

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

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

    " msgctxt "@label crash message" -msgid "" -"

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

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" +msgid "

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

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    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.

    " +"

    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.

    " +"

    Back-ups bevinden zich in de configuratiemap.

    " +"

    Stuur ons dit crashrapport om het probleem op te lossen.

    " " " -msgstr "

    Oeps, UltiMaker Cura heeft een probleem gedetecteerd.

    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.

    Back-ups bevinden zich in de configuratiemap.

    Stuur ons dit crashrapport om het probleem op te lossen.

    " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

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

    \n" -"

    {model_names}

    \n" -"

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

    \n" -"

    View print quality guide

    " -msgstr "

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

    {model_names}

    Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

    Handleiding printkwaliteit bekijken

    " +msgid "

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

    \n

    {model_names}

    \n

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

    \n

    View print quality guide

    " +msgstr "

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

    " +"

    {model_names}

    " +"

    Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.

    " +"

    Handleiding printkwaliteit bekijken

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -398,7 +389,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Printer handmatig toevoegen" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Printer {name} ({model}) toevoegen vanaf uw account" @@ -439,7 +429,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Alle Bestanden (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Alle Ondersteunde Typen ({0})" @@ -532,7 +521,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Weet u zeker dat u %1 bovenaan de wachtrij wilt plaatsen?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Weet u zeker dat u {printer_name} tijdelijk wilt verwijderen?" @@ -545,7 +533,6 @@ 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!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!" @@ -710,12 +697,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Kunt u geen verbinding maken met uw UltiMaker-printer?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Kan het profiel niet importeren uit {0} voordat een printer toegevoegd is." -#, 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" @@ -797,12 +782,7 @@ msgid "Checks models and print configuration for possible printing issues and gi msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties." msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Kiest tussen de beschikbare technieken om support te genereren. \"Normale\" support creert een supportstructuur direct onder de overhangende delen en laat die gebieden recht naar beneden vallen. \"Boom\"-support creert takken naar de overhangende gebieden die het model op de toppen van die takken ondersteunen, en laat de takken rond het model kruipen om het zoveel mogelijk vanaf het platform te ondersteunen." msgctxt "@action:inmenu menubar:edit" @@ -841,10 +821,6 @@ msgctxt "@label" msgid "Color scheme" msgstr "Kleurenschema" -msgctxt "@label" -msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." -msgstr "Combinatie niet aanbevolen. Laad BB-kern in sleuf 1 (links) voor meer betrouwbaarheid." - msgctxt "@info" msgid "Compare and save." msgstr "Vergelijken en opslaan." @@ -1009,7 +985,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Kan geen archief maken van gegevensmap van gebruiker: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Kan geen bestandsnaam vinden tijdens het schrijven naar {device}." @@ -1038,12 +1013,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Kan materiaalarchief niet opslaan op {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Kan niet opslaan als {0}: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Kan niet opslaan op verwisselbaar station {0}: {1}" @@ -1052,26 +1025,18 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Kan de gegevens niet uploaden naar de printer." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}}Geen toestemming om proces uit te voeren." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}}Het wordt door het besturingssysteem geblokkeerd (antivirus?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}Resource is tijdelijk niet beschikbaar" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}" +"Resource is tijdelijk niet beschikbaar" msgctxt "@title:window" msgid "Crash Report" @@ -1157,16 +1122,14 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura kan niet worden gestart" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura heeft materiaalprofielen gedetecteerd die nog niet op de hostprinter van groep {0} zijn geïnstalleerd." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "Cura is ontwikkeld door UltiMaker in samenwerking met de community.Cura maakt met trots gebruik van de volgende opensourceprojecten:" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura is ontwikkeld door UltiMaker in samenwerking met de community." +"Cura maakt met trots gebruik van de volgende opensourceprojecten:" msgctxt "@label" msgid "Cura language" @@ -1180,6 +1143,14 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "CuraEngine-back-end" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "CuraEngine-plugin voor het geleidelijk afvlakken van de flow om grote sprongen in de flow te beperken" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Valuta:" @@ -1436,12 +1407,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Uitwerpen" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Verwisselbaar station {0} uitwerpen" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0} is uitgeworpen. U kunt het station nu veilig verwijderen." @@ -1530,10 +1499,6 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Materiaal Exporteren" -msgctxt "@action:inmenu menubar:help" -msgid "Export Package For Technical Support" -msgstr "" - msgctxt "@title:window" msgid "Export Profile" msgstr "Profiel Exporteren" @@ -1554,7 +1519,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "De export is voltooid" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Het profiel is geëxporteerd als {0}" @@ -1591,7 +1555,6 @@ msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "Duur start G-code extruder" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "Extruder {0}" @@ -1616,7 +1579,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Kan geen materiaalarchief maken voor synchronisatie met printers." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Uitwerpen van {0} is niet gelukt. Mogelijk wordt het station door een ander programma gebruikt." @@ -1625,27 +1587,22 @@ 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" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Kan het profiel niet exporteren als {0}: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Kan het profiel niet exporteren als {0}: Plug-in voor de schrijver heeft een fout gerapporteerd." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Kan het profiel niet importeren uit {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Kan het profiel niet importeren uit {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Kan het profiel niet importeren uit {0}: {1}" @@ -1662,7 +1619,6 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Opslaan materiaalarchief mislukt" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "Schrijven naar specifieke cloudprinter mislukt: {0} niet in clusters op afstand." @@ -1691,7 +1647,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Bestand opgeslagen" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Het bestand {0} bevat geen geldig profiel." @@ -1915,7 +1870,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Rasterplaatsing" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Groepsnummer #{group_nr}" @@ -2400,10 +2354,6 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Makerbot Printbestandschrijver" -msgctxt "@item:inlistbox" -msgid "Makerbot Sketch Printfile" -msgstr "Makerbot Sketch Printfile" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter kon niet opslaan op het aangegeven pad." @@ -2646,7 +2596,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Netwerkfout" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Nieuwe stabiele firmware voor %s beschikbaar" @@ -2659,7 +2608,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Nieuwe UltiMaker printers kunnen toegevoegd worden aan Digital Factory om van afstand beheerd te worden" -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Er zijn mogelijk nieuwe functies of foutoplossingen beschikbaar voor uw {machine_name}. Als u dit nog niet hebt gedaan, is het raadzaam om de firmware op uw printer bij te werken naar versie {latest_version}." @@ -2706,7 +2654,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Geen kostenraming beschikbaar" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Er is geen aangepast profiel om in het bestand {0} te importeren" @@ -2807,6 +2754,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Nozzle-offset Y" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Maat nozzle" + msgctxt "@label" msgid "Nozzle size" msgstr "Maat nozzle" @@ -2843,7 +2794,6 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Alleen bovenlagen weergegeven" -#, 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" @@ -3057,12 +3007,11 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Verleen de vereiste toestemmingen toe bij het autoriseren van deze toepassing." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "Controleer of de printer verbonden is:- Controleer of de printer ingeschakeld is.- Controleer of de printer verbonden is met het netwerk.- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren." +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Controleer of de printer verbonden is:" +"- Controleer of de printer ingeschakeld is." +"- Controleer of de printer verbonden is met het netwerk." +"- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren." msgctxt "@text" msgid "Please name your printer" @@ -3089,12 +3038,11 @@ msgid "Please remove the print" msgstr "Verwijder de print" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "Controleer de instellingen en zorg ervoor dat uw modellen:- binnen het werkvolume passen- zijn toegewezen aan een ingeschakelde extruder- niet allemaal zijn ingesteld als modificatierasters" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Controleer de instellingen en zorg ervoor dat uw modellen:" +"- binnen het werkvolume passen" +"- zijn toegewezen aan een ingeschakelde extruder" +"- niet allemaal zijn ingesteld als modificatierasters" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -3396,7 +3344,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Profielinstellingen" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Het profiel {0} heeft een onbekend bestandstype of is beschadigd." @@ -3421,22 +3368,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programmeertaal" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Projectbestand {0} bevat een onbekend type machine {1}. Kan de machine niet importeren. In plaats daarvan worden er modellen geïmporteerd." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Projectbestand {0} is corrupt: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Projectbestand {0} wordt gemaakt met behulp van profielen die onbekend zijn bij deze versie van UltiMaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Projectbestand {0} is plotseling ontoegankelijk: {1}." @@ -3565,7 +3508,6 @@ msgctxt "@label" msgid "Qt version" msgstr "Qt version" -#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Kwaliteitstype '{0}' is niet compatibel met de huidige actieve machinedefinitie '{1}'." @@ -3806,12 +3748,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Opslaan op verwisselbaar station" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Opslaan op Verwisselbaar Station {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Opgeslagen op Verwisselbaar Station {0} als {1}" @@ -3820,7 +3760,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Opslaan" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Opslaan op Verwisselbaar Station {0}" @@ -3837,10 +3776,6 @@ msgctxt "@placeholder" msgid "Search" msgstr "Zoeken" -msgctxt "@label:textbox" -msgid "Search Printer" -msgstr "Zoek printer" - msgctxt "@info" msgid "Search in the browser" msgstr "Zoeken in browser" @@ -4073,6 +4008,10 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Online &Documentatie Weergeven" +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Online probleemoplossing weergeven" + msgctxt "@label:checkbox" msgid "Show all" msgstr "Alles weergeven" @@ -4198,11 +4137,9 @@ msgid "Solid view" msgstr "Solide weergave" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde.Klik om deze instellingen zichtbaar te maken." +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde." +"Klik om deze instellingen zichtbaar te maken." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -4217,11 +4154,9 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Sommige instelwaarden gedefinieerd in %1 zijn overschreven." msgctxt "@tooltip" -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.Klik om het profielbeheer te openen." +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Sommige waarden of aanpassingen van instellingen zijn anders dan de waarden die in het profiel zijn opgeslagen." +"Klik om het profielbeheer te openen." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -4303,7 +4238,6 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Materiaal %1 is geïmporteerd" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Het profiel {0} is geïmporteerd." @@ -4510,7 +4444,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "De extruder train die wordt gebruikt voor het printen van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Het bestand {0} bestaat al. Weet u zeker dat u dit bestand wilt overschrijven?" @@ -4574,15 +4507,11 @@ msgid "The nozzle inserted in this extruder." msgstr "De nozzle die in deze extruder geplaatst is." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Het patroon van het invulmateriaal van de print:Voor snelle prints van een niet-functioneel model kiest u een lijn-, zigzag- of lichtvulling.Voor functionele onderdelen die niet aan veel spanning worden blootgesteld, raden we raster of driehoek of tri-zeshoek aan.Gebruik kubieke, kubieke onderverdeling, kwartkubiek, octet en gyrod voor functionele 3D-prints die in meerdere richtingen een hoge sterkte vereisen." +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Het patroon van het invulmateriaal van de print:" +"Voor snelle prints van een niet-functioneel model kiest u een lijn-, zigzag- of lichtvulling." +"Voor functionele onderdelen die niet aan veel spanning worden blootgesteld, raden we raster of driehoek of tri-zeshoek aan." +"Gebruik kubieke, kubieke onderverdeling, kwartkubiek, octet en gyrod voor functionele 3D-prints die in meerdere richtingen een hoge sterkte vereisen." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4701,8 +4630,8 @@ msgid "This configuration is not available because %1 is not recognized. Please msgstr "Deze configuratie is niet beschikbaar omdat %1 niet wordt herkend. Ga naar %2 om het juiste materiaalprofiel te downloaden." msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" -msgstr "Dit is een Cura Universal-projectbestand. Wilt u het openen als Cura Universal Project of de modellen ervan importeren?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Dit is een Cura Universal Projectbestand. Wilt u het als Cura project of Cura Universal Project openen of de modellen ervan importeren?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4738,7 +4667,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Deze printer is de host voor een groep van %1 printers." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Dit profiel {0} bevat incorrecte gegevens. Kan het profiel niet importeren." @@ -4752,11 +4680,9 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Dit project bevat materialen of plugins die momenteel niet geïnstalleerd zijn in Cura.
    Installeer de ontbrekende pakketten en open het project opnieuw." msgctxt "@label" -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.Klik om de waarde van het profiel te herstellen." +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Deze instelling heeft een andere waarde dan in het profiel." +"Klik om de waarde van het profiel te herstellen." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4773,11 +4699,9 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Deze instelling wordt altijd door alle extruders gedeeld. Als u hier de instelling wijzigt, wordt de waarde voor alle extruders gewijzigd." msgctxt "@label" -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.Klik om de berekende waarde te herstellen." +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde." +"Klik om de berekende waarde te herstellen." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4811,7 +4735,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Om de materiaalprofielen automatisch te synchroniseren met alle printers die op Digital Factory zijn aangesloten, moet u zich aanmelden bij Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Ga naar {website_link} om een verbinding tot stand te brengen" @@ -4824,7 +4747,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Als u rechtstreeks via het netwerk wilt printen naar de printer, moet u ervoor zorgen dat de printer met een netwerkkabel is verbonden met het netwerk of moet u verbinding maken met de printer via het wifi-netwerk. Als u geen verbinding maakt tussen Cura en de printer, kunt u een USB-station gebruiken om G-code-bestanden naar de printer over te zetten." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Bezoek {digital_factory_link} om {printer_name} permanent te verwijderen" @@ -4969,16 +4891,12 @@ 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" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Kan lokaal EnginePlugin-serveruitvoerbestand niet vinden voor: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." msgstr "Kan lopende EnginePlugin niet stoppen: {self._plugin_id}}Toegang is geweigerd." msgctxt "@info" @@ -4989,14 +4907,6 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "Kan het voorbeeldgegevensbestand niet lezen." -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" - -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" - msgctxt "@info:title" msgid "Unable to slice" msgstr "Kan niet slicen" @@ -5009,12 +4919,10 @@ 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." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Slicen is niet mogelijk omdat er objecten gekoppeld zijn aan uitgeschakelde Extruder %s." -#, 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}" @@ -5023,7 +4931,6 @@ 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." -#, 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}" @@ -5032,7 +4939,6 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Er kan geen nieuw aanmeldingsproces worden gestart. Controleer of een andere aanmeldingspoging nog actief is." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "Er kan niet worden geschreven naar bestand: {0}" @@ -5085,7 +4991,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Onbekend pakket" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Onbekende foutcode bij uploaden printtaak: {0}" @@ -5258,10 +5163,6 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "Upgrades van configuraties van Cura 5.6 naar Cura 5.7." -msgctxt "description" -msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" - msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Aangepaste Firmware Uploaden" @@ -5406,10 +5307,6 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "Versie-upgrade van 5.6 naar 5.7" -msgctxt "name" -msgid "Version Upgrade 5.8 to 5.9" -msgstr "" - msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Printers weergeven in Digital Factory" @@ -5462,7 +5359,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Waarschuwing" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Waarschuwing: het profiel is niet zichtbaar omdat het kwaliteitstype '{0}' van het profiel niet beschikbaar is voor de huidige configuratie. Schakel naar een materiaal-nozzle-combinatie waarvoor dit kwaliteitstype geschikt is." @@ -5584,31 +5480,20 @@ msgid "Yes" msgstr "Ja" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.Weet u zeker dat u door wilt gaan?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt." +"Weet u zeker dat u door wilt gaan?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"U staat op het punt om {0} printer uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" -"Weet u zeker dat u door wilt gaan?" -msgstr[1] "" -"U staat op het punt om {0} printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\n" -"Weet u zeker dat u door wilt gaan?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "U staat op het punt om {0} printer uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\nWeet u zeker dat u door wilt gaan?" +msgstr[1] "U staat op het punt om {0} printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\nWeet u zeker dat u door wilt gaan?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "U probeert verbinding te maken met een printer waarop UltiMaker Connect niet wordt uitgevoerd. Werk de printer bij naar de nieuwste firmware." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "U probeert verbinding te maken met {0}, maar deze is niet de host van een groep. U kunt de webpagina bezoeken om deze als groephost te configureren." @@ -5619,7 +5504,9 @@ msgstr "U hebt momenteel geen back-ups. Gebruik de knop 'Nu back-up maken' om ee msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "U hebt enkele profielinstellingen aangepast.Wilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?U kunt de wijzigingen ook verwijderen om de standaardinstellingen van '%1' te laden." +msgstr "U hebt enkele profielinstellingen aangepast." +"Wilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?" +"U kunt de wijzigingen ook verwijderen om de standaardinstellingen van '%1' te laden." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -5649,12 +5536,10 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Uw nieuwe printer wordt automatisch weergegeven in Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "U kunt uw printer {printer_name} via de cloud verbinden. Beheer uw printerwachtrij en controleer uw prints vanaf elke plek door uw printer te verbinden met Digital Factory" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "U kunt uw printer {printer_name} via de cloud verbinden." +" Beheer uw printerwachtrij en controleer uw prints vanaf elke plek door uw printer te verbinden met Digital Factory" msgctxt "@label" msgid "Z" @@ -5716,7 +5601,6 @@ msgctxt "@label" msgid "version: %1" msgstr "versie: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} wordt verwijderd tot de volgende accountsynchronisatie." @@ -5725,18 +5609,38 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} plug-ins zijn niet gedownload" -#~ msgctxt "description" -#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -#~ msgstr "CuraEngine-plugin voor het geleidelijk afvlakken van de flow om grote sprongen in de flow te beperken" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Combinatie niet aanbevolen. Laad BB-kern in sleuf 1 (links) voor meer betrouwbaarheid." + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot Sketch Printfile" + +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Zoek printer" -#~ msgctxt "name" -#~ msgid "CuraEngineGradualFlow" -#~ msgstr "CuraEngineGradualFlow" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Dit is een Cura Universal-projectbestand. Wilt u het openen als Cura Universal Project of de modellen ervan importeren?" -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting" -#~ msgstr "Online probleemoplossing weergeven" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Exportpakket voor technische ondersteuning" -#~ msgctxt "@text:window" -#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -#~ msgstr "Dit is een Cura Universal Projectbestand. Wilt u het als Cura project of Cura Universal Project openen of de modellen ervan importeren?" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "De modelgegevens kunnen niet naar de motor worden verzonden. Probeer het opnieuw of neem contact op met ondersteuning." + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "De modelgegevens kunnen niet naar de motor worden verzonden. Probeer een minder gedetailleerd model te gebruiken of verminder het aantal instanties." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Upgrades van configuraties van Cura 5.8 naar Cura 5.9." + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Versie-upgrade 5.8 naar 5.9" diff --git a/resources/i18n/nl_NL/fdmextruder.def.json.po b/resources/i18n/nl_NL/fdmextruder.def.json.po index c625cc03708..12a5c3d68fd 100644 --- a/resources/i18n/nl_NL/fdmextruder.def.json.po +++ b/resources/i18n/nl_NL/fdmextruder.def.json.po @@ -1,9 +1,8 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -125,10 +124,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Nozzle-ID" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X-Offset Nozzle" @@ -157,10 +152,6 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." @@ -204,3 +195,11 @@ msgstr "De Y-coördinaat van de offset van de nozzle." msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Lengte spuitmond" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Het hoogteverschil tussen de punt van de spuitmond en het laagste deel van de printkop." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index 8c614e7b2dd..3d34a8b6635 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -94,7 +94,7 @@ msgstr "Met adaptieve lagen berekent u de laaghoogte afhankelijk van de vorm van msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "Voeg extra lijnen toe aan het invulpatroon om de skins erboven te ondersteunen. Deze optie voorkomt gaten of plastic klodders die soms te zien zijn in complex gevormde skins doordat de invulling eronder de skinlaag die erboven wordt geprint niet correct ondersteunt. 'Wanden' ondersteunt alleen de contouren van de skin, terwijl 'Wanden en lijnen' ook de uiteinden van de lijnen ondersteunt die de skin vormen." msgctxt "infill_wall_line_count description" msgid "" @@ -444,11 +444,11 @@ msgstr "Breedte Brim" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "Constructieventilatorsnelheid op hoogte" msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "Constructieventilatorsnelheid op laag" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" @@ -492,7 +492,7 @@ msgstr "Waarschuwing temperatuur bouwvolume" msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "Ventilatornummer constructievolume " msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -732,11 +732,11 @@ msgstr "Hiermee detecteert u bruggen en past u de instellingen voor de printsnel msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "Bepaalt de lengte van elke stap in de stroomverandering bij het extruderen langs de schuine naad. Een kleinere afstand resulteert in een nauwkeurigere maar ook complexere G-code." msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "Bepaalt de lengte van de schuine naad, een naadtype dat de Z-naad minder zichtbaar moet maken. Moet hoger zijn dan 0 om effectief te zijn." msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." @@ -1028,7 +1028,7 @@ msgstr "Met uitgebreid hechten worden zo veel mogelijk open gaten in het raster msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "Extra invullijnen ter ondersteuning van skins" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" @@ -1042,6 +1042,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Extra primemateriaal na het wisselen van de nozzle." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "X-positie voor Primen Extruder" @@ -2438,7 +2442,7 @@ msgstr "Geen" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "Geen" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2484,6 +2488,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Nozzle-ID" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Maat nozzle" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Extra primehoeveelheid na wisselen van nozzle" @@ -2614,15 +2622,15 @@ msgstr "Buitenwandacceleratie" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "Buitenwandversnelling" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "Buitenwandvertraging" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "Snelheidsverhouding buitenwand" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" @@ -2650,11 +2658,11 @@ msgstr "Snelheid Buitenwand" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "Snelheid splitafstand buitenwand" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "Startsnelheidsverhouding buitenwand" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" @@ -2792,6 +2800,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Printacceleratie" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Printschok" @@ -3298,15 +3310,15 @@ msgstr "Schaalfactor krimpcompensatie" msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "Lengte schuine naad" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "Starthoogte schuine naad" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "Staplengte schuine naad" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -4366,7 +4378,7 @@ msgstr "De hoogte die in de matrijs moet worden geprint boven de horizontale del msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "De hoogte waarop de ventilatoren op normale ventilatorsnelheid draaien. Op de lagen hieronder neemt de ventilatorsnelheid geleidelijk toe van de initiële ventilatorsnelheid naar de normale ventilatorsnelheid." msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4476,7 +4488,7 @@ msgstr "De grootste breedte van delen van bovenste skingebieden die verwijderd m msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "De laag waarbij de bouwventilatoren op volle ventilatorsnelheid draaien. Deze waarde wordt berekend en afgerond op een heel getal." msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4764,7 +4776,7 @@ msgstr "Het aantal lijnen dat voor de supportbrim wordt gebruikt. Meer brimlijne msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "Het nummer van de ventilator die het constructievolume koelt. Als dit is ingesteld op 0, betekent dit dat er geen constructievolumeventilator is." msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4860,7 +4872,7 @@ msgstr "De maximale onmiddellijke snelheidsverandering in de eerste laag." msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "De verhouding van de geselecteerde laaghoogte waarop de schuine naad zal beginnen. Een lager getal resulteert in een grotere naadhoogte. Moet lager zijn dan 100 om effectief te zijn." msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -5192,23 +5204,23 @@ msgstr "Met deze optie controleert u de afstand die de extruder moet coasten voo msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "Dit is de versnelling waarmee men de topsnelheid bereikt als men een buitenwand afdrukt." msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "Dit is de vertraging waarmee men het afdrukken van een buitenwand beëindigt." msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "Dit is de maximale lengte van een extrusiepad bij het splitsen van een langer pad om de versnelling/vertraging van de buitenwand toe te passen. Een kleinere afstand zorgt voor een preciezere maar ook uitgebreide G-code." msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "Dit is de verhouding van de topsnelheid om mee te eindigen bij het printen van een buitenwand." msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "Dit is de verhouding van de topsnelheid om mee te beginnen bij het printen van een buitenwand." msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5592,15 +5604,15 @@ msgstr "Wanden" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "Alleen wanden" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "Wanden en lijnen" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "Wanden die meer oversteken dan deze hoek worden afgedrukt met behulp van de instellingen voor overhangende wanden. Als de waarde 90 is, worden er geen wanden behandeld als overhangend. Overhangen die ondersteund worden door ondersteuning worden ook niet behandeld als overhang. Daarnaast wordt elke lijn die voor minder dan de helft overhangt ook niet behandeld als overhang." msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index bb6f4ad36fe..36fb5e02e81 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -2828,6 +2828,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Korekcja dyszy Y" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Rozmiar dyszy" + msgctxt "@label" msgid "Nozzle size" msgstr "Rozmiar dyszy" diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 34411eb80cd..a59ae5b25b8 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -1048,6 +1048,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Ilość dodatkowego materiału do podania po zmianie dyszy." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Pozycja X Czyszczenia Dyszy" @@ -2494,6 +2498,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID Dyszy" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Rozmiar dyszy" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Dodatkowa ekstruzja po zmianie dyszy" @@ -2802,6 +2810,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Przyspieszenie Druku" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Zryw Druku" diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index 8df5995a82c..4b7fa00b943 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-09 14:27+0200\n" -"PO-Revision-Date: 2024-07-23 03:24+0200\n" +"PO-Revision-Date: 2024-10-28 04:18+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -1566,7 +1566,7 @@ msgstr "Exportar Material" msgctxt "@action:inmenu menubar:help" msgid "Export Package For Technical Support" -msgstr "" +msgstr "Exportar Pacote Para Suporte Técnico" msgctxt "@title:window" msgid "Export Profile" @@ -2841,6 +2841,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Deslocamento Y do Bico" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Tamanho do bico" + msgctxt "@label" msgid "Nozzle size" msgstr "Tamanho do bico" @@ -5054,11 +5058,11 @@ msgstr "Não foi possível ler o arquivo de dados de exemplo." msgctxt "@info:status" msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" +msgstr "Não foi possível enviar os dados de modelo para o engine. Por favor tente novamente ou contacte o suporte." msgctxt "@info:status" msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" +msgstr "Não foi possível enviar os dados do modelo para o engine. Por favor use um modelo menos detalhado ou reduza o número de instâncias." msgctxt "@info:title" msgid "Unable to slice" @@ -5323,7 +5327,7 @@ msgstr "Atualiza configurações do Cura 5.6 para o Cura 5.7." msgctxt "description" msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" +msgstr "Atualiza configurações do Cura 5.8 para o Cura 5.9." msgctxt "@action:button" msgid "Upload custom Firmware" @@ -5471,7 +5475,7 @@ msgstr "Atualização de Versão de 5.6 para 5.7" msgctxt "name" msgid "Version Upgrade 5.8 to 5.9" -msgstr "" +msgstr "Atualização de Versão de 5.8 para 5.9" msgctxt "@button" msgid "View printers in Digital Factory" diff --git a/resources/i18n/pt_BR/fdmextruder.def.json.po b/resources/i18n/pt_BR/fdmextruder.def.json.po index 16bdc106792..722c48e06df 100644 --- a/resources/i18n/pt_BR/fdmextruder.def.json.po +++ b/resources/i18n/pt_BR/fdmextruder.def.json.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" "POT-Creation-Date: 2024-10-09 14:27+0000\n" -"PO-Revision-Date: 2024-04-01 22:39+0200\n" +"PO-Revision-Date: 2024-10-28 04:20+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -131,7 +131,7 @@ msgstr "ID do Bico" msgctxt "machine_nozzle_head_distance label" msgid "Nozzle Length" -msgstr "" +msgstr "Comprimento do Bico" msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" @@ -163,7 +163,7 @@ msgstr "O extrusor usado para impressão. Isto é usado em multi-extrusão." msgctxt "machine_nozzle_head_distance description" msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" +msgstr "A diferença de altura entre a ponta do bico e a parte inferior da cabeça de impressão." msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index f6dca74dd17..182dfbc4c2c 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.7\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" -"PO-Revision-Date: 2024-07-24 04:19+0200\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" +"PO-Revision-Date: 2024-10-29 03:52+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -99,7 +99,7 @@ msgstr "Camadas adaptativas fazem a computação das alturas de camada depender msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "Adiciona filetes extras no padrão de preenchimento para apoiar os contornos acima. Esta opção previne furos ou bolhas de plástico que algumas vezes aparecem em contornos de formas complexas devido ao preenchimento abaixo não apoiar corretamente o contorno de cima. 'Paredes' faz suportar apenas os extremos do contorno, enquanto que 'Paredes e Linhas' faz também suportar extremos de filetes que perfazem o contorno." msgctxt "infill_wall_line_count description" msgid "" @@ -451,11 +451,11 @@ msgstr "Largura do Brim" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "Velocidade de Construção da Ventoinha na Altura" msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "Velocidade de Construção da Ventoinha na Camada" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" @@ -499,7 +499,7 @@ msgstr "Aviso de temperatura do Volume de Construção" msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "Número da ventoinha de volume de construção" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -739,11 +739,11 @@ msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajust msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "Determina o comprimento de cada passo na mudança de fluxo ao extrudar pela emenda scarf. Uma distância menor resultará em um G-code mais preciso porém também mais complexo." msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "Determina o comprimento da emenda scarf, um tipo de emenda que procura tornar a junção do eixo Z menos visível. Deve ser maior que 0 pra se tornar efetivo." msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." @@ -1035,7 +1035,7 @@ msgstr "Costura Extensa tenta costurar furos abertos na malha fechando o furo co msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "Linhas de Preenchimento Extras Para Apoiar Contornos" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" @@ -1049,6 +1049,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Material extra a avançar depois da troca de bico." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Posição X da Purga do Extrusor" @@ -2451,7 +2455,7 @@ msgstr "Nenhuma" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "Nenhuma" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2497,6 +2501,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID do Bico" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Tamanho do bico" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Quantidade de Avanço Extra da Troca de Bico" @@ -2627,15 +2635,15 @@ msgstr "Aceleração da Parede Exterior" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "Aceleração da Parede Externa" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "Deceleração da Parede Externa" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "Proporção de Velocidade do Fim da Parede Externa" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" @@ -2663,11 +2671,11 @@ msgstr "Velocidade da Parede Exterior" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "Distância de Divisão de Velocidade da Parede Externa" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "Raio de Velocidade do Começo da Parede Externa" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" @@ -2805,6 +2813,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Aceleração da Impressão" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Jerk da Impressão" @@ -2925,7 +2937,6 @@ msgctxt "raft_base_fan_speed label" msgid "Raft Base Fan Speed" msgstr "Velocidade de Ventoinha da Base do Raft" -#, fuzzy msgctxt "raft_base_flow label" msgid "Raft Base Flow" msgstr "Fluxo da Base do Raft" @@ -3312,15 +3323,15 @@ msgstr "Compensação de Fator de Encolhimento" msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "Comprimento da Emenda Scarf" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "Altura Inicial da Emenda Scarf" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "Comprimento de Passo da Emenda Scarf" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -3470,7 +3481,6 @@ msgctxt "small_hole_max_size label" msgid "Small Hole Max Size" msgstr "Tamanho Máximo de Furos Pequenos" -#, fuzzy msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Temperatura de Impressão Final" @@ -3587,7 +3597,6 @@ msgctxt "support_bottom_distance label" msgid "Support Bottom Distance" msgstr "Distância Inferior do Suporte" -#, fuzzy msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "Contagem de Linhas de Parede de Suporte" @@ -3752,7 +3761,6 @@ msgctxt "support_interface_height label" msgid "Support Interface Thickness" msgstr "Espessura da Interface de Suporte" -#, fuzzy msgctxt "support_interface_wall_count label" msgid "Support Interface Wall Line Count" msgstr "Contagem de Linhas de Parede de Suporte" @@ -3837,7 +3845,6 @@ msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "Espessura do Topo do Suporte" -#, fuzzy msgctxt "support_roof_wall_count label" msgid "Support Roof Wall Line Count" msgstr "Contagem de Linhas de Parede de Suporte" @@ -4242,7 +4249,6 @@ msgctxt "brim_width description" msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." msgstr "A distância do modelo à linha mais externa do brim. Um brim mais largo aumenta a aderência à mesa, mas também reduz a área efetiva de impressão." -#, fuzzy msgctxt "interlocking_boundary_avoidance description" msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado." @@ -4385,7 +4391,7 @@ msgstr "A altura acima das partes horizontais do modelo onde criar o molde." msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "A altura em que as ventoinhas giram na velocidade regular. Nas camadas abaixo a velocidade de ventoinha gradualmente aumenta da Velocidade Inicial de Ventoinha para a Velocidade Regular." msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4497,7 +4503,7 @@ msgstr "A maior largura das áreas de contorno superiores que serão removidas. msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "A camada em que as ventoinhas giram na velocidade total. Este valor é calculado e arredondado para um número inteiro." msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4785,7 +4791,7 @@ msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "O número da ventoinha que refrigera o volume de construção. Se isto for colocado em 0, significa que não há ventoinha do volume de construção." msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4803,17 +4809,14 @@ msgctxt "support_wall_count description" msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." -#, fuzzy msgctxt "support_bottom_wall_count description" msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." -#, fuzzy msgctxt "support_roof_wall_count description" msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." -#, fuzzy msgctxt "support_interface_wall_count description" msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." @@ -4884,7 +4887,7 @@ msgstr "A mudança instantânea máxima de velocidade em uma direção para a ca msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "A proporção da altura de camada selecionada em que a emenda scarf começará. Um número menor resultará em maior altura de emenda. Deve ser menor que 100 para se tornar efetivo." msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -5216,23 +5219,23 @@ msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "Esta é a aceleração com a qual se alcança a velocidade máxima ao imprimir uma parede externa." msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "Esta é a deceleração com que terminar a impressão de uma parede externa." msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "Este é o máximo comprimento de um caminho de extrusão ao dividir um caminho maior para aplicar a aceleração ou deceleração de parede externa. Uma distância maior criará um G-code mais preciso mas também mais extenso." msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "Esta é a proporção da velocidade máxima com que terminar a impressão de uma parede externa." msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "Esta é a proporção da velocidade máxima com que começar a impressão de uma parede externa." msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5616,15 +5619,15 @@ msgstr "Paredes" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "Paredes Somente" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "Paredes e Linhas" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "Paredes com seção pendente maior que este ângulo serão impressas usando ajustes de seções pendentes de perede. Quando este valor for 90, nenhuma parede será tratada como seção pendente. Seções pendentes apoiadas por suporte não serão tratadas como pendentes também. Além disso, qualquer filete que for menos da metade pendente também não será tratado como pendente." msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index 9e0f8ba9aa7..5a3c67b8218 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 14:27+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -142,11 +141,10 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Terá de reiniciar a aplicação para ativar estas alterações." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Adicione definições de materiais e plug-ins do Marketplace- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Adicione definições de materiais e plug-ins do Marketplace" +"- Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins" +"- Partilhe ideias e obtenha ajuda dos mais de 48.000 utilizadores da Comunidade Ultimaker" msgctxt "@heading" msgid "-- incomplete --" @@ -200,45 +198,38 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Só as definições alteradas pelo utilizador é que serão guardadas no perfil personalizado.
    Para materiais que oferecem suporte, o novo perfil personalizado herdará propriedades de %1." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Processador do OpenGL: {renderer}
  • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Vendedor do OpenGL: {vendor}
  • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Versão do OpenGL: {version}
  • " msgctxt "@label crash message" -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" +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 "

    Ocorreu um erro fatal no Cura. Por favor envie-nos este Relatório de Falhas para podermos resolver o problema

    " +"

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

    " " " -msgstr "

    Ocorreu um erro fatal no Cura. Por favor envie-nos este Relatório de Falhas para podermos resolver o problema

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

    " msgctxt "@label crash message" -msgid "" -"

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

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" +msgid "

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

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " +msgstr "

    Ups, o UltiMaker Cura encontrou um possível problema.

    " +"

    Foi encontrado um erro irrecuperável durante o arranque da aplicação. Este pode ter sido causado por alguns ficheiros de configuração incorrectos. Sugerimos que faça um backup e reponha a sua configuração.

    " +"

    Os backups estão localizados na pasta de configuração.

    " +"

    Por favor envie-nos este Relatório de Falhas para podermos resolver o problema.

    " " " -msgstr "

    Ups, o UltiMaker Cura encontrou um possível problema.

    Foi encontrado um erro irrecuperável durante o arranque da aplicação. Este pode ter sido causado por alguns ficheiros de configuração incorrectos. Sugerimos que faça um backup e reponha a sua configuração.

    Os backups estão localizados na pasta de configuração.

    Por favor envie-nos este Relatório de Falhas para podermos resolver o problema.

    " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

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

    \n" -"

    {model_names}

    \n" -"

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

    \n" -"

    View print quality guide

    " -msgstr "

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

    {model_names}

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

    Ver o guia de qualidade da impressão

    " +msgid "

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

    \n

    {model_names}

    \n

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

    \n

    View print quality guide

    " +msgstr "

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

    " +"

    {model_names}

    " +"

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

    " +"

    Ver o guia de qualidade da impressão

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -398,7 +389,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Adicionar impressora manualmente" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Adicionar impressora {name} ({model}) a partir da sua conta" @@ -439,7 +429,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Todos os Ficheiros (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Todos os Formatos Suportados ({0})" @@ -532,7 +521,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Tem a certeza de que pretende mover %1 para o topo da fila?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Tem a certeza de que pretende remover a impressora {printer_name} temporariamente?" @@ -545,7 +533,6 @@ 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!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Tem a certeza de que pretende remover {0}? Esta ação não pode ser anulada!" @@ -710,12 +697,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Não se consegue ligar a uma impressora UltiMaker?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Não é possível importar o perfil de {0} antes de ser adicionada uma impressora." -#, 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" @@ -797,13 +782,9 @@ msgid "Checks models and print configuration for possible printing issues and gi msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões." msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Escolha entre os tipos de estrutura de suportes disponíveis. ⏎⏎ O tipo \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e extrude estas áreas para baixo. A estrutura tipo \"Árvore\" cria ramos em direção às saliências, de forma a que estas sejam suportadas pelas pontas dos ramos, que crescem a partir da base de construção mesmo se for necessário andar em redor do modelos." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Escolha entre os tipos de estrutura de suportes disponíveis. ⏎⏎ O tipo \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e extrude estas áreas para baixo. " +"A estrutura tipo \"Árvore\" cria ramos em direção às saliências, de forma a que estas sejam suportadas pelas pontas dos ramos, que crescem a partir da base de construção mesmo se for necessário andar em redor do modelos." msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" @@ -841,10 +822,6 @@ msgctxt "@label" msgid "Color scheme" msgstr "Esquema de cores" -msgctxt "@label" -msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." -msgstr "A combinação não é recomendada. Carregue o núcleo BB na ranhura 1 (esquerda) para uma maior fiabilidade." - msgctxt "@info" msgid "Compare and save." msgstr "Compare e guarde." @@ -1009,7 +986,6 @@ 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: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Não foi possível encontrar um nome do ficheiro ao tentar gravar em {device}." @@ -1038,12 +1014,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Não foi possível guardar o arquivo de material em {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Não foi possível guardar em {0}: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Não foi possível guardar no Disco Externo {0}: {1}" @@ -1052,26 +1026,20 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Não foi possível carregar os dados para a impressora." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}Sem permissão para executar o processo." +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}" +"Sem permissão para executar o processo." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}O sistema operativo está a bloquear (antivírus)?" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}" +"O sistema operativo está a bloquear (antivírus)?" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}O recurso está temporariamente indisponível" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "Não foi possível iniciar o EnginePlugin: {self._plugin_id}" +"O recurso está temporariamente indisponível" msgctxt "@title:window" msgid "Crash Report" @@ -1157,16 +1125,14 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Não é possível iniciar o Cura" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "O Cura detetou perfis de material que ainda não estavam instalados na impressora que aloja o grupo {0}." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "O Cura foi desenvolvido pela UltiMaker B.V. em colaboração com a comunidade.O Cura tem o prazer de utilizar os seguintes projetos open source:" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "O Cura foi desenvolvido pela UltiMaker B.V. em colaboração com a comunidade." +"O Cura tem o prazer de utilizar os seguintes projetos open source:" msgctxt "@label" msgid "Cura language" @@ -1180,6 +1146,14 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "Back-end do CuraEngine" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plug-in CuraEngine para suavizar gradualmente o fluxo para limitar saltos por fluxo elevado" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Moeda:" @@ -1436,12 +1410,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Ejetar" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Ejetar Disco Externo {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "{0} foi ejetado. O Disco já pode ser removido de forma segura." @@ -1530,10 +1502,6 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Exportar Material" -msgctxt "@action:inmenu menubar:help" -msgid "Export Package For Technical Support" -msgstr "" - msgctxt "@title:window" msgid "Export Profile" msgstr "Exportar Perfil" @@ -1554,7 +1522,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Exportação bem-sucedida" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Perfil exportado para {0}" @@ -1591,7 +1558,6 @@ msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "Duração do código G inicial da extrusora" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "{0} da Extrusora" @@ -1616,7 +1582,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Não foi possível criar o ficheiro de materiais para sincronizar com as impressoras." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Não foi possível ejectar {0}. Outro programa pode estar a usar o disco." @@ -1625,27 +1590,22 @@ 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" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Falha ao exportar perfil para {0}: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Falha ao exportar perfil para {0}: O plug-in de gravação comunicou uma falha." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Falha ao importar perfil de {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Falha ao importar perfil de {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Falha ao importar perfil de {0}: {1}" @@ -1662,7 +1622,6 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Erro ao guardar o arquivo de material" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "Não foi possível escrever à impressora de nuvem específica: {0} não se encontra em conjuntos remotos." @@ -1691,7 +1650,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Ficheiro Guardado" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "O ficheiro {0} não contém qualquer perfil válido." @@ -1915,7 +1873,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Posicionamento da grelha" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Grupo #{group_nr}" @@ -2400,10 +2357,6 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Escritor de Arquivo de Impressão Makerbot" -msgctxt "@item:inlistbox" -msgid "Makerbot Sketch Printfile" -msgstr "Ficheiro Para Impressão Makerbot Sketch" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter não pôde salvar no caminho designado." @@ -2646,7 +2599,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Erro de rede" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "A nova versão de firmware %s estável está disponível" @@ -2659,7 +2611,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "As novas impressoras UltiMaker podem ser conectadas à Digital Factory e monitoradas remotamente." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Poderão estar disponíveis novas funcionalidades ou correções de erros para a sua {machine_name}! Se ainda não tiver a versão mais recente, recomendamos que atualize o firmware da sua impressora para a versão {latest_version}." @@ -2706,7 +2657,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Nenhuma estimativa de custos disponível" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Nenhum perfil personalizado para importar no ficheiro {0}" @@ -2807,6 +2757,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Desvio Y do Nozzle" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Tamanho do nozzle" + msgctxt "@label" msgid "Nozzle size" msgstr "Tamanho do nozzle" @@ -2843,7 +2797,6 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Só Camadas Superiores" -#, 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" @@ -3057,12 +3010,11 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Forneça as permissões necessárias ao autorizar esta aplicação." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "Certifique-se de que é possível estabelecer ligação com a impressora:- Verifique se a impressora está ligada.- Verifique se a impressora está ligada à rede.- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud." +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Certifique-se de que é possível estabelecer ligação com a impressora:" +"- Verifique se a impressora está ligada." +"- Verifique se a impressora está ligada à rede." +"- Verifique se tem sessão iniciada para encontrar impressoras ligadas através da cloud." msgctxt "@text" msgid "Please name your printer" @@ -3089,12 +3041,11 @@ msgid "Please remove the print" msgstr "Remova a impressão" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "Reveja as definições e verifique se os seus modelos:- Cabem dentro do volume de construção- Estão atribuídos a uma extrusora ativada- Não estão todos definidos como objetos modificadores" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Reveja as definições e verifique se os seus modelos:" +"- Cabem dentro do volume de construção" +"- Estão atribuídos a uma extrusora ativada" +"- Não estão todos definidos como objetos modificadores" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -3396,7 +3347,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Definições do perfil" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "O perfil {0} é de um formato de ficheiro desconhecido ou está corrompido." @@ -3421,22 +3371,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Linguagem de programação" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "O ficheiro de projeto {0} contém um tipo de máquina desconhecido {1}. Não é possível importar a máquina. Em vez disso, serão importados os modelos." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "O ficheiro de projeto {0} está corrompido: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "O ficheiro de projeto {0} foi criado utilizando perfis que são desconhecidos para esta versão do UltiMaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "O projeto de ficheiro {0} ficou subitamente inacessível: {1}." @@ -3565,7 +3511,6 @@ msgctxt "@label" msgid "Qt version" msgstr "Versão Qt" -#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "O tipo de qualidade '{0}' não é compatível com a definição de máquina atualmente ativa '{1}'." @@ -3806,12 +3751,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Guardar no Disco Externo" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Guardar no Disco Externo {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Guardado no Disco Externo {0} como {1}" @@ -3820,7 +3763,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "A Guardar" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "A Guardar no Disco Externo {0}" @@ -3837,10 +3779,6 @@ msgctxt "@placeholder" msgid "Search" msgstr "Pesquisar" -msgctxt "@label:textbox" -msgid "Search Printer" -msgstr "Procurar impressora" - msgctxt "@info" msgid "Search in the browser" msgstr "Pesquisar no browser" @@ -4073,6 +4011,10 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Mostrar &documentação online" +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Ver online o guia de resolução de problemas" + msgctxt "@label:checkbox" msgid "Show all" msgstr "Mostrar tudo" @@ -4198,11 +4140,9 @@ msgid "Solid view" msgstr "Vista Sólidos" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente.Clique para tornar estas definições visíveis." +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Algumas das definições invisíveis têm valores diferentes dos valores normais calculados automaticamente." +"Clique para tornar estas definições visíveis." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -4217,11 +4157,9 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Alguns valores de definição definidos em %1 foram substituídos." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil.Clique para abrir o gestor de perfis." +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Alguns valores de definição/substituição são diferentes dos valores armazenados no perfil." +"Clique para abrir o gestor de perfis." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -4303,7 +4241,6 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Material %1 importado com êxito" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Perfil {0} importado com êxito." @@ -4510,7 +4447,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "O extrusor a utilizar para imprimir os suportes. Definição usada com múltiplos extrusores." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "O ficheiro {0} já existe. Tem a certeza de que deseja substituí-lo?" @@ -4574,15 +4510,10 @@ msgid "The nozzle inserted in this extruder." msgstr "O nozzle inserido neste extrusor." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "O padrão do material de enchimento da impressão:Para impressões rápidas de modelo não funcional, escolha linha, ziguezague ou enchimento de iluminação.Para uma parte funcional não sujeita a muito stress recomendamos grelha ou triângulo ou tri hexágono.Para impressões 3D funcionais que exigem alta tensão em múltiplas direções, use a subdivisão cúbica, cúbica, quarto cúbica, octeto e tireoide." +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "O padrão do material de enchimento da impressão:" +"Para impressões rápidas de modelo não funcional, escolha linha, ziguezague ou enchimento de iluminação.Para uma parte funcional não sujeita a muito stress recomendamos grelha ou triângulo ou tri hexágono." +"Para impressões 3D funcionais que exigem alta tensão em múltiplas direções, use a subdivisão cúbica, cúbica, quarto cúbica, octeto e tireoide." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4701,8 +4632,8 @@ msgid "This configuration is not available because %1 is not recognized. Please msgstr "Esta configuração não está disponível porque não foi possível reconhecer %1. Visite %2 para transferir o perfil de material correto." msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" -msgstr "Este é um ficheiro de projeto Cura Universal. Gostaria de o abrir como um projeto Cura Universal ou fazer a importação dos seus modelos?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Este é um ficheiro de projeto Cura Universal. Gostaria de o abrir como um projeto Cura ou um projeto Universal ou importar os modelos do mesmo?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4738,7 +4669,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Esta impressora aloja um grupo de %1 impressoras." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "O perfil {0} contém dados incorretos, não foi possível importá-lo." @@ -4752,11 +4682,9 @@ msgid "This project contains materials or plugins that are currently not install msgstr "O projeto contém materiais ou plug-ins que não estão atualmente instalados no Cura.
    Instale os pacotes em falta e abra novamente o projeto." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "Esta definição tem um valor que é diferente do perfil.Clique para restaurar o valor do perfil." +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Esta definição tem um valor que é diferente do perfil." +"Clique para restaurar o valor do perfil." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4773,11 +4701,9 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Esta definição é sempre partilhada entre todos os extrusores. Ao alterá-la aqui, o valor será alterado em todos os extrusores." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente.Clique para restaurar o valor calculado." +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Normalmente, o valor desta definição é calculado, mas atualmente tem definido um valor diferente." +"Clique para restaurar o valor calculado." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4811,7 +4737,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Para sincronizar automaticamente os perfis de materiais com todas as impressoras ligadas à Digital Factory, tem de ter uma sessão iniciada no Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Para estabelecer uma ligação, visite {website_link}" @@ -4824,7 +4749,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Para imprimir diretamente para a sua impressora através da rede, certifique-se de que a impressora está ligada à rede através de um cabo de rede ou através de ligação à rede Wi-Fi. Se não ligar o Cura por rede à impressora, poderá ainda assim utilizar uma unidade USB para transferir ficheiros g-code para a impressora." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Para remover a impressora {printer_name} de forma permanente, visite {digital_factory_link}" @@ -4969,17 +4893,14 @@ 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" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Não é possível encontrar o servidor EnginePlugin local executável para: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "Não é possível interromper o EnginePlugin em execução.{self._plugin_id}Acesso negado." +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "Não é possível interromper o EnginePlugin em execução.{self._plugin_id}" +"Acesso negado." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4989,14 +4910,6 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "Não foi possível ler o ficheiro de dados de exemplo." -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" - -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" - msgctxt "@info:title" msgid "Unable to slice" msgstr "Não é possível Seccionar" @@ -5009,12 +4922,10 @@ 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." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Não é possível seccionar porque existem objetos associados ao extrusor %s desativado." -#, 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}" @@ -5023,7 +4934,6 @@ 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." -#, 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}" @@ -5032,7 +4942,6 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Não é possível iniciar um novo processo de início de sessão. Verifique se ainda está ativa outra tentativa de início de sessão." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "Não é possível escrever no ficheiro: {0}" @@ -5085,7 +4994,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Pacote desconhecido" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Código de erro desconhecido ao carregar trabalho de impressão: {0}" @@ -5258,10 +5166,6 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "Atualiza as configurações da Cura 5.6 para Cura 5.7." -msgctxt "description" -msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" - msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Carregar firmware personalizado" @@ -5406,10 +5310,6 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "Atualização da versão 5.6 para 5.7" -msgctxt "name" -msgid "Version Upgrade 5.8 to 5.9" -msgstr "" - msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Visualize as impressoras na fábrica digital" @@ -5462,7 +5362,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Aviso" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Aviso: o perfil não é visível porque o respetivo tipo de qualidade '{0}' não está disponível para a configuração atual. Mude para uma combinação de material/bocal que possa utilizar este tipo de qualidade." @@ -5584,31 +5483,19 @@ msgid "Yes" msgstr "Sim" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr "Está prestes a remover todas as impressoras do Cura. Esta ação não pode ser anulada.Tem a certeza de que pretende continuar?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Está prestes a remover {0} impressora do Cura. Esta ação não pode ser anulada.\n" -"Tem a certeza de que pretende continuar?" -msgstr[1] "" -"Está prestes a remover {0} impressoras do Cura. Esta ação não pode ser anulada.\n" -"Tem a certeza de que pretende continuar?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Está prestes a remover {0} impressora do Cura. Esta ação não pode ser anulada.\nTem a certeza de que pretende continuar?" +msgstr[1] "Está prestes a remover {0} impressoras do Cura. Esta ação não pode ser anulada.\nTem a certeza de que pretende continuar?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Está a tentar ligar a uma impressora que não tem o UltiMaker Connect. Atualize a impressora para o firmware mais recente." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Está a tentar ligar a {0}, mas esta não é Host de um grupo. Pode visitar a página Web para a configurar como Host do grupo." @@ -5619,7 +5506,9 @@ msgstr "Atualmente não existem quaisquer cópias de segurança. Utilize o botã msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Alterou algumas definições do perfil.Pretende manter estas alterações depois de trocar de perfis?Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'." +msgstr "Alterou algumas definições do perfil." +"Pretende manter estas alterações depois de trocar de perfis?" +"Como alternativa, pode descartar as alterações para carregar as predefinições a partir de '%1'." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -5649,12 +5538,10 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "A sua nova impressora aparecerá automaticamente no Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "A sua impressora {printer_name} pode ser ligada através da cloud. Faça a gestão da sua fila de impressão e monitorize as suas impressões a partir de qualquer local ao ligar a sua impressora ao Digital Factory" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "A sua impressora {printer_name} pode ser ligada através da cloud." +" Faça a gestão da sua fila de impressão e monitorize as suas impressões a partir de qualquer local ao ligar a sua impressora ao Digital Factory" msgctxt "@label" msgid "Z" @@ -5716,7 +5603,6 @@ msgctxt "@label" msgid "version: %1" msgstr "versão: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "A impressora {printer_name} vai ser removida até à próxima sincronização de conta." @@ -5725,18 +5611,38 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Falhou a transferência de {} plug-ins" -#~ msgctxt "description" -#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -#~ msgstr "Plug-in CuraEngine para suavizar gradualmente o fluxo para limitar saltos por fluxo elevado" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "A combinação não é recomendada. Carregue o núcleo BB na ranhura 1 (esquerda) para uma maior fiabilidade." -#~ msgctxt "name" -#~ msgid "CuraEngineGradualFlow" -#~ msgstr "CuraEngineGradualFlow" +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Ficheiro Para Impressão Makerbot Sketch" + +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Procurar impressora" + +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Este é um ficheiro de projeto Cura Universal. Gostaria de o abrir como um projeto Cura Universal ou fazer a importação dos seus modelos?" + +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Pacote de exportação para assistência técnica" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Não é possível enviar os dados do modelo para a máquina. Por favor, tente novamente ou contacte a equipa de assistência." -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting" -#~ msgstr "Ver online o guia de resolução de problemas" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Não é possível enviar os dados do modelo para a máquina. Por favor, experimente utilizar um modelo menos detalhado ou reduza o número de ocorrências." -#~ msgctxt "@text:window" -#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -#~ msgstr "Este é um ficheiro de projeto Cura Universal. Gostaria de o abrir como um projeto Cura ou um projeto Universal ou importar os modelos do mesmo?" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Atualiza configurações de Cura 5.8 para Cura 5.9." + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Atualização da versão 5.8 para 5.9" diff --git a/resources/i18n/pt_PT/fdmextruder.def.json.po b/resources/i18n/pt_PT/fdmextruder.def.json.po index 41d8698f8e6..d957eb0162f 100644 --- a/resources/i18n/pt_PT/fdmextruder.def.json.po +++ b/resources/i18n/pt_PT/fdmextruder.def.json.po @@ -1,9 +1,8 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -125,10 +124,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID do Nozzle" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Desvio X do Nozzle" @@ -157,10 +152,6 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "O núcleos de extrusão utilizado para imprimir. Definição usada com múltiplos extrusores." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." @@ -204,3 +195,11 @@ msgstr "A coordenada Y do desvio do nozzle." msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "A coordenada Y da posição inicial ao ligar o extrusor." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do bocal" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "A diferença de altura entre a extremidade do bocal e a parte mais baixa da cabeça da impressão." diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 2b32d83712e..4267c2f5fa8 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -94,7 +94,7 @@ msgstr "Camadas Adaptáveis calcula as espessuras das camadas conforme a forma d msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "Adicione linhas extra ao padrão de preenchimento para suportar as películas superiores. Esta opção previne o surgimento de buracos ou bolhas de plástico que por vezes surgem em películas de forma complexa devido ao facto de o preenchimento inferior não suportar corretamente a camada da película a ser impressa acima. A opção \"Paredes\" suporta apenas os contornos da película, ao passo que a opção \"Paredes e Linhas\" também suporta as extremidades das linhas que compôem a película." msgctxt "infill_wall_line_count description" msgid "" @@ -444,11 +444,11 @@ msgstr "Largura da Aba" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "Velocidade da ventoinha de montagem em altura" msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "Velocidade da ventoinha de montagem em camada" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" @@ -492,7 +492,7 @@ msgstr "Aviso de temperatura do volume de construção" msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "Número da ventoinha de volume de montagem" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -732,11 +732,11 @@ msgstr "Detetar vãos (bridges) e modificar as definições da velocidade de imp msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "Determina o comprimento de cada etapa na variação de fluxo ao expelir ao longo da costura do encaixe. Uma menor distância irá resultar num código G mais preciso mas também mais complexo." msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "Determina o comprimento da costura do encaixe, um tipo de costura que deverá tornar a costura Z menos visível. Deve ser superior a 0 de modo a ser eficaz." msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." @@ -1028,7 +1028,7 @@ msgstr "A costura extensiva tenta coser buracos abertos na malha, ao fechá-los msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "Linhas de preenchimento extra para suportar as películas" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" @@ -1042,6 +1042,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Material extra a preparar após a substituição do nozzle." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Posição X Preparação Extrusor" @@ -2438,7 +2442,7 @@ msgstr "Nenhum" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "Nenhuma" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2484,6 +2488,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID do Nozzle" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Tamanho do nozzle" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Quantidade de Preparação Extra de Substituição do Nozzle" @@ -2614,15 +2622,15 @@ msgstr "Aceleração da parede exterior" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "Aceleração da parede externa" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "Desaceleração da parede externa" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "Taxa de velocidade da extremidade da parede externa" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" @@ -2650,11 +2658,11 @@ msgstr "Velocidade Parede Exterior" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "Distância de separação de velocidade da parede externa" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "Taxa de velocidade de início da parede externa" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" @@ -2792,6 +2800,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Aceleração de impressão" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Jerk da Impressão" @@ -3298,15 +3310,15 @@ msgstr "Compensação de redução do fator de escala" msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "Comprimento da costura do encaixe" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "Altura de início da costura do encaixe" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "Comprimento da etapa de costura do encaixe" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -4366,7 +4378,7 @@ msgstr "A altura acima das partes horizontais do modelo em que deve imprimir o m msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "A altura a que as ventoinhas giram a uma velocidade normal. Nas camadas inferiores, a velocidade da ventoinha aumenta gradualmente, desde a Velocidade de Ventoinha Inicial a Velocidade de Ventoinha Normal." msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4476,7 +4488,7 @@ msgstr "A largura máxima das áreas do revestimento superior a serem removidas. msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "A camada em que as ventoinhas de montagem giram a uma velocidade de ventoinha total. Este valor é calculado e arredondado para um número inteiro." msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4764,7 +4776,7 @@ msgstr "O número de linhas utilizado para a aba do suporte. Uma aba com mais li msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "O número da ventoinha que arrefece o volume de montagem. Se este número estiver programado para 0, tal significa que não existe ventoinha de volume de montagem." msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4860,7 +4872,7 @@ msgstr "A mudança de velocidade instantânea máxima de impressão para a camad msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "A taxa de altura da camada selecionada a que terá início a costura do enciaxe. Um número mais baixo irá resultar numa maior altura de costura. Deve ser inferior a 100 para ser eficaz. " msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -5192,23 +5204,23 @@ msgstr "Isto controla a distância que o extrusor deve desacelerar imediatamente msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "Trata-se da aceleração com que se poderá alcançar a velocidade máxima ao imprimir uma parede externa." msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "Trata-se da desaceleração com que se poderá concluir a impressão da parede externa." msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "Trata-se do comprimento máximo de uma direção de extrusão ao dividir uma trajetória mais longa para aplicar a aceleração/desaceleração da parede externa. Uma distância menor irá criar um código G mais preciso, mas também mais verboso." msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "Trata-se da taxa de velocidade máxima de conclusão de impressão de uma parede externa." msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "Trata-se da taxa de velocidade máxima de início de impressão de uma parede externa." msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5592,15 +5604,15 @@ msgstr "Paredes" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "Apenas paredes" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "Paredes e linhas" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "As paredes com um excedente que ultrapassa este ângulo serão impressas utilizando as definições de parede excendente. Quando o valor é igual a 90, nenhuma parede será tratada como excedente. O excedente suportado pelo suporte também não será tratado como excedente. Adicionalmente, qualquer linha que seja inferior à metade excedente também não será tratada como excedente." msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index 2cb483dcb8e..298a30d5ed9 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 14:27+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#, 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 мм" @@ -146,11 +145,10 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Для применения данных изменений вам потребуется перезапустить приложение." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Добавляйте настройки материалов и плагины из Marketplace - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Добавляйте настройки материалов и плагины из Marketplace " +" - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов " +" - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker" msgctxt "@heading" msgid "-- incomplete --" @@ -204,45 +202,38 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "В пользовательском профиле будут сохранены только измененные пользователем настройки.
    Для поддерживающих его материалов новый пользовательский профиль будет наследовать свойства от %1." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • Средство визуализации OpenGL: {renderer}
  • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • Поставщик OpenGL: {vendor}
  • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • Версия OpenGL: {version}
  • " msgctxt "@label crash message" -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" +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 возникла критическая ошибка. Отправьте нам этот отчет о сбое для устранения проблемы

    " +"

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

    " " " -msgstr "

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

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

    " msgctxt "@label crash message" -msgid "" -"

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

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" +msgid "

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

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " +msgstr "

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

    " +"

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

    " +"

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

    " +"

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

    " " " -msgstr "

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

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

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

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

    " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

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

    \n" -"

    {model_names}

    \n" -"

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

    \n" -"

    View print quality guide

    " -msgstr "

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

    {model_names}

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

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

    " +msgid "

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

    \n

    {model_names}

    \n

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

    \n

    View print quality guide

    " +msgstr "

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

    " +"

    {model_names}

    " +"

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

    " +"

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

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -404,7 +395,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Добавить принтер вручную" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "Добавление принтера {name} ({model}) из вашей учетной записи" @@ -445,7 +435,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Все файлы (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Все поддерживаемые типы ({0})" @@ -538,7 +527,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "Вы уверены, что хотите переместить %1 в начало очереди?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "Действительно удалить {printer_name} временно?" @@ -551,7 +539,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "Действительно удалить {0}? Это действие невозможно будет отменить!" @@ -716,12 +703,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "Не удается подключиться к принтеру UltiMaker?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Невозможно импортировать профиль из {0}, пока не добавлен принтер." -#, 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}" @@ -803,12 +788,7 @@ msgid "Checks models and print configuration for possible printing issues and gi msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." msgctxt "@action:inmenu menubar:edit" @@ -847,10 +827,6 @@ msgctxt "@label" msgid "Color scheme" msgstr "Цветовая схема" -msgctxt "@label" -msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." -msgstr "Комбинация не рекомендуется. Для повышения надежности установите сердечник BB в слот 1 (слева)." - msgctxt "@info" msgid "Compare and save." msgstr "Сравнивайте и экономьте." @@ -1015,7 +991,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Не удалось создать архив из каталога с данными пользователя: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "Не могу найти имя файла при записи в {device}." @@ -1044,12 +1019,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Невозможно сохранить архив материалов в {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "Не могу записать {0}: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Невозможно сохранить на внешний носитель {0}: {1}" @@ -1058,26 +1031,20 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Облако не залило данные на принтер." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}Нет разрешения на выполнение процесса." +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}" +"Нет разрешения на выполнение процесса." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}Его блокирует операционная система (антивирус?)" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}" +"Его блокирует операционная система (антивирус?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}Ресурс временно недоступен" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "Не удалось запустить EnginePlugin: {self._plugin_id}" +"Ресурс временно недоступен" msgctxt "@title:window" msgid "Crash Report" @@ -1163,16 +1130,14 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Не удалось запустить Cura" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura обнаружены профили материалов, которые пока не установлены в главном принтере группы {0}." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "Cura разработана компанией UltiMaker B.V. совместно с сообществом.Cura использует следующие проекты с открытым исходным кодом:" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura разработана компанией UltiMaker B.V. совместно с сообществом." +"Cura использует следующие проекты с открытым исходным кодом:" msgctxt "@label" msgid "Cura language" @@ -1186,6 +1151,14 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "Движок CuraEngine" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Плагин CuraEngine для постепенного сглаживания потока и ограничения резких скачков потока" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Валюта:" @@ -1442,12 +1415,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Извлечь" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Извлекает внешний носитель {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Извлечено {0}. Вы можете теперь безопасно извлечь носитель." @@ -1536,10 +1507,6 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Экспортировать материал" -msgctxt "@action:inmenu menubar:help" -msgid "Export Package For Technical Support" -msgstr "" - msgctxt "@title:window" msgid "Export Profile" msgstr "Экспорт профиля" @@ -1560,7 +1527,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Экспорт успешно завершен" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Экспортирование профиля в {0}" @@ -1597,7 +1563,6 @@ msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "Продолжительность G-кода запуска экструдера" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "Экструдер {0}" @@ -1622,7 +1587,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Архив материалов для синхронизации с принтерами не создан." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Невозможно извлечь {0}. Другая программа может использовать это устройство." @@ -1631,27 +1595,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "Не могу экспортировать материал %1: %2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Невозможно экспортировать профиль в {0}: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Невозможно экспортировать профиль в {0}: Плагин записи уведомил об ошибке." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "Не удалось импортировать профиль из {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "Не удалось импортировать профиль из {0}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "Не удалось импортировать профиль из {0}: {1}" @@ -1668,7 +1627,6 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Архив материалов не сохранен" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "Не удалось выполнить запись на определенный облачный принтер: {0} не в удаленных кластерах." @@ -1697,7 +1655,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Файл сохранён" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "В файле {0} нет подходящих профилей." @@ -1921,7 +1878,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Размещение сетки" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Группа #{group_nr}" @@ -2406,10 +2362,6 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Модуль записи файлов печати Makerbot" -msgctxt "@item:inlistbox" -msgid "Makerbot Sketch Printfile" -msgstr "Файл для печати эскиза Makerbot" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter не может сохранить файл в указанное место." @@ -2654,7 +2606,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Ошибка сети" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Доступна новая стабильная прошивка %s" @@ -2667,7 +2618,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Новые принтеры UltiMaker можно подключить к Digital Factory и управлять ими удаленно." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "Для {machine_name} доступны новые функции или исправления! Если у вас не установлена самая последняя версия прошивки принтера, рекомендуем обновить ее до версии {latest_version}." @@ -2716,7 +2666,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Оценка расходов недоступна" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "Отсутствует собственный профиль для импорта в файл {0}" @@ -2817,6 +2766,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Смещение сопла по оси Y" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Диаметр сопла" + msgctxt "@label" msgid "Nozzle size" msgstr "Диаметр сопла" @@ -2853,7 +2806,6 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Показать только верхние слои" -#, 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}" @@ -3069,12 +3021,11 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Дайте необходимые разрешения при авторизации в этом приложении." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "Проверьте наличие подключения к принтеру:- Убедитесь, что принтер включен.- Убедитесь, что принтер подключен к сети.- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)." +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Проверьте наличие подключения к принтеру:" +"- Убедитесь, что принтер включен." +"- Убедитесь, что принтер подключен к сети." +"- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)." msgctxt "@text" msgid "Please name your printer" @@ -3101,12 +3052,11 @@ msgid "Please remove the print" msgstr "Пожалуйста, удалите напечатанное" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "Проверьте настройки и убедитесь в том, что ваши модели:- соответствуют допустимой области печати- назначены активированному экструдеру- не заданы как объекты-модификаторы" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Проверьте настройки и убедитесь в том, что ваши модели:" +"- соответствуют допустимой области печати" +"- назначены активированному экструдеру" +"- не заданы как объекты-модификаторы" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -3412,7 +3362,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Параметры профиля" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Профиль {0} имеет неизвестный тип файла или повреждён." @@ -3437,22 +3386,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Язык программирования" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Файл проекта {0} содержит неизвестный тип принтера {1}. Не удалось импортировать принтер. Вместо этого будут импортированы модели." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Файл проекта {0} поврежден: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "Файл проекта {0} создан с использованием профилей, несовместимых с данной версией UltiMaker Cura." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "Файл проекта {0} внезапно стал недоступен: {1}.." @@ -3581,7 +3526,6 @@ msgctxt "@label" msgid "Qt version" msgstr "Версия Qt" -#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "Тип качества \"{0}\" несовместим с текущим определением активной машины \"{1}\"." @@ -3822,12 +3766,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Сохранить на внешний носитель" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Сохранить на внешний носитель {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Сохранено на внешний носитель {0} как {1}" @@ -3836,7 +3778,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Сохранение" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Сохранение на внешний носитель {0}" @@ -3853,10 +3794,6 @@ msgctxt "@placeholder" msgid "Search" msgstr "Поиск" -msgctxt "@label:textbox" -msgid "Search Printer" -msgstr "Поиск принтера" - msgctxt "@info" msgid "Search in the browser" msgstr "Поиск в браузере" @@ -4089,6 +4026,10 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Показать онлайн документацию" +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Показать сетевое руководство по устранению неполадок" + msgctxt "@label:checkbox" msgid "Show all" msgstr "Показать всё" @@ -4214,11 +4155,9 @@ msgid "Solid view" msgstr "Просмотр модели" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.Щёлкните, чтобы сделать эти параметры видимыми." +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений." +"Щёлкните, чтобы сделать эти параметры видимыми." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -4233,11 +4172,9 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "Некоторые определенные в %1 значения настроек были переопределены." msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "Значения некоторых параметров отличаются от значений профиля.Нажмите для открытия менеджера профилей." +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Значения некоторых параметров отличаются от значений профиля." +"Нажмите для открытия менеджера профилей." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -4319,7 +4256,6 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "Успешно импортированный материал %1" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "Профиль {0} успешно импортирован." @@ -4528,7 +4464,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Файл {0} уже существует. Вы уверены, что желаете перезаписать его?" @@ -4594,15 +4529,11 @@ msgid "The nozzle inserted in this extruder." msgstr "Сопло, вставленное в данный экструдер." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Шаблон заполнительного материала печати:Для быстрой печати нефункциональной модели выберите шаблон «Линейный», «Зигзагообразный» или «Молния».Для функциональной части, не подвергающейся большому напряжению, мы рекомендуем шаблон «Сетка», «Треугольник» или «Шестигранник из треугольников».Для функциональной 3D-печати, требующей высокой прочности в разных направлениях, используйте шаблон «Куб», «Динамический куб», «Четверть куба», «Восьмигранник» или «Гироид»." +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Шаблон заполнительного материала печати:" +"Для быстрой печати нефункциональной модели выберите шаблон «Линейный», «Зигзагообразный» или «Молния»." +"Для функциональной части, не подвергающейся большому напряжению, мы рекомендуем шаблон «Сетка», «Треугольник» или «Шестигранник из треугольников»." +"Для функциональной 3D-печати, требующей высокой прочности в разных направлениях, используйте шаблон «Куб», «Динамический куб», «Четверть куба», «Восьмигранник» или «Гироид»." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4721,8 +4652,8 @@ msgid "This configuration is not available because %1 is not recognized. Please msgstr "Данная конфигурация недоступна, поскольку %1 не распознан. Посетите %2 и загрузите подходящий профиль материала." msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" -msgstr "Это файл проекта Cura Universal. Вы хотите открыть его как Cura Universal Project или импортировать модели из него?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Это файл проекта Cura Universal. Хотите открыть его как проект Cura или Cura Universal Project или импортировать из него модели?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4760,7 +4691,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Данный принтер управляет группой из %1 принтера (-ов)." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Данный профиль {0} содержит неверные данные, поэтому его невозможно импортировать." @@ -4774,11 +4704,9 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Этот проект содержит материалы или плагины, которые сейчас не установлены в Cura.
    Установите недостающие пакеты и снова откройте проект." msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "Значение этого параметра отличается от значения в профиле.Щёлкните для восстановления значения из профиля." +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Значение этого параметра отличается от значения в профиле." +"Щёлкните для восстановления значения из профиля." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4797,11 +4725,9 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Данная настройка всегда используется совместно всеми экструдерами. Изменение данного значения приведет к изменению значения для всех экструдеров." msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "Обычно это значение вычисляется, но в настоящий момент было установлено явно.Щёлкните для восстановления вычисленного значения." +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Обычно это значение вычисляется, но в настоящий момент было установлено явно." +"Щёлкните для восстановления вычисленного значения." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4835,7 +4761,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Для автоматической синхронизации профилей материалов со всеми принтерами, подключенными к Digital Factory, необходимо войти в Cura." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Чтобы установить подключение, перейдите на сайт {website_link}" @@ -4848,7 +4773,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-Code на принтер." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "Чтобы удалить {printer_name} без возможности восстановления, перейдите на сайт {digital_factory_link}" @@ -4993,17 +4917,14 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "Невозможно разместить все объекты внутри печатаемого объёма" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "Не удается найти локальный исполняемый файл сервера EnginePlugin для: {self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "Невозможно завершить работу EnginePlugin: {self._plugin_id}Доступ запрещен." +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "Невозможно завершить работу EnginePlugin: {self._plugin_id}" +"Доступ запрещен." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -5013,14 +4934,6 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "Невозможно прочитать пример файла данных." -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" - -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" - msgctxt "@info:title" msgid "Unable to slice" msgstr "Невозможно нарезать" @@ -5033,12 +4946,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "Слайсинг невозможен, так как черновая башня или её позиция неверные." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Невозможно разделить на слои из-за наличия объектов, связанных с отключенным экструдером %s." -#, 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}" @@ -5047,7 +4958,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "Невозможно нарезать модель, используя текущий материал, так как он несовместим с выбранной машиной или конфигурацией." -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "Не могу выполнить слайсинг на текущих настройках. Проверьте следующие настройки: {0}" @@ -5056,7 +4966,6 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Невозможно начать новый вход в систему. Проверьте, возможно другой сеанс еще не завершен." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "Невозможно записать в файл: {0}" @@ -5109,7 +5018,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Неизвестный пакет" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Неизвестный код ошибки при загрузке задания печати: {0}" @@ -5282,10 +5190,6 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "Обновляет конфигурации с Cura 5.6 до Cura 5.7." -msgctxt "description" -msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" - msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Залить собственную прошивку" @@ -5430,10 +5334,6 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "Обновление версии с 5.6 до 5.7" -msgctxt "name" -msgid "Version Upgrade 5.8 to 5.9" -msgstr "" - msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Просмотреть принтеры в Digital Factory" @@ -5486,7 +5386,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Внимание" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Внимание! Профиль не отображается, так как его тип качества \"{0}\" недоступен для текущей конфигурации. Выберите комбинацию материала и сопла, которым подходит этот тип качества." @@ -5608,35 +5507,21 @@ msgid "Yes" msgstr "Да" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr "Вы удаляете все принтеры из Cura. Это действие невозможно будет отменить.Продолжить?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"Вы удаляете {0} принтер из Cura. Это действие невозможно будет отменить.\n" -"Продолжить?" -msgstr[1] "" -"Вы удаляете {0} принтера из Cura. Это действие невозможно будет отменить.\n" -"Продолжить?" -msgstr[2] "" -"Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\n" -"Продолжить?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "Вы удаляете {0} принтер из Cura. Это действие невозможно будет отменить.\nПродолжить?" +msgstr[1] "Вы удаляете {0} принтера из Cura. Это действие невозможно будет отменить.\nПродолжить?" +msgstr[2] "Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\nПродолжить?" msgstr[3] "" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Вы пытаетесь подключиться к принтеру, на котором не работает UltiMaker Connect. Обновите прошивку принтера до последней версии." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "Вы пытаетесь подключиться к {0}, но это не главный принтер группы. Откройте веб-страницу, чтобы настроить его в качестве главного принтера группы." @@ -5647,7 +5532,9 @@ msgstr "В данный момент у вас отсутствуют резер msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Вы изменили некоторые настройки профиля.Сохранить измененные настройки после переключения профилей?Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"." +msgstr "Вы изменили некоторые настройки профиля." +"Сохранить измененные настройки после переключения профилей?" +"Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -5677,12 +5564,10 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Ваш новый принтер автоматически появится в Cura" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Ваш принтер {printer_name} может быть подключен через облако. Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "Ваш принтер {printer_name} может быть подключен через облако." +" Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory" msgctxt "@label" msgid "Z" @@ -5744,7 +5629,6 @@ msgctxt "@label" msgid "version: %1" msgstr "версия: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} будет удален до следующей синхронизации учетной записи." @@ -5753,18 +5637,38 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Встраиваемые модули ({} шт.) не загружены" -#~ msgctxt "description" -#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -#~ msgstr "Плагин CuraEngine для постепенного сглаживания потока и ограничения резких скачков потока" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Комбинация не рекомендуется. Для повышения надежности установите сердечник BB в слот 1 (слева)." -#~ msgctxt "name" -#~ msgid "CuraEngineGradualFlow" -#~ msgstr "CuraEngineGradualFlow" +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Файл для печати эскиза Makerbot" + +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Поиск принтера" + +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Это файл проекта Cura Universal. Вы хотите открыть его как Cura Universal Project или импортировать модели из него?" + +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Экспортировать пакет для технической поддержки" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Не удается отправить данные модели в устройство. Повторите попытку или обратитесь в службу поддержки." -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting" -#~ msgstr "Показать сетевое руководство по устранению неполадок" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Не удается отправить данные модели в устройство. Попробуйте использовать менее подробную модель или уменьшите количество копий." -#~ msgctxt "@text:window" -#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -#~ msgstr "Это файл проекта Cura Universal. Хотите открыть его как проект Cura или Cura Universal Project или импортировать из него модели?" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Обновляет конфигурации с Cura 5.8 до Cura 5.9." + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Обновление версии 5.8 до 5.9" diff --git a/resources/i18n/ru_RU/fdmextruder.def.json.po b/resources/i18n/ru_RU/fdmextruder.def.json.po index ca897e9b00f..f5a7cf5ce09 100644 --- a/resources/i18n/ru_RU/fdmextruder.def.json.po +++ b/resources/i18n/ru_RU/fdmextruder.def.json.po @@ -1,9 +1,8 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -125,10 +124,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Идентификатор сопла" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X смещение сопла" @@ -157,10 +152,6 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Экструдер, который используется для печати. Имеет значение при использовании нескольких экструдеров." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." @@ -204,3 +195,11 @@ msgstr "Смещение сопла по оси Y." msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Y координата стартовой позиции при включении экструдера." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Длина сопла" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Разница высот между кончиком сопла и самой нижней частью печатающей головки." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index cdc7def90fb..cd567b9d94f 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -94,7 +94,7 @@ msgstr "В случае адаптивных слоев расчет высот msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "Добавьте дополнительные линии в шаблон заполнения для поддержки оболочек выше. Эта опция предотвращает появление отверстий или капель пластика, которые иногда появляются в оболочках сложной формы из-за того, что заполнение внизу не поддерживает правильно слой оболочки, печатаемый выше. \"Стены\" поддерживают только контуры оболочки, тогда как \"стены и линии\" поддерживают также концы линий, которые образуют оболочку." msgctxt "infill_wall_line_count description" msgid "" @@ -444,11 +444,11 @@ msgstr "Ширина каймы" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "Скорость вентилятора построения в высоту" msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "Скорость вентилятора построения на уровне" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" @@ -492,7 +492,7 @@ msgstr "Предупреждение о температуре объема сб msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "Номер вентилятора объема построения" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -732,11 +732,11 @@ msgstr "Обнаружение мостиков и изменение скоро msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "Определяет длину каждого шага изменения потока при экструзии вдоль косого шва. Меньшее расстояние приведет к более точному, но и более сложному G-коду." msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "Определяет длину косого шва, типа шва, который должен сделать шов Z менее заметным. Для эффективности должно быть больше 0." msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." @@ -1028,7 +1028,7 @@ msgstr "Обширное сшивание пытается сшить откры msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "Дополнительные линии заполнения для поддержки оболочек" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" @@ -1042,6 +1042,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Дополнительный объем материала для заполнения после смены экструдера." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Начальная X позиция экструдера" @@ -2438,7 +2442,7 @@ msgstr "Нет" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "Нет" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2484,6 +2488,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Идентификатор сопла" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Диаметр сопла" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Дополнительно заполняемый объем при смене экструдера" @@ -2614,15 +2622,15 @@ msgstr "Ускорение внешней стенки" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "Ускорение на внешних стенках" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "Замедление на внешних станках" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "Коэффициент скорости в конце внешней стенки" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" @@ -2650,11 +2658,11 @@ msgstr "Скорость печати внешней стенки" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "Интервал скорости на внешней стенке" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "Коэффициент начальной скорости на внешней стенке" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" @@ -2792,6 +2800,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Ускорение печати" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Рывок печати" @@ -3298,15 +3310,15 @@ msgstr "Коэффициент масштабирования для компе msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "Длина косого шва" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "Начальная высота косого шва" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "Длина шага косого шва" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -4366,7 +4378,7 @@ msgstr "Высота над горизонтальными частями ваш msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "Высота, на которой вентиляторы вращаются на обычной скорости. На нижних уровнях скорость вентилятора постепенно увеличивается от начальной скорости вентилятора до обычной скорости вентилятора." msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4476,7 +4488,7 @@ msgstr "Наибольшая ширина областей оболочки, к msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "Слой, на котором вентиляторы построения вращаются на полной скорости. Это значение рассчитывается и округляется до целого числа." msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4764,7 +4776,7 @@ msgstr "Количество линий, используемых для кай msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "Номер вентилятора, охлаждающего объем построения. Если установлено значение 0, это означает, что вентилятора объема построения нет" msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4860,7 +4872,7 @@ msgstr "Изменение максимальной мгновенной ско msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "Коэффициент выбранной высоты слоя, при котором начнется косой шов. Меньшее число приведет к большей высоте шва. Для эффективности должно быть ниже 100." msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -5192,23 +5204,23 @@ msgstr "Эта настройка управляет расстоянием на msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "Это ускорение, с которым можно достичь максимальной скорости при печати наружной стенки." msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "Это замедление, с которым следует завершить печать внешней стенки." msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "Это максимальная длина пути экструзии при разделении более длинного пути для применения ускорения/замедления на внешней стенке. Меньшее расстояние создаст более точный, но и более сложный G-код." msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "Это коэффициент максимальной скорости для завершения печати внешней стенки." msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "Это коэффициент максимальной скорости, с которой следует начинать печать внешней стенки." msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5592,15 +5604,15 @@ msgstr "Стенки" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "Только стенки" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "Стенки и линии" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "Стены, которые нависают больше, чем на этот угол, будут напечатаны с использованием настроек для нависающих стен. Если значение равно 90, ни одна стенка не будет считаться нависающей. Нависание, поддерживаемое опорой, также не будет считаться нависанием. Кроме того, любая линия, которая нависает меньше, чем на половину, также не будет считаться нависанием." msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index c95b6ce5f9d..c8ad0816e99 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 14:27+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -142,11 +141,10 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*Bu değişikliklerin etkili olması için uygulamayı yeniden başlatmanız gerekecektir." msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- Marketplace'den malzeme profilleri ve eklentiler ekleyin- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin- UltiMaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- Marketplace'den malzeme profilleri ve eklentiler ekleyin" +"- Malzeme profillerinizi ve eklentilerinizi yedekleyin ve senkronize edin" +"- UltiMaker topluluğunda fikirlerinizi paylaşın ve 48.000'den fazla kullanıcıdan yardım alın" msgctxt "@heading" msgid "-- incomplete --" @@ -200,45 +198,38 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "Özel profilde yalnızca kullanıcı tarafından değiştirilen ayarlar kaydedilir.
    Yeni özel profil, bunu destekleyen malzemeler için %1adresindeki özellikleri devralır." -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL Oluşturucusu: {renderer}
  • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL Satıcısı: {vendor}
  • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL Sürümü: {version}
  • " msgctxt "@label crash message" -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" +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

    " +"

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

    " " " -msgstr "

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

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

    " msgctxt "@label crash message" -msgid "" -"

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

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" +msgid "

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

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    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ı.

    " +"

    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.

    " +"

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

    " +"

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

    " " " -msgstr "

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

    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.

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

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

    " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

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

    \n" -"

    {model_names}

    \n" -"

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

    \n" -"

    View print quality guide

    " -msgstr "

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

    {model_names}

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

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

    " +msgid "

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

    \n

    {model_names}

    \n

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

    \n

    View print quality guide

    " +msgstr "

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

    " +"

    {model_names}

    " +"

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

    " +"

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

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -398,7 +389,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "Yazıcıyı manuel olarak ekle" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "{name} yazıcısı ({model}) hesabınızdan ekleniyor" @@ -439,7 +429,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "Tüm Dosyalar (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "Tüm desteklenen türler ({0})" @@ -532,7 +521,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "%1 öğesini kuyruğun en üstüne taşımak ister misiniz?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "{printer_name} yazıcısını geçici olarak kaldırmak istediğinizden emin misiniz?" @@ -545,7 +533,6 @@ 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!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "{0} yazıcısını kaldırmak istediğinizden emin misiniz? Bu işlem geri alınamaz!" @@ -710,12 +697,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "UltiMaker yazıcınıza bağlanamıyor musunuz?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "Yazıcı eklenmeden önce profil, {0} dosyasından içe aktarılamaz." -#, 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ı" @@ -797,12 +782,7 @@ msgid "Checks models and print configuration for possible printing issues and gi msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir." msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır." msgctxt "@action:inmenu menubar:edit" @@ -841,10 +821,6 @@ msgctxt "@label" msgid "Color scheme" msgstr "Renk şeması" -msgctxt "@label" -msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." -msgstr "Kombinasyon önerilmez. Daha iyi güvenilirlik için BB core'u 1. yuvaya (solda) yükleyin." - msgctxt "@info" msgid "Compare and save." msgstr "Karşılaştırın ve tasarruf edin." @@ -1009,7 +985,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "Kullanıcı veri dizininden arşiv oluşturulamadı: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "{device} üzerine yazmaya çalışırken dosya adı bulunamadı." @@ -1038,12 +1013,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "Malzeme arşivi {} konumuna kaydedilemedi:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "{0} dosyasına kaydedilemedi: {1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "Çıkarılabilir aygıta {0} kaydedilemedi: {1}" @@ -1052,26 +1025,20 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "Veri yazıcıya yüklenemedi." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "EnginePlugin başlatılamadı: {self._plugin_id}İşlem yürütme izni yok." +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "EnginePlugin başlatılamadı: {self._plugin_id}" +"İşlem yürütme izni yok." -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "EnginePlugin başlatılamadı: {self._plugin_id}İşletim sistemi tarafından engelleniyor (antivirüs?)" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "EnginePlugin başlatılamadı: {self._plugin_id}" +"İşletim sistemi tarafından engelleniyor (antivirüs?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "EnginePlugin başlatılamadı: {self._plugin_id}Kaynak geçici olarak kullanılamıyor" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "EnginePlugin başlatılamadı: {self._plugin_id}" +"Kaynak geçici olarak kullanılamıyor" msgctxt "@title:window" msgid "Crash Report" @@ -1157,16 +1124,14 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura başlatılamıyor" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura, henüz {0} grubunun ana yazıcısına yüklenmemiş malzeme profilleri tespit etti." msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "Cura, topluluk iş birliği ile UltiMaker tarafından geliştirilmiştir.Cura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura, topluluk iş birliği ile UltiMaker tarafından geliştirilmiştir." +"Cura aşağıdaki açık kaynak projelerini gururla kullanmaktadır:" msgctxt "@label" msgid "Cura language" @@ -1180,6 +1145,14 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "CuraEngine Arka Uç" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Yüksek akışlı sıçramaları sınırlamak amacıyla akışı kademeli olarak düzelten CuraEngine eklentisi" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Para Birimi:" @@ -1436,12 +1409,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "Çıkar" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "Çıkarılabilir aygıtı çıkar {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "Çıkarıldı {0}. Şimdi sürücüyü güvenle kaldırabilirsiniz." @@ -1530,10 +1501,6 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Malzemeyi Dışa Aktar" -msgctxt "@action:inmenu menubar:help" -msgid "Export Package For Technical Support" -msgstr "" - msgctxt "@title:window" msgid "Export Profile" msgstr "Profili Dışa Aktar" @@ -1554,7 +1521,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "Dışa aktarma başarılı" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "Profil {0} dosyasına aktarıldı" @@ -1591,7 +1557,6 @@ msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "Ekstruder Başlangıç G kodu süresi" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "Ekstruder {0}" @@ -1616,7 +1581,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "Yazıcılarla senkronize edilecek malzeme arşivi oluşturulamadı." -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "Çıkarma işlemi başarısız oldu {0}. Başka bir program sürücüyü kullanıyor olabilir." @@ -1625,27 +1589,22 @@ 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" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "Profilin {0} dosyasına aktarımı başarısız oldu: {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "Profilin {0} dosyasına aktarımı başarısız oldu: Yazıcı eklentisinde rapor edilen hata." -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "{0} dosyasından profil içe aktarımı başarısız oldu: {1}" @@ -1662,7 +1621,6 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "Malzeme arşivi kaydedilemedi" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "Belirli bir bulut yazıcısına yazma işlemi başarısız oldu: {0} uzak saklama biriminde değil." @@ -1691,7 +1649,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "Dosya Kaydedildi" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "Dosya {0} geçerli bir profil içermemekte." @@ -1915,7 +1872,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "Izgara Yerleşimi" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "Grup #{group_nr}" @@ -2400,10 +2356,6 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Makerbot Baskı Dosyası Yazarı" -msgctxt "@item:inlistbox" -msgid "Makerbot Sketch Printfile" -msgstr "Makerbot Çizim Baskı Dosyası" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter belirlenen yola kaydedemedi." @@ -2646,7 +2598,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "Ağ hatası" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "Yeni %s istikrarlı donanım yazılımı yayınlandı" @@ -2659,7 +2610,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "Yeni UltiMaker yazıcılar Digital Factory’ye bağlanabilir ve uzaktan izlenebilir." -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "{machine_name} cihazınız için yeni özellikler veya hata düzeltmeleri mevcut olabilir! Henüz son sürüme geçmediyseniz yazıcınızın donanım yazılımını {latest_version} sürümüne güncellemeniz önerilir." @@ -2706,7 +2656,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "Maliyet tahmini yok" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "{0} dosyasında içe aktarılabilecek özel profil yok" @@ -2807,6 +2756,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "Nozül Y ofseti" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "Nozzle boyutu" + msgctxt "@label" msgid "Nozzle size" msgstr "Nozzle boyutu" @@ -2843,7 +2796,6 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "Yalnızca Üst Katmanları Göster" -#, 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ı" @@ -3057,12 +3009,11 @@ msgid "Please give the required permissions when authorizing this application." msgstr "Lütfen bu başvuruya yetki verirken gerekli izinleri verin." msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "Lütfen yazıcınızda bağlantı olduğundan emin olun:- Yazıcının açık olup olmadığını kontrol edin.- Yazıcının ağa bağlı olup olmadığını kontrol edin.- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin." +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "Lütfen yazıcınızda bağlantı olduğundan emin olun:" +"- Yazıcının açık olup olmadığını kontrol edin." +"- Yazıcının ağa bağlı olup olmadığını kontrol edin." +"- Buluta bağlı yazıcıları keşfetmek için giriş yapıp yapmadığınızı kontrol edin." msgctxt "@text" msgid "Please name your printer" @@ -3089,12 +3040,11 @@ msgid "Please remove the print" msgstr "Lütfen yazıcıyı çıkarın" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:- Yapı hacmine sığma- Etkin bir ekstrüdere atanma- Değiştirici kafesler olarak ayarlanmama" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "Lütfen ayarları gözden geçirin ve modellerinizi şu durumlara karşı kontrol edin:" +"- Yapı hacmine sığma" +"- Etkin bir ekstrüdere atanma" +"- Değiştirici kafesler olarak ayarlanmama" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -3396,7 +3346,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "Profil ayarları" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "Profil {0} öğesinde bilinmeyen bir dosya türü var veya profil bozuk." @@ -3421,22 +3370,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "Programlama dili" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "Proje dosyası {0} bilinmeyen bir makine tipi içeriyor: {1}. Makine alınamıyor. Bunun yerine modeller alınacak." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "Proje dosyası {0} bozuk: {1}." -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "{0} proje dosyası, Ultimaker Cura'nın bu sürümünde bilinmeyen profiller kullanılarak yapılmış." -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "{0} proje dosyası aniden erişilemez oldu: {1}." @@ -3565,7 +3510,6 @@ msgctxt "@label" msgid "Qt version" msgstr "Qt Sürümü" -#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "'{0}' kalite tipi, mevcut aktif makine tanımı '{1}' ile uyumlu değil." @@ -3806,12 +3750,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "Çıkarılabilir Sürücüye Kaydet" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "Çıkarılabilir Sürücüye Kaydediliyor {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "Çıkarılabilir Sürücüye {0}, {1} olarak kaydedildi" @@ -3820,7 +3762,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "Kaydediliyor" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "Çıkarılabilir Sürücü {0} Üzerine Kaydediliyor" @@ -3837,10 +3778,6 @@ msgctxt "@placeholder" msgid "Search" msgstr "Ara" -msgctxt "@label:textbox" -msgid "Search Printer" -msgstr "Yazıcı Ara" - msgctxt "@info" msgid "Search in the browser" msgstr "Tarayıcıda ara" @@ -4073,6 +4010,10 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Çevrimiçi Belgeleri Göster" +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "Çevrimiçi Sorun Giderme Kılavuzunu Göster" + msgctxt "@label:checkbox" msgid "Show all" msgstr "Tümünü göster" @@ -4198,11 +4139,9 @@ msgid "Solid view" msgstr "Gerçek görünüm" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır.Bu ayarları görmek için tıklayın." +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "Gizlenen bazı ayarlar normal hesaplanan değerden farklı değerler kullanır." +"Bu ayarları görmek için tıklayın." msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -4217,11 +4156,9 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "1 kapsamında tanımlanan bazı ayar değerleri geçersiz kılındı." msgctxt "@tooltip" -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.Profil yöneticisini açmak için tıklayın." +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "Bazı ayar/geçersiz kılma değerleri profilinizde saklanan değerlerden farklıdır." +"Profil yöneticisini açmak için tıklayın." msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -4303,7 +4240,6 @@ 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ı" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "{0} profili başarıyla içe aktarıldı." @@ -4510,7 +4446,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "Dosya {0} zaten mevcut. Üstüne yazmak istediğinizden emin misiniz?" @@ -4574,15 +4509,11 @@ msgid "The nozzle inserted in this extruder." msgstr "Bu ekstrudere takılan nozül." msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Baskı dolgu malzemesinin deseni:İşlevsel olmayan modellerin hızlı baskıları için çizgi, zikzak veya aydınlatma dolgusunu seçin.Çok fazla strese maruz kalmayan işlevsel parçalar için ızgara veya üçgen veya üç altıgen öneriyoruz.Birden fazla yönde yüksek sağlamlık gerektiren işlevsel 3D baskılar için kübik, kübik alt bölüm, çeyrek kübik, sekizli ve dönel kullanın." +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "Baskı dolgu malzemesinin deseni:" +"İşlevsel olmayan modellerin hızlı baskıları için çizgi, zikzak veya aydınlatma dolgusunu seçin." +"Çok fazla strese maruz kalmayan işlevsel parçalar için ızgara veya üçgen veya üç altıgen öneriyoruz." +"Birden fazla yönde yüksek sağlamlık gerektiren işlevsel 3D baskılar için kübik, kübik alt bölüm, çeyrek kübik, sekizli ve dönel kullanın." msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4701,8 +4632,8 @@ msgid "This configuration is not available because %1 is not recognized. Please msgstr "%1 tanınmadığından bu yapılandırma kullanılamaz. Doğru malzeme profilini indirmek için lütfen %2 bölümünü ziyaret edin." msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" -msgstr "Bu, bir Cura Universal projesi dosyasıdır. Cura Universal Projesi olarak açmak mı yoksa modelleri buradan içe aktarmak mı istiyorsunuz?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "Bu bir Cura Universal proje dosyasıdır. Cura projesi veya Cura Universal Project olarak mı açmak istiyorsunuz yoksa içindeki modelleri mi aktarmak istiyorsunuz?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4738,7 +4669,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "Bu yazıcı, %1 yazıcı grubunun ana makinesidir." -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "Bu {0} profili yanlış veri içeriyor, içeri aktarılamadı." @@ -4752,11 +4682,9 @@ msgid "This project contains materials or plugins that are currently not install msgstr "Bu proje şu anda Cura'da yüklü olmayan materyal veya eklentiler içeriyor.
    Eksik paketleri kurun ve projeyi yeniden açın." msgctxt "@label" -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.Profil değerini yenilemek için tıklayın." +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "Bu ayarın değeri profilden farklıdır." +"Profil değerini yenilemek için tıklayın." msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4773,11 +4701,9 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "Bu ayar her zaman, tüm ekstrüderler arasında paylaşılır. Buradan değiştirildiğinde tüm ekstrüderler için değer değiştirir." msgctxt "@label" -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.Hesaplanan değeri yenilemek için tıklayın." +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "Bu ayar normal olarak yapılır ama şu anda mutlak değer ayarı var." +"Hesaplanan değeri yenilemek için tıklayın." msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4811,7 +4737,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "Malzeme profillerini Digital Factory'ye bağlı tüm yazıcılarınızla otomatik olarak senkronize etmek için Cura'da oturum açmanız gerekir." -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "Bağlantı kurmak için lütfen {website_link} adresini ziyaret edin" @@ -4824,7 +4749,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "Yazıcınıza ağ üzerinden doğrudan baskı göndermek için lütfen yazıcınızın ağ kablosuyla ağa bağlı olduğundan veya yazıcınızı WiFi ağınıza bağladığınızdan emin olun. Yazıcınız ile Cura'ya bağlanamıyorsanız g-code dosyalarını yazıcınıza aktarmak için USB sürücüsü kullanabilirsiniz." -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "{printer_name} yazıcısını kalıcı olarak kaldırmak için {digital_factory_link} adresini ziyaret edin" @@ -4969,17 +4893,14 @@ 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ı" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "{self._plugin_id} için yürütülebilir yerel EnginePlugin sunucusu bulunamıyor" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "Çalışan EnginePlugin sonlandırılamıyor: {self._plugin_id}Erişim reddedildi." +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "Çalışan EnginePlugin sonlandırılamıyor: {self._plugin_id}" +"Erişim reddedildi." msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4989,14 +4910,6 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "Örnek veri dosyası okunamıyor." -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" - -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" - msgctxt "@info:title" msgid "Unable to slice" msgstr "Dilimlenemedi" @@ -5009,12 +4922,10 @@ 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." -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "Etkisizleştirilmiş Extruder %s ile ilgili nesneler olduğundan dilimleme yapılamıyor." -#, 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}" @@ -5023,7 +4934,6 @@ 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." -#, 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}" @@ -5032,7 +4942,6 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "Yeni bir oturum açma işlemi başlatılamıyor. Başka bir aktif oturum açma girişimi olup olmadığını kontrol edin." -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "Dosyaya yazılamıyor: {0}" @@ -5085,7 +4994,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "Bilinmeyen Paket" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "Baskı işi yüklenirken bilinmeyen hata kodu: {0}" @@ -5258,10 +5166,6 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "Yapılandırmaları, Cura 5.6'dan Cura 5.7'ye yükseltir." -msgctxt "description" -msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" - msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Özel Aygıt Yazılımı Yükle" @@ -5406,10 +5310,6 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "5.6'dan 5.7'ye Sürüm Yükseltme" -msgctxt "name" -msgid "Version Upgrade 5.8 to 5.9" -msgstr "" - msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Yazıcıları Digital Factory’de görüntüleyin" @@ -5462,7 +5362,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "Uyarı" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "Uyarı: Profilin '{0}' kalite tipi, mevcut yapılandırma için kullanılabilir olmadığından profil görünür değil. Bu kalite tipini kullanabilen malzeme/nozül kombinasyonuna geçiş yapın." @@ -5584,31 +5483,20 @@ msgid "Yes" msgstr "Evet" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.Devam etmek istediğinizden emin misiniz?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "Tüm yazıcıları Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz." +"Devam etmek istediğinizden emin misiniz?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" -"Devam etmek istediğinizden emin misiniz?" -msgstr[1] "" -"{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\n" -"Devam etmek istediğinizden emin misiniz?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\nDevam etmek istediğinizden emin misiniz?" +msgstr[1] "{0} yazıcıyı Cura'dan kaldırmak üzeresiniz. Bu işlem geri alınamaz.\nDevam etmek istediğinizden emin misiniz?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Ultimaker Connect çalıştırmayan bir yazıcıya bağlanmaya çalışıyorsunuz. Lütfen yazıcının donanım yazılımını son sürüme güncelleyin." -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "{0} ile bağlantı kurmayı deniyorsunuz ancak cihaz bir grubun ana makinesi değil. Bu cihazı grup ana makinesi olarak yapılandırmak için web sayfasını ziyaret edebilirsiniz." @@ -5619,7 +5507,9 @@ msgstr "Şu anda yedeklemeniz yok. Oluşturmak için “Şimdi Yedekle” düğm msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "Bazı profil ayarlarını özelleştirdiniz.Profiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?Alternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz." +msgstr "Bazı profil ayarlarını özelleştirdiniz." +"Profiller arasında geçiş yapıldıktan sonra bu değişiklikleri tutmak ister misiniz?" +"Alternatif olarak, '%1' üzerinden varsayılanları yüklemek için değişiklikleri silebilirsiniz." msgctxt "@label" msgid "You need to accept the license to install the package" @@ -5649,12 +5539,10 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "Yeni yazıcınız Cura’da otomatik olarak görünecektir" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "{printer_name} adlı yazıcınız bulut aracılığıyla bağlanamadı. Baskı kuyruğunuzu yönetin ve yazıcınızı Digital Factory'ye bağlayarak baskılarınızı dilediğiniz yerden takip edin" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "{printer_name} adlı yazıcınız bulut aracılığıyla bağlanamadı." +" Baskı kuyruğunuzu yönetin ve yazıcınızı Digital Factory'ye bağlayarak baskılarınızı dilediğiniz yerden takip edin" msgctxt "@label" msgid "Z" @@ -5716,7 +5604,6 @@ msgctxt "@label" msgid "version: %1" msgstr "sürüm: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "{printer_name} yazıcısı bir sonraki hesap senkronizasyonuna kadar kaldırılacak." @@ -5725,18 +5612,38 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} eklenti indirilemedi" -#~ msgctxt "description" -#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -#~ msgstr "Yüksek akışlı sıçramaları sınırlamak amacıyla akışı kademeli olarak düzelten CuraEngine eklentisi" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Kombinasyon önerilmez. Daha iyi güvenilirlik için BB core'u 1. yuvaya (solda) yükleyin." + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot Çizim Baskı Dosyası" + +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Yazıcı Ara" -#~ msgctxt "name" -#~ msgid "CuraEngineGradualFlow" -#~ msgstr "CuraEngineGradualFlow" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Bu, bir Cura Universal projesi dosyasıdır. Cura Universal Projesi olarak açmak mı yoksa modelleri buradan içe aktarmak mı istiyorsunuz?" -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting" -#~ msgstr "Çevrimiçi Sorun Giderme Kılavuzunu Göster" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Teknik Destek İçin Dışa Aktarma Paketi" -#~ msgctxt "@text:window" -#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -#~ msgstr "Bu bir Cura Universal proje dosyasıdır. Cura projesi veya Cura Universal Project olarak mı açmak istiyorsunuz yoksa içindeki modelleri mi aktarmak istiyorsunuz?" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Model verileri motora gönderilemiyor. Lütfen tekrar deneyin veya destek ekibiyle iletişime geçin." + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Model verileri motora gönderilemiyor. Lütfen daha az ayrıntılı bir model kullanmayı deneyin veya örnek sayısını azaltın." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Yapılandırmaları Cura 5.8'den Cura 5.9'a yükseltir." + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "5.8'den 5.9'a Sürüm Yükseltmesi" diff --git a/resources/i18n/tr_TR/fdmextruder.def.json.po b/resources/i18n/tr_TR/fdmextruder.def.json.po index a3d64aeb7cd..903638b3187 100644 --- a/resources/i18n/tr_TR/fdmextruder.def.json.po +++ b/resources/i18n/tr_TR/fdmextruder.def.json.po @@ -1,9 +1,8 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -125,10 +124,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Nozül Kimliği" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Nozül NX Ofseti" @@ -157,10 +152,6 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Yazdırma için kullanılan ekstruder dişli çark. Çoklu ekstrüzyon işlemi için kullanılır." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." @@ -204,3 +195,11 @@ msgstr "Nozül ofsetinin y koordinatı." msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Ekstruder açılırken başlangıç konumunun Y koordinatı." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Püskürtme Memesi Uzunluğu" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Püskürtme memesinin ucu ile yazıcı kafasının en alt kısmı arasındaki yükseklik farkı." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index 2764a435880..9d47d98d828 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -94,7 +94,7 @@ msgstr "Uyarlanabilir katmanlar modelin şekline bağlı olarak katman yüksekli msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "Yukarıdaki kaplamaları desteklemek için dolgu desenine ekstra hatlar ekleyin. Bu seçenek, karmaşık şekilli kaplamalarda alttaki dolgunun üstte basılan kaplama katmanını doğru şekilde desteklememesi nedeniyle bazen ortaya çıkan delikleri veya plastik lekeleri önler. \"Duvarlar\" sadece kaplamanın ana hatlarını desteklerken, \"Duvarlar ve Hatlar\" kaplamayı oluşturan hatların uçlarını da destekler." msgctxt "infill_wall_line_count description" msgid "" @@ -444,11 +444,11 @@ msgstr "Kenar Genişliği" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "Yükseklikteki Yapı Fan Hızı" msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "Katmandaki Yapı Fan Hızı" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" @@ -492,7 +492,7 @@ msgstr "Yapı Hacmi sıcaklığı Uyarısı" msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "Yapı hacmi fan sayısı" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -732,11 +732,11 @@ msgstr "Köprüleri tespit edin ve köprüler yazdırılırken yazdırma hızın msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "Atkı dikişi boyunca kalıptan geçirirken akış değişimindeki her adımın uzunluğunu belirler. Daha küçük bir mesafe, daha hassas ama aynı zamanda daha karmaşık bir G koduna sebep olacaktır." msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "Z dikişini daha az görünür hâle getirmesi gereken bir dikiş türü olan atkı dikişinin uzunluğunu belirler. Etkili olması için 0'dan büyük olmalıdır." msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." @@ -1028,7 +1028,7 @@ msgstr "Geniş Dikiş, bitişik poligonlarla dikişleri kapatarak ağdaki açık msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "Kaplamaları Desteklemek İçin Ekstra Dolgu Hatları" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" @@ -1042,6 +1042,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Nozül değişiminin ardından çalışmaya hazırlanacak ek malzemedir." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Extruder İlk X konumu" @@ -2438,7 +2442,7 @@ msgstr "Hiçbiri" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "Hiçbiri" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2484,6 +2488,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Nozül Kimliği" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "Nozzle boyutu" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Nozül Değişimiyle Çalışmaya Hazırlanacak Ek Miktar" @@ -2614,15 +2622,15 @@ msgstr "Dış Duvar İvmesi" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "Dış Duvar Hızlanması" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "Dış Duvar Yavaşlaması" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "Dış Duvar Bitiş Hız Oranı" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" @@ -2650,11 +2658,11 @@ msgstr "Dış Duvar Hızı" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "Dış Duvar Hızı Bölünme Mesafesi" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "Dış Duvar Başlangıç Hız Oranı" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" @@ -2792,6 +2800,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Yazdırma İvmesi" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Yazdırma İvmesi Değişimi" @@ -3298,15 +3310,15 @@ msgstr "Ölçekleme Faktörü Büzülme Telafisi" msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "Atkı Dikişi Uzunluğu" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "Atkı Dikişi Başlangıç Yüksekliği" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "Atkı Dikişi Adım Uzunluğu" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -4366,7 +4378,7 @@ msgstr "Kalıp yazdıracak modelinizin yatay kısımlarının üzerindeki yükse msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "Fanların normal fan hızında döndüğü yükseklik. Aşağıdaki katmanlarda fan hızı, Başlangıç Fan Hızından Normal Fan Hızına doğru kademeli olarak artar." msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4476,7 +4488,7 @@ msgstr "Kaldırılacak olan üst yüzey alanlarının en büyük genişliğidir. msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "Yapı fanlarının tam fan hızında döndüğü katman. Bu değer hesaplanır ve bir tam sayıya yuvarlanır." msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4764,7 +4776,7 @@ msgstr "Bir destek kenarı için kullanılan hatların sayısı. Daha fazla kena msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "Yapı hacmini soğutan fan sayısı. Bu, 0 olarak ayarlanırsa hiç yapı hacmi fanı olmadığı anlamına gelir" msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4860,7 +4872,7 @@ msgstr "İlk katman için maksimum anlık yazdırma hızı değişimi." msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "Atkı dikişinin başlatılacağı, seçilen katman yüksekliğinin oranı. Daha düşük bir sayı, daha büyük bir dikiş yüksekliği ile sonuçlanacaktır. Etkili olması için 100'den düşük olmalıdır." msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -5192,23 +5204,23 @@ msgstr "Bu, ekstruderin bir köprü duvarı başlamadan hemen önce taraması ge msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "Bu değer, bir dış duvar yazdırılırken en yüksek hıza ulaşmak için gereken hızlanmayı ifade eder." msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "Bu değer, bir dış duvar yazdırma işleminin sonlandırılacağı yavaşlamayı ifade eder." msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "Bu değer, dış duvar hızlanmasını/yavaşlamasını uygulamak için daha uzun bir yolu bölerken bir kalıptan basma yolunun maksimum uzunluğudur. Daha küçük bir mesafe daha hassas ama aynı zamanda daha karmaşık bir G Kodu oluşturacaktır." msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "Bu değer, bir dış duvar yazdırılırken işlemin sonlandırılacağı en yüksek hızın oranını ifade eder." msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "Bu değer, bir dış duvar yazdırılırken işlemin başlayacağı en yüksek hızın oranını ifade eder." msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5592,15 +5604,15 @@ msgstr "Duvarlar" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "Sadece Duvarlar" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "Duvarlar ve Hatlar" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "Bu açıdan daha fazla çıkıntı yapan duvarlar, çıkıntılı duvar ayarları kullanılarak yazdırılacaktır. Değer 90 olduğunda, hiçbir duvar çıkıntı olarak değerlendirilmeyecektir. Dayanak tarafından desteklenen çıkıntılar da çıkıntı olarak değerlendirilmeyecektir. Ayrıca, çıkıntının yarısından az olan herhangi bir hat da çıkıntı olarak değerlendirilmeyecektir." msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 9aa9b13a5b3..4a0e1341462 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-09 14:27+0200\n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,7 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" @@ -140,11 +139,10 @@ msgid "*You will need to restart the application for these changes to have effec msgstr "*需重新启动该应用程序,这些更改才能生效。" msgctxt "@text" -msgid "" -"- Add material profiles and plug-ins from the Marketplace\n" -"- Back-up and sync your material profiles and plug-ins\n" -"- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- 从 Marketplace 添加材料配置文件和插件- 备份和同步材料配置文件和插件- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" +msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "- 从 Marketplace 添加材料配置文件和插件" +"- 备份和同步材料配置文件和插件" +"- 在 Ultimaker 社区分享观点并获取 48,000 多名用户的帮助" msgctxt "@heading" msgid "-- incomplete --" @@ -198,45 +196,38 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
    For materials that support it, the new custom profile will inherit properties from %1." msgstr "只有用户更改的设置才会保存在自定义配置文件中。
    对于支持材料,新的自定义配置文件将从 %1 继承属性。" -#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGL 渲染器: {renderer}
  • " -#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGL 供应商: {vendor}
  • " -#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGL 版本: {version}
  • " msgctxt "@label crash message" -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" +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 发生了严重错误。请将这份错误报告发送给我们以便修复问题

    " +"

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

    " " " -msgstr "

    Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题

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

    " msgctxt "@label crash message" -msgid "" -"

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

    \n" -"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" -"

    Backups can be found in the configuration folder.

    \n" -"

    Please send us this Crash Report to fix the problem.

    \n" +msgid "

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

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " +msgstr "

    糟糕,Ultimaker Cura 似乎遇到了问题。

    " +"

    在启动时发生了不可修复的错误。这可能是因某些配置文件出错导致的。建议您备份并重置配置。

    " +"

    您可在配置文件夹中找到备份。

    " +"

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

    " " " -msgstr "

    糟糕,Ultimaker Cura 似乎遇到了问题。

    在启动时发生了不可修复的错误。这可能是因某些配置文件出错导致的。建议您备份并重置配置。

    您可在配置文件夹中找到备份。

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

    " -#, python-brace-format msgctxt "@info:status" -msgid "" -"

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

    \n" -"

    {model_names}

    \n" -"

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

    \n" -"

    View print quality guide

    " -msgstr "

    由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:

    {model_names}

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

    查看打印质量指南

    " +msgid "

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

    \n

    {model_names}

    \n

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

    \n

    View print quality guide

    " +msgstr "

    由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:

    " +"

    {model_names}

    " +"

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

    " +"

    查看打印质量指南

    " msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" @@ -395,7 +386,6 @@ msgctxt "@button" msgid "Add printer manually" msgstr "手动添加打印机" -#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "正在从您的帐户添加打印机 {name} ({model})" @@ -436,7 +426,6 @@ msgctxt "@item:inlistbox" msgid "All Files (*)" msgstr "所有文件 (*)" -#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" msgstr "所有支持的文件类型 ({0})" @@ -529,7 +518,6 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "您确定要将 %1 移至队列顶部吗?" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "是否确实要暂时删除 {printer_name}?" @@ -542,7 +530,6 @@ msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" msgstr "您确认要删除 %1?该操作无法恢复!" -#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "是否确实要删除 {0}?此操作无法撤消!" @@ -707,12 +694,10 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "无法连接到 UltiMaker 打印机?" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." msgstr "无法在添加打印机前从 {0} 导入配置文件。" -#, 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} 已跳过导入" @@ -794,12 +779,7 @@ msgid "Checks models and print configuration for possible printing issues and gi msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" msgctxt "@label" -msgid "" -"Chooses between the techniques available to generate support. \n" -"\n" -"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" -"\n" -"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" msgctxt "@action:inmenu menubar:edit" @@ -838,10 +818,6 @@ msgctxt "@label" msgid "Color scheme" msgstr "颜色方案" -msgctxt "@label" -msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." -msgstr "不推荐的组合。将 BB 内核加载到插槽 1(左侧)以获得更好的可靠性。" - msgctxt "@info" msgid "Compare and save." msgstr "比较并保存。" @@ -1006,7 +982,6 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "不能从用户数据目录创建存档: {}" -#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "尝试写入到 {device} 时找不到文件名。" @@ -1035,12 +1010,10 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "未能将材料存档保存到 {}:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "无法保存到 {0}{1}" -#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" msgstr "无法保存到可移动磁盘 {0}:{1}" @@ -1049,26 +1022,20 @@ msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "无法将数据上传到打印机。" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"No permission to execute process." -msgstr "无法启用 EnginePlugin:{self._plugin_id}没有执行进程的权限。" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." +msgstr "无法启用 EnginePlugin:{self._plugin_id}" +"没有执行进程的权限。" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Operating system is blocking it (antivirus?)" -msgstr "无法启用 EnginePlugin:{self._plugin_id}操作系统正在阻止它(杀毒软件?)" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" +msgstr "无法启用 EnginePlugin:{self._plugin_id}" +"操作系统正在阻止它(杀毒软件?)" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Couldn't start EnginePlugin: {self._plugin_id}\n" -"Resource is temporarily unavailable" -msgstr "无法启用 EnginePlugin:{self._plugin_id}资源暂时不可用" +msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" +msgstr "无法启用 EnginePlugin:{self._plugin_id}" +"资源暂时不可用" msgctxt "@title:window" msgid "Crash Report" @@ -1154,16 +1121,14 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Cura 无法启动" -#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Cura 已检测到材料配置文件尚未安装到组 {0} 中的主机打印机上。" msgctxt "@info:credit" -msgid "" -"Cura is developed by UltiMaker in cooperation with the community.\n" -"Cura proudly uses the following open source projects:" -msgstr "Cura 由 Ultimaker B.V. 与社区合作开发。Cura 使用以下开源项目:" +msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" +msgstr "Cura 由 Ultimaker B.V. 与社区合作开发。" +"Cura 使用以下开源项目:" msgctxt "@label" msgid "Cura language" @@ -1177,6 +1142,14 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "CuraEngine 后端" +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "通过逐渐平滑流量来限制高流量跳变的 CuraEngine 插件" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "币种:" @@ -1433,12 +1406,10 @@ msgctxt "@action:button" msgid "Eject" msgstr "弹出" -#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "弹出可移动设备 {0}" -#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." msgstr "已弹出 {0}。现在,您可以安全地拔出磁盘。" @@ -1527,10 +1498,6 @@ msgctxt "@title:window" msgid "Export Material" msgstr "导出材料" -msgctxt "@action:inmenu menubar:help" -msgid "Export Package For Technical Support" -msgstr "" - msgctxt "@title:window" msgid "Export Profile" msgstr "导出配置文件" @@ -1551,7 +1518,6 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "导出成功" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "配置文件已导出至: {0} " @@ -1588,7 +1554,6 @@ msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "推料器开始 G 代码持续时间" -#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "推料器{0}" @@ -1613,7 +1578,6 @@ msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." msgstr "无法创建材料存档以与打印机同步。" -#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "无法弹出 {0},另一个程序可能正在使用磁盘。" @@ -1622,27 +1586,22 @@ msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" msgstr "无法导出材料至 %1%2" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "无法将配置文件导出至 {0} {1}" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "无法将配置文件导出至 {0} : 写入器插件报告故障。" -#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" msgstr "无法从 {0} 导入配置文件:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" msgstr "无法从 {0} 导入配置文件:" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" msgstr "无法从 {0} 导入配置文件:{1}" @@ -1659,7 +1618,6 @@ msgctxt "@message:title" msgid "Failed to save material archive" msgstr "未能保存材料存档" -#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "无法写入特定云打印机:{0} 不在远程集群中。" @@ -1688,7 +1646,6 @@ msgctxt "@info:title" msgid "File Saved" msgstr "文件已保存" -#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "文件 {0} 不包含任何有效的配置文件。" @@ -1912,7 +1869,6 @@ msgctxt "@label" msgid "Grid Placement" msgstr "网格放置" -#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "组 #{group_nr}" @@ -2397,10 +2353,6 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Makerbot 打印文件编写器" -msgctxt "@item:inlistbox" -msgid "Makerbot Sketch Printfile" -msgstr "Makerbot 粗样打印文件" - msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter 无法保存至指定路径。" @@ -2642,7 +2594,6 @@ msgctxt "@info:title" msgid "Network error" msgstr "网络错误" -#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "新 %s 稳定固件可用" @@ -2655,7 +2606,6 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "新的 UltiMaker 打印机可连接到 Digital Factory,用户可对其进行远程监控。" -#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "您的 {machine_name} 可能有新功能或错误修复可用!如果打印机上的固件还不是最新版本,建议将其更新为 {latest_version} 版。" @@ -2701,7 +2651,6 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "无可用成本估计" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "没有可导入文件 {0} 的自定义配置文件" @@ -2802,6 +2751,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "喷嘴偏移 Y" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "喷嘴孔径" + msgctxt "@label" msgid "Nozzle size" msgstr "喷嘴孔径" @@ -2838,7 +2791,6 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "只显示顶层" -#, 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} 已跳过导入" @@ -3051,12 +3003,11 @@ msgid "Please give the required permissions when authorizing this application." msgstr "在授权此应用程序时,须提供所需权限。" msgctxt "@info" -msgid "" -"Please make sure your printer has a connection:\n" -"- Check if the printer is turned on.\n" -"- Check if the printer is connected to the network.\n" -"- Check if you are signed in to discover cloud-connected printers." -msgstr "请确保您的打印机已连接:- 检查打印机是否已启动。- 检查打印机是否连接至网络。- 检查您是否已登录查找云连接的打印机。" +msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." +msgstr "请确保您的打印机已连接:" +"- 检查打印机是否已启动。" +"- 检查打印机是否连接至网络。" +"- 检查您是否已登录查找云连接的打印机。" msgctxt "@text" msgid "Please name your printer" @@ -3083,12 +3034,11 @@ msgid "Please remove the print" msgstr "请取出打印件" msgctxt "@info:status" -msgid "" -"Please review settings and check if your models:\n" -"- Fit within the build volume\n" -"- Are assigned to an enabled extruder\n" -"- Are not all set as modifier meshes" -msgstr "请检查设置并检查您的模型是否:- 适合构建体积- 分配给了已启用的挤出器- 尚未全部设置为修改器网格" +msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" +msgstr "请检查设置并检查您的模型是否:" +"- 适合构建体积" +"- 分配给了已启用的挤出器" +"- 尚未全部设置为修改器网格" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -3388,7 +3338,6 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "配置文件设置" -#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." msgstr "配置 {0} 文件类型未知或已损坏。" @@ -3413,22 +3362,18 @@ msgctxt "@label Description for application dependency" msgid "Programming language" msgstr "编程语言" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "项目文件 {0} 包含未知机器类型 {1}。无法导入机器。将改为导入模型。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "项目文件 {0} 损坏: {1}。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "项目文件 {0} 是用此 UltiMaker Cura 版本未识别的配置文件制作的。" -#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "突然无法访问项目文件 {0}{1}。" @@ -3557,7 +3502,6 @@ msgctxt "@label" msgid "Qt version" msgstr "Qt 版本" -#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "质量类型“{0}”与当前有效的机器定义“{1}”不兼容。" @@ -3798,12 +3742,10 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "保存至可移动磁盘" -#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "保存到可移动磁盘 {0}" -#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "保存到可移动磁盘 {0} :{1}" @@ -3812,7 +3754,6 @@ msgctxt "@info:title" msgid "Saving" msgstr "正在保存" -#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "保存到可移动磁盘 {0} " @@ -3829,10 +3770,6 @@ msgctxt "@placeholder" msgid "Search" msgstr "搜索" -msgctxt "@label:textbox" -msgid "Search Printer" -msgstr "搜索打印机" - msgctxt "@info" msgid "Search in the browser" msgstr "在浏览器中搜索" @@ -4065,6 +4002,10 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "显示在线文档(&D)" +msgctxt "@action:inmenu" +msgid "Show Online Troubleshooting" +msgstr "显示联机故障排除" + msgctxt "@label:checkbox" msgid "Show all" msgstr "显示全部" @@ -4190,11 +4131,9 @@ msgid "Solid view" msgstr "实体视图" msgctxt "@label" -msgid "" -"Some hidden settings use values different from their normal calculated value.\n" -"\n" -"Click to make these settings visible." -msgstr "一些隐藏设置正在使用有别于一般设置的计算值。单击以使这些设置可见。" +msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." +msgstr "一些隐藏设置正在使用有别于一般设置的计算值。" +"单击以使这些设置可见。" msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -4209,11 +4148,9 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "在 %1 中定义的一些设置值已被覆盖。" msgctxt "@tooltip" -msgid "" -"Some setting/override values are different from the values stored in the profile.\n" -"\n" -"Click to open the profile manager." -msgstr "某些设置/重写值与存储在配置文件中的值不同。点击打开配置文件管理器。" +msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." +msgstr "某些设置/重写值与存储在配置文件中的值不同。" +"点击打开配置文件管理器。" msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -4295,7 +4232,6 @@ msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" msgstr "成功导入材料 %1" -#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "已成功导入配置文件 {0}。" @@ -4501,7 +4437,6 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "用于打印支撑的挤出机组。 用于多重挤出。" -#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "文件 {0} 已存在。您确定要覆盖它吗?" @@ -4564,15 +4499,11 @@ msgid "The nozzle inserted in this extruder." msgstr "该挤出机所使用的喷嘴。" msgctxt "@label" -msgid "" -"The pattern of the infill material of the print:\n" -"\n" -"For quick prints of non functional model choose line, zig zag or lightning infill.\n" -"\n" -"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" -"\n" -"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "打印的填充材料的图案:对于非功能模型快速打印,请选择线条、锯齿状或闪电型填充。 对于承压不太大的功能性零件,我们建议使用网格、三角形或三角形与六边形组合图案。对于在多个方向上需要高强度承受力的功能性 3D 打印,请使用立方体、立方体细分、四分之一立方体、八面体和螺旋形。" +msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "打印的填充材料的图案:" +"对于非功能模型快速打印,请选择线条、锯齿状或闪电型填充。 " +"对于承压不太大的功能性零件,我们建议使用网格、三角形或三角形与六边形组合图案。" +"对于在多个方向上需要高强度承受力的功能性 3D 打印,请使用立方体、立方体细分、四分之一立方体、八面体和螺旋形。" msgctxt "@info:tooltip" msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image." @@ -4691,8 +4622,8 @@ msgid "This configuration is not available because %1 is not recognized. Please msgstr "此配置不可用,因为 %1 未被识别。请访问 %2 以下载正确的材料配置文件。" msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" -msgstr "这是一个 Cura 通用项目文件。您想将其作为 Cura 通用项目打开还是导入其中的模型?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgstr "这是 Cura Universal 项目文件。您想将其作为 Cura 项目或 Cura Universal Project 打开还是从中导入模型?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -4727,7 +4658,6 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "这台打印机是一组共 %1 台打印机的主机。" -#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "此配置文件 {0} 包含错误数据,无法导入。" @@ -4741,11 +4671,9 @@ msgid "This project contains materials or plugins that are currently not install msgstr "此项目包含 Cura 目前未安装的材料或插件。
    请安装缺失程序包,然后重新打开项目。" msgctxt "@label" -msgid "" -"This setting has a value that is different from the profile.\n" -"\n" -"Click to restore the value of the profile." -msgstr "此设置的值与配置文件不同。单击以恢复配置文件的值。" +msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." +msgstr "此设置的值与配置文件不同。" +"单击以恢复配置文件的值。" msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4761,11 +4689,9 @@ msgid "This setting is always shared between all extruders. Changing it here wil msgstr "此设置始终在所有挤出机之间共享。在此处更改它将改变所有挤出机的值。" msgctxt "@label" -msgid "" -"This setting is normally calculated, but it currently has an absolute value set.\n" -"\n" -"Click to restore the calculated value." -msgstr "此设置通常可被自动计算,但其当前已被绝对定义。单击以恢复自动计算的值。" +msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." +msgstr "此设置通常可被自动计算,但其当前已被绝对定义。" +"单击以恢复自动计算的值。" msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4799,7 +4725,6 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "要自动将材料配置文件与连接到 Digital Factory 的所有打印机同步,您需要登录 Cura。" -#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "要建立连接,请访问 {website_link}" @@ -4812,7 +4737,6 @@ msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." msgstr "欲通过网络向打印机发送打印请求,请确保您的打印机已通过网线或 WIFI 连接至网络。若不能连接 Cura 与打印机,亦可通过使用 USB 设备将 G-code 文件传输到打印机。" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "要永久删除 {printer_name},请访问 {digital_factory_link}" @@ -4957,17 +4881,14 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "无法在成形空间体积内放下全部模型" -#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "无法为以下对象找到本地 EnginePlugin 服务器可执行文件:{self._plugin_id}" -#, python-brace-format msgctxt "@info:plugin_failed" -msgid "" -"Unable to kill running EnginePlugin: {self._plugin_id}\n" -"Access is denied." -msgstr "无法关闭正在运行的 EnginePlugin:{self._plugin_id}访问被拒。" +msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." +msgstr "无法关闭正在运行的 EnginePlugin:{self._plugin_id}" +"访问被拒。" msgctxt "@info" msgid "Unable to reach the UltiMaker account server." @@ -4977,14 +4898,6 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "无法读取示例数据文件。" -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try again, or contact support." -msgstr "" - -msgctxt "@info:status" -msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." -msgstr "" - msgctxt "@info:title" msgid "Unable to slice" msgstr "无法切片" @@ -4997,12 +4910,10 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "无法切片(原因:主塔或主位置无效)。" -#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." msgstr "无法切片,因为存在与已禁用挤出机 %s 相关联的对象。" -#, 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}" @@ -5011,7 +4922,6 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "无法使用当前材料进行切片,因为该材料与所选机器或配置不兼容。" -#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "无法使用当前设置进行切片。以下设置存在错误:{0}" @@ -5020,7 +4930,6 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "无法开始新的登录过程。请检查是否仍在尝试进行另一登录。" -#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "无法写入文件:{0}" @@ -5073,7 +4982,6 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "未知包" -#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "上传打印作业时出现未知错误代码:{0}" @@ -5246,10 +5154,6 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "将配置从 Cura 5.6 升级到 Cura 5.7。" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." -msgstr "" - msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "上传自定义固件" @@ -5394,10 +5298,6 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "升级版本 5.6 至 5.7" -msgctxt "name" -msgid "Version Upgrade 5.8 to 5.9" -msgstr "" - msgctxt "@button" msgid "View printers in Digital Factory" msgstr "在 Digital Factory 中查看打印机" @@ -5450,7 +5350,6 @@ msgctxt "@info:title" msgid "Warning" msgstr "警告" -#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:配置文件不可见,因为其质量类型“{0}”对当前配置不可用。请切换到可使用此质量类型的材料/喷嘴组合。" @@ -5572,28 +5471,19 @@ msgid "Yes" msgstr "是" msgctxt "@label" -msgid "" -"You are about to remove all printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr "您即将从 Cura 中删除所有打印机。此操作无法撤消。是否确定继续?" +msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr "您即将从 Cura 中删除所有打印机。此操作无法撤消。" +"是否确定继续?" -#, python-brace-format msgctxt "@label" -msgid "" -"You are about to remove {0} printer from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgid_plural "" -"You are about to remove {0} printers from Cura. This action cannot be undone.\n" -"Are you sure you want to continue?" -msgstr[0] "" -"您即将从 Cura 中删除 {0} 台打印机。此操作无法撤消。\n" -"是否确实要继续?" +msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" +msgstr[0] "您即将从 Cura 中删除 {0} 台打印机。此操作无法撤消。\n是否确实要继续?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "您正在尝试连接未运行 UltiMaker Connect 的打印机。请将打印机升级到最新固件。" -#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "您正在尝试连接到 {0},但它不是组中的主机。您可以访问网页,将其配置为组主机。" @@ -5604,7 +5494,9 @@ msgstr "您目前没有任何备份。使用“立即备份”按钮创建一个 msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "您已经自定义了若干配置文件设置。是否要在切换配置文件后保留这些更改的设置?或者,也可舍弃更改以从“%1”加载默认值。" +msgstr "您已经自定义了若干配置文件设置。" +"是否要在切换配置文件后保留这些更改的设置?" +"或者,也可舍弃更改以从“%1”加载默认值。" msgctxt "@label" msgid "You need to accept the license to install the package" @@ -5634,12 +5526,10 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "新打印机将自动出现在 Cura 中" -#, python-brace-format msgctxt "@info:status" -msgid "" -"Your printer {printer_name} could be connected via cloud.\n" -" Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "未能通过云连接您的打印机 {printer_name}。只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果" +msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "未能通过云连接您的打印机 {printer_name}。" +"只需将您的打印机连接到 Digital Factory,即可随时随地管理您的打印作业队列并监控您的打印结果" msgctxt "@label" msgid "Z" @@ -5701,7 +5591,6 @@ msgctxt "@label" msgid "version: %1" msgstr "版本: %1" -#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "将删除 {printer_name},直到下次帐户同步为止。" @@ -5710,18 +5599,38 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} 个插件下载失败" -#~ msgctxt "description" -#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -#~ msgstr "通过逐渐平滑流量来限制高流量跳变的 CuraEngine 插件" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "不推荐的组合。将 BB 内核加载到插槽 1(左侧)以获得更好的可靠性。" -#~ msgctxt "name" -#~ msgid "CuraEngineGradualFlow" -#~ msgstr "CuraEngineGradualFlow" +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot 粗样打印文件" + +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "搜索打印机" + +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "这是一个 Cura 通用项目文件。您想将其作为 Cura 通用项目打开还是导入其中的模型?" + +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "导出包用于技术支持" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "无法将模型数据发送到引擎。请重试,或联系支持人员。" -#~ msgctxt "@action:inmenu" -#~ msgid "Show Online Troubleshooting" -#~ msgstr "显示联机故障排除" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "无法将模型数据发送到引擎。请尝试使用较少细节的模型,或减少实例数量。" -#~ msgctxt "@text:window" -#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -#~ msgstr "这是 Cura Universal 项目文件。您想将其作为 Cura 项目或 Cura Universal Project 打开还是从中导入模型?" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "将配置从 Cura 5.8 升级到 Cura 5.9。" + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "版本升级 5.8 到 5.9" diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index 12c121f92a0..5a4dafa3383 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -1,9 +1,8 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-03-13 09:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -125,10 +124,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "喷嘴 ID" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "喷嘴 X 轴偏移量" @@ -157,10 +152,6 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "用于打印的挤出机,在多挤出机情况下适用。" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" @@ -204,3 +195,11 @@ msgstr "喷嘴 Y 轴坐标偏移。" msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "打开挤压机时的起始位置 Y 坐标。" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "喷嘴长度" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "喷嘴尖端与打印头最低部分之间的高度差。" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index a61c5322298..e58312edff5 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -94,7 +94,7 @@ msgstr "自适应图层根据模型形状计算图层高度。" msgctxt "extra_infill_lines_to_support_skins description" msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." -msgstr "" +msgstr "在填充模式中添加额外的线条以支撑上面的表皮。这一选项可以防止因下面的填充未能正确支撑上面打印的表皮层而导致的孔洞或塑料块,这在复杂形状的表皮中常见。\"墙\"仅支持表皮的轮廓,而\"墙和线\"还支持构成表皮的线条之末端。" msgctxt "infill_wall_line_count description" msgid "" @@ -444,11 +444,11 @@ msgstr "Brim 宽度" msgctxt "build_fan_full_at_height label" msgid "Build Fan Speed at Height" -msgstr "" +msgstr "在高度处的风扇速度" msgctxt "build_fan_full_layer label" msgid "Build Fan Speed at Layer" -msgstr "" +msgstr "在层上的风扇速度" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" @@ -492,7 +492,7 @@ msgstr "打印体积温度警告" msgctxt "build_volume_fan_nr label" msgid "Build volume fan number" -msgstr "" +msgstr "构建体积风扇编号" msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." @@ -732,11 +732,11 @@ msgstr "在打印连桥时,检测连桥并修改打印速度、流量和风扇 msgctxt "scarf_split_distance description" msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." -msgstr "" +msgstr "确定在沿着缝合接缝挤出时流量变化中每一步的长度。较小的距离会导致更精确但也更复杂的 G-code。" msgctxt "scarf_joint_seam_length description" msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." -msgstr "" +msgstr "确定缝合接缝的长度,这是一种应使 Z 接缝不那么明显的接缝类型。必须大于 0 才能有效。" msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." @@ -1028,7 +1028,7 @@ msgstr "广泛缝合尝试通过接触多边形来闭合孔洞,以此缝合网 msgctxt "extra_infill_lines_to_support_skins label" msgid "Extra Infill Lines To Support Skins" -msgstr "" +msgstr "额外填充线以支撑表皮" msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" @@ -1042,6 +1042,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "喷嘴切换后的额外装填材料。" +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "挤出机 X 轴坐标" @@ -2438,7 +2442,7 @@ msgstr "无" msgctxt "extra_infill_lines_to_support_skins option none" msgid "None" -msgstr "" +msgstr "无" msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" @@ -2484,6 +2488,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "喷嘴 ID" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "喷嘴孔径" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "喷嘴切换额外装填量" @@ -2614,15 +2622,15 @@ msgstr "外壁加速度" msgctxt "wall_0_acceleration label" msgid "Outer Wall Acceleration" -msgstr "" +msgstr "外墙加速" msgctxt "wall_0_deceleration label" msgid "Outer Wall Deceleration" -msgstr "" +msgstr "外墙减速" msgctxt "wall_0_end_speed_ratio label" msgid "Outer Wall End Speed Ratio" -msgstr "" +msgstr "外墙结束速度比率" msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" @@ -2650,11 +2658,11 @@ msgstr "速度(外壁)" msgctxt "wall_0_speed_split_distance label" msgid "Outer Wall Speed Split Distance" -msgstr "" +msgstr "外墙速度分割距离" msgctxt "wall_0_start_speed_ratio label" msgid "Outer Wall Start Speed Ratio" -msgstr "" +msgstr "外墙起始速度比率" msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" @@ -2792,6 +2800,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "打印加速度" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "打印抖动速度" @@ -3298,15 +3310,15 @@ msgstr "缩放因子收缩补偿" msgctxt "scarf_joint_seam_length label" msgid "Scarf Seam Length" -msgstr "" +msgstr "缝合接缝长度" msgctxt "scarf_joint_seam_start_height_ratio label" msgid "Scarf Seam Start Height" -msgstr "" +msgstr "缝合接缝起始高度" msgctxt "scarf_split_distance label" msgid "Scarf Seam Step Length" -msgstr "" +msgstr "缝合接缝步长" msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" @@ -4366,7 +4378,7 @@ msgstr "用于打印模具的模型水平部分上方的高度。" msgctxt "build_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "" +msgstr "风扇在常规风速下旋转的高度。在下面的层中,风扇速度会逐渐从初始风速增加到常规风速。" msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." @@ -4476,7 +4488,7 @@ msgstr "将被移除的顶部皮肤区域的最大宽度。 小于此值的所 msgctxt "build_fan_full_layer description" msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." -msgstr "" +msgstr "构建风扇以全速旋转的层数。此值经过计算并四舍五入为整数。" msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." @@ -4764,7 +4776,7 @@ msgstr "用于支撑 Brim 的走线数量。更多 Brim 走线可增强与打印 msgctxt "build_volume_fan_nr description" msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" -msgstr "" +msgstr "冷却构建体积的风扇编号。如果设置为 0,则表示没有构建体积风扇" msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." @@ -4860,7 +4872,7 @@ msgstr "起始层的打印最大瞬时速度变化。" msgctxt "scarf_joint_seam_start_height_ratio description" msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." -msgstr "" +msgstr "缝合接缝开始的层高比率。较低的数字将导致更大的缝合高度。必须低于 100 才能有效。" msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." @@ -5192,23 +5204,23 @@ msgstr "此参数用于控制挤出机在开始打印桥壁前应该滑行的距 msgctxt "wall_0_acceleration description" msgid "This is the acceleration with which to reach the top speed when printing an outer wall." -msgstr "" +msgstr "这是打印外墙时达到最高速度的加速度。" msgctxt "wall_0_deceleration description" msgid "This is the deceleration with which to end printing an outer wall." -msgstr "" +msgstr "这是结束打印外墙时的减速度。" msgctxt "wall_0_speed_split_distance description" msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." -msgstr "" +msgstr "这是在拆分更长路径以应用外墙加速/减速时挤出路径的最大长度。较小的距离将创建更精确但也更冗长的 G-Code。" msgctxt "wall_0_end_speed_ratio description" msgid "This is the ratio of the top speed to end with when printing an outer wall." -msgstr "" +msgstr "这是打印外墙时在结束时的最高速度比率。" msgctxt "wall_0_start_speed_ratio description" msgid "This is the ratio of the top speed to start with when printing an outer wall." -msgstr "" +msgstr "这是打印外墙时在开始时的最高速度比率。" msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." @@ -5592,15 +5604,15 @@ msgstr "墙" msgctxt "extra_infill_lines_to_support_skins option walls" msgid "Walls Only" -msgstr "" +msgstr "仅墙体" msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" msgid "Walls and Lines" -msgstr "" +msgstr "墙体和线条" 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. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." -msgstr "" +msgstr "超过此角度的悬垂墙将使用悬垂墙设置打印。当值为 90 时,没有墙会被视为悬垂。得到支撑的悬垂也不会被视为悬垂。此外,任何少于一半悬垂的线也不会被视为悬垂。" msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index 199f1680c19..516f6eddbaf 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -2826,6 +2826,10 @@ msgctxt "@label" msgid "Nozzle offset Y" msgstr "噴頭偏移 Y" +msgctxt "@label" +msgid "Nozzle Size" +msgstr "噴頭孔徑" + msgctxt "@label" msgid "Nozzle size" msgstr "噴頭孔徑" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index 6a63e1e0710..05fdf171ef0 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-10-09 14:27+0000\n" +"POT-Creation-Date: 2024-11-06 10:43+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -1049,6 +1049,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "噴頭切換後額外裝填的線材量。" +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "擠出機 X 軸起始位置" @@ -2495,6 +2499,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "噴頭 ID" +msgctxt "variant_name" +msgid "Nozzle Size" +msgstr "噴頭孔徑" + msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "噴頭切換額外裝填量" @@ -2803,6 +2811,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "列印加速度" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "列印加加速度" diff --git a/resources/images/MakerbotSketchSprint.png b/resources/images/MakerbotSketchSprint.png index d2b967acab3..a9a21d9131e 100644 Binary files a/resources/images/MakerbotSketchSprint.png and b/resources/images/MakerbotSketchSprint.png differ diff --git a/resources/meshes/ultimaker_sketch_sprint_platform.obj b/resources/meshes/ultimaker_sketch_sprint_platform.obj index 5fb441a89af..75fd7924a80 100644 --- a/resources/meshes/ultimaker_sketch_sprint_platform.obj +++ b/resources/meshes/ultimaker_sketch_sprint_platform.obj @@ -1,1137 +1,2951 @@ -# Blender 4.2.2 LTS +# Blender 4.2.3 LTS # www.blender.org +mtllib ultimaker_sketch_sprint_platform.mtl o UMS5_Sketch_Sprint_Print_Bed -v 118.354355 -110.073631 -15.743723 -v 114.068901 -119.722466 -20.180752 -v 114.739487 -119.531227 -20.297832 -v 118.222610 111.787270 -1.131916 -v 118.105339 112.000687 -0.992550 -v 114.372559 -120.408913 -1.567927 -v 115.075256 -120.310265 -1.497774 -v 114.623497 -120.192039 -1.310158 -v 114.343330 -120.358589 -1.426195 -v 115.554459 -120.107918 -1.370563 -v 116.561562 -119.835945 -1.523540 -v 116.733383 -119.639137 -1.368384 -v 116.043571 -119.849419 -1.310039 -v 117.248619 -119.459877 -1.522878 -v 118.072464 -118.823708 -1.548119 -v 117.566948 -119.092918 -1.349142 -v 118.491196 -118.370094 -1.471268 -v 118.148705 -118.456383 -1.307186 -v 119.063904 -117.618919 -1.496015 -v 118.898308 -117.518639 -1.309204 -v 119.545059 -116.684624 -1.501333 -v 119.368965 -116.693657 -1.327548 -v 119.979317 -114.791542 -1.546383 -v 119.872765 -114.779594 -1.359550 -v 119.666153 -115.628761 -1.308561 -v 114.330254 -119.769600 -20.014763 -v 114.783730 -119.664619 -20.188385 -v 115.452164 -119.587349 -20.015186 -v 115.687637 -119.464653 -20.162823 -v 116.668396 -119.071022 -20.032841 -v 116.353371 -119.145027 -20.220768 -v 117.369240 -118.588310 -20.017700 -v 117.326752 -118.499260 -20.236143 -v 118.061874 -117.663261 -20.275997 -v 118.048515 -117.928963 -20.015171 -v 118.031891 -117.887001 -20.156723 -v 118.578491 -117.092583 -20.185804 -v 118.996643 -116.220100 -20.174244 -v 118.741119 -116.933876 -20.016710 -v 119.189331 -115.750694 -20.018013 -v 119.139214 -115.462776 -20.248945 -v 119.320786 -114.889366 -20.096825 -v 119.135612 -114.846748 -20.292850 -v -118.105087 112.111557 -0.909167 -v -119.795189 112.455376 -0.397305 -v -118.101974 112.512970 -0.341256 -v -114.381645 -120.408150 -1.560503 -v -114.337540 -120.353432 -1.417629 -v -115.075378 -120.307335 -1.484245 -v -114.369156 -120.190910 -1.306561 -v -115.421761 -120.125435 -1.356490 -v -115.842773 -120.127281 -1.528017 -v -116.801514 -119.722115 -1.529080 -v -116.721581 -119.672783 -1.389816 -v -116.096489 -119.869316 -1.328052 -v -117.660309 -119.174797 -1.581673 -v -117.731583 -119.034370 -1.396146 -v -118.395699 -118.498619 -1.537017 -v -118.816689 -117.842995 -1.374323 -v -119.059280 -117.637291 -1.538954 -v -119.347755 -117.138710 -1.600169 -v -119.466316 -116.738152 -1.418668 -v -119.614754 -116.515724 -1.573597 -v -119.790253 -115.740837 -1.411599 -v -119.446068 -116.415977 -1.311712 -v -119.851295 -115.738640 -1.607210 -v -119.984589 -114.772270 -1.549996 -v -119.760483 -114.956902 -1.308025 -v -114.288513 -119.768730 -20.062492 -v -114.807518 -119.655586 -20.193531 -v -114.054405 -119.653221 -20.249153 -v -114.479156 -119.513466 -20.300648 -v -115.314285 -119.617699 -20.019558 -v -115.577896 -119.446388 -20.233921 -v -116.598450 -119.075127 -20.136566 -v -115.648697 -119.281960 -20.300369 -v -117.359421 -118.595436 -20.016453 -v -116.676758 -118.845695 -20.293957 -v -117.344505 -118.538933 -20.178831 -v -117.667435 -118.141136 -20.254490 -v -118.071205 -117.812065 -20.193687 -v -118.174393 -117.411293 -20.300415 -v -118.596100 -117.170021 -20.014229 -v -118.457596 -117.328346 -20.146744 -v -118.785400 -116.747444 -20.154697 -v -119.074623 -116.153236 -20.014324 -v -119.129585 -115.797600 -20.177170 -v -118.782196 -116.350227 -20.297047 -v -119.229736 -114.967064 -20.227985 -v -117.562439 -119.004112 -1.307592 -v -118.768143 -117.685417 -1.307635 -v -118.202690 -114.999275 -1.308108 -v 118.175125 -114.557808 -1.315975 -v -102.527359 117.855774 -0.138946 -v -102.927872 117.810875 0.040637 -v -100.471260 117.820648 -1.295707 -v -100.992523 117.774666 -1.188597 -v -101.818733 117.807976 -0.728868 -v 102.324310 117.848808 -0.270049 -v 111.261032 117.771225 0.172250 -v -114.251167 -118.497536 -1.384607 -v -114.607948 -118.624672 -1.307536 -v -115.169846 -118.403404 -1.343528 -v -115.564735 -118.176643 -1.402450 -v -114.882591 -118.327950 -1.505968 -v -116.304878 -117.701027 -1.532479 -v -116.415077 -117.902229 -1.307010 -v -116.187958 -117.852654 -1.399496 -v -116.757812 -117.427696 -1.390290 -v -116.949265 -117.129433 -1.518570 -v -117.307846 -117.091057 -1.305937 -v -117.345657 -116.773384 -1.381246 -v -117.830345 -116.205086 -1.307549 -v -117.762093 -116.003441 -1.388687 -v -117.908432 -115.308769 -1.486655 -v 114.410706 -118.572090 -1.331387 -v 114.401733 -118.467690 -1.417562 -v 114.372513 -118.411201 -1.544248 -v 114.761902 -118.637306 -1.305193 -v 115.234459 -118.232216 -1.501876 -v 115.472389 -118.235603 -1.388150 -v 115.867188 -117.962715 -1.521942 -v 116.139709 -118.068581 -1.307957 -v 116.223412 -117.772270 -1.448457 -v 116.695084 -117.382805 -1.517065 -v 116.893127 -117.280663 -1.406013 -v 117.270126 -116.842323 -1.395114 -v 117.167587 -116.863258 -1.548399 -v 117.143982 -117.279213 -1.306540 -v 117.758835 -116.284264 -1.313323 -v 117.546371 -116.291313 -1.483035 -v 117.753342 -115.811241 -1.484184 -v 117.992233 -115.474098 -1.349338 -v 117.893784 -115.324654 -1.532196 -v -118.435722 -114.474144 -20.263554 -v -119.107986 -114.652489 -20.292091 -v -119.174210 -113.204521 -19.937145 -v -119.171562 -110.927956 -18.133074 -v -119.226143 -110.495995 -17.358353 -v -118.358910 -110.157631 -16.292042 -v -118.367775 -110.068810 -15.701704 -v 116.520187 -118.885094 -20.302149 -v -117.216118 -117.523552 -20.299286 -v 118.461922 -116.962868 -20.301010 -v 119.134209 -113.038582 -19.875046 -v 118.441986 -112.293785 -19.469849 -v 119.199783 -111.768379 -19.063721 -v 119.220894 -110.489204 -17.346588 -v 119.298531 -110.073555 -15.688443 -v 119.774773 111.181702 -1.307418 -v 119.901337 111.240204 -1.382926 -v 119.768761 111.412079 -1.271702 -v 119.909409 111.583611 -1.303199 -v 119.752731 111.747925 -1.147991 -v 119.761627 112.046616 -0.944462 -v 119.950867 111.999252 -1.151342 -v 119.872047 111.945747 -1.088641 -v 119.812729 112.230949 -0.769009 -v 119.807709 112.379074 -0.552409 -v 119.996223 111.991684 -1.300517 -v 119.792519 112.509766 -0.255070 -v 120.016357 112.556053 -0.746094 -v 119.969116 112.416672 -0.729568 -v 119.933853 112.561646 -0.318709 -v 115.859978 -120.120552 -1.519124 -v 119.850487 -115.699898 -1.498012 -v 119.334488 -114.421516 -20.080494 -v 119.118271 -114.445030 -20.263668 -v 119.260567 -114.185707 -20.150454 -v 119.151794 -113.650291 -20.097752 -v 119.317360 -113.145576 -19.784416 -v 119.184242 -112.493034 -19.588074 -v 119.362602 -112.287315 -19.258556 -v 119.383240 -111.707222 -18.742699 -v 119.177887 -111.304573 -18.606194 -v 119.423111 -110.913338 -17.714638 -v 119.324661 -111.208443 -18.370628 -v 119.356911 -110.794914 -17.743835 -v 119.168114 -110.893318 -18.084221 -v 119.396790 -110.438011 -16.939049 -v 119.482597 -110.337410 -16.039661 -v 119.239334 -110.201347 -16.518208 -v 119.426453 -110.188942 -15.950785 -v 119.720940 -110.140907 -9.095851 -v 100.478218 119.323578 -1.298494 -v 100.982079 119.310349 -1.184925 -v 101.352829 119.356827 -1.035607 -v 100.915642 119.437042 -1.252488 -v 101.744217 119.373672 -0.792277 -v 101.453491 119.486572 -1.074362 -v 100.470589 119.464737 -1.367908 -v 100.855423 119.531769 -1.387284 -v 101.885551 119.515541 -0.794309 -v 100.646645 119.560753 -1.522308 -v 101.673973 119.571487 -1.117961 -v 102.845520 119.395126 0.015541 -v 102.163635 119.375435 -0.398611 -v 102.472847 119.423157 -0.187944 -v 103.097450 119.568367 -0.033295 -v 102.213242 119.545952 -0.507428 -v 102.731453 119.601128 -0.234933 -v 103.488472 119.419319 0.177415 -v 103.541191 119.602989 0.006516 -v 111.997025 119.590935 0.055396 -v 111.999817 119.378288 0.193342 -v 112.029739 119.696396 2.196742 -v 114.688354 112.618401 2.196835 -v 120.092644 114.405334 2.196840 -v 112.301201 114.327972 2.196850 -v 112.050560 115.165657 2.196846 -v -112.038719 115.298553 2.196821 -v -112.000046 117.673386 0.196847 -v -112.029953 119.696396 2.196742 -v -112.000137 119.382225 0.192862 -v -111.998138 119.596565 0.039043 -v -102.519218 119.370659 -0.145335 -v -103.496948 119.392380 0.183690 -v -102.903625 119.382584 0.036514 -v -103.364662 119.518753 0.100306 -v -102.225067 119.534798 -0.480723 -v -102.628830 119.543793 -0.196373 -v -101.341583 119.313904 -1.041625 -v -101.815208 119.348564 -0.728368 -v -100.774269 119.339378 -1.247840 -v -102.167564 119.381317 -0.397538 -v -100.411278 119.427612 -1.343687 -v -101.098648 119.449120 -1.209586 -v -101.748756 119.478783 -0.866033 -v -100.674942 119.531944 -1.442206 -v -102.003891 119.584351 -0.855435 -v -101.438965 119.542778 -1.164819 -v -100.891144 119.563461 -1.508193 -v -100.345688 119.312752 -1.302954 -v -120.077667 114.552368 2.196845 -v -118.765244 117.459824 2.196823 -v -112.891495 113.458054 2.196839 -v -119.739502 111.199829 -1.301922 -v -119.869804 111.209549 -1.354849 -v -119.947899 111.338959 -1.424778 -v -119.775185 111.496338 -1.250343 -v -119.882454 111.734093 -1.215482 -v -119.732979 111.828209 -1.100300 -v -119.990753 111.619453 -1.504891 -v -119.948074 111.869217 -1.227029 -v -119.792702 111.970375 -1.015708 -v -119.784363 112.205727 -0.789988 -v -119.916168 112.246925 -0.854147 -v -119.810181 112.345894 -0.606545 -v -119.993370 112.217445 -1.075817 -v -119.939140 112.402214 -0.675772 -v -119.940781 112.562508 -0.345459 -v -120.015823 112.558044 -0.692129 -v -119.902252 -114.754082 -1.392995 -v -116.286118 -119.274895 -20.014675 -v -118.021980 -117.960091 -20.015705 -v -119.340454 -114.783348 -20.052229 -v -119.274757 -114.534630 -20.181122 -v -119.161011 -113.723274 -20.117863 -v -119.340775 -113.526985 -19.884106 -v -119.338287 -112.604042 -19.494438 -v -119.152519 -112.475212 -19.585819 -v -119.239815 -111.889656 -19.145163 -v -119.394661 -111.493965 -18.532047 -v -119.156212 -111.468712 -18.791908 -v -119.321434 -111.065666 -18.214077 -v -119.432602 -110.601891 -17.191814 -v -119.410721 -110.281731 -16.412001 -v -119.256668 -110.210915 -16.549660 -v -119.715919 -110.121147 -9.112874 -v -119.493843 -110.264641 -15.542349 -v -119.408600 -110.151344 -15.743717 -v -119.278488 -110.070000 -15.690532 -v -114.543411 112.614906 1.349953 -v -114.569489 112.626572 2.196847 -v -113.733543 112.884850 2.196838 -v -113.587433 112.932289 1.244109 -v -112.872269 113.469612 1.065033 -v -112.329155 114.199677 0.821682 -v -112.262863 114.402695 2.196827 -v -120.122360 112.609085 2.196848 -v -118.093246 112.594391 1.356766 -v -119.828186 112.563057 -0.067145 -v -118.076958 -114.826668 -1.373410 -v 117.984924 -114.751640 -1.532428 -v 118.021835 -114.473595 -1.456665 -v -111.256271 117.643867 0.041915 -v -102.529915 117.607796 -0.400170 -v -103.459129 117.631706 0.001673 -v -102.225235 117.660789 -0.480160 -v -102.700783 117.677444 -0.145190 -v -103.480064 117.730530 0.126026 -v -102.186890 117.827904 -0.378828 -v -103.497665 117.837036 0.183593 -v -100.942566 117.572754 -1.483343 -v -100.806305 117.616570 -1.366738 -v -101.309052 117.657494 -1.141263 -v -101.793945 117.616234 -0.944767 -v -101.892303 117.666786 -0.778254 -v -101.453026 117.826424 -0.978206 -v -100.472275 117.660339 -1.365890 -v 100.882896 117.577080 -1.446531 -v 100.498810 117.597534 -1.449834 -v 101.071053 117.676590 -1.224912 -v 100.471420 117.683937 -1.349202 -v 100.547012 117.824173 -1.290285 -v 101.593864 117.805428 -0.892159 -v 101.209450 117.828842 -1.102154 -v 102.499138 117.609131 -0.410048 -v 101.835945 117.594933 -0.977214 -v 102.186714 117.697548 -0.460242 -v 102.625229 117.695549 -0.169644 -v 103.693855 117.700951 0.114221 -v 102.824951 117.820709 0.006576 -v 101.728447 117.682243 -0.897449 -v 103.347092 117.783714 0.135642 -v 101.882988 117.826164 -0.665322 -v 103.286613 117.627090 -0.033287 -v 111.255653 117.641045 0.026235 -v 103.505989 117.879341 0.190411 -v 120.122147 112.609085 2.196848 -v 119.808662 112.570107 0.025552 -v 118.100433 112.559685 -0.076114 -v 118.093033 112.594391 1.356766 -v 113.833527 112.833344 2.196856 -v 112.876434 113.473206 2.196854 -v 112.466660 113.969559 0.898365 -v -114.220016 -118.415413 -1.547977 -v -115.551888 -118.108620 -1.539505 -v -116.838486 -116.964348 -7.303140 -v -117.462646 -116.437065 -1.539392 -v -117.799347 -115.665260 -1.538208 -v 117.314270 -116.331474 -7.303148 -v -118.021492 -110.084679 -9.303223 -v -118.248695 -114.779701 -20.143921 -v -118.341934 -114.082909 -20.156818 -v -118.343941 -113.331734 -19.948383 -v -118.228622 -113.755836 -19.923151 -v -118.491402 -113.690300 -20.118561 -v -118.281517 -112.643852 -19.587807 -v -118.479012 -112.848610 -19.797264 -v -118.212761 -112.312386 -19.234253 -v -118.274643 -111.907295 -19.075558 -v -118.455978 -112.123207 -19.357275 -v -118.390884 -111.464455 -18.778084 -v -118.200592 -111.281166 -18.305042 -v -118.386139 -111.056160 -18.293694 -v -118.267181 -110.736427 -17.689960 -v -118.428482 -110.690086 -17.755833 -v -118.173897 -110.573433 -17.063393 -v -118.338127 -110.325630 -16.908865 -v -118.152855 -110.318230 -16.209049 -v -118.189339 -110.177757 -15.727283 -v -118.410713 -115.219551 -20.302952 -v -118.226944 -115.403053 -20.232327 -v -118.219284 -114.775841 -20.057152 -v -114.604118 -118.850975 -20.296379 -v -114.230171 -118.712608 -20.195004 -v -114.980797 -118.633812 -20.225323 -v -114.237946 -118.650871 -20.060497 -v -114.956863 -118.546791 -20.066837 -v -115.717819 -118.408028 -20.240318 -v -115.509010 -118.375328 -20.088526 -v -116.214821 -118.281883 -20.294716 -v -116.010811 -118.144814 -20.050991 -v -116.361855 -117.990349 -20.172852 -v -116.965950 -117.539345 -20.208710 -v -116.630165 -117.735298 -20.024979 -v -117.168457 -117.223122 -20.032042 -v -117.447517 -116.952980 -20.175629 -v -117.608551 -116.630058 -20.013947 -v -117.832123 -116.307945 -20.169655 -v -117.909012 -116.562126 -20.297523 -v -118.081764 -115.600945 -20.114307 -v -118.009041 -115.791924 -20.013166 -v 114.271744 -118.705406 -20.190266 -v 114.526398 -118.850563 -20.295614 -v 115.021896 -118.660896 -20.255703 -v 114.974297 -118.539452 -20.071819 -v 115.735191 -118.383827 -20.227646 -v 116.189018 -118.264778 -20.286884 -v 116.995476 -117.707527 -20.293533 -v 116.921356 -117.479561 -20.022989 -v 116.834862 -117.645073 -20.182430 -v 117.519600 -116.977455 -20.251139 -v 117.444305 -116.916878 -20.123848 -v 117.935783 -116.140450 -20.192577 -v 118.064545 -116.262779 -20.296566 -v 118.265579 -115.387825 -20.260635 -v 118.433533 -114.635353 -20.284817 -v 118.174767 -115.215004 -20.125328 -v 118.149712 -115.242363 -20.009632 -v 118.228859 -114.644630 -20.073273 -v 118.301346 -114.051491 -20.114054 -v 118.232056 -113.448189 -19.854517 -v 118.443710 -113.676445 -20.109741 -v 118.412544 -112.917137 -19.818989 -v 118.295586 -112.562767 -19.546116 -v 118.216263 -112.365685 -19.277149 -v 118.473877 -111.751152 -19.065567 -v 118.298096 -111.838142 -19.049175 -v 118.195251 -111.426582 -18.428768 -v 118.276863 -111.240913 -18.415600 -v 118.415070 -111.165672 -18.449110 -v 118.379578 -110.677071 -17.717506 -v 118.190681 -110.821678 -17.642542 -v 118.388199 -110.328514 -16.943991 -v 118.333221 -110.165306 -16.307453 -v 118.217369 -110.375160 -16.767643 -v 118.220291 -110.135368 -15.607149 -v 118.006775 -110.143120 -9.303148 -v 118.142166 -110.323936 -15.964083 -v 118.153137 -109.950203 -9.303262 -v 119.986130 111.431015 -1.503579 -v 119.465630 115.315529 -9.028265 -v 119.471832 116.382378 2.196841 -v 118.360519 117.892685 2.196843 -v 116.898895 118.999329 2.196837 -v 114.897308 119.658577 2.196846 -v -114.310127 119.295677 -9.074251 -v -103.318733 119.609589 -0.043122 -v -119.723175 113.894119 -9.058847 -v -119.617691 116.017387 2.196841 -v -118.951599 116.432686 -9.115363 -v -117.866882 117.796654 -9.103250 -v -117.375725 118.697189 2.196835 -v -116.220100 119.283691 2.196840 -v -116.204552 118.856842 -9.108430 -v -114.791077 119.664810 2.196843 -v -118.085884 114.103027 0.853909 -v -112.051407 115.021782 0.546198 -v -117.688515 115.388397 0.423667 -v -111.996468 116.239250 0.213361 -v -116.938034 116.475845 0.201359 -v -115.611305 117.363991 0.196848 -v -111.261223 117.779091 0.175505 -v -118.007248 111.205269 -1.476730 -v -118.181023 111.212807 -1.309203 -v -118.204781 111.546188 -1.238338 -v -118.049149 111.539536 -1.355915 -v -118.016716 111.782684 -1.317988 -v -117.989693 -114.646675 -1.547508 -v -117.790543 111.574188 -7.303152 -v -117.770966 -114.941475 -7.303138 -v 117.790359 111.574188 -7.303152 -v 118.007660 111.359886 -1.467657 -v 118.132286 111.265457 -1.334937 -v 118.254005 111.239197 -1.298580 -v 118.232063 111.581589 -1.221109 -v 118.005493 111.781433 -1.364465 -v 118.103584 111.786919 -1.196506 -v -111.000137 117.364594 -7.303152 -v 114.463310 112.623199 1.347155 -v 113.255150 113.120026 1.181562 -v 111.999832 117.673386 0.196847 -v 116.048340 117.139496 0.195217 -v 112.058876 114.923340 0.576346 -v 117.780670 115.214111 0.480134 -v 111.997513 116.287979 0.213857 -v 117.019211 116.373627 0.214768 -v -114.575195 111.587540 -7.303152 -v -117.460663 -115.993248 -7.303137 -v -115.758873 -117.806511 -7.303141 -v -113.249184 111.944473 -7.303152 -v -114.517075 -118.196587 -7.303135 -v 114.858284 -118.155693 -7.303150 -v 116.282097 -117.474159 -7.303140 -v 117.766136 -114.965294 -7.303137 -v -111.015915 115.157600 -7.303152 -v 112.592667 112.356422 -7.303152 -v -114.694916 -118.398705 -9.303130 -v -115.851013 -117.975945 -9.303134 -v -116.843689 -117.281914 -9.303128 -v -117.710106 -115.971046 -9.303130 -v -117.987144 -114.826180 -9.303135 -v 114.251518 -118.645699 -20.031158 -v 115.756523 -118.271217 -20.049349 -v 116.342628 -117.943626 -20.019886 -v 116.575775 -117.499138 -9.303133 -v 117.525543 -116.771294 -20.015816 -v 117.941772 -115.949471 -20.020895 -v 117.971428 -115.014107 -9.303133 -v 119.724571 113.897469 -9.037800 -v 119.662277 113.886078 -9.194232 -v 119.511459 114.710922 -9.239280 -v 119.644234 114.548500 -9.063739 -v 119.414192 115.280792 -9.192760 -v 119.486115 114.208084 -9.299525 -v 119.197311 115.983597 -9.052945 -v 119.015770 116.188271 -9.214231 -v 118.532333 116.957756 -9.220325 -v 118.856323 116.623253 -9.047137 -v 118.794510 116.322868 -9.302412 -v 118.195679 117.463333 -9.121444 -v 117.678635 117.949295 -9.119531 -v 117.737122 117.715118 -9.270576 -v 116.968620 118.229507 -9.299239 -v 117.066910 118.400398 -9.133297 -v 116.097443 118.764076 -9.259552 -v 115.271828 119.074493 -9.228440 -v 116.195343 118.859680 -9.115139 -v 115.194016 118.961502 -9.302776 -v 115.201538 119.175812 -9.086905 -v 114.349159 119.179108 -9.248654 -v 114.290710 119.295265 -9.081699 -v -114.294373 119.220024 -9.209818 -v -119.466911 114.472115 -9.296109 -v -119.636940 113.925682 -9.223064 -v -119.577560 114.824707 -9.135602 -v -119.210777 115.722191 -9.231278 -v -119.294563 115.760719 -9.090490 -v -118.910774 116.103325 -9.299093 -v -118.567177 116.849304 -9.251998 -v -118.550682 117.050499 -9.098422 -v -117.764481 117.662971 -9.291227 -v -117.008949 118.288445 -9.260771 -v -117.070122 118.399796 -9.128285 -v -116.066216 118.735298 -9.291529 -v -114.900818 119.057205 -9.293808 -v -115.217964 119.163567 -9.123396 -v -119.559166 -109.946861 -9.286360 -v -118.149033 111.504288 -9.303151 -v -118.145325 111.787430 -1.157948 -v -118.146606 113.956833 -9.303151 -v -117.741333 115.440353 -9.303147 -v -114.458145 117.655617 0.196847 -v -114.559723 117.701035 -9.303152 -v -110.930252 117.723083 -9.303152 -v 118.103348 112.366615 -0.619465 -v 114.719315 117.636887 0.196848 -v 118.089966 113.938210 0.908866 -v 114.463875 117.705055 -9.303152 -v -114.583672 111.589951 -9.303151 -v 114.551651 -118.405678 -9.303135 -v -113.507935 111.842911 -9.303152 -v 115.694908 -118.059959 -9.303133 -v 117.487122 -116.446327 -9.303127 -v -112.188461 112.687088 -9.303152 -v -110.965225 117.364594 -9.303050 -v -117.790550 111.550911 -9.303093 -v -118.222229 -109.931847 -9.303203 -v 119.569618 -109.949059 -9.283147 -v 118.148880 111.504288 -9.303151 -v 111.483582 113.605560 -9.303152 -v 118.145561 113.947037 -9.303149 -v 111.027687 114.999153 -9.303152 -v 117.836464 115.200005 -9.303152 -v -116.775146 116.683022 -9.303147 -v 116.974548 116.507736 -9.303149 -v 110.930069 117.723083 -9.303152 -v 110.976608 117.364594 -9.302747 -v -115.703613 117.368263 -9.303152 -v 115.630531 117.410057 -9.303151 -v 110.999832 117.364594 -7.303152 -v 114.575012 111.587540 -9.303151 -v 113.586540 111.821754 -9.303152 -v 114.090614 111.640953 -7.303152 -v 112.513763 112.416969 -9.303152 -v 111.637863 113.373016 -7.303152 -v 111.041344 114.815544 -7.303152 -v 117.790367 111.539261 -9.303115 -v -111.307175 113.989441 -9.303152 -v -112.004547 112.895470 -7.303152 -v -111.013504 115.149124 -9.303152 -v -111.269112 114.081352 -7.303152 -v -19.787857 -128.898560 -0.003129 -v 3.791261 -129.875824 -0.003129 -v 24.018154 -130.925842 -0.003129 -v 37.218113 -129.875824 -0.003129 -v 51.827042 -130.344208 -0.003129 -v -52.515575 -129.622467 -0.003129 -v -46.827885 -128.586487 -0.003129 -v -0.865442 -128.717773 -0.003129 -v -1.687130 -128.287933 -0.003129 -v 1.172104 -128.586487 -0.003129 -v 2.048102 -128.011169 -0.003129 -v 47.134560 -128.717773 -0.003129 -v 46.008858 -128.065826 -0.003129 -v -50.091888 -127.982689 -0.003129 -v -50.710430 -126.978249 -0.003129 -v 50.693977 -127.037041 -0.003129 -v 52.580395 -129.496490 -0.003129 -v -45.077415 -125.886391 -0.003130 -v 45.305794 -124.814720 -0.003130 -v 2.563610 -124.499855 -0.003130 -v 50.563610 -124.499855 -0.003130 -v 45.867809 -123.939171 -0.003130 -v 0.495702 -123.054695 -0.003119 -v -19.825306 -117.420433 -0.003128 -v 56.905453 -119.375435 -0.003130 -v -57.001270 -119.208733 -0.003130 -v -58.083355 -118.235634 -0.003130 -v -59.166183 -117.938484 -0.003096 -v 58.770206 -117.975914 -0.003121 -v -113.385384 -117.880409 -0.003130 -v -115.146996 -117.195107 -0.003130 -v 117.065689 -114.993492 -0.003130 -v 117.465057 -113.645073 -0.003130 -v -117.448318 -113.873650 -0.003130 -v 15.711704 -114.453835 -0.003130 -v -117.465271 112.793373 -0.003146 -v 116.702469 114.825691 -0.003147 -v 115.335022 116.237984 -0.003147 -v -115.054428 116.386589 -0.003147 -v 113.426025 117.018105 -0.003147 -v -47.701908 -128.824799 -0.003129 -v -48.865448 -128.717773 -0.003129 -v -46.888092 -128.612213 -0.803129 -v -45.951878 -128.011139 -0.003129 -v -45.335190 -127.105263 -0.803129 -v -45.306046 -127.037086 -0.003129 -v -50.922802 -125.965294 -0.003130 -v -45.077415 -125.965340 -0.803129 -v -50.694225 -124.814751 -0.003130 -v -45.436405 -124.499840 -0.003130 -v -50.563824 -124.499855 -0.803129 -v -50.132195 -123.939171 -0.003130 -v -45.868023 -123.939171 -0.803129 -v -49.407265 -123.381599 -0.003130 -v -46.422649 -123.465111 -0.003130 -v -46.815056 -123.253899 -0.803129 -v -47.504299 -123.054695 -0.003119 -v -48.532536 -123.058678 -0.003117 -v 0.298098 -128.824799 -0.003129 -v -2.425719 -127.575844 -0.003129 -v -2.694181 -127.037056 -0.803129 -v 2.693967 -127.037056 -0.003129 -v -2.928645 -126.098259 -0.003130 -v 2.928431 -126.098259 -0.803129 -v 2.922588 -125.886406 -0.003130 -v -2.694218 -124.814735 -0.003130 -v 2.694004 -124.814735 -0.803129 -v -2.132176 -123.939156 -0.003130 -v -1.407283 -123.381615 -0.003130 -v 1.407069 -123.381615 -0.803129 -v 1.577361 -123.465111 -0.003130 -v -0.532529 -123.058678 -0.003118 -v -0.447260 -123.043343 -0.803127 -v 48.298092 -128.824799 -0.003129 -v 46.827671 -128.586487 -0.803129 -v 49.172123 -128.586487 -0.003129 -v 45.951664 -128.011139 -0.803129 -v 50.048126 -128.011139 -0.003129 -v 45.334976 -127.105263 -0.003129 -v 45.305832 -127.037086 -0.803129 -v 50.710217 -126.978249 -0.803129 -v 45.077202 -125.965340 -0.003130 -v 45.077202 -125.886391 -0.803129 -v 50.922588 -125.965294 -0.803129 -v 50.922588 -125.886421 -0.003130 -v 45.436192 -124.499840 -0.803129 -v 50.210964 -124.037865 -0.803129 -v 49.526669 -123.443565 -0.803129 -v 46.592731 -123.381599 -0.003130 -v 46.422436 -123.465111 -0.803129 -v 49.577354 -123.465111 -0.003130 -v 48.495705 -123.054695 -0.003119 -v 47.467472 -123.058678 -0.003118 -v 50.543003 -130.901367 -0.803129 -v 50.624214 -130.885345 -0.003129 -v 51.645302 -130.459686 -0.803129 -v 52.515362 -129.622467 -0.803129 -v 57.573318 -118.597160 -0.003130 -v 113.488632 -117.862587 -0.003130 -v 113.385170 -117.880409 -0.803130 -v 115.054192 -117.238304 -0.003130 -v 115.146767 -117.195122 -0.803130 -v 116.245628 -116.272743 -0.003130 -v 116.588020 -115.869102 -0.803130 -v 117.461884 112.972755 -0.003146 -v 116.769157 114.721024 -0.803147 -v -117.448318 113.021957 -0.803147 -v -117.065941 114.141716 -0.003147 -v -116.245857 115.421028 -0.003147 -v -115.146980 116.343414 -0.803147 -v -113.398720 117.036133 -0.003114 -v -113.385368 117.028725 -0.803148 -v -113.488846 -117.862587 -0.803130 -v -116.588234 -115.869102 -0.003130 -v -58.770420 -117.975914 -0.803130 -v -56.905666 -119.375435 -0.803130 -v -57.573532 -118.597160 -0.803130 -v -50.521194 -130.907288 -0.003129 -v -50.558754 -130.904358 -0.803129 -v -51.645515 -130.459686 -0.003129 -v -0.940402 -128.693420 -0.803129 -v -2.048316 -128.011169 -0.803129 -v 50.091675 -127.982689 -0.803129 -v 48.865234 -128.717773 -0.803129 -v 47.701694 -128.824799 -0.803129 -v -48.940411 -128.693420 -0.803129 -v -51.827255 -130.344208 -0.803129 -v -50.048340 -128.011139 -0.803129 -v -52.580608 -129.496490 -0.803129 -v -50.694191 -127.037041 -0.803129 -v -1.577575 -123.465111 -0.803129 -v -2.563823 -124.499855 -0.803129 -v -2.922801 -125.886406 -0.803129 -v -47.775795 -128.831451 -0.803129 -v 0.224211 -128.831451 -0.803129 -v 57.970268 -118.329140 -0.803130 -v 1.350205 -128.518188 -0.803129 -v -46.009071 -128.065826 -0.803129 -v 2.425506 -127.575844 -0.803129 -v -50.922802 -125.886421 -0.803129 -v 57.069794 -119.094872 -0.803130 -v -45.306007 -124.814720 -0.803129 -v 50.694012 -124.814751 -0.803129 -v 2.131962 -123.939156 -0.803129 -v -49.577568 -123.465111 -0.803129 -v 47.384830 -123.084160 -0.803130 -v 0.574773 -123.069633 -0.803130 -v -48.227192 -123.003090 -0.803135 -v 48.417694 -123.031471 -0.803128 -v -116.588211 115.017433 -0.803147 -v -117.444061 -113.851982 -0.803130 -v 58.914619 -117.961693 -0.803130 -v -115.443382 -117.013954 -0.803130 -v -116.769394 -115.572701 -0.803130 -v 117.448105 -113.873634 -0.803130 -v 117.454475 112.959404 -0.803147 -v 113.447708 117.022362 -0.803148 -v 115.443161 116.162262 -0.803147 -v -62.599171 -132.473022 -5.251470 -v -61.084202 -134.336731 -5.250704 -v -61.927765 -133.794037 -5.234065 -v -61.413071 -134.433472 -5.130083 -v -62.810913 -132.268616 -5.188111 -v -62.512043 -133.304321 -5.126971 -v -62.989403 -132.001984 -5.045174 -v -62.259815 -133.757385 -5.076136 -v -60.728928 -134.793945 -5.079785 -v -62.990475 -132.486694 -4.886776 -v -62.778763 -132.972198 -4.999070 -v -61.837406 -134.318054 -4.906031 -v -61.408154 -134.580536 -4.947596 -v -62.563820 -133.510559 -4.820692 -v -63.075256 -131.933716 -4.812207 -v -61.153618 -134.754578 -4.816858 -v -62.826405 -133.007965 -4.781913 -v -60.497292 -134.973419 -4.813125 -v -62.212803 -133.969818 -4.837237 -v 61.415157 -134.195282 -5.245730 -v 62.624371 -132.258148 -5.251293 -v 60.288685 -134.614532 -5.249719 -v 62.208233 -133.283417 -5.251501 -v 62.614449 -132.991364 -5.163921 -v 60.659607 -134.705414 -5.176629 -v 61.223797 -134.551392 -5.109446 -v 62.247849 -133.613892 -5.169331 -v 62.920506 -132.185699 -5.109763 -v 59.873363 -134.850006 -5.165756 -v 60.723160 -134.835541 -5.028454 -v 61.807644 -134.237518 -5.048467 -v 62.826767 -132.993286 -4.891047 -v 60.053406 -134.988342 -4.999704 -v 62.561386 -133.507294 -4.890453 -v 62.998104 -132.468567 -4.833063 -v 62.198444 -133.977264 -4.905097 -v 63.034019 -131.925964 -4.963964 -v 60.079563 -135.046509 -4.816742 -v 61.241802 -134.702667 -4.881860 -v 60.743134 -134.907166 -4.771103 -v 61.768909 -134.375732 -4.839029 -v 62.789181 -132.189545 -5.201136 -v 62.370220 -125.859978 -5.251946 -v 62.670925 -126.289726 -5.247623 -v 61.945690 -125.575813 -5.244761 -v 62.866707 -126.347862 -5.161260 -v 62.220135 -125.525993 -5.184912 -v 62.585991 -125.752266 -5.161261 -v 62.800095 -125.992180 -5.126022 -v 62.315517 -125.370338 -4.993575 -v 63.000904 -126.354546 -5.021907 -v 62.990021 -126.096260 -4.914006 -v -62.751270 -126.365364 -5.224683 -v -62.529827 -126.016365 -5.251668 -v -62.734982 -125.960701 -5.159594 -v -62.330677 -125.644310 -5.211176 -v -61.945305 -125.508492 -5.224631 -v -62.955479 -126.321007 -5.082900 -v -62.338913 -125.444328 -5.074628 -v -62.796169 -125.831459 -5.027400 -v -62.702877 -125.622704 -4.914423 -v -61.934273 -125.222878 -4.911747 -v -61.934303 -132.024994 -5.253129 -v -61.042862 -133.521423 -5.253125 -v 60.065979 -133.906647 -5.253129 -v 60.744240 -133.695374 -5.253128 -v -60.404114 -134.616089 -5.248155 -v -59.991501 -134.851959 -5.162792 -v -60.069202 -134.996796 -4.988307 -v -59.920784 -135.053375 -4.802408 -v 63.076515 -131.911987 -4.786819 -v 60.782104 -132.160370 -0.003115 -v 60.152294 -132.766449 -0.003119 -v 62.464901 -125.393898 -4.788422 -v 62.780857 -125.684776 -4.863102 -v 63.076771 -126.403130 -4.801388 -v -56.921116 -121.250648 -0.003126 -v 56.358704 -121.103615 -0.003130 -v 56.511997 -121.111382 -0.003134 -v 56.891109 -121.232780 -0.003126 -v 57.230110 -121.522545 -0.003125 -v 57.452896 -121.951912 -0.003107 -v -60.856499 -125.403572 -0.003130 -v -60.479137 -132.541504 -0.003128 -v -60.801395 -132.081604 -0.003122 -v -60.906845 -131.933136 -3.503132 -v -60.034172 -132.792969 -0.003126 -v -60.080845 -132.863159 -3.503125 -v 60.905151 -131.947632 -3.503133 -v 61.873306 -132.016693 -3.503129 -v 61.939976 -125.324593 -5.078502 -v 61.884880 -125.256828 -3.503125 -v 60.244820 -133.827454 -3.503121 -v 61.558098 -133.029541 -5.253113 -v 61.928558 -132.066925 -5.253129 -v -60.166397 -133.899200 -5.253126 -v -61.680592 -132.806885 -5.253125 -v -61.034702 -133.443542 -3.503128 -v -60.235451 -133.825195 -3.503124 -v -63.074604 -126.395546 -4.840712 -v -62.986717 -126.026619 -4.830535 -v -62.774971 -125.663261 -4.769271 -v -62.463909 -125.401466 -4.811271 -v 62.800034 -126.383171 1.490644 -v 62.703907 -126.072609 1.547437 -v 62.749302 -126.346748 1.645571 -v 62.298828 -125.628532 1.701200 -v 62.536472 -125.831993 1.639080 -v 62.567268 -125.968376 1.764716 -v 62.618229 -126.246452 1.804716 -v 62.286373 -125.711571 1.904059 -v 62.129612 -125.606773 1.946889 -v 62.136662 -125.773643 2.103454 -v 62.279903 -125.908043 2.043824 -v 62.794617 -131.938873 1.538564 -v 62.689457 -132.023804 1.741504 -v 60.917374 -125.250771 -3.503130 -v 60.856285 -125.403572 -0.003130 -v 61.933613 -125.199455 -4.787926 -v 62.984138 -126.015495 -4.757130 -v 61.945004 -125.501060 1.856440 -v 57.392586 -123.016838 1.685586 -v 57.193584 -122.988884 1.962851 -v 57.511974 -123.939461 2.314674 -v 57.493599 -123.607201 1.945314 -v 57.391308 -123.484612 2.067187 -v 57.259708 -123.758430 2.354782 -v 57.404518 -122.118324 1.297876 -v 57.306881 -122.966576 1.834582 -v 56.966507 -121.816643 1.548190 -v 56.957523 -121.337242 1.073774 -v 57.363857 -121.870293 1.195192 -v 56.477127 -121.158073 1.044793 -v 56.717522 -121.224510 1.107329 -v 57.168652 -121.534660 1.138083 -v 56.953354 -121.410866 1.244386 -v 56.472786 -121.261742 1.257481 -v 56.692745 -121.415352 1.368227 -v 57.250168 -121.753746 1.326669 -v 57.033508 -121.567680 1.369386 -v 57.310726 -122.016304 1.433174 -v 57.156296 -121.910179 1.528691 -v -56.659985 -121.194649 1.047971 -v -57.255051 -121.642708 1.107327 -v -56.413494 -121.159889 1.071838 -v -57.134811 -121.496941 1.137324 -v -56.862743 -121.289070 1.116894 -v -56.507332 -121.250008 1.234624 -v -57.400719 -121.999382 1.222870 -v -56.691826 -121.401741 1.362789 -v -57.229542 -121.722527 1.328488 -v -57.009281 -121.478264 1.286593 -v -57.152767 -121.922935 1.536769 -v -57.319134 -122.001945 1.417100 -v -57.399544 -122.942741 1.602983 -v -57.374317 -123.123329 1.815862 -v -57.299934 -123.022255 1.877604 -v -57.453014 -123.478798 1.942594 -v -57.565842 -123.836189 2.111749 -v -57.057690 -122.923439 2.010927 -v -57.276470 -123.585793 2.252303 -v -57.846867 -124.186501 -0.003137 -v -57.464516 -122.054543 -0.003127 -v -57.306164 -121.618111 -0.003119 -v -56.508854 -121.109398 -0.003127 -v 56.349892 -121.103584 -0.003130 -v -61.868141 -132.057434 -3.503129 -v -60.917587 -125.250771 -3.503130 -v -61.598648 -132.825684 -3.503125 -v -60.668365 -132.474945 -3.503124 -v 61.154076 -133.355255 -3.503125 -v 60.154240 -132.851044 -3.503117 -v 61.664593 -132.692596 -3.503128 -v 60.704475 -132.413055 -3.503128 -v -62.197918 -125.267876 -4.817050 -v -61.884895 -125.255394 -3.503121 -v -62.793270 -126.402412 1.554578 -v -62.693062 -126.054649 1.581854 -v -62.502602 -125.801277 1.678448 -v -62.285252 -125.627647 1.733950 -v -61.960251 -125.497597 1.817321 -v -62.477978 -125.951790 1.870732 -v -62.224606 -125.667854 1.926569 -v -61.956051 -125.570183 2.031533 -v -62.143570 -125.765892 2.094570 -v -61.258629 -134.395935 1.325644 -v -62.798374 -131.928375 1.521958 -v -62.594208 -132.859650 1.495113 -v -61.759399 -134.032104 1.440126 -v -62.129131 -133.645874 1.482792 -v -62.401806 -133.237030 1.521610 -v -62.700214 -132.549988 1.519861 -v -62.735481 -132.067444 1.667900 -v -62.189346 -133.452209 1.662257 -v -62.582253 -132.404694 1.786067 -v -61.474712 -134.129150 1.612606 -v -62.491879 -132.935883 1.677983 -v -61.841415 -133.781830 1.703676 -v -62.645245 -131.868195 1.787625 -v -62.408833 -132.779968 1.826466 -v 59.961536 -134.791626 1.116870 -v -60.000526 -134.782745 1.159636 -v -60.600849 -134.680969 1.202185 -v 60.387451 -134.725067 1.196395 -v 61.665260 -134.115875 1.392851 -v 61.213604 -134.407288 1.393788 -v 62.325844 -133.383606 1.480771 -v 60.853313 -134.575409 1.324696 -v 60.165642 -134.694550 1.325154 -v 62.019306 -133.767242 1.491730 -v 61.677105 -134.037201 1.552083 -v 62.038361 -133.672363 1.620319 -v 60.894684 -134.425354 1.536089 -v 62.562656 -132.892639 1.580469 -v 62.353493 -133.241211 1.634532 -v 62.712376 -132.435364 1.578735 -v 61.780006 -133.767822 1.741356 -v 62.226082 -133.239563 1.783108 -v 61.163151 -125.513268 2.374749 -v 61.327946 -125.610146 2.510981 -v 61.353367 -125.744011 2.631788 -v 61.068619 -125.578758 2.560845 -v 61.399044 -125.933678 2.679237 -v 61.065407 -125.724358 2.706916 -v 61.221794 -125.907356 2.749128 -v 61.008144 -125.899498 2.788625 -v 57.488174 -123.180473 -0.003113 -v 57.732376 -123.983025 -0.003139 -v 58.291897 -124.727455 -0.003138 -v 59.049015 -125.214394 -0.003135 -v 59.788223 -125.395958 -0.003126 -v 57.706276 -124.131767 2.219935 -v 57.950787 -124.501122 2.338021 -v 57.914490 -124.534752 2.487773 -v 57.693027 -124.441154 2.602659 -v 57.515778 -124.420219 2.656693 -v 58.334568 -125.148338 2.700096 -v 57.721241 -124.731911 2.741918 -v -56.918106 -121.638741 1.469390 -v 57.019352 -123.174065 2.126452 -v -59.528442 -125.386757 -0.003153 -v -58.455891 -124.867180 -0.003137 -v -57.502419 -123.306114 -0.003121 -v -57.700428 -124.110313 2.176940 -v -57.861614 -124.392738 2.344745 -v -57.569347 -124.026146 2.336455 -v -57.470795 -124.331123 2.622421 -v -57.464329 -124.115913 2.500546 -v -57.685360 -124.645195 2.718096 -v -61.055187 -125.513741 2.403316 -v -61.292290 -125.578484 2.488572 -v -61.316193 -125.723991 2.637849 -v -61.027122 -125.700935 2.695480 -v -61.111855 -125.905556 2.780598 -v -62.274925 -125.955360 2.055054 -v -62.660831 -126.278358 1.766799 -v -60.482677 -134.619476 1.401205 -v -61.051006 -134.412262 1.502295 -v -62.258228 -133.210266 1.770248 -v 61.414219 -134.140808 1.625886 -v 60.481274 -132.802246 2.697409 -v 62.529896 -132.575073 1.794130 -v 61.338074 -131.423889 2.706214 -v 59.341866 -125.412575 2.339022 -v 58.318672 -124.883781 2.398046 -v 59.836704 -125.504387 2.399870 -v 58.807377 -125.207878 2.403452 -v 58.302227 -124.968651 2.580062 -v 59.216427 -125.430504 2.518768 -v 58.777634 -125.433388 2.715315 -v 59.687065 -125.615959 2.632817 -v 59.777348 -125.755959 2.740818 -v 57.965588 -125.098686 2.791255 -v 58.595875 -125.590904 2.793981 -v -58.810997 -125.209953 2.389272 -v -59.336941 -125.410393 2.374557 -v -58.297619 -124.870171 2.405314 -v -58.371368 -125.031105 2.582873 -v -59.819504 -125.575706 2.567834 -v -58.871983 -125.325310 2.583967 -v -58.278862 -125.059746 2.673058 -v -59.288353 -125.562691 2.679748 -v -58.835030 -125.525261 2.748727 -v -57.914692 -125.049919 2.788228 -v -59.830070 -125.501411 2.377525 -v -61.069519 -125.588356 2.570231 -v -59.843292 -125.739754 2.731394 -v -61.413918 -125.913353 2.668041 -v -60.618896 -132.694733 2.695544 -v -59.090858 -133.223785 2.709266 -v -61.353123 -131.464661 2.694452 -v -60.911930 -132.203125 2.753325 -v -61.067871 -131.358948 2.789929 -v -60.085434 -132.936859 2.734118 -v -60.251774 -132.551514 2.796059 -v -59.288734 -133.380859 2.613290 -v -59.569672 -132.938263 2.786357 -v 59.147224 -133.413300 2.591535 -v 59.013474 -133.174103 2.730366 -v 59.756893 -133.124756 2.701897 -v 60.982693 -132.178040 2.731918 -v 59.679306 -132.834839 2.794274 -v 60.599369 -132.344818 2.791023 -v 61.056393 -131.270050 2.790972 -v -59.207817 -125.861320 2.793934 -v 59.561317 -125.881966 2.792308 -v 1.009265 -125.511131 -5.253131 -v 60.064846 -132.657715 -0.503127 -v 60.698875 -131.945190 -0.503130 -v 60.756817 -131.918671 -3.503130 -v -59.911755 -132.684570 -0.503130 -v -60.690269 -131.999237 -0.503129 -v -60.730717 -132.078217 -3.503122 -v -60.369400 -132.484894 -0.503126 -v 56.647533 -120.970055 -3.535604 -v 60.767353 -125.250771 -3.503131 -v 60.714985 -125.381752 -0.503132 -v -61.373013 -132.894287 -3.503126 -v -60.727161 -133.470673 -3.503126 -v -60.160641 -132.692505 -3.503115 -v -60.036026 -133.696899 -3.503130 -v 60.210030 -133.679718 -3.503123 -v 60.015305 -132.722931 -3.503128 -v 60.531811 -132.400574 -3.503127 -v -60.767567 -125.250771 -3.503131 -v -60.715199 -125.381752 -0.503132 -v -59.454121 -125.341301 -0.503151 -v -57.926945 -124.260109 -0.503134 -v -57.513344 -123.327522 -0.503150 -v -57.246933 -121.507729 -0.503129 -v 57.260761 -121.525917 -0.503130 -v 57.473972 -121.955177 -0.503124 -v 57.503975 -123.167168 -0.503137 -v 60.502861 -132.341034 -0.503130 -v 59.679684 -125.363701 -0.503135 -v 57.475719 -121.514015 -4.641313 -v 57.136456 -121.179283 -4.167931 -v 56.765976 -121.130943 -0.503099 -v 57.699539 -122.447563 -5.196062 -v -57.470043 -121.940819 -0.503123 -v -57.679825 -122.027122 -5.023061 -v -57.556648 -121.649193 -4.769513 -v -57.179962 -121.196938 -4.222813 -v -56.732906 -121.118340 -0.503103 -v -56.598572 -120.966499 -3.480700 -v 57.828594 -124.128883 -0.503142 -v 58.683777 -125.019493 -0.503152 -v 58.740093 -124.806511 -5.253150 -v 59.712776 -125.162056 -5.253135 -v 61.795921 -125.174385 -5.253131 -v 61.734814 -125.250771 -3.503131 -v 61.194118 -133.130707 -3.503115 -v 61.322250 -133.082642 -5.253106 -v 61.701687 -132.176971 -3.503125 -v -61.714481 -132.102081 -3.503127 -v -60.804138 -133.497345 -5.253124 -v -61.796135 -125.174385 -5.253131 -v -61.735027 -125.250771 -3.503131 -v -59.739876 -125.163811 -5.253134 -v -58.453651 -124.837196 -0.503138 -v -58.178078 -124.286705 -5.253152 -v 57.707520 -123.079460 -5.258518 -v -57.699478 -122.533836 -5.220407 -v 57.668495 -121.954689 -4.985293 -v -61.781857 -132.020447 -5.253130 -v -61.509552 -132.813416 -5.253121 -v -60.052338 -133.759033 -5.253130 -v -58.980675 -124.929131 -5.253136 -v -57.740059 -123.317055 -5.254315 -v 57.977913 -123.968819 -5.253142 -v 61.774746 -132.113647 -5.253125 -v 60.301826 -133.723877 -5.253124 -v 115.093307 117.036186 -0.803149 -v -115.031479 117.046875 -0.803149 -v 116.913719 115.878944 -0.803149 -v -117.021667 115.725090 -0.803149 -v 117.458076 114.730423 -0.803149 -v -115.093613 -117.887871 -0.803131 -v 114.908409 -117.909554 -0.803131 -v 115.976784 -117.562920 -0.803131 -v -117.483826 -115.334312 -0.803133 -v 117.461929 -115.519279 -0.803132 -v -116.265976 -117.378792 -0.803131 -v 116.952866 -116.691689 -0.803132 -v -117.137154 -116.402763 -0.803132 -v 116.150826 116.595711 -0.803149 -v -116.201126 116.572510 -0.803149 -v -117.462143 114.667557 -0.803149 -v 115.156166 117.032333 -2.303150 -v 117.021461 115.725075 -2.303149 -v -115.093521 117.036186 -2.303149 -v 117.461929 114.667564 -2.303149 -v -115.156464 -117.884010 -2.303131 -v 114.965919 -117.901970 -2.303131 -v 116.045540 -117.523216 -2.303131 -v 117.458076 -115.582100 -2.303132 -v -117.462143 -115.519264 -2.303132 -v 116.913742 -116.730614 -2.303132 -v -117.021667 -116.576790 -2.303132 -v -116.304993 -117.339592 -2.303131 -v 116.304688 116.487968 -2.303149 -v -116.151039 116.595711 -2.303149 -v -116.913933 115.878944 -2.303149 -v -117.458290 114.730431 -2.303149 -vt 0.647387 0.000318 -vt 0.647387 0.000318 -vt 0.647387 0.000318 -vt 0.647387 0.000318 -vt 0.647387 0.000318 +v 118.354355 -110.073631 -15.743714 +v 114.068901 -119.722466 -20.180742 +v 114.739487 -119.531227 -20.297823 +v 118.222610 111.787270 -1.131925 +v 118.105339 112.000687 -0.992558 +v 114.372559 -120.408913 -1.567918 +v 115.075256 -120.310265 -1.497765 +v 114.623497 -120.192039 -1.310149 +v 114.343330 -120.358589 -1.426186 +v 115.554459 -120.107918 -1.370554 +v 116.561562 -119.835945 -1.523531 +v 116.733383 -119.639137 -1.368375 +v 116.043571 -119.849419 -1.310030 +v 117.248619 -119.459877 -1.522869 +v 118.072464 -118.823708 -1.548110 +v 117.566948 -119.092918 -1.349133 +v 118.491196 -118.370094 -1.471259 +v 118.148705 -118.456383 -1.307177 +v 119.063904 -117.618919 -1.496006 +v 118.898308 -117.518639 -1.309195 +v 119.545059 -116.684624 -1.501324 +v 119.368965 -116.693657 -1.327539 +v 119.979317 -114.791542 -1.546374 +v 119.872765 -114.779594 -1.359541 +v 119.666153 -115.628761 -1.308552 +v 114.330254 -119.769600 -20.014753 +v 114.783730 -119.664619 -20.188375 +v 115.452164 -119.587349 -20.015177 +v 115.687637 -119.464653 -20.162813 +v 116.668396 -119.071022 -20.032831 +v 116.353371 -119.145027 -20.220758 +v 117.369240 -118.588310 -20.017691 +v 117.326752 -118.499260 -20.236134 +v 118.061874 -117.663261 -20.275988 +v 118.048515 -117.928963 -20.015162 +v 118.031891 -117.887001 -20.156713 +v 118.578491 -117.092583 -20.185795 +v 118.996643 -116.220100 -20.174234 +v 118.741119 -116.933876 -20.016701 +v 119.189331 -115.750694 -20.018003 +v 119.139214 -115.462776 -20.248936 +v 119.320786 -114.889366 -20.096815 +v 119.135612 -114.846748 -20.292841 +v -118.105087 112.111557 -0.909175 +v -119.795189 112.455376 -0.397314 +v -118.101974 112.512970 -0.341264 +v -114.381645 -120.408150 -1.560494 +v -114.337540 -120.353432 -1.417620 +v -115.075378 -120.307335 -1.484236 +v -114.369156 -120.190910 -1.306552 +v -115.421761 -120.125435 -1.356481 +v -115.842773 -120.127281 -1.528008 +v -116.801514 -119.722115 -1.529071 +v -116.721581 -119.672783 -1.389807 +v -116.096489 -119.869316 -1.328043 +v -117.660309 -119.174797 -1.581664 +v -117.731583 -119.034370 -1.396137 +v -118.395699 -118.498619 -1.537008 +v -118.816689 -117.842995 -1.374314 +v -119.059280 -117.637291 -1.538945 +v -119.347755 -117.138710 -1.600160 +v -119.466316 -116.738152 -1.418659 +v -119.614754 -116.515724 -1.573588 +v -119.790253 -115.740837 -1.411590 +v -119.446068 -116.415977 -1.311703 +v -119.851295 -115.738640 -1.607201 +v -119.984589 -114.772270 -1.549987 +v -119.760483 -114.956902 -1.308016 +v -114.288513 -119.768730 -20.062483 +v -114.807518 -119.655586 -20.193521 +v -114.054405 -119.653221 -20.249144 +v -114.479156 -119.513466 -20.300638 +v -115.314285 -119.617699 -20.019548 +v -115.577896 -119.446388 -20.233912 +v -116.598450 -119.075127 -20.136557 +v -115.648697 -119.281960 -20.300360 +v -117.359421 -118.595436 -20.016443 +v -116.676758 -118.845695 -20.293947 +v -117.344505 -118.538933 -20.178822 +v -117.667435 -118.141136 -20.254480 +v -118.071205 -117.812065 -20.193678 +v -118.174393 -117.411293 -20.300406 +v -118.596100 -117.170021 -20.014219 +v -118.457596 -117.328346 -20.146734 +v -118.785400 -116.747444 -20.154688 +v -119.074623 -116.153236 -20.014315 +v -119.129585 -115.797600 -20.177160 +v -118.782196 -116.350227 -20.297037 +v -119.229736 -114.967064 -20.227976 +v -117.562439 -119.004112 -1.307583 +v -118.768143 -117.685417 -1.307626 +v -118.202690 -114.999275 -1.308099 +v 118.175125 -114.557808 -1.315966 +v -102.527359 117.855774 -0.138955 +v -102.927872 117.810875 0.040628 +v -100.471260 117.820648 -1.295716 +v -100.992523 117.774666 -1.188606 +v -101.818733 117.807976 -0.728877 +v 102.324310 117.848808 -0.270058 +v 111.261032 117.771225 0.172241 +v -114.251167 -118.497536 -1.384598 +v -114.607948 -118.624672 -1.307527 +v -115.169846 -118.403404 -1.343519 +v -115.564735 -118.176643 -1.402441 +v -114.882591 -118.327950 -1.505959 +v -116.304878 -117.701027 -1.532470 +v -116.415077 -117.902229 -1.307001 +v -116.187958 -117.852654 -1.399487 +v -116.757812 -117.427696 -1.390281 +v -116.949265 -117.129433 -1.518561 +v -117.307846 -117.091057 -1.305928 +v -117.345657 -116.773384 -1.381237 +v -117.830345 -116.205086 -1.307540 +v -117.762093 -116.003441 -1.388678 +v -117.908432 -115.308769 -1.486646 +v 114.410706 -118.572090 -1.331378 +v 114.401733 -118.467690 -1.417553 +v 114.372513 -118.411201 -1.544239 +v 114.761902 -118.637306 -1.305184 +v 115.234459 -118.232216 -1.501867 +v 115.472389 -118.235603 -1.388141 +v 115.867188 -117.962715 -1.521933 +v 116.139709 -118.068581 -1.307948 +v 116.223412 -117.772270 -1.448448 +v 116.695084 -117.382805 -1.517056 +v 116.893127 -117.280663 -1.406004 +v 117.270126 -116.842323 -1.395105 +v 117.167587 -116.863258 -1.548390 +v 117.143982 -117.279213 -1.306531 +v 117.758835 -116.284264 -1.313314 +v 117.546371 -116.291313 -1.483026 +v 117.753342 -115.811241 -1.484175 +v 117.992233 -115.474098 -1.349329 +v 117.893784 -115.324654 -1.532187 +v -118.435722 -114.474144 -20.263544 +v -119.107986 -114.652489 -20.292082 +v -119.174210 -113.204521 -19.937138 +v -119.171562 -110.927956 -18.133066 +v -119.226143 -110.495995 -17.358345 +v -118.358910 -110.157631 -16.292034 +v -118.367775 -110.068810 -15.701695 +v 116.520187 -118.885094 -20.302139 +v -117.216118 -117.523552 -20.299276 +v 118.461922 -116.962868 -20.301001 +v 119.134209 -113.038582 -19.875038 +v 118.441986 -112.293785 -19.469841 +v 119.199783 -111.768379 -19.063713 +v 119.220894 -110.489204 -17.346581 +v 119.298531 -110.073555 -15.688435 +v 119.774773 111.181702 -1.307426 +v 119.901337 111.240204 -1.382934 +v 119.768761 111.412079 -1.271711 +v 119.909409 111.583611 -1.303208 +v 119.752731 111.747925 -1.147999 +v 119.761627 112.046616 -0.944470 +v 119.950867 111.999252 -1.151350 +v 119.872047 111.945747 -1.088650 +v 119.812729 112.230949 -0.769017 +v 119.807709 112.379074 -0.552417 +v 119.996223 111.991684 -1.300525 +v 119.792519 112.509766 -0.255078 +v 120.016357 112.556053 -0.746103 +v 119.969116 112.416672 -0.729576 +v 119.933853 112.561646 -0.318717 +v 115.859978 -120.120552 -1.519115 +v 119.850487 -115.699898 -1.498003 +v 119.334488 -114.421516 -20.080484 +v 119.118271 -114.445030 -20.263659 +v 119.260567 -114.185707 -20.150444 +v 119.151794 -113.650291 -20.097744 +v 119.317360 -113.145576 -19.784409 +v 119.184242 -112.493034 -19.588066 +v 119.362602 -112.287315 -19.258549 +v 119.383240 -111.707222 -18.742691 +v 119.177887 -111.304573 -18.606186 +v 119.423111 -110.913338 -17.714630 +v 119.324661 -111.208443 -18.370621 +v 119.356911 -110.794914 -17.743828 +v 119.168114 -110.893318 -18.084213 +v 119.396790 -110.438011 -16.939041 +v 119.482597 -110.337410 -16.039654 +v 119.239334 -110.201347 -16.518200 +v 119.426453 -110.188942 -15.950776 +v 119.720940 -110.140907 -9.095842 +v 100.478218 119.323578 -1.298503 +v 100.982079 119.310349 -1.184934 +v 101.352829 119.356827 -1.035616 +v 100.915642 119.437042 -1.252497 +v 101.744217 119.373672 -0.792286 +v 101.453491 119.486572 -1.074371 +v 100.470589 119.464737 -1.367917 +v 100.855423 119.531769 -1.387293 +v 101.885551 119.515541 -0.794318 +v 100.646645 119.560753 -1.522317 +v 101.673973 119.571487 -1.117970 +v 102.845520 119.395126 0.015532 +v 102.163635 119.375435 -0.398620 +v 102.472847 119.423157 -0.187953 +v 103.097450 119.568367 -0.033304 +v 102.213242 119.545952 -0.507437 +v 102.731453 119.601128 -0.234942 +v 103.488472 119.419319 0.177406 +v 103.541191 119.602989 0.006507 +v 111.997025 119.590935 0.055387 +v 111.999817 119.378288 0.193333 +v 112.029739 119.696396 2.196733 +v 114.688354 112.618401 2.196826 +v 120.092644 114.405334 2.196831 +v 112.301201 114.327972 2.196841 +v 112.050560 115.165657 2.196837 +v -112.038719 115.298553 2.196812 +v -112.000046 117.673386 0.196838 +v -112.029953 119.696396 2.196733 +v -112.000137 119.382225 0.192853 +v -111.998138 119.596565 0.039034 +v -102.519218 119.370659 -0.145344 +v -103.496948 119.392380 0.183681 +v -102.903625 119.382584 0.036505 +v -103.364662 119.518753 0.100297 +v -102.225067 119.534798 -0.480732 +v -102.628830 119.543793 -0.196382 +v -101.341583 119.313904 -1.041634 +v -101.815208 119.348564 -0.728377 +v -100.774269 119.339378 -1.247849 +v -102.167564 119.381317 -0.397547 +v -100.411278 119.427612 -1.343696 +v -101.098648 119.449120 -1.209595 +v -101.748756 119.478783 -0.866042 +v -100.674942 119.531944 -1.442215 +v -102.003891 119.584351 -0.855444 +v -101.438965 119.542778 -1.164828 +v -100.891144 119.563461 -1.508202 +v -100.345688 119.312752 -1.302963 +v -120.077667 114.552368 2.196836 +v -118.765244 117.459824 2.196814 +v -112.891495 113.458054 2.196831 +v -119.739502 111.199829 -1.301930 +v -119.869804 111.209549 -1.354857 +v -119.947899 111.338959 -1.424786 +v -119.775185 111.496338 -1.250351 +v -119.882454 111.734093 -1.215490 +v -119.732979 111.828209 -1.100308 +v -119.990753 111.619453 -1.504900 +v -119.948074 111.869217 -1.227037 +v -119.792702 111.970375 -1.015716 +v -119.784363 112.205727 -0.789996 +v -119.916168 112.246925 -0.854155 +v -119.810181 112.345894 -0.606553 +v -119.993370 112.217445 -1.075825 +v -119.939140 112.402214 -0.675780 +v -119.940781 112.562508 -0.345468 +v -120.015823 112.558044 -0.692138 +v -119.902252 -114.754082 -1.392986 +v -116.286118 -119.274895 -20.014666 +v -118.021980 -117.960091 -20.015696 +v -119.340454 -114.783348 -20.052219 +v -119.274757 -114.534630 -20.181112 +v -119.161011 -113.723274 -20.117853 +v -119.340775 -113.526985 -19.884098 +v -119.338287 -112.604042 -19.494431 +v -119.152519 -112.475212 -19.585812 +v -119.239815 -111.889656 -19.145155 +v -119.394661 -111.493965 -18.532040 +v -119.156212 -111.468712 -18.791901 +v -119.321434 -111.065666 -18.214069 +v -119.432602 -110.601891 -17.191807 +v -119.410721 -110.281731 -16.411993 +v -119.256668 -110.210915 -16.549652 +v -119.715919 -110.121147 -9.112865 +v -119.493843 -110.264641 -15.542340 +v -119.408600 -110.151344 -15.743709 +v -119.278488 -110.070000 -15.690523 +v -114.543411 112.614906 1.349945 +v -114.569489 112.626572 2.196838 +v -113.733543 112.884850 2.196829 +v -113.587433 112.932289 1.244100 +v -112.872269 113.469612 1.065024 +v -112.329155 114.199677 0.821673 +v -112.262863 114.402695 2.196818 +v -120.122360 112.609085 2.196839 +v -118.093246 112.594391 1.356758 +v -119.828186 112.563057 -0.067153 +v -118.076958 -114.826668 -1.373401 +v 117.984924 -114.751640 -1.532419 +v 118.021835 -114.473595 -1.456656 +v -111.256271 117.643867 0.041906 +v -102.529915 117.607796 -0.400179 +v -103.459129 117.631706 0.001664 +v -102.225235 117.660789 -0.480169 +v -102.700783 117.677444 -0.145199 +v -103.480064 117.730530 0.126017 +v -102.186890 117.827904 -0.378837 +v -103.497665 117.837036 0.183584 +v -100.942566 117.572754 -1.483352 +v -100.806305 117.616570 -1.366747 +v -101.309052 117.657494 -1.141272 +v -101.793945 117.616234 -0.944776 +v -101.892303 117.666786 -0.778263 +v -101.453026 117.826424 -0.978215 +v -100.472275 117.660339 -1.365899 +v 100.882896 117.577080 -1.446540 +v 100.498810 117.597534 -1.449843 +v 101.071053 117.676590 -1.224921 +v 100.471420 117.683937 -1.349211 +v 100.547012 117.824173 -1.290294 +v 101.593864 117.805428 -0.892168 +v 101.209450 117.828842 -1.102163 +v 102.499138 117.609131 -0.410057 +v 101.835945 117.594933 -0.977223 +v 102.186714 117.697548 -0.460251 +v 102.625229 117.695549 -0.169653 +v 103.693855 117.700951 0.114212 +v 102.824951 117.820709 0.006567 +v 101.728447 117.682243 -0.897458 +v 103.347092 117.783714 0.135633 +v 101.882988 117.826164 -0.665331 +v 103.286613 117.627090 -0.033296 +v 111.255653 117.641045 0.026226 +v 103.505989 117.879341 0.190402 +v 120.122147 112.609085 2.196839 +v 119.808662 112.570107 0.025544 +v 118.100433 112.559685 -0.076123 +v 118.093033 112.594391 1.356758 +v 113.833527 112.833344 2.196847 +v 112.876434 113.473206 2.196846 +v 112.466660 113.969559 0.898356 +v -114.220016 -118.415413 -1.547968 +v -115.551888 -118.108620 -1.539496 +v -116.838486 -116.964348 -7.303131 +v -117.462646 -116.437065 -1.539383 +v -117.799347 -115.665260 -1.538199 +v 117.314270 -116.331474 -7.303139 +v -118.021492 -110.084679 -9.303214 +v -118.248695 -114.779701 -20.143911 +v -118.341934 -114.082909 -20.156809 +v -118.343941 -113.331734 -19.948376 +v -118.228622 -113.755836 -19.923141 +v -118.491402 -113.690300 -20.118551 +v -118.281517 -112.643852 -19.587799 +v -118.479012 -112.848610 -19.797256 +v -118.212761 -112.312386 -19.234245 +v -118.274643 -111.907295 -19.075550 +v -118.455978 -112.123207 -19.357267 +v -118.390884 -111.464455 -18.778076 +v -118.200592 -111.281166 -18.305035 +v -118.386139 -111.056160 -18.293686 +v -118.267181 -110.736427 -17.689953 +v -118.428482 -110.690086 -17.755825 +v -118.173897 -110.573433 -17.063385 +v -118.338127 -110.325630 -16.908857 +v -118.152855 -110.318230 -16.209042 +v -118.189339 -110.177757 -15.727274 +v -118.410713 -115.219551 -20.302942 +v -118.226944 -115.403053 -20.232317 +v -118.219284 -114.775841 -20.057142 +v -114.604118 -118.850975 -20.296370 +v -114.230171 -118.712608 -20.194994 +v -114.980797 -118.633812 -20.225313 +v -114.237946 -118.650871 -20.060488 +v -114.956863 -118.546791 -20.066828 +v -115.717819 -118.408028 -20.240309 +v -115.509010 -118.375328 -20.088516 +v -116.214821 -118.281883 -20.294706 +v -116.010811 -118.144814 -20.050982 +v -116.361855 -117.990349 -20.172842 +v -116.965950 -117.539345 -20.208700 +v -116.630165 -117.735298 -20.024969 +v -117.168457 -117.223122 -20.032032 +v -117.447517 -116.952980 -20.175619 +v -117.608551 -116.630058 -20.013937 +v -117.832123 -116.307945 -20.169645 +v -117.909012 -116.562126 -20.297514 +v -118.081764 -115.600945 -20.114298 +v -118.009041 -115.791924 -20.013157 +v 114.271744 -118.705406 -20.190256 +v 114.526398 -118.850563 -20.295605 +v 115.021896 -118.660896 -20.255693 +v 114.974297 -118.539452 -20.071810 +v 115.735191 -118.383827 -20.227636 +v 116.189018 -118.264778 -20.286875 +v 116.995476 -117.707527 -20.293524 +v 116.921356 -117.479561 -20.022980 +v 116.834862 -117.645073 -20.182421 +v 117.519600 -116.977455 -20.251129 +v 117.444305 -116.916878 -20.123838 +v 117.935783 -116.140450 -20.192568 +v 118.064545 -116.262779 -20.296556 +v 118.265579 -115.387825 -20.260626 +v 118.433533 -114.635353 -20.284807 +v 118.174767 -115.215004 -20.125319 +v 118.149712 -115.242363 -20.009623 +v 118.228859 -114.644630 -20.073263 +v 118.301346 -114.051491 -20.114044 +v 118.232056 -113.448189 -19.854509 +v 118.443710 -113.676445 -20.109734 +v 118.412544 -112.917137 -19.818981 +v 118.295586 -112.562767 -19.546108 +v 118.216263 -112.365685 -19.277142 +v 118.473877 -111.751152 -19.065559 +v 118.298096 -111.838142 -19.049168 +v 118.195251 -111.426582 -18.428761 +v 118.276863 -111.240913 -18.415592 +v 118.415070 -111.165672 -18.449102 +v 118.379578 -110.677071 -17.717499 +v 118.190681 -110.821678 -17.642534 +v 118.388199 -110.328514 -16.943983 +v 118.333221 -110.165306 -16.307446 +v 118.217369 -110.375160 -16.767635 +v 118.220291 -110.135368 -15.607141 +v 118.006775 -110.143120 -9.303140 +v 118.142166 -110.323936 -15.964074 +v 118.153137 -109.950203 -9.303253 +v 119.986130 111.431015 -1.503587 +v 119.465630 115.315529 -9.028274 +v 119.471832 116.382378 2.196832 +v 118.360519 117.892685 2.196834 +v 116.898895 118.999329 2.196828 +v 114.897308 119.658577 2.196837 +v -114.310127 119.295677 -9.074260 +v -103.318733 119.609589 -0.043131 +v -119.723175 113.894119 -9.058856 +v -119.617691 116.017387 2.196832 +v -118.951599 116.432686 -9.115372 +v -117.866882 117.796654 -9.103258 +v -117.375725 118.697189 2.196826 +v -116.220100 119.283691 2.196831 +v -116.204552 118.856842 -9.108438 +v -114.791077 119.664810 2.196834 +v -118.085884 114.103027 0.853900 +v -112.051407 115.021782 0.546189 +v -117.688515 115.388397 0.423658 +v -111.996468 116.239250 0.213352 +v -116.938034 116.475845 0.201350 +v -115.611305 117.363991 0.196839 +v -111.261223 117.779091 0.175496 +v -118.007248 111.205269 -1.476738 +v -118.181023 111.212807 -1.309211 +v -118.204781 111.546188 -1.238346 +v -118.049149 111.539536 -1.355923 +v -118.016716 111.782684 -1.317997 +v -117.989693 -114.646675 -1.547499 +v -117.790543 111.574188 -7.303161 +v -117.770966 -114.941475 -7.303129 +v 117.790359 111.574188 -7.303161 +v 118.007660 111.359886 -1.467665 +v 118.132286 111.265457 -1.334945 +v 118.254005 111.239197 -1.298588 +v 118.232063 111.581589 -1.221117 +v 118.005493 111.781433 -1.364473 +v 118.103584 111.786919 -1.196514 +v -111.000137 117.364594 -7.303161 +v 114.463310 112.623199 1.347147 +v 113.255150 113.120026 1.181553 +v 111.999832 117.673386 0.196838 +v 116.048340 117.139496 0.195208 +v 112.058876 114.923340 0.576337 +v 117.780670 115.214111 0.480125 +v 111.997513 116.287979 0.213848 +v 117.019211 116.373627 0.214759 +v -114.575195 111.587540 -7.303161 +v -117.460663 -115.993248 -7.303128 +v -115.758873 -117.806511 -7.303132 +v -113.249184 111.944473 -7.303161 +v -114.517075 -118.196587 -7.303126 +v 114.858284 -118.155693 -7.303141 +v 116.282097 -117.474159 -7.303131 +v 117.766136 -114.965294 -7.303128 +v -111.015915 115.157600 -7.303161 +v 112.592667 112.356422 -7.303161 +v -114.694916 -118.398705 -9.303122 +v -115.851013 -117.975945 -9.303125 +v -116.843689 -117.281914 -9.303120 +v -117.710106 -115.971046 -9.303122 +v -117.987144 -114.826180 -9.303126 +v 114.251518 -118.645699 -20.031149 +v 115.756523 -118.271217 -20.049339 +v 116.342628 -117.943626 -20.019876 +v 116.575775 -117.499138 -9.303124 +v 117.525543 -116.771294 -20.015806 +v 117.941772 -115.949471 -20.020885 +v 117.971428 -115.014107 -9.303124 +v 119.724571 113.897469 -9.037808 +v 119.662277 113.886078 -9.194241 +v 119.511459 114.710922 -9.239288 +v 119.644234 114.548500 -9.063747 +v 119.414192 115.280792 -9.192769 +v 119.486115 114.208084 -9.299534 +v 119.197311 115.983597 -9.052954 +v 119.015770 116.188271 -9.214239 +v 118.532333 116.957756 -9.220334 +v 118.856323 116.623253 -9.047146 +v 118.794510 116.322868 -9.302421 +v 118.195679 117.463333 -9.121452 +v 117.678635 117.949295 -9.119539 +v 117.737122 117.715118 -9.270584 +v 116.968620 118.229507 -9.299248 +v 117.066910 118.400398 -9.133306 +v 116.097443 118.764076 -9.259561 +v 115.271828 119.074493 -9.228449 +v 116.195343 118.859680 -9.115148 +v 115.194016 118.961502 -9.302785 +v 115.201538 119.175812 -9.086913 +v 114.349159 119.179108 -9.248663 +v 114.290710 119.295265 -9.081708 +v -114.294373 119.220024 -9.209826 +v -119.466911 114.472115 -9.296118 +v -119.636940 113.925682 -9.223073 +v -119.577560 114.824707 -9.135611 +v -119.210777 115.722191 -9.231287 +v -119.294563 115.760719 -9.090499 +v -118.910774 116.103325 -9.299102 +v -118.567177 116.849304 -9.252007 +v -118.550682 117.050499 -9.098431 +v -117.764481 117.662971 -9.291236 +v -117.008949 118.288445 -9.260779 +v -117.070122 118.399796 -9.128294 +v -116.066216 118.735298 -9.291537 +v -114.900818 119.057205 -9.293817 +v -115.217964 119.163567 -9.123405 +v -119.559166 -109.946861 -9.286351 +v -118.149033 111.504288 -9.303160 +v -118.145325 111.787430 -1.157956 +v -118.146606 113.956833 -9.303160 +v -117.741333 115.440353 -9.303156 +v -114.458145 117.655617 0.196838 +v -114.559723 117.701035 -9.303161 +v -110.930252 117.723083 -9.303161 +v 118.103348 112.366615 -0.619473 +v 114.719315 117.636887 0.196839 +v 118.089966 113.938210 0.908857 +v 114.463875 117.705055 -9.303161 +v -114.583672 111.589951 -9.303160 +v 114.551651 -118.405678 -9.303126 +v -113.507935 111.842911 -9.303161 +v 115.694908 -118.059959 -9.303124 +v 117.487122 -116.446327 -9.303119 +v -112.188461 112.687088 -9.303161 +v -110.965225 117.364594 -9.303059 +v -117.790550 111.550911 -9.303102 +v -118.222229 -109.931847 -9.303194 +v 119.569618 -109.949059 -9.283138 +v 118.148880 111.504288 -9.303160 +v 111.483582 113.605560 -9.303161 +v 118.145561 113.947037 -9.303158 +v 111.027687 114.999153 -9.303161 +v 117.836464 115.200005 -9.303161 +v -116.775146 116.683022 -9.303156 +v 116.974548 116.507736 -9.303158 +v 110.930069 117.723083 -9.303161 +v 110.976608 117.364594 -9.302755 +v -115.703613 117.368263 -9.303161 +v 115.630531 117.410057 -9.303160 +v 110.999832 117.364594 -7.303161 +v 114.575012 111.587540 -9.303160 +v 113.586540 111.821754 -9.303161 +v 114.090614 111.640953 -7.303161 +v 112.513763 112.416969 -9.303161 +v 111.637863 113.373016 -7.303161 +v 111.041344 114.815544 -7.303161 +v 117.790367 111.539261 -9.303123 +v -111.307175 113.989441 -9.303161 +v -112.004547 112.895470 -7.303161 +v -111.013504 115.149124 -9.303161 +v -111.269112 114.081352 -7.303161 +v -19.787857 -128.898560 -0.003119 +v 3.791261 -129.875824 -0.003119 +v 24.018154 -130.925842 -0.003119 +v 37.218113 -129.875824 -0.003119 +v 51.827042 -130.344208 -0.003119 +v -52.515575 -129.622467 -0.003119 +v -46.827885 -128.586487 -0.003119 +v -0.865442 -128.717773 -0.003119 +v -1.687130 -128.287933 -0.003119 +v 1.172104 -128.586487 -0.003119 +v 2.048102 -128.011169 -0.003119 +v 47.134560 -128.717773 -0.003119 +v 46.008858 -128.065826 -0.003119 +v -50.091888 -127.982689 -0.003119 +v -50.710430 -126.978249 -0.003119 +v 50.693977 -127.037041 -0.003119 +v 52.580395 -129.496490 -0.003119 +v -45.077415 -125.886391 -0.003120 +v 45.305794 -124.814720 -0.003121 +v 2.563610 -124.499855 -0.003121 +v 50.563610 -124.499855 -0.003121 +v 45.867809 -123.939171 -0.003121 +v 0.495702 -123.054695 -0.003110 +v -19.825306 -117.420433 -0.003119 +v 56.905453 -119.375435 -0.003121 +v -57.001270 -119.208733 -0.003121 +v -58.083355 -118.235634 -0.003121 +v -59.166183 -117.938484 -0.003087 +v 58.770206 -117.975914 -0.003112 +v -113.385384 -117.880409 -0.003121 +v -115.146996 -117.195107 -0.003121 +v 117.065689 -114.993492 -0.003121 +v 117.465057 -113.645073 -0.003121 +v -117.448318 -113.873650 -0.003121 +v 15.711704 -114.453835 -0.003121 +v -117.465271 112.793373 -0.003155 +v 116.702469 114.825691 -0.003156 +v 115.335022 116.237984 -0.003156 +v -115.054428 116.386589 -0.003156 +v 113.426025 117.018105 -0.003156 +v -47.701908 -128.824799 -0.003119 +v -48.865448 -128.717773 -0.003119 +v -46.888092 -128.612213 -0.803119 +v -45.951878 -128.011139 -0.003119 +v -45.335190 -127.105263 -0.803119 +v -45.306046 -127.037086 -0.003119 +v -50.922802 -125.965294 -0.003120 +v -45.077415 -125.965340 -0.803119 +v -50.694225 -124.814751 -0.003121 +v -45.436405 -124.499840 -0.003121 +v -50.563824 -124.499855 -0.803120 +v -50.132195 -123.939171 -0.003121 +v -45.868023 -123.939171 -0.803120 +v -49.407265 -123.381599 -0.003121 +v -46.422649 -123.465111 -0.003121 +v -46.815056 -123.253899 -0.803120 +v -47.504299 -123.054695 -0.003110 +v -48.532536 -123.058678 -0.003108 +v 0.298098 -128.824799 -0.003119 +v -2.425719 -127.575844 -0.003119 +v -2.694181 -127.037056 -0.803119 +v 2.693967 -127.037056 -0.003119 +v -2.928645 -126.098259 -0.003120 +v 2.928431 -126.098259 -0.803119 +v 2.922588 -125.886406 -0.003120 +v -2.694218 -124.814735 -0.003121 +v 2.694004 -124.814735 -0.803120 +v -2.132176 -123.939156 -0.003121 +v -1.407283 -123.381615 -0.003121 +v 1.407069 -123.381615 -0.803120 +v 1.577361 -123.465111 -0.003121 +v -0.532529 -123.058678 -0.003109 +v -0.447260 -123.043343 -0.803118 +v 48.298092 -128.824799 -0.003119 +v 46.827671 -128.586487 -0.803119 +v 49.172123 -128.586487 -0.003119 +v 45.951664 -128.011139 -0.803119 +v 50.048126 -128.011139 -0.003119 +v 45.334976 -127.105263 -0.003119 +v 45.305832 -127.037086 -0.803119 +v 50.710217 -126.978249 -0.803119 +v 45.077202 -125.965340 -0.003120 +v 45.077202 -125.886391 -0.803120 +v 50.922588 -125.965294 -0.803119 +v 50.922588 -125.886421 -0.003120 +v 45.436192 -124.499840 -0.803120 +v 50.210964 -124.037865 -0.803120 +v 49.526669 -123.443565 -0.803120 +v 46.592731 -123.381599 -0.003121 +v 46.422436 -123.465111 -0.803120 +v 49.577354 -123.465111 -0.003121 +v 48.495705 -123.054695 -0.003110 +v 47.467472 -123.058678 -0.003109 +v 50.543003 -130.901367 -0.803119 +v 50.624214 -130.885345 -0.003119 +v 51.645302 -130.459686 -0.803119 +v 52.515362 -129.622467 -0.803119 +v 57.573318 -118.597160 -0.003121 +v 113.488632 -117.862587 -0.003121 +v 113.385170 -117.880409 -0.803121 +v 115.054192 -117.238304 -0.003121 +v 115.146767 -117.195122 -0.803121 +v 116.245628 -116.272743 -0.003121 +v 116.588020 -115.869102 -0.803121 +v 117.461884 112.972755 -0.003155 +v 116.769157 114.721024 -0.803156 +v -117.448318 113.021957 -0.803156 +v -117.065941 114.141716 -0.003156 +v -116.245857 115.421028 -0.003156 +v -115.146980 116.343414 -0.803156 +v -113.398720 117.036133 -0.003123 +v -113.385368 117.028725 -0.803157 +v -113.488846 -117.862587 -0.803121 +v -116.588234 -115.869102 -0.003121 +v -58.770420 -117.975914 -0.803121 +v -56.905666 -119.375435 -0.803121 +v -57.573532 -118.597160 -0.803121 +v -50.521194 -130.907288 -0.003119 +v -50.558754 -130.904358 -0.803119 +v -51.645515 -130.459686 -0.003119 +v -0.940402 -128.693420 -0.803119 +v -2.048316 -128.011169 -0.803119 +v 50.091675 -127.982689 -0.803119 +v 48.865234 -128.717773 -0.803119 +v 47.701694 -128.824799 -0.803119 +v -48.940411 -128.693420 -0.803119 +v -51.827255 -130.344208 -0.803119 +v -50.048340 -128.011139 -0.803119 +v -52.580608 -129.496490 -0.803119 +v -50.694191 -127.037041 -0.803119 +v -1.577575 -123.465111 -0.803120 +v -2.563823 -124.499855 -0.803120 +v -2.922801 -125.886406 -0.803120 +v -47.775795 -128.831451 -0.803119 +v 0.224211 -128.831451 -0.803119 +v 57.970268 -118.329140 -0.803121 +v 1.350205 -128.518188 -0.803119 +v -46.009071 -128.065826 -0.803119 +v 2.425506 -127.575844 -0.803119 +v -50.922802 -125.886421 -0.803120 +v 57.069794 -119.094872 -0.803121 +v -45.306007 -124.814720 -0.803120 +v 50.694012 -124.814751 -0.803120 +v 2.131962 -123.939156 -0.803120 +v -49.577568 -123.465111 -0.803120 +v 47.384830 -123.084160 -0.803121 +v 0.574773 -123.069633 -0.803121 +v -48.227192 -123.003090 -0.803126 +v 48.417694 -123.031471 -0.803119 +v -116.588211 115.017433 -0.803156 +v -117.444061 -113.851982 -0.803121 +v 58.914619 -117.961693 -0.803121 +v -115.443382 -117.013954 -0.803121 +v -116.769394 -115.572701 -0.803121 +v 117.448105 -113.873634 -0.803121 +v 117.454475 112.959404 -0.803156 +v 113.447708 117.022362 -0.803157 +v 115.443161 116.162262 -0.803156 +v -62.599171 -132.473022 -5.251460 +v -61.084202 -134.336731 -5.250694 +v -61.927765 -133.794037 -5.234055 +v -61.413071 -134.433472 -5.130073 +v -62.810913 -132.268616 -5.188101 +v -62.512043 -133.304321 -5.126961 +v -62.989403 -132.001984 -5.045164 +v -62.259815 -133.757385 -5.076126 +v -60.728928 -134.793945 -5.079775 +v -62.990475 -132.486694 -4.886766 +v -62.778763 -132.972198 -4.999060 +v -61.837406 -134.318054 -4.906021 +v -61.408154 -134.580536 -4.947586 +v -62.563820 -133.510559 -4.820682 +v -63.075256 -131.933716 -4.812197 +v -61.153618 -134.754578 -4.816848 +v -62.826405 -133.007965 -4.781903 +v -60.497292 -134.973419 -4.813115 +v -62.212803 -133.969818 -4.837227 +v 61.415157 -134.195282 -5.245720 +v 62.624371 -132.258148 -5.251283 +v 60.288685 -134.614532 -5.249709 +v 62.208233 -133.283417 -5.251491 +v 62.614449 -132.991364 -5.163911 +v 60.659607 -134.705414 -5.176619 +v 61.223797 -134.551392 -5.109436 +v 62.247849 -133.613892 -5.169321 +v 62.920506 -132.185699 -5.109753 +v 59.873363 -134.850006 -5.165746 +v 60.723160 -134.835541 -5.028444 +v 61.807644 -134.237518 -5.048457 +v 62.826767 -132.993286 -4.891037 +v 60.053406 -134.988342 -4.999694 +v 62.561386 -133.507294 -4.890443 +v 62.998104 -132.468567 -4.833053 +v 62.198444 -133.977264 -4.905087 +v 63.034019 -131.925964 -4.963954 +v 60.079563 -135.046509 -4.816732 +v 61.241802 -134.702667 -4.881850 +v 60.743134 -134.907166 -4.771093 +v 61.768909 -134.375732 -4.839019 +v 62.789181 -132.189545 -5.201126 +v 62.370220 -125.859978 -5.251936 +v 62.670925 -126.289726 -5.247613 +v 61.945690 -125.575813 -5.244751 +v 62.866707 -126.347862 -5.161251 +v 62.220135 -125.525993 -5.184903 +v 62.585991 -125.752266 -5.161252 +v 62.800095 -125.992180 -5.126012 +v 62.315517 -125.370338 -4.993566 +v 63.000904 -126.354546 -5.021897 +v 62.990021 -126.096260 -4.913997 +v -62.751270 -126.365364 -5.224673 +v -62.529827 -126.016365 -5.251658 +v -62.734982 -125.960701 -5.159585 +v -62.330677 -125.644310 -5.211166 +v -61.945305 -125.508492 -5.224621 +v -62.955479 -126.321007 -5.082891 +v -62.338913 -125.444328 -5.074618 +v -62.796169 -125.831459 -5.027390 +v -62.702877 -125.622704 -4.914413 +v -61.934273 -125.222878 -4.911737 +v -61.934303 -132.024994 -5.253119 +v -61.042862 -133.521423 -5.253115 +v 60.065979 -133.906647 -5.253119 +v 60.744240 -133.695374 -5.253118 +v -60.404114 -134.616089 -5.248145 +v -59.991501 -134.851959 -5.162782 +v -60.069202 -134.996796 -4.988297 +v -59.920784 -135.053375 -4.802398 +v 63.076515 -131.911987 -4.786809 +v 60.782104 -132.160370 -0.003105 +v 60.152294 -132.766449 -0.003109 +v 62.464901 -125.393898 -4.788413 +v 62.780857 -125.684776 -4.863092 +v 63.076771 -126.403130 -4.801378 +v -56.921116 -121.250648 -0.003117 +v 56.358704 -121.103615 -0.003121 +v 56.511997 -121.111382 -0.003125 +v 56.891109 -121.232780 -0.003117 +v 57.230110 -121.522545 -0.003116 +v 57.452896 -121.951912 -0.003098 +v -60.856499 -125.403572 -0.003121 +v -60.479137 -132.541504 -0.003118 +v -60.801395 -132.081604 -0.003112 +v -60.906845 -131.933136 -3.503122 +v -60.034172 -132.792969 -0.003116 +v -60.080845 -132.863159 -3.503115 +v 60.905151 -131.947632 -3.503123 +v 61.873306 -132.016693 -3.503119 +v 61.939976 -125.324593 -5.078493 +v 61.884880 -125.256828 -3.503115 +v 60.244820 -133.827454 -3.503111 +v 61.558098 -133.029541 -5.253103 +v 61.928558 -132.066925 -5.253119 +v -60.166397 -133.899200 -5.253116 +v -61.680592 -132.806885 -5.253115 +v -61.034702 -133.443542 -3.503118 +v -60.235451 -133.825195 -3.503114 +v -63.074604 -126.395546 -4.840703 +v -62.986717 -126.026619 -4.830525 +v -62.774971 -125.663261 -4.769261 +v -62.463909 -125.401466 -4.811262 +v 62.800034 -126.383171 1.490654 +v 62.703907 -126.072609 1.547446 +v 62.749302 -126.346748 1.645581 +v 62.298828 -125.628532 1.701210 +v 62.536472 -125.831993 1.639090 +v 62.567268 -125.968376 1.764726 +v 62.618229 -126.246452 1.804726 +v 62.286373 -125.711571 1.904069 +v 62.129612 -125.606773 1.946899 +v 62.136662 -125.773643 2.103464 +v 62.279903 -125.908043 2.043833 +v 62.794617 -131.938873 1.538574 +v 62.689457 -132.023804 1.741514 +v 60.917374 -125.250771 -3.503120 +v 60.856285 -125.403572 -0.003121 +v 61.933613 -125.199455 -4.787917 +v 62.984138 -126.015495 -4.757121 +v 61.945004 -125.501060 1.856449 +v 57.392586 -123.016838 1.685595 +v 57.193584 -122.988884 1.962860 +v 57.511974 -123.939461 2.314683 +v 57.493599 -123.607201 1.945323 +v 57.391308 -123.484612 2.067196 +v 57.259708 -123.758430 2.354791 +v 57.404518 -122.118324 1.297885 +v 57.306881 -122.966576 1.834591 +v 56.966507 -121.816643 1.548199 +v 56.957523 -121.337242 1.073783 +v 57.363857 -121.870293 1.195201 +v 56.477127 -121.158073 1.044802 +v 56.717522 -121.224510 1.107338 +v 57.168652 -121.534660 1.138092 +v 56.953354 -121.410866 1.244395 +v 56.472786 -121.261742 1.257490 +v 56.692745 -121.415352 1.368236 +v 57.250168 -121.753746 1.326678 +v 57.033508 -121.567680 1.369395 +v 57.310726 -122.016304 1.433183 +v 57.156296 -121.910179 1.528700 +v -56.659985 -121.194649 1.047980 +v -57.255051 -121.642708 1.107336 +v -56.413494 -121.159889 1.071847 +v -57.134811 -121.496941 1.137333 +v -56.862743 -121.289070 1.116903 +v -56.507332 -121.250008 1.234633 +v -57.400719 -121.999382 1.222879 +v -56.691826 -121.401741 1.362798 +v -57.229542 -121.722527 1.328497 +v -57.009281 -121.478264 1.286602 +v -57.152767 -121.922935 1.536778 +v -57.319134 -122.001945 1.417109 +v -57.399544 -122.942741 1.602992 +v -57.374317 -123.123329 1.815871 +v -57.299934 -123.022255 1.877613 +v -57.453014 -123.478798 1.942603 +v -57.565842 -123.836189 2.111758 +v -57.057690 -122.923439 2.010936 +v -57.276470 -123.585793 2.252312 +v -57.846867 -124.186501 -0.003128 +v -57.464516 -122.054543 -0.003118 +v -57.306164 -121.618111 -0.003110 +v -56.508854 -121.109398 -0.003118 +v 56.349892 -121.103584 -0.003121 +v -61.868141 -132.057434 -3.503119 +v -60.917587 -125.250771 -3.503120 +v -61.598648 -132.825684 -3.503115 +v -60.668365 -132.474945 -3.503114 +v 61.154076 -133.355255 -3.503115 +v 60.154240 -132.851044 -3.503107 +v 61.664593 -132.692596 -3.503118 +v 60.704475 -132.413055 -3.503118 +v -62.197918 -125.267876 -4.817040 +v -61.884895 -125.255394 -3.503111 +v -62.793270 -126.402412 1.554587 +v -62.693062 -126.054649 1.581864 +v -62.502602 -125.801277 1.678457 +v -62.285252 -125.627647 1.733960 +v -61.960251 -125.497597 1.817330 +v -62.477978 -125.951790 1.870741 +v -62.224606 -125.667854 1.926579 +v -61.956051 -125.570183 2.031543 +v -62.143570 -125.765892 2.094579 +v -61.258629 -134.395935 1.325654 +v -62.798374 -131.928375 1.521968 +v -62.594208 -132.859650 1.495123 +v -61.759399 -134.032104 1.440136 +v -62.129131 -133.645874 1.482802 +v -62.401806 -133.237030 1.521620 +v -62.700214 -132.549988 1.519871 +v -62.735481 -132.067444 1.667910 +v -62.189346 -133.452209 1.662267 +v -62.582253 -132.404694 1.786077 +v -61.474712 -134.129150 1.612616 +v -62.491879 -132.935883 1.677993 +v -61.841415 -133.781830 1.703686 +v -62.645245 -131.868195 1.787635 +v -62.408833 -132.779968 1.826476 +v 59.961536 -134.791626 1.116880 +v -60.000526 -134.782745 1.159646 +v -60.600849 -134.680969 1.202195 +v 60.387451 -134.725067 1.196405 +v 61.665260 -134.115875 1.392861 +v 61.213604 -134.407288 1.393798 +v 62.325844 -133.383606 1.480781 +v 60.853313 -134.575409 1.324706 +v 60.165642 -134.694550 1.325164 +v 62.019306 -133.767242 1.491740 +v 61.677105 -134.037201 1.552093 +v 62.038361 -133.672363 1.620329 +v 60.894684 -134.425354 1.536099 +v 62.562656 -132.892639 1.580479 +v 62.353493 -133.241211 1.634542 +v 62.712376 -132.435364 1.578745 +v 61.780006 -133.767822 1.741366 +v 62.226082 -133.239563 1.783118 +v 61.163151 -125.513268 2.374758 +v 61.327946 -125.610146 2.510991 +v 61.353367 -125.744011 2.631798 +v 61.068619 -125.578758 2.560854 +v 61.399044 -125.933678 2.679246 +v 61.065407 -125.724358 2.706926 +v 61.221794 -125.907356 2.749138 +v 61.008144 -125.899498 2.788635 +v 57.488174 -123.180473 -0.003104 +v 57.732376 -123.983025 -0.003130 +v 58.291897 -124.727455 -0.003129 +v 59.049015 -125.214394 -0.003126 +v 59.788223 -125.395958 -0.003117 +v 57.706276 -124.131767 2.219944 +v 57.950787 -124.501122 2.338030 +v 57.914490 -124.534752 2.487782 +v 57.693027 -124.441154 2.602668 +v 57.515778 -124.420219 2.656702 +v 58.334568 -125.148338 2.700105 +v 57.721241 -124.731911 2.741927 +v -56.918106 -121.638741 1.469399 +v 57.019352 -123.174065 2.126461 +v -59.528442 -125.386757 -0.003144 +v -58.455891 -124.867180 -0.003128 +v -57.502419 -123.306114 -0.003112 +v -57.700428 -124.110313 2.176949 +v -57.861614 -124.392738 2.344754 +v -57.569347 -124.026146 2.336464 +v -57.470795 -124.331123 2.622430 +v -57.464329 -124.115913 2.500555 +v -57.685360 -124.645195 2.718105 +v -61.055187 -125.513741 2.403326 +v -61.292290 -125.578484 2.488581 +v -61.316193 -125.723991 2.637859 +v -61.027122 -125.700935 2.695490 +v -61.111855 -125.905556 2.780607 +v -62.274925 -125.955360 2.055063 +v -62.660831 -126.278358 1.766809 +v -60.482677 -134.619476 1.401215 +v -61.051006 -134.412262 1.502305 +v -62.258228 -133.210266 1.770258 +v 61.414219 -134.140808 1.625896 +v 60.481274 -132.802246 2.697419 +v 62.529896 -132.575073 1.794140 +v 61.338074 -131.423889 2.706224 +v 59.341866 -125.412575 2.339031 +v 58.318672 -124.883781 2.398056 +v 59.836704 -125.504387 2.399879 +v 58.807377 -125.207878 2.403461 +v 58.302227 -124.968651 2.580071 +v 59.216427 -125.430504 2.518778 +v 58.777634 -125.433388 2.715325 +v 59.687065 -125.615959 2.632827 +v 59.777348 -125.755959 2.740828 +v 57.965588 -125.098686 2.791265 +v 58.595875 -125.590904 2.793991 +v -58.810997 -125.209953 2.389282 +v -59.336941 -125.410393 2.374567 +v -58.297619 -124.870171 2.405324 +v -58.371368 -125.031105 2.582883 +v -59.819504 -125.575706 2.567843 +v -58.871983 -125.325310 2.583977 +v -58.278862 -125.059746 2.673068 +v -59.288353 -125.562691 2.679758 +v -58.835030 -125.525261 2.748737 +v -57.914692 -125.049919 2.788238 +v -59.830070 -125.501411 2.377535 +v -61.069519 -125.588356 2.570240 +v -59.843292 -125.739754 2.731404 +v -61.413918 -125.913353 2.668051 +v -60.618896 -132.694733 2.695554 +v -59.090858 -133.223785 2.709276 +v -61.353123 -131.464661 2.694462 +v -60.911930 -132.203125 2.753335 +v -61.067871 -131.358948 2.789939 +v -60.085434 -132.936859 2.734128 +v -60.251774 -132.551514 2.796069 +v -59.288734 -133.380859 2.613300 +v -59.569672 -132.938263 2.786367 +v 59.147224 -133.413300 2.591545 +v 59.013474 -133.174103 2.730376 +v 59.756893 -133.124756 2.701907 +v 60.982693 -132.178040 2.731928 +v 59.679306 -132.834839 2.794284 +v 60.599369 -132.344818 2.791033 +v 61.056393 -131.270050 2.790982 +v -59.207817 -125.861320 2.793944 +v 59.561317 -125.881966 2.792318 +v 1.009265 -125.511131 -5.253121 +v 60.064846 -132.657715 -0.503117 +v 60.698875 -131.945190 -0.503120 +v 60.756817 -131.918671 -3.503120 +v -59.911755 -132.684570 -0.503120 +v -60.690269 -131.999237 -0.503119 +v -60.730717 -132.078217 -3.503112 +v -60.369400 -132.484894 -0.503116 +v 56.647533 -120.970055 -3.535595 +v 60.767353 -125.250771 -3.503121 +v 60.714985 -125.381752 -0.503123 +v -61.373013 -132.894287 -3.503116 +v -60.727161 -133.470673 -3.503116 +v -60.160641 -132.692505 -3.503105 +v -60.036026 -133.696899 -3.503120 +v 60.210030 -133.679718 -3.503113 +v 60.015305 -132.722931 -3.503118 +v 60.531811 -132.400574 -3.503117 +v -60.767567 -125.250771 -3.503121 +v -60.715199 -125.381752 -0.503123 +v -59.454121 -125.341301 -0.503142 +v -57.926945 -124.260109 -0.503125 +v -57.513344 -123.327522 -0.503141 +v -57.246933 -121.507729 -0.503120 +v 57.260761 -121.525917 -0.503121 +v 57.473972 -121.955177 -0.503115 +v 57.503975 -123.167168 -0.503128 +v 60.502861 -132.341034 -0.503120 +v 59.679684 -125.363701 -0.503126 +v 57.475719 -121.514015 -4.641304 +v 57.136456 -121.179283 -4.167922 +v 56.765976 -121.130943 -0.503090 +v 57.699539 -122.447563 -5.196053 +v -57.470043 -121.940819 -0.503114 +v -57.679825 -122.027122 -5.023052 +v -57.556648 -121.649193 -4.769504 +v -57.179962 -121.196938 -4.222804 +v -56.732906 -121.118340 -0.503094 +v -56.598572 -120.966499 -3.480691 +v 57.828594 -124.128883 -0.503133 +v 58.683777 -125.019493 -0.503143 +v 58.740093 -124.806511 -5.253140 +v 59.712776 -125.162056 -5.253126 +v 61.795921 -125.174385 -5.253121 +v 61.734814 -125.250771 -3.503121 +v 61.194118 -133.130707 -3.503105 +v 61.322250 -133.082642 -5.253096 +v 61.701687 -132.176971 -3.503115 +v -61.714481 -132.102081 -3.503117 +v -60.804138 -133.497345 -5.253114 +v -61.796135 -125.174385 -5.253121 +v -61.735027 -125.250771 -3.503121 +v -59.739876 -125.163811 -5.253124 +v -58.453651 -124.837196 -0.503129 +v -58.178078 -124.286705 -5.253142 +v 57.707520 -123.079460 -5.258509 +v -57.699478 -122.533836 -5.220398 +v 57.668495 -121.954689 -4.985284 +v -61.781857 -132.020447 -5.253120 +v -61.509552 -132.813416 -5.253111 +v -60.052338 -133.759033 -5.253120 +v -58.980675 -124.929131 -5.253127 +v -57.740059 -123.317055 -5.254305 +v 57.977913 -123.968819 -5.253132 +v 61.774746 -132.113647 -5.253115 +v 60.301826 -133.723877 -5.253114 +vn 0.0011 0.9998 -0.0195 +vn -0.0005 0.9998 -0.0192 +vn -0.0000 -0.9338 0.3577 +vn -0.0000 -0.9424 0.3346 +vn -0.0000 -0.5642 0.8256 +vn -0.0000 -0.5717 0.8205 +vn 0.0001 -0.9620 -0.2732 +vn -0.0001 -0.8503 -0.5264 +vn 0.0001 -0.5224 -0.8527 +vn -0.0000 -0.3458 -0.9383 +vn -0.0000 -0.1532 0.9882 +vn 0.0078 -0.2202 0.9754 +vn -0.0073 -0.3460 0.9382 +vn -0.0006 -0.3979 0.9174 +vn -0.3645 -0.6413 0.6752 +vn -0.0053 -0.5488 0.8359 +vn -0.0084 -0.5629 0.8265 +vn -0.0005 -0.7139 0.7002 +vn 0.0085 -0.6907 0.7231 +vn -0.0162 -0.8255 0.5642 +vn -0.0091 -0.9156 0.4019 +vn 0.0076 -0.9422 0.3349 +vn -0.0066 -0.9776 0.2106 +vn 0.0958 -0.9316 0.3506 +vn 0.1154 -0.6912 0.7134 +vn 0.2149 -0.8312 0.5127 +vn 0.1091 -0.7012 0.7045 +vn 0.2889 -0.6996 0.6535 +vn 0.0949 -0.3936 0.9144 +vn 0.3036 -0.7391 0.6013 +vn 0.2684 -0.6956 0.6664 +vn 0.4147 -0.7584 0.5028 +vn 0.1680 -0.2895 0.9423 +vn 0.4170 -0.6584 0.6266 +vn 0.1049 -0.1606 0.9814 +vn 0.5516 -0.6961 0.4596 +vn 0.5491 -0.6046 0.5770 +vn 0.4744 -0.4821 0.7366 +vn 0.5643 -0.4066 0.7185 +vn 0.4757 -0.3786 0.7939 +vn 0.6692 -0.3409 0.6603 +vn 0.6102 -0.3322 0.7192 +vn 0.6927 -0.2056 0.6913 +vn 0.6610 -0.2074 0.7211 +vn 0.1360 -0.0556 0.9891 +vn 0.8620 -0.0958 0.4977 +vn 0.6874 -0.1243 0.7155 +vn 0.0708 -0.9247 -0.3741 +vn 0.1578 -0.9717 -0.1756 +vn 0.2083 -0.8894 -0.4070 +vn 0.0423 -0.6253 -0.7792 +vn 0.1541 -0.5957 -0.7883 +vn 0.1566 -0.4824 -0.8618 +vn 0.3850 -0.9117 -0.1436 +vn 0.3892 -0.8670 -0.3111 +vn 0.1331 -0.3729 -0.9183 +vn 0.5241 -0.7481 -0.4070 +vn 0.4714 -0.7226 -0.5056 +vn 0.2835 -0.4475 -0.8482 +vn 0.6687 -0.6878 -0.2823 +vn 0.6272 -0.6710 -0.3955 +vn 0.4842 -0.4613 -0.7435 +vn 0.1742 -0.1991 -0.9644 +vn 0.0821 -0.0824 -0.9932 +vn 0.7930 -0.5524 -0.2570 +vn 0.7950 -0.5559 -0.2428 +vn 0.6001 -0.4374 -0.6697 +vn 0.4782 -0.3026 -0.8245 +vn 0.8187 -0.3868 -0.4244 +vn 0.5309 -0.2437 -0.8116 +vn 0.9315 -0.3529 -0.0883 +vn 0.4453 -0.1705 -0.8790 +vn 0.2252 -0.0680 -0.9719 +vn 0.8696 -0.2079 -0.4479 +vn 0.8947 -0.1742 -0.4113 +vn 0.7213 -0.0451 -0.6912 +vn 0.7272 0.0027 -0.6864 +vn 0.7137 0.0159 -0.7003 +vn 0.5219 0.0842 -0.8488 +vn 0.0060 -0.1707 0.9853 +vn -0.0009 -0.2080 0.9781 +vn 0.0061 -0.4126 0.9109 +vn 0.0261 -0.3218 0.9464 +vn 0.0131 -0.6098 0.7924 +vn -0.0111 -0.5147 0.8573 +vn 0.0124 -0.6924 0.7214 +vn -0.0015 -0.7947 0.6070 +vn -0.0098 -0.8165 0.5772 +vn 0.0148 -0.8864 0.4628 +vn 0.0220 -0.9498 0.3119 +vn -0.0000 -0.9994 -0.0345 +vn -0.0000 -0.9994 -0.0346 +vn -0.0919 -0.9201 0.3807 +vn -0.2204 -0.8058 0.5497 +vn -0.1075 -0.7003 0.7057 +vn -0.0743 -0.5725 0.8165 +vn -0.2528 -0.7357 0.6284 +vn -0.0624 -0.2711 0.9605 +vn -0.3415 -0.8069 0.4819 +vn -0.2942 -0.7493 0.5933 +vn -0.0245 -0.0652 0.9976 +vn -0.2059 -0.3704 0.9058 +vn -0.5128 -0.7678 0.3841 +vn -0.4591 -0.7211 0.5189 +vn -0.3263 -0.5083 0.7970 +vn -0.6371 -0.7123 0.2944 +vn -0.5559 -0.5182 0.6499 +vn -0.3806 -0.3623 0.8508 +vn -0.3135 -0.2866 0.9053 +vn -0.7343 -0.5649 0.3763 +vn -0.8139 -0.4219 0.3994 +vn -0.7226 -0.4023 0.5621 +vn -0.4807 -0.2489 0.8408 +vn -0.4394 -0.2319 0.8678 +vn -0.8771 -0.3880 0.2833 +vn -0.9206 -0.2679 0.2843 +vn -0.8623 -0.2831 0.4198 +vn -0.6281 -0.2093 0.7494 +vn -0.4530 -0.0998 0.8859 +vn -0.9446 -0.1476 0.2931 +vn -0.8752 -0.1082 0.4715 +vn -0.5968 -0.0828 0.7981 +vn -0.1512 -0.9611 -0.2311 +vn -0.0388 -0.8272 -0.5606 +vn -0.2147 -0.8745 -0.4349 +vn -0.0620 -0.5055 -0.8606 +vn -0.0821 -0.4719 -0.8778 +vn -0.0800 -0.4028 -0.9118 +vn -0.3162 -0.8917 -0.3238 +vn -0.3416 -0.8172 -0.4642 +vn -0.2913 -0.6068 -0.7396 +vn -0.1911 -0.4374 -0.8787 +vn -0.5348 -0.8449 -0.0142 +vn -0.5408 -0.7777 -0.3203 +vn -0.3976 -0.6074 -0.6877 +vn -0.3442 -0.4374 -0.8308 +vn -0.6604 -0.6883 -0.3002 +vn -0.6535 -0.6609 -0.3689 +vn -0.5529 -0.5653 -0.6122 +vn -0.1624 -0.1739 -0.9713 +vn -0.3981 -0.3304 -0.8558 +vn -0.8009 -0.5817 -0.1420 +vn -0.7642 -0.5838 -0.2742 +vn -0.5236 -0.3425 -0.7801 +vn -0.8284 -0.4716 -0.3024 +vn -0.5211 -0.2960 -0.8006 +vn -0.4938 -0.2898 -0.8199 +vn -0.9031 -0.4250 -0.0616 +vn -0.8548 -0.3194 -0.4091 +vn -0.6488 -0.2521 -0.7180 +vn -0.9773 -0.1921 -0.0897 +vn -0.8956 -0.1340 -0.4242 +vn -0.4772 -0.1109 -0.8718 +vn -0.3356 -0.0617 -0.9400 +vn -0.8616 -0.0348 -0.5064 +vn -0.5361 0.0356 -0.8434 +vn -0.0000 0.0006 1.0000 +vn -0.0000 -0.0032 1.0000 +vn 0.0007 -0.0033 1.0000 +vn -0.0001 0.0006 1.0000 +vn 0.0025 -0.0013 1.0000 +vn 0.0001 -0.0006 1.0000 +vn -0.0006 -0.0011 1.0000 +vn -0.0006 -0.0010 1.0000 +vn -0.0009 -0.0008 1.0000 +vn 0.0004 -0.0009 1.0000 +vn 0.0016 0.0008 1.0000 +vn -0.0020 0.0021 1.0000 +vn 0.0023 0.0054 1.0000 +vn -0.0026 0.0003 1.0000 +vn -0.0022 -0.0030 1.0000 +vn -0.0028 0.0008 1.0000 +vn -0.0033 0.0023 1.0000 +vn 0.0001 0.0005 1.0000 +vn 0.0001 -0.0000 1.0000 +vn 0.0047 -0.0000 1.0000 +vn -0.0050 -0.0001 1.0000 +vn 0.0058 -0.0000 1.0000 +vn 0.0285 0.0023 0.9996 +vn -0.0010 -0.0001 1.0000 +vn 0.0011 -0.0103 0.9999 +vn 0.6890 -0.0018 0.7248 +vn 0.6845 0.0003 0.7290 +vn 0.5761 0.0027 0.8174 +vn 0.5828 0.0003 0.8126 +vn 0.4090 0.0016 0.9125 +vn 0.4275 -0.0042 0.9040 +vn 0.2433 -0.0012 0.9700 +vn 0.2408 -0.0002 0.9706 +vn 0.1272 -0.0059 0.9919 +vn 0.2005 0.0091 0.9797 +vn 0.3421 -0.0121 0.9396 +vn 0.4162 0.0076 0.9092 +vn 0.5514 -0.0057 0.8343 +vn 0.5634 -0.0016 0.8262 +vn -0.0000 0.0055 1.0000 +vn -0.0000 0.0049 1.0000 +vn -0.2200 -0.0048 0.9755 +vn -0.2733 0.0118 0.9619 +vn -0.3730 -0.0054 0.9278 +vn -0.4798 -0.0099 0.8773 +vn -0.5283 0.0126 0.8489 +vn -0.6176 0.0091 0.7864 +vn -0.6844 -0.0016 0.7291 +vn -0.6669 -0.0075 0.7451 +vn -0.5641 0.0102 0.8257 +vn -0.4836 -0.0000 0.8753 +vn -0.4792 0.0013 0.8777 +vn -0.2604 -0.0021 0.9655 +vn -0.2443 0.0054 0.9697 +vn -0.0330 0.0021 0.9995 +vn 0.0021 -0.0141 0.9999 +vn -0.0018 0.0084 1.0000 +vn 0.0775 0.3487 0.9340 +vn 0.1089 0.8139 0.5707 +vn 0.1448 0.8727 0.4662 +vn 0.3698 0.9251 -0.0860 +vn 0.2511 0.6286 0.7361 +vn 0.2579 0.8556 0.4489 +vn 0.2964 0.6882 0.6622 +vn 0.2453 0.4641 0.8511 +vn 0.4169 0.7980 0.4351 +vn 0.4157 0.7594 0.5004 +vn 0.2832 0.3605 0.8887 +vn 0.5622 0.7462 0.3565 +vn 0.3839 0.4215 0.8216 +vn 0.5460 0.6014 0.5833 +vn 0.2964 0.2536 0.9208 +vn 0.6857 0.6106 0.3963 +vn 0.6468 0.4970 0.5785 +vn 0.4321 0.2564 0.8646 +vn 0.3974 0.2236 0.8900 +vn 0.8241 0.4490 0.3454 +vn 0.7604 0.3309 0.5588 +vn 0.5206 0.1612 0.8384 +vn 0.6758 0.2406 0.6967 +vn 0.9214 0.2375 0.3075 +vn 0.4942 -0.0313 0.8688 +vn 0.8120 0.1515 0.5636 +vn -0.0000 0.5184 0.8552 +vn -0.0001 0.3723 0.9281 +vn -0.0000 0.6366 0.7712 +vn -0.0001 0.8935 0.4491 +vn -0.0000 0.9133 0.4073 +vn -0.0264 0.2468 0.9687 +vn -0.2340 0.8251 0.5142 +vn -0.0995 0.6283 0.7716 +vn -0.2034 0.8760 0.4374 +vn -0.2393 0.5836 0.7760 +vn -0.2888 0.7246 0.6258 +vn -0.2200 0.4680 0.8559 +vn -0.4957 0.8347 0.2399 +vn -0.3357 0.4256 0.8404 +vn -0.4035 0.4826 0.7773 +vn -0.5721 0.7510 0.3297 +vn -0.3549 0.2831 0.8910 +vn -0.6049 0.5828 0.5426 +vn -0.7032 0.5951 0.3891 +vn -0.4868 0.3064 0.8180 +vn -0.5792 0.4034 0.7084 +vn -0.7671 0.4565 0.4508 +vn -0.7064 0.2332 0.6683 +vn -0.6074 0.2636 0.7494 +vn -0.7357 0.2735 0.6196 +vn -0.6660 0.1595 -0.7287 +vn -0.8241 0.1313 0.5510 +vn -0.8023 0.1390 0.5805 +vn -0.7018 -0.0990 0.7054 +vn -0.0016 0.9998 -0.0214 +vn -0.0115 0.9997 -0.0197 +vn 0.0281 0.0537 -0.9982 +vn -0.0064 0.1815 -0.9834 +vn -0.0101 0.1837 -0.9829 +vn -0.0185 0.3568 -0.9340 +vn 0.0213 0.3294 -0.9440 +vn -0.0415 0.4346 -0.8997 +vn 0.0188 0.5181 -0.8551 +vn -0.0389 0.5971 -0.8012 +vn 0.0103 0.6416 -0.7670 +vn -0.0063 0.6606 -0.7507 +vn 0.0074 0.7646 -0.6445 +vn -0.0036 0.7729 -0.6345 +vn 0.0202 0.8273 -0.5615 +vn -0.0312 0.8721 -0.4884 +vn 0.0252 0.9173 -0.3974 +vn -0.0124 0.9429 -0.3328 +vn 0.0180 0.9648 -0.2622 +vn -0.0159 0.9887 -0.1490 +vn -0.0033 0.9868 -0.1619 +vn -0.0000 0.0064 -1.0000 +vn -0.0000 0.0033 -1.0000 +vn 0.0011 0.0066 -1.0000 +vn 0.0012 0.0063 -1.0000 +vn -0.0032 0.0022 -1.0000 +vn -0.0050 0.0028 -1.0000 +vn -0.0029 0.0231 -0.9997 +vn 0.0022 -0.0031 -1.0000 +vn 0.0007 -0.0037 -1.0000 +vn -0.0184 0.0148 -0.9997 +vn -0.0111 0.0118 -0.9999 +vn 0.0015 0.0029 -1.0000 +vn -0.0065 0.0027 -1.0000 +vn 0.0003 0.0033 -1.0000 +vn -0.0017 -0.0047 -1.0000 +vn -0.0028 0.0048 -1.0000 +vn -0.0156 -0.0001 -0.9999 +vn -0.0087 0.0092 -0.9999 +vn 0.0105 0.0729 -0.9973 +vn -0.0269 0.2054 -0.9783 +vn 0.0100 0.1795 -0.9837 +vn 0.0033 0.3422 -0.9396 +vn -0.0124 0.3571 -0.9340 +vn 0.0095 0.4648 -0.8853 +vn -0.0077 0.4889 -0.8723 +vn 0.0282 0.5856 -0.8101 +vn 0.0162 0.5968 -0.8022 +vn 0.0185 0.7026 -0.7114 +vn -0.0100 0.7246 -0.6891 +vn 0.0156 0.7855 -0.6186 +vn -0.0309 0.8305 -0.5561 +vn 0.0165 0.8764 -0.4813 +vn -0.0226 0.9116 -0.4105 +vn 0.0233 0.9442 -0.3286 +vn -0.0196 0.9681 -0.2499 +vn 0.0038 0.9883 -0.1525 +vn 0.0093 0.9869 -0.1608 +vn 0.5474 -0.1143 0.8290 +vn 0.8924 -0.1218 0.4345 +vn 0.4523 -0.2117 0.8664 +vn 0.5162 -0.2743 0.8114 +vn 0.8617 -0.1865 0.4719 +vn 0.3411 -0.4529 0.8237 +vn 0.9344 -0.2007 0.2943 +vn 0.7107 -0.3028 0.6350 +vn 0.4783 -0.5042 0.7191 +vn 0.2336 -0.7036 0.6711 +vn 0.5331 -0.5797 0.6162 +vn 0.9026 -0.3176 0.2906 +vn 0.7204 -0.5083 0.4719 +vn 0.9272 -0.2855 0.2425 +vn 0.1411 -0.8157 0.5610 +vn 0.4638 -0.8021 0.3762 +vn 0.7008 -0.6517 0.2901 +vn 0.9372 -0.2958 0.1848 +vn 0.4061 -0.8980 0.1697 +vn 0.8687 -0.0001 0.4954 +vn 0.8182 -0.0000 0.5749 +vn 0.5123 -0.0000 0.8588 +vn 0.2401 -0.0001 0.9708 +vn 0.1423 -0.9892 -0.0346 +vn 0.2340 -0.9717 -0.0332 +vn 0.1602 -0.9865 -0.0352 +vn 0.3755 -0.9262 -0.0350 +vn 0.4799 -0.8767 -0.0335 +vn 0.3901 -0.9201 -0.0358 +vn 0.6102 -0.7915 -0.0333 +vn 0.5674 -0.8227 -0.0351 +vn 0.7372 -0.6748 -0.0337 +vn 0.6961 -0.7170 -0.0356 +vn 0.7943 -0.6067 -0.0334 +vn 0.8202 -0.5710 -0.0354 +vn 0.8885 -0.4577 -0.0324 +vn 0.9345 -0.3541 -0.0358 +vn 0.9546 -0.2960 -0.0333 +vn 0.9875 -0.1539 -0.0348 +vn 0.9892 -0.1422 -0.0344 +vn 0.9990 -0.0281 -0.0353 +vn 0.4041 0.1706 -0.8987 +vn 0.8629 0.1252 -0.4897 +vn 0.6859 0.2080 -0.6974 +vn 0.9839 0.0528 -0.1709 +vn 0.5575 0.2981 -0.7748 +vn 0.5694 0.3412 -0.7479 +vn 0.7290 0.3293 -0.6001 +vn 0.6478 0.4374 -0.6237 +vn 0.7483 0.4258 -0.5087 +vn 0.7292 0.4621 -0.5047 +vn 0.5437 0.6023 -0.5845 +vn 0.9081 0.3136 -0.2773 +vn 0.4234 0.7154 -0.5558 +vn 0.8603 0.4040 -0.3110 +vn 0.5170 0.7020 -0.4897 +vn 0.4195 0.7831 -0.4591 +vn 0.8721 0.4299 -0.2338 +vn 0.5993 0.7204 -0.3491 +vn 0.9613 0.2481 -0.1195 +vn 0.4544 0.8383 -0.3014 +vn 0.8982 0.4191 -0.1326 +vn 0.5950 0.7749 -0.2132 +vn 0.4489 0.8778 -0.1672 +vn 0.9259 0.3755 -0.0424 +vn 0.8025 0.5954 -0.0386 +vn 0.6209 0.7828 -0.0415 +vn -0.1938 0.3806 0.9042 +vn -0.3886 0.2665 0.8820 +vn -0.2027 0.4233 0.8830 +vn -0.4548 0.5598 0.6927 +vn -0.5714 0.5532 0.6062 +vn -0.3146 0.4874 0.8145 +vn -0.5685 0.5748 0.5886 +vn -0.4938 0.5022 0.7099 +vn -0.1073 0.7902 0.6033 +vn -0.2425 0.7395 0.6280 +vn -0.2343 0.8503 0.4712 +vn -0.1370 0.9037 0.4057 +vn -0.2793 0.8987 0.3380 +vn -0.4479 0.7847 0.4285 +vn -0.2045 0.8433 0.4971 +vn -0.5234 0.5614 0.6411 +vn -0.3247 0.6526 0.6846 +vn -0.3184 0.6559 0.6844 +vn -0.2232 0.5512 0.8040 +vn -0.1179 0.6944 0.7099 +vn -0.3843 0.7132 0.5863 +vn -0.2265 0.9441 0.2395 +vn -0.1034 0.9349 0.3396 +vn 0.0011 0.5442 0.8389 +vn -0.0033 0.6817 0.7316 +vn -0.9999 -0.0046 0.0157 +vn -0.9996 0.0009 0.0273 +vn -0.9867 -0.0004 -0.1625 +vn -0.9999 -0.0032 0.0154 +vn -0.0000 -0.0000 1.0000 +vn -0.0000 0.0001 1.0000 +vn 0.9998 -0.0020 0.0204 +vn 0.9999 0.0026 0.0123 +vn 0.9999 0.0001 0.0149 +vn 0.9999 0.0013 0.0147 +vn 0.0002 0.5830 0.8125 +vn -0.0009 0.5514 0.8342 +vn 0.0038 0.8443 0.5358 +vn 0.2305 0.3562 0.9055 +vn 0.4886 0.5166 0.7031 +vn 0.3877 0.4778 0.7883 +vn 0.4890 0.5501 0.6770 +vn 0.2811 0.6013 0.7479 +vn 0.2025 0.7968 0.5694 +vn 0.1882 0.9531 0.2371 +vn 0.1344 0.9731 0.1874 +vn 0.1413 0.4016 0.9049 +vn 0.2712 0.5193 0.8104 +vn 0.4628 0.2315 0.8557 +vn 0.5051 0.4920 0.7091 +vn 0.6551 0.3649 0.6616 +vn 0.1931 0.2391 0.9516 +vn 0.5646 0.5467 0.6184 +vn 0.2909 0.8282 0.4791 +vn 0.1305 0.8348 0.5348 +vn 0.2706 0.6388 0.7202 +vn 0.3722 0.8659 0.3341 +vn 0.3442 0.7792 0.5238 +vn 0.0838 0.9777 0.1926 +vn 0.4393 0.5206 0.7321 +vn -0.0000 0.3342 0.9425 +vn -0.0000 0.4413 0.8974 +vn -0.0000 0.6865 0.7271 +vn 0.0001 0.8491 0.5282 +vn -0.0000 0.9025 0.4306 +vn -0.3814 -0.2028 0.9019 +vn -0.6957 -0.0320 0.7177 +vn -0.4960 -0.3408 0.7987 +vn -0.6627 -0.2619 0.7016 +vn -0.9708 -0.0841 0.2247 +vn -0.4422 -0.3222 0.8371 +vn -0.2456 -0.5698 0.7843 +vn -0.7019 -0.2851 0.6527 +vn -0.8767 -0.2830 0.3890 +vn -0.4871 -0.5924 0.6417 +vn -0.4947 -0.5924 0.6359 +vn -0.8981 -0.2682 0.3485 +vn 0.9837 -0.1020 0.1480 +vn -0.7889 -0.5101 0.3426 +vn -0.4691 -0.7324 0.4935 +vn -0.5581 -0.6601 0.5027 +vn -0.5429 -0.7275 0.4195 +vn -0.8679 -0.3955 0.3004 +vn -0.4530 -0.8029 0.3875 +vn -0.5279 -0.8216 0.2152 +vn -0.8876 -0.4161 0.1975 +vn -0.8819 -0.0001 0.4714 +vn -0.8856 -0.0001 0.4644 +vn -0.6671 -0.0000 0.7450 +vn -0.5142 -0.0001 0.8577 +vn -0.3763 -0.0000 0.9265 +vn -0.1475 -0.9884 -0.0349 +vn -0.1470 -0.9885 -0.0349 +vn -0.2265 -0.9734 -0.0333 +vn -0.3326 -0.9424 -0.0355 +vn -0.3890 -0.9206 -0.0331 +vn -0.5356 -0.8438 -0.0353 +vn -0.5345 -0.8444 -0.0353 +vn -0.6776 -0.7346 -0.0341 +vn -0.6917 -0.7213 -0.0350 +vn -0.7917 -0.6100 -0.0338 +vn -0.8085 -0.5874 -0.0351 +vn -0.8632 -0.5037 -0.0344 +vn -0.9042 -0.4256 -0.0362 +vn -0.9191 -0.3924 -0.0346 +vn -0.9557 -0.2924 -0.0337 +vn -0.9808 -0.1913 -0.0371 +vn -0.9903 -0.1346 -0.0344 +vn -0.9256 0.0500 -0.3753 +vn -0.7168 0.1535 -0.6802 +vn -0.4810 0.1350 -0.8663 +vn -0.6690 0.2293 -0.7070 +vn -0.7244 0.2698 -0.6344 +vn -0.6012 0.3612 -0.7128 +vn -0.9915 0.0531 -0.1192 +vn -0.8468 0.3233 -0.4225 +vn -0.6162 0.4128 -0.6707 +vn -0.7144 0.4918 -0.4978 +vn -0.5620 0.5944 -0.5752 +vn -0.3394 0.7232 -0.6015 +vn -0.9042 0.3433 -0.2540 +vn -0.6437 0.6681 -0.3731 +vn -0.4545 0.7640 -0.4580 +vn -0.6009 0.7452 -0.2891 +vn -0.6090 0.7406 -0.2841 +vn -0.9490 0.3001 -0.0966 +vn -0.8677 0.4885 -0.0925 +vn -0.4726 0.8653 -0.1673 +vn -0.5211 0.8400 -0.1510 +vn -0.8321 0.5531 -0.0411 +vn -0.7616 0.6469 -0.0382 +vn -0.5181 0.8544 -0.0391 +vn 0.3152 -0.9490 0.0011 +vn 0.2951 -0.9552 0.0222 +vn 0.5621 -0.8258 0.0451 +vn 0.6010 -0.7992 0.0020 +vn 0.8035 -0.5952 0.0076 +vn 0.8318 -0.5535 0.0416 +vn 0.9476 -0.3196 0.0015 +vn 0.9696 -0.2426 0.0332 +vn 0.9990 -0.0451 -0.0001 +vn -0.0189 -0.9997 0.0170 +vn -0.0343 -0.9993 0.0159 +vn -0.0214 -0.9986 0.0480 +vn 0.0012 -0.9998 0.0205 +vn 0.0058 -0.9999 0.0139 +vn 0.0031 -0.9997 0.0251 +vn 0.8940 -0.0001 0.4480 +vn 0.6940 0.0001 0.7199 +vn 0.4610 -0.0000 0.8874 +vn -0.8989 -0.0000 0.4381 +vn -0.7290 -0.0000 0.6845 +vn -0.6762 -0.0001 0.7367 +vn -0.2862 -0.0000 0.9582 +vn 0.0020 -0.7827 0.6224 +vn 0.0001 -0.7028 0.7114 +vn 0.0026 -0.4752 0.8799 +vn 0.2418 -0.9186 0.3126 +vn 0.1215 -0.9338 0.3364 +vn 0.4555 -0.7406 0.4940 +vn 0.2602 -0.8729 0.4127 +vn 0.1784 -0.6829 0.7084 +vn 0.2063 -0.7488 0.6298 +vn 0.5748 -0.5204 0.6315 +vn 0.4745 -0.5335 0.7002 +vn 0.5751 -0.5167 0.6343 +vn 0.4756 -0.4881 0.7318 +vn 0.4094 -0.4264 0.8066 +vn 0.1994 -0.4402 0.8755 +vn 0.1263 -0.9681 0.2163 +vn 0.3408 0.8124 0.4731 +vn 0.0545 -0.9540 0.2947 +vn 0.2707 -0.8259 0.4946 +vn 0.3126 -0.5243 0.7921 +vn 0.6503 -0.5294 0.5448 +vn 0.0895 -0.6967 0.7117 +vn 0.3217 -0.6893 0.6491 +vn 0.3091 -0.5109 0.8022 +vn 0.2182 -0.3925 0.8935 +vn 0.5492 -0.2889 0.7841 +vn -0.0002 0.1561 0.9877 +vn -0.0000 -0.8016 0.5978 +vn -0.0000 -0.7588 0.6514 +vn -0.0000 -0.4010 0.9161 +vn -0.0000 -0.3873 0.9220 +vn -0.0514 -0.8940 0.4451 +vn -0.2838 -0.7615 0.5828 +vn -0.2511 -0.8030 0.5405 +vn -0.1386 -0.7697 0.6232 +vn -0.3680 -0.8321 0.4149 +vn -0.3921 -0.4626 0.7952 +vn -0.4862 -0.5600 0.6709 +vn -0.1978 -0.2872 0.9372 +vn -0.2382 -0.4691 0.8504 +vn -0.4760 -0.2476 0.8438 +vn -0.3080 -0.8714 0.3818 +vn -0.3095 -0.8316 0.4612 +vn -0.1778 -0.8927 0.4141 +vn -0.2163 -0.6633 0.7164 +vn -0.2219 -0.6741 0.7045 +vn -0.1251 -0.7048 0.6983 +vn -0.4870 -0.4769 0.7317 +vn -0.4627 -0.3856 0.7983 +vn -0.6233 -0.4074 0.6675 +vn -0.0482 -0.4349 0.8992 +vn -0.6203 -0.3303 0.7114 +vn -0.2469 -0.1391 0.9590 +vn -0.0018 -0.8921 0.4518 +vn 0.0018 -0.7465 0.6654 +vn -0.0034 -0.3957 0.9184 +vn 0.0215 -0.9996 0.0172 +vn -0.0130 -0.9997 0.0198 +vn 0.0051 -0.9998 0.0172 +vn -0.0028 -0.9997 0.0242 +vn -0.0017 -1.0000 -0.0052 +vn -0.0080 -0.9993 0.0369 +vn -0.2434 -0.9681 0.0590 +vn -0.3742 -0.9261 -0.0483 +vn -0.5539 -0.8286 0.0816 +vn -0.7271 -0.6857 -0.0327 +vn -0.8287 -0.5577 0.0483 +vn -0.9185 -0.3953 -0.0079 +vn -0.9573 -0.2864 0.0379 +vn -0.9990 -0.0445 0.0015 +vn 0.1327 0.9907 0.0308 +vn 0.2994 0.9533 0.0405 +vn 0.3094 0.9501 0.0387 +vn 0.4760 0.8789 0.0290 +vn 0.6145 0.7877 0.0437 +vn 0.6636 0.7473 0.0340 +vn 0.8024 0.5959 0.0324 +vn 0.8413 0.5390 0.0418 +vn 0.9161 0.3996 0.0311 +vn 0.9584 0.2827 0.0402 +vn 0.9571 0.2870 0.0407 +vn 0.9917 0.1246 0.0313 +vn -0.0002 0.9990 0.0443 +vn -0.0000 0.9993 0.0380 +vn -0.2045 0.9785 0.0262 +vn -0.3906 0.9198 0.0375 +vn -0.4313 0.9011 0.0452 +vn -0.4775 0.8777 0.0399 +vn -0.6335 0.7730 0.0330 +vn -0.7378 0.6736 0.0434 +vn -0.7414 0.6697 0.0423 +vn -0.8349 0.5496 0.0295 +vn -0.9177 0.3958 0.0339 +vn -0.9585 0.2812 0.0472 +vn -0.9486 0.3138 0.0405 +vn -0.9871 0.1571 0.0316 +vn 0.9382 0.3448 -0.0295 +vn 0.6055 0.7953 -0.0273 +vn 0.5178 0.8550 -0.0301 +vn 0.9451 0.0510 -0.3226 +vn 0.8321 0.1013 -0.5453 +vn 0.2669 0.1936 -0.9441 +vn 0.7695 0.1727 -0.6148 +vn 0.4170 0.2440 -0.8756 +vn 0.8330 0.1957 -0.5175 +vn 0.2140 0.3456 -0.9136 +vn 0.9395 0.1391 -0.3131 +vn 0.4586 0.3796 -0.8035 +vn 0.3585 0.4758 -0.8031 +vn 0.8404 0.3041 -0.4485 +vn 0.5172 0.4854 -0.7049 +vn 0.4054 0.5807 -0.7060 +vn 0.9196 0.2569 -0.2971 +vn 0.7102 0.5114 -0.4838 +vn 0.6616 0.5701 -0.4871 +vn 0.6806 0.5835 -0.4432 +vn 0.4192 0.7656 -0.4880 +vn 0.9001 0.3700 -0.2303 +vn 0.7142 0.6442 -0.2739 +vn 0.3998 0.8257 -0.3980 +vn 0.7518 0.6265 -0.2057 +vn 0.6487 0.7396 -0.1796 +vn 0.6472 0.7437 -0.1678 +vn 0.5046 0.8548 -0.1211 +vn 0.4113 0.0619 -0.9094 +vn 0.5482 0.0953 -0.8309 +vn 0.8465 0.1036 -0.5222 +vn 0.0819 0.4354 -0.8965 +vn 0.2533 0.7188 -0.6474 +vn 0.1105 0.8641 -0.4911 +vn 0.1344 0.9035 -0.4069 +vn 0.1994 0.5995 -0.7752 +vn 0.2583 0.8081 -0.5294 +vn 0.2754 0.8245 -0.4944 +vn 0.3037 0.7556 -0.5804 +vn 0.2123 0.4661 -0.8589 +vn 0.4785 0.7973 -0.3678 +vn 0.4847 0.7605 -0.4322 +vn 0.3310 0.4320 -0.8389 +vn 0.4355 0.5252 -0.7310 +vn 0.5880 0.7672 -0.2564 +vn 0.6204 0.6459 -0.4450 +vn 0.3398 0.3288 -0.8812 +vn 0.7376 0.6208 -0.2657 +vn 0.5217 0.3774 -0.7651 +vn 0.7367 0.5584 -0.3814 +vn 0.4619 0.2832 -0.8405 +vn 0.8460 0.5060 -0.1680 +vn 0.8368 0.4002 -0.3736 +vn 0.5095 0.1870 -0.8399 +vn 0.5990 0.2078 -0.7733 +vn 0.8231 0.3270 -0.4642 +vn 0.9410 0.3356 -0.0429 +vn 0.7208 0.1219 -0.6823 +vn 0.9296 0.1773 -0.3230 +vn 0.9267 0.1774 -0.3313 +vn -0.0000 0.5909 -0.8067 +vn -0.0000 0.5874 -0.8093 +vn -0.0000 0.9089 -0.4171 +vn -0.0000 0.9363 -0.3513 +vn -0.1042 0.4580 -0.8829 +vn -0.3088 0.8818 -0.3566 +vn -0.0979 0.8185 -0.5660 +vn -0.1555 0.9182 -0.3643 +vn -0.2771 0.7714 -0.5728 +vn -0.2755 0.7678 -0.5784 +vn -0.2699 0.8283 -0.4909 +vn -0.2805 0.8263 -0.4884 +vn -0.4087 0.5488 -0.7292 +vn -0.4892 0.8654 0.1083 +vn -0.3524 0.5005 -0.7907 +vn -0.5679 0.7054 -0.4242 +vn -0.4327 0.3587 -0.8271 +vn -0.5867 0.5396 -0.6038 +vn -0.7301 0.6319 -0.2601 +vn -0.7260 0.6223 -0.2926 +vn -0.7713 0.5701 -0.2828 +vn -0.4323 0.2750 -0.8588 +vn -0.6994 0.3897 -0.5992 +vn -0.8455 0.5285 -0.0763 +vn -0.8088 0.4070 -0.4245 +vn -0.5271 0.1554 -0.8355 +vn -0.6548 0.2216 -0.7225 +vn -0.9314 0.2591 -0.2557 +vn -0.9495 0.2814 -0.1391 +vn -0.9717 0.2197 0.0872 +vn -0.9765 0.1095 -0.1855 +vn -0.9799 0.1082 -0.1677 +vn -0.7700 0.0899 -0.6316 +vn -0.5822 0.1040 -0.8064 +vn -0.9003 0.0806 -0.4277 +vn -0.4147 0.1677 -0.8944 +vn -0.6263 0.2462 -0.7397 +vn -0.6167 0.2593 -0.7433 +vn -0.8865 0.2077 -0.4136 +vn -0.6949 0.2805 -0.6621 +vn -0.4327 0.4560 -0.7777 +vn -0.8088 0.3345 -0.4836 +vn -0.5224 0.4835 -0.7024 +vn -0.3523 0.5724 -0.7404 +vn -0.8970 0.2851 -0.3378 +vn -0.8291 0.3927 -0.3979 +vn -0.4884 0.6267 -0.6072 +vn -0.3833 0.6512 -0.6550 +vn -0.8610 0.4007 -0.3133 +vn -0.6511 0.6344 -0.4167 +vn -0.5048 0.7063 -0.4962 +vn -0.6528 0.6826 -0.3284 +vn -0.5552 0.7606 -0.3366 +vn -0.9580 0.2661 -0.1066 +vn -0.8246 0.5545 -0.1125 +vn -0.4915 0.8324 -0.2559 +vn -0.7000 0.6997 -0.1428 +vn -0.5128 0.8502 -0.1190 +vn -0.9021 0.4306 -0.0300 +vn -0.7964 0.6042 -0.0262 +vn -0.4440 0.8955 -0.0310 +vn 0.9994 -0.0018 -0.0348 +vn 0.9994 -0.0000 -0.0342 +vn 0.9994 -0.0002 -0.0343 +vn 0.9993 0.0015 -0.0382 +vn 0.9994 -0.0067 -0.0332 +vn 0.9993 -0.0036 -0.0361 +vn 0.9994 -0.0000 -0.0347 +vn 0.9993 -0.0049 -0.0363 +vn 0.9994 -0.0010 -0.0353 +vn 0.9994 0.0117 -0.0333 +vn 0.9992 0.0164 -0.0362 +vn 0.9919 0.1209 -0.0380 +vn 0.9730 0.2282 -0.0358 +vn 0.9537 0.2995 -0.0290 +vn 0.9278 0.3713 -0.0358 +vn 0.8817 0.4703 -0.0382 +vn 0.8051 0.5924 -0.0314 +vn 0.7871 0.6159 -0.0348 +vn 0.6843 0.7282 -0.0376 +vn 0.6033 0.7968 -0.0324 +vn 0.5936 0.8040 -0.0337 +vn 0.4652 0.8843 -0.0398 +vn 0.3021 0.9527 -0.0326 +vn 0.3127 0.9493 -0.0312 +vn 0.1297 0.9908 -0.0389 +vn -0.0010 0.9994 -0.0336 +vn -0.0009 0.9995 -0.0328 +vn -0.0018 0.9995 -0.0325 +vn -0.0013 0.9994 -0.0332 +vn -0.0000 0.9994 -0.0354 +vn 0.0005 0.9995 -0.0322 +vn 0.0016 0.9995 -0.0319 +vn 0.0020 0.9995 -0.0316 +vn 0.0004 0.9994 -0.0340 +vn 0.0058 0.9996 -0.0270 +vn -0.0000 0.9994 -0.0351 +vn -0.0114 0.9989 -0.0464 +vn 0.0132 0.9987 -0.0494 +vn -0.9877 0.1513 -0.0400 +vn -0.9561 0.2908 -0.0352 +vn -0.9535 0.2994 -0.0341 +vn -0.8907 0.4533 -0.0358 +vn -0.8605 0.5085 -0.0320 +vn -0.8379 0.5447 -0.0357 +vn -0.7368 0.6750 -0.0385 +vn -0.6647 0.7465 -0.0306 +vn -0.6039 0.7962 -0.0372 +vn -0.4660 0.8841 -0.0358 +vn -0.4523 0.8912 -0.0343 +vn -0.2972 0.9541 -0.0364 +vn -0.2575 0.9657 -0.0330 +vn -0.1419 0.9891 -0.0384 +vn -0.9992 0.0049 -0.0390 +vn -0.9994 0.0005 -0.0345 +vn -0.9994 0.0012 -0.0348 +vn -0.9994 -0.0000 -0.0355 +vn -0.9994 -0.0000 -0.0354 +vn -0.9993 0.0034 -0.0378 +vn -0.9997 -0.0138 -0.0191 +vn -0.9994 0.0032 -0.0345 +vn -0.9990 0.0230 -0.0372 +vn -0.9993 0.0160 -0.0324 +vn -0.0000 -0.3162 -0.9487 +vn -0.0001 -0.3160 -0.9488 +vn -0.0002 -0.3174 -0.9483 +vn 0.0003 -0.3164 -0.9486 +vn -0.0001 -0.3177 -0.9482 +vn 0.0038 -0.2639 -0.9646 +vn -0.0070 -0.1957 -0.9806 +vn 0.0001 -0.0115 -0.9999 +vn 0.0020 -0.0081 -1.0000 +vn 0.5945 -0.1264 0.7941 +vn 0.6798 -0.1724 0.7129 +vn 0.6092 -0.2010 0.7672 +vn 0.5464 -0.3829 0.7449 +vn 0.7612 -0.1978 0.6176 +vn 0.9993 0.0001 0.0380 +vn 0.9993 0.0001 0.0372 +vn 0.9993 0.0060 0.0376 +vn -0.9993 0.0001 0.0379 +vn -0.9993 0.0001 0.0372 +vn -0.9992 -0.0141 0.0367 +vn -0.3236 -0.2285 0.9182 +vn 0.1841 -0.3840 0.9048 +vn -0.7637 -0.1149 0.6353 +vn -0.4337 -0.4116 0.8015 +vn -0.8546 -0.1275 0.5033 +vn -0.0014 -0.9993 0.0379 +vn -0.0000 -0.9993 0.0363 +vn -0.0000 -0.9994 0.0357 +vn -0.0069 -0.9990 0.0436 +vn 0.0011 -0.9994 0.0339 +vn 0.0005 -0.9993 0.0371 +vn -0.0043 -0.9995 0.0301 +vn 0.0015 -0.9993 0.0376 +vn 0.0037 -0.9992 0.0400 +vn 0.0004 -0.3184 -0.9479 +vn -0.0005 -0.3167 -0.9485 +vn 0.0003 -0.3198 -0.9475 +vn -0.0002 -0.0123 -0.9999 +vn -0.0034 -0.0058 -1.0000 +vn -0.0032 -0.2569 -0.9664 +vn 0.0039 -0.2206 -0.9753 +vn 0.0006 -0.0248 -0.9997 +vn 0.9998 0.0072 -0.0193 +vn 0.9998 0.0037 -0.0216 +vn 0.9994 0.0135 -0.0328 +vn 0.9997 0.0044 -0.0240 +vn 0.9996 0.0067 -0.0266 +vn 0.9999 -0.0101 -0.0019 +vn 0.1434 0.9895 -0.0171 +vn 0.2972 0.9546 -0.0204 +vn 0.3433 0.9389 -0.0239 +vn 0.4161 0.9091 -0.0205 +vn 0.5729 0.8194 -0.0214 +vn 0.5507 0.8344 -0.0243 +vn 0.6893 0.7242 -0.0169 +vn 0.8026 0.5962 -0.0210 +vn 0.8340 0.5512 -0.0260 +vn 0.9021 0.4311 -0.0180 +vn 0.9717 0.2351 -0.0232 +vn 0.9792 0.2017 -0.0202 +vn -0.0000 0.9997 -0.0234 +vn -0.0000 0.9997 -0.0224 +vn -0.1464 0.9891 -0.0180 +vn -0.2894 0.9569 -0.0232 +vn -0.3238 0.9459 -0.0205 +vn -0.4870 0.8732 -0.0200 +vn -0.5369 0.8433 -0.0233 +vn -0.6255 0.7800 -0.0187 +vn -0.7559 0.6543 -0.0232 +vn -0.7605 0.6490 -0.0224 +vn -0.8920 0.4517 -0.0169 +vn -0.9470 0.3202 -0.0253 +vn -0.9591 0.2824 -0.0220 +vn -0.9914 0.1292 -0.0193 +vn -0.9997 0.0073 -0.0236 +vn -0.9998 -0.0007 -0.0203 +vn -0.9995 0.0081 -0.0296 +vn -0.9994 0.0114 -0.0323 +vn -0.9994 -0.0307 0.0179 +vn -0.9998 -0.0034 -0.0210 +vn 0.9290 0.0001 -0.3700 +vn 0.7778 -0.0001 -0.6285 +vn 0.5132 0.0001 -0.8583 +vn 0.5976 0.0656 -0.7991 +vn 0.8437 0.1258 -0.5218 +vn 0.9220 0.0988 -0.3744 +vn 0.8587 0.1856 -0.4778 +vn 0.9144 0.2284 -0.3342 +vn 0.3042 0.0982 -0.9475 +vn 0.3992 0.1421 -0.9058 +vn 0.4567 0.1799 -0.8712 +vn 0.8100 0.3444 -0.4747 +vn 0.8752 0.3388 -0.3452 +vn 0.8205 0.4407 -0.3642 +vn 0.5102 0.3142 -0.8006 +vn 0.7385 0.4601 -0.4929 +vn 0.7579 0.5676 -0.3215 +vn 0.2852 0.2378 -0.9285 +vn 0.4964 0.4729 -0.7279 +vn 0.1058 0.1030 -0.9890 +vn 0.5160 0.5516 -0.6554 +vn 0.3788 0.5233 -0.7633 +vn 0.4308 0.5627 -0.7056 +vn 0.0964 0.2290 -0.9686 +vn 0.3112 0.5639 -0.7650 +vn 0.3361 0.6643 -0.6676 +vn 0.1448 0.4723 -0.8695 +vn 0.2472 0.7223 -0.6458 +vn 0.2542 0.8417 -0.4763 +vn 0.0766 0.5106 -0.8564 +vn 0.1063 0.8328 -0.5433 +vn 0.1062 0.8333 -0.5426 +vn 0.0001 0.2416 -0.9704 +vn -0.0001 0.4586 -0.8886 +vn -0.0000 0.8209 -0.5711 +vn -0.0000 0.8733 -0.4872 +vn -0.6812 0.1153 -0.7229 +vn -0.8887 0.1022 -0.4470 +vn -0.3643 0.1225 -0.9232 +vn -0.6055 0.1644 -0.7787 +vn -0.7945 0.2665 -0.5457 +vn -0.5650 0.3085 -0.7652 +vn -0.6210 0.3416 -0.7055 +vn -0.7532 0.3641 -0.5479 +vn -0.6997 0.4688 -0.5391 +vn -0.2046 0.1553 -0.9664 +vn -0.5493 0.5100 -0.6619 +vn -0.5771 0.5249 -0.6256 +vn -0.4464 0.5727 -0.6876 +vn -0.4628 0.5837 -0.6672 +vn -0.1266 0.2003 -0.9715 +vn -0.3275 0.6433 -0.6920 +vn -0.3292 0.6530 -0.6821 +vn -0.1804 0.6479 -0.7401 +vn -0.2336 0.7194 -0.6541 +vn -0.1073 0.7414 -0.6625 +vn -0.0990 0.8640 -0.4936 +vn -0.8854 0.0001 -0.4649 +vn -0.7419 -0.0001 -0.6705 +vn -0.3950 0.0001 -0.9187 +vn 1.0000 -0.0010 -0.0004 +vn 0.9944 -0.1024 -0.0274 +vn 1.0000 -0.0006 -0.0051 +vn 1.0000 -0.0057 -0.0059 +vn 1.0000 -0.0065 -0.0048 +vn 0.9646 -0.2635 -0.0020 +vn 0.9547 -0.2974 -0.0068 +vn 0.8223 -0.5690 -0.0075 +vn 0.7895 -0.6138 0.0001 +vn 0.5562 -0.8310 -0.0086 +vn 0.5387 -0.8425 -0.0056 +vn 0.2793 -0.9602 -0.0031 +vn 0.2452 -0.9695 -0.0073 +vn 0.0072 -1.0000 -0.0049 +vn 0.1200 -0.6955 0.7085 +vn 0.0061 -1.0000 -0.0045 +vn -0.0417 -0.9991 -0.0099 +vn -0.9951 0.0971 -0.0174 +vn -0.9994 0.0003 -0.0349 +vn -0.1290 0.9916 -0.0115 +vn -0.0011 0.9994 -0.0347 +vn -0.0068 0.9994 -0.0351 +vn -1.0000 -0.0014 -0.0052 +vn -0.9999 0.0138 -0.0061 +vn -1.0000 -0.0004 -0.0049 +vn -1.0000 -0.0032 -0.0054 +vn -1.0000 -0.0050 -0.0036 +vn -1.0000 -0.0040 -0.0051 +vn 0.0971 0.9951 -0.0174 +vn 0.0037 0.9994 -0.0348 +vn 0.0002 0.9994 -0.0349 +vn 0.9916 0.1287 -0.0115 +vn 0.9994 -0.0001 -0.0349 +vn -0.1199 -0.7388 0.6632 +vn -0.0134 -0.9999 -0.0037 +vn 0.0458 -0.9989 -0.0104 +vn -0.0051 -1.0000 -0.0070 +vn -0.9714 -0.2373 -0.0055 +vn -0.9709 -0.2395 -0.0052 +vn -0.8349 -0.5503 -0.0040 +vn -0.8355 -0.5495 -0.0038 +vn -0.6192 -0.7852 -0.0082 +vn -0.5574 -0.8302 0.0009 +vn -0.3505 -0.9365 -0.0113 +vn -0.2451 -0.9695 -0.0004 +vn -0.0000 -0.0000 -1.0000 +vn -0.0008 -0.0000 -1.0000 +vn -0.0001 -0.0000 -1.0000 +vn 0.0002 -0.0000 -1.0000 +vn -0.0054 -0.0000 -1.0000 +vn -0.0126 -0.0000 -0.9999 +vn 0.0142 -0.0000 -0.9999 +vn 0.0029 -0.0001 -1.0000 +vn -0.0001 -0.0001 -1.0000 +vn -0.0053 -0.0000 -1.0000 +vn 0.0027 -0.0000 -1.0000 +vn -0.0048 0.0013 -1.0000 +vn 0.0026 0.0006 -1.0000 +vn -0.0038 -0.0005 -1.0000 +vn 0.0017 -0.0008 -1.0000 +vn -0.0000 0.0002 -1.0000 +vn 0.0004 0.0003 -1.0000 +vn -0.0024 0.0019 -1.0000 +vn -0.0041 0.0080 -1.0000 +vn 0.0006 0.0023 -1.0000 +vn -0.0047 0.0073 -1.0000 +vn -0.0048 0.0073 -1.0000 +vn 0.0015 0.0023 -1.0000 +vn 0.0024 0.0009 -1.0000 +vn -0.0000 -0.0011 -1.0000 +vn -0.0000 -0.0003 -1.0000 +vn -0.0023 0.0079 -1.0000 +vn 0.0001 0.0003 -1.0000 +vn -0.0036 0.0060 -1.0000 +vn -0.0000 0.0069 -1.0000 +vn -0.0000 0.0070 -1.0000 +vn -0.0000 0.0004 -1.0000 +vn -0.0000 0.0003 -1.0000 +vn 0.9998 0.0216 -0.0048 +vn 0.9998 0.0163 -0.0116 +vn 0.2305 0.9726 0.0298 +vn 0.4852 0.8744 0.0073 +vn 0.4308 0.9020 -0.0270 +vn 0.7555 0.6549 0.0179 +vn 0.7289 0.6846 -0.0080 +vn 0.9238 0.3820 -0.0268 +vn 0.9502 0.3109 0.0220 +vn 0.0180 0.9996 -0.0223 +vn 0.0150 0.9997 -0.0175 +vn -0.0042 0.9999 -0.0116 +vn -0.0122 0.9999 0.0013 +vn -0.2289 0.9734 0.0021 +vn -0.2599 0.9655 -0.0154 +vn -0.5387 0.8420 0.0269 +vn -0.6069 0.7943 -0.0269 +vn -0.8281 0.5603 0.0178 +vn -0.8498 0.5270 -0.0080 +vn -0.9694 0.2455 0.0072 +vn -0.9734 0.2290 -0.0021 +vn -1.0000 0.0071 -0.0012 +vn -0.9996 0.0218 -0.0175 +vn -0.0000 -0.0001 1.0000 +vn 0.1177 0.9929 0.0192 +vn 0.0916 0.9957 -0.0167 +vn -0.2397 0.9707 0.0141 +vn -0.2630 0.9647 -0.0112 +vn 0.5244 0.8515 -0.0017 +vn 0.5140 0.8575 -0.0221 +vn -0.5279 0.8492 0.0124 +vn -0.5489 0.8357 -0.0179 +vn 0.8332 0.5524 0.0257 +vn -0.8185 0.5742 0.0193 +vn -0.8333 0.5525 -0.0167 +vn 0.8513 0.5242 -0.0212 +vn 0.9806 0.1948 0.0192 +vn 0.9787 0.2052 0.0048 +vn -0.9752 0.2205 0.0167 +vn -0.9806 0.1948 -0.0192 +vn 0.9807 -0.1948 -0.0192 +vn 0.9664 -0.2502 0.0590 +vn -0.9806 -0.1948 0.0192 +vn -0.9664 -0.2502 -0.0590 +vn 0.8392 -0.5387 -0.0752 +vn -0.8392 -0.5387 0.0752 +vn 0.7208 -0.6870 0.0926 +vn -0.7208 -0.6870 -0.0926 +vn 0.6090 -0.7918 -0.0470 +vn -0.5846 -0.8080 0.0735 +vn 0.3462 -0.9378 0.0242 +vn 0.3232 -0.9446 0.0577 +vn -0.3538 -0.9325 -0.0726 +vn -0.1741 -0.9802 0.0941 +vn 0.0039 -0.9977 -0.0678 +vn -0.2680 0.9633 0.0167 +vn -0.2630 0.9645 0.0238 +vn 0.5235 0.8501 0.0577 +vn 0.4635 0.8860 -0.0165 +vn -0.5482 0.8348 -0.0508 +vn 0.6926 0.7184 -0.0642 +vn -0.6559 0.7485 0.0978 +vn 0.8299 0.5503 0.0921 +vn -0.8299 0.5503 -0.0921 +vn 0.9419 0.3206 -0.1002 +vn -0.9419 0.3206 0.1002 +vn 0.9791 0.1945 0.0587 +vn -0.9791 0.1945 -0.0587 +vn 0.9829 -0.1795 -0.0404 +vn -0.9829 -0.1795 0.0404 +vn -0.6090 -0.7918 0.0470 +vn 0.3495 -0.9367 0.0193 +vn -0.3509 -0.9361 -0.0230 +vn -0.3547 -0.9348 -0.0176 +vn -0.0257 -0.9995 0.0161 +vn 0.0039 -0.9998 -0.0188 +vn 0.0914 0.9935 -0.0681 +vn -0.0914 0.9935 0.0681 +vn 0.2626 0.9632 0.0573 +vn -0.2626 0.9632 -0.0573 +vn 0.5489 0.8357 0.0179 +vn 0.5005 0.8643 -0.0502 +vn -0.5133 0.8564 0.0564 +vn -0.5490 0.8358 -0.0002 +vn 0.8333 0.5525 0.0167 +vn 0.8185 0.5742 -0.0193 +vn -0.8332 0.5524 -0.0257 +vn -0.8513 0.5242 0.0212 +vn 0.9752 0.2205 -0.0167 +vn -0.9787 0.2052 -0.0048 +vn -0.9807 -0.1948 0.0192 +vn -0.8472 -0.5268 0.0693 +vn -0.7216 -0.6878 -0.0791 +vn -0.6556 -0.7548 0.0212 +vn 0.3680 -0.9298 -0.0084 +vn -0.3483 -0.9374 -0.0032 +vn -0.3547 -0.9349 0.0074 +vn 0.0509 -0.9983 0.0266 +vn 0.0039 -0.9996 -0.0294 +vn 0.3719 -0.9281 -0.0191 +vn 0.4100 -0.9113 0.0384 +vn 0.6924 -0.7195 -0.0534 +vn 0.7468 -0.6636 0.0438 +vn 0.7569 -0.6495 -0.0723 +vn 0.6464 -0.7601 0.0661 +vn 0.4596 -0.8855 -0.0686 +vn 0.3622 -0.9308 0.0488 +vn 0.0015 -0.9998 -0.0175 +vn 0.0021 -0.9998 0.0220 +vn 0.3624 -0.9316 -0.0261 +vn 0.3704 -0.9288 -0.0073 +vn 0.6293 -0.7765 0.0309 +vn 0.6748 -0.7335 -0.0813 +vn 0.8386 -0.5376 0.0877 +vn 0.9123 -0.3932 -0.1143 +vn 0.9571 -0.2835 0.0607 +vn 1.0000 -0.0000 -0.0093 +vn 0.9998 -0.0000 -0.0212 +vn 0.9319 0.3625 -0.0147 +vn 0.9249 0.3791 0.0275 +vn 0.7356 0.6768 -0.0272 +vn 0.7181 0.6953 0.0312 +vn 0.3956 0.9178 -0.0334 +vn 0.3782 0.9256 0.0152 +vn -0.0000 1.0000 -0.0093 +vn 0.0001 1.0000 0.0054 +vn -0.9571 0.2835 0.0607 +vn -0.9123 0.3932 -0.1143 +vn -0.8386 0.5376 0.0877 +vn -0.6748 0.7335 -0.0812 +vn -0.6293 0.7765 0.0309 +vn -0.3652 0.9309 -0.0080 +vn -0.3625 0.9319 -0.0147 +vn -1.0000 -0.0000 -0.0053 +vn -0.9998 -0.0001 -0.0212 +vn -0.3624 -0.9316 0.0261 +vn -0.3975 -0.9156 -0.0600 +vn -0.6747 -0.7333 0.0839 +vn -0.7333 -0.6747 -0.0839 +vn -0.9166 -0.3951 0.0612 +vn -0.9309 -0.3650 -0.0148 +vn -0.0021 -0.9998 -0.0220 +vn -0.0011 -0.9989 0.0462 +vn -0.7581 -0.6506 0.0450 +vn -0.6660 -0.7406 -0.0897 +vn -0.4580 -0.8825 0.1069 +vn -0.2637 -0.9608 -0.0855 +vn -0.9195 -0.3929 0.0129 +vn -0.9181 -0.3955 -0.0273 +vn -0.3698 -0.9290 0.0140 +vn -0.4036 -0.9140 -0.0402 +vn -0.6924 -0.7195 0.0534 +vn -0.7468 -0.6636 -0.0438 +vn -0.0000 -0.9996 -0.0296 +vn -0.0002 -1.0000 -0.0037 +vn 0.0015 -0.9998 0.0199 +vn 0.9167 -0.3966 0.0492 +vn 0.9195 -0.3929 -0.0129 +vn -0.0418 -0.0344 -0.9985 +vn -0.3159 -0.1728 -0.9329 +vn -0.4357 -0.1778 -0.8824 +vn -0.2351 -0.3374 -0.9115 +vn -0.1846 -0.4573 -0.8700 +vn -0.4345 -0.3357 -0.8358 +vn -0.4215 -0.4658 -0.7781 +vn -0.1865 -0.4740 -0.8605 +vn -0.1360 -0.5388 -0.8314 +vn -0.6363 -0.2272 -0.7372 +vn -0.1328 -0.7328 -0.6674 +vn -0.7740 -0.1951 -0.6024 +vn -0.7727 -0.1974 -0.6033 +vn -0.4991 -0.5732 -0.6499 +vn -0.4754 -0.6913 -0.5442 +vn -0.3446 -0.7354 -0.5834 +vn -0.6562 -0.6234 -0.4252 +vn -0.9427 -0.1017 -0.3176 +vn -0.7759 -0.4547 -0.4373 +vn -0.7594 -0.4729 -0.4468 +vn -0.3458 -0.8318 -0.4341 +vn -0.2953 -0.8915 -0.3435 +vn -0.2159 -0.8866 -0.4092 +vn -0.7500 -0.5606 -0.3509 +vn -0.9067 -0.3365 -0.2543 +vn -0.8638 -0.4312 -0.2605 +vn -0.5261 -0.8445 -0.1001 +vn -0.1314 -0.9727 -0.1912 +vn 0.1140 -0.2972 -0.9480 +vn 0.2326 -0.2083 -0.9500 +vn 0.3351 -0.1893 -0.9230 +vn 0.2891 -0.1171 -0.9501 +vn 0.3331 -0.1160 -0.9357 +vn 0.0686 -0.4402 -0.8953 +vn 0.2261 -0.4518 -0.8630 +vn 0.3705 -0.4219 -0.8275 +vn 0.2648 -0.6654 -0.6979 +vn 0.3480 -0.4923 -0.7978 +vn 0.5669 -0.1610 -0.8079 +vn 0.1182 -0.6961 -0.7081 +vn 0.1338 -0.7155 -0.6857 +vn 0.5797 -0.5293 -0.6195 +vn 0.6818 -0.3961 -0.6151 +vn 0.7633 -0.2499 -0.5957 +vn 0.4460 -0.7287 -0.5197 +vn 0.3487 -0.7676 -0.5378 +vn 0.6651 -0.4962 -0.5581 +vn 0.7296 -0.3773 -0.5703 +vn 0.5048 -0.7604 -0.4085 +vn 0.8528 -0.2264 -0.4706 +vn 0.1974 -0.9258 -0.3224 +vn 0.8962 -0.1592 -0.4141 +vn 0.2157 -0.9362 -0.2774 +vn 0.3112 -0.9090 -0.2772 +vn 0.6050 -0.7114 -0.3576 +vn 0.9677 -0.1178 -0.2229 +vn 0.2918 -0.0017 -0.9565 +vn 0.4038 0.0009 -0.9148 +vn 0.5712 -0.0020 -0.8208 +vn 0.7203 0.0005 -0.6936 +vn 0.7905 -0.0017 -0.6125 +vn 0.9458 0.0022 -0.3249 +vn 0.9724 -0.0007 -0.2332 +vn 0.1598 0.2628 -0.9515 +vn 0.2417 0.2942 -0.9247 +vn 0.2947 0.1968 -0.9351 +vn 0.3781 0.2048 -0.9028 +vn 0.4395 0.1697 -0.8821 +vn 0.0810 0.5514 -0.8303 +vn 0.7105 0.1999 -0.6747 +vn 0.4126 0.5950 -0.6897 +vn 0.2384 0.6918 -0.6816 +vn 0.5738 0.6340 -0.5185 +vn 0.6623 0.5105 -0.5484 +vn 0.7643 0.4461 -0.4657 +vn 0.7793 0.2692 -0.5659 +vn 0.1968 0.9020 -0.3842 +vn 0.5900 0.7296 -0.3459 +vn 0.9437 0.1606 -0.2893 +vn 0.3401 0.9298 -0.1408 +vn 0.8617 0.4635 -0.2063 +vn 0.9665 0.2410 -0.0878 +vn -0.0889 0.1546 -0.9840 +vn -0.3671 0.1621 -0.9159 +vn -0.3305 0.2752 -0.9028 +vn -0.5405 0.1548 -0.8270 +vn -0.4725 0.4836 -0.7368 +vn -0.2200 0.5439 -0.8098 +vn -0.7157 0.3042 -0.6287 +vn -0.4940 0.4963 -0.7139 +vn -0.1339 0.7343 -0.6655 +vn -0.5488 0.5741 -0.6076 +vn -0.8194 0.3205 -0.4753 +vn -0.2980 0.8557 -0.4231 +vn -0.9000 0.2247 -0.3735 +vn -0.5362 0.7551 -0.3774 +vn -0.4280 0.8376 -0.3395 +vn -0.8122 0.5131 -0.2774 +vn -0.6487 0.7528 -0.1118 +vn -0.8147 0.5185 -0.2597 +vn -0.0054 0.0044 -1.0000 +vn 0.0467 -0.0005 -0.9989 +vn -0.0020 -0.0007 -1.0000 +vn -0.0028 -0.0027 -1.0000 +vn -0.0031 -0.0028 -1.0000 +vn -0.0013 -0.0029 -1.0000 +vn 0.0008 -0.0072 -1.0000 +vn -0.0000 -0.0069 -1.0000 +vn -0.0000 -0.0048 -1.0000 +vn 0.0033 -0.0104 -0.9999 +vn 0.0048 -0.0033 -1.0000 +vn 0.0058 -0.0070 -1.0000 +vn -0.0000 -0.0063 -1.0000 +vn 0.0022 -0.0007 -1.0000 +vn 0.0024 -0.0009 -1.0000 +vn -0.0027 0.0013 -1.0000 +vn 0.0028 0.0006 -1.0000 +vn -0.0444 -0.0411 -0.9982 +vn -0.1230 0.0013 -0.9924 +vn -0.2893 -0.0030 -0.9572 +vn -0.5702 0.0007 -0.8215 +vn -0.6264 -0.0014 -0.7795 +vn -0.8976 0.0024 -0.4408 +vn -0.9385 -0.0017 -0.3454 +vn -0.0000 -0.3403 -0.9403 +vn -0.0000 -0.3358 -0.9419 +vn -0.0000 -0.7684 -0.6400 +vn -0.0000 -0.7694 -0.6387 +vn -0.0000 -0.9567 -0.2912 +vn -0.0000 -0.9530 -0.3030 +vn 0.9990 0.0001 0.0445 +vn 0.9990 -0.0006 0.0439 +vn -0.9395 0.3409 0.0336 +vn -0.9187 0.3917 0.0510 +vn -0.7755 0.6294 0.0496 +vn -0.6901 0.7232 0.0269 +vn -0.6033 0.7954 0.0587 +vn -0.4069 0.9120 0.0525 +vn -0.3240 0.9456 0.0301 +vn -0.1450 0.9877 0.0593 +vn -0.0000 0.9989 0.0469 +vn -0.0001 0.9987 0.0519 +vn 0.0035 0.9987 0.0515 +vn 0.0505 0.9977 0.0461 +vn 0.3047 0.9516 0.0405 +vn 0.2536 0.9659 0.0515 +vn 0.4313 0.9002 0.0607 +vn 0.6494 0.7597 0.0336 +vn 0.6751 0.7364 0.0442 +vn 0.8594 0.5087 0.0517 +vn 0.8871 0.4603 0.0346 +vn 0.9808 0.1857 0.0602 +vn 0.9152 0.4028 -0.0105 +vn 0.8185 0.5735 -0.0333 +vn 0.5512 0.8342 -0.0139 +vn 0.4919 0.8703 -0.0240 +vn -0.0001 0.9998 -0.0201 +vn -0.0002 0.9997 -0.0242 +vn -0.6227 0.7822 -0.0193 +vn -0.6929 0.7201 -0.0366 +vn -0.9182 0.3959 -0.0082 +vn -0.9995 0.0027 -0.0316 +vn -0.9994 0.0017 -0.0352 +vn -0.9994 0.0005 -0.0350 +vn -0.9988 0.0337 -0.0364 +vn -0.2974 0.9547 -0.0128 +vn -0.4599 0.8856 -0.0644 +vn -0.6332 0.7740 -0.0021 +vn -0.7903 0.6088 -0.0691 +vn -0.9332 0.3591 -0.0124 +vn -0.9548 0.2948 -0.0386 +vn 0.0001 0.9990 -0.0452 +vn -0.0000 0.9991 -0.0423 +vn 0.9507 0.3085 -0.0302 +vn 0.9428 0.3308 -0.0406 +vn 0.7458 0.6656 -0.0278 +vn 0.7382 0.6738 -0.0334 +vn 0.3957 0.9181 -0.0232 +vn 0.4305 0.9016 -0.0421 +vn 0.9993 0.0025 -0.0377 +vn 0.9994 0.0018 -0.0353 +vn 0.9994 -0.0003 -0.0350 +vn -0.9990 0.0007 0.0437 +vn -0.9990 0.0003 0.0439 +vn -0.0001 -0.9990 0.0453 +vn 0.0001 -0.9991 0.0429 +vn -0.9866 -0.1571 0.0433 +vn -0.9868 -0.1560 0.0432 +vn -0.9444 -0.3265 0.0396 +vn -0.9554 -0.2922 0.0422 +vn -0.8841 -0.4653 0.0437 +vn -0.8913 -0.4514 0.0422 +vn -0.8291 -0.5573 0.0452 +vn -0.7931 -0.6077 0.0416 +vn -0.7191 -0.6934 0.0451 +vn -0.6754 -0.7363 0.0415 +vn -0.5413 -0.8399 0.0398 +vn -0.5807 -0.8130 0.0438 +vn -0.3897 -0.9197 0.0470 +vn -0.3163 -0.9478 0.0406 +vn -0.1639 -0.9855 0.0451 +vn -0.1380 -0.9895 0.0431 +vn 0.2026 -0.9784 0.0419 +vn 0.1460 -0.9882 0.0454 +vn 0.2938 -0.9547 0.0466 +vn 0.3873 -0.9210 0.0431 +vn 0.4154 -0.9085 0.0446 +vn 0.5241 -0.8506 0.0424 +vn 0.5417 -0.8394 0.0440 +vn 0.6830 -0.7293 0.0418 +vn 0.6949 -0.7179 0.0430 +vn 0.7902 -0.6115 0.0411 +vn 0.7811 -0.6230 0.0423 +vn 0.8878 -0.4583 0.0417 +vn 0.8964 -0.4412 0.0434 +vn 0.9482 -0.3145 0.0439 +vn 0.9495 -0.3107 0.0436 +vn 0.9861 -0.1597 0.0448 +vn 0.9888 -0.1429 0.0435 +vn 0.9371 0.2444 0.2494 +vn 0.8327 0.4650 0.3006 +vn 0.8668 0.2890 0.4064 +vn 0.6632 0.6775 0.3181 +vn 0.8170 0.2260 0.5305 +vn 0.4096 0.8893 0.2033 +vn 0.5851 0.7373 0.3377 +vn 0.7165 0.5532 0.4249 +vn 0.7027 0.2258 0.6747 +vn 0.6781 0.4110 0.6093 +vn 0.6566 0.4228 0.6246 +vn 0.5524 0.5826 0.5962 +vn 0.9505 0.0018 0.3108 +vn 0.8881 -0.0016 0.4596 +vn 0.7727 0.0026 0.6348 +vn -0.9998 0.0018 -0.0174 +vn -0.9993 0.0110 -0.0345 +vn 0.0186 0.9988 0.0453 +vn 0.3434 0.9382 0.0427 +vn 0.3548 0.9340 0.0418 +vn 0.6564 0.7532 0.0440 +vn 0.6821 0.7301 0.0422 +vn 0.8278 0.5593 0.0438 +vn 0.8450 0.5330 0.0424 +vn 0.9566 0.2878 0.0451 +vn 0.9728 0.2277 0.0421 +vn 0.2283 0.9024 0.3656 +vn 0.2895 0.8619 0.4164 +vn 0.4491 0.6213 0.6421 +vn 0.4438 0.6454 0.6217 +vn 0.5374 0.3242 0.7785 +vn 0.5619 0.2488 0.7889 +vn 0.9981 0.0287 0.0537 +vn 0.9993 0.0029 0.0375 +vn 0.8593 0.3219 0.3975 +vn 0.8645 0.3163 0.3906 +vn 0.6528 0.3963 0.6456 +vn 0.6350 0.3932 0.6649 +vn 0.8592 0.4009 0.3179 +vn 0.3053 0.4529 0.8377 +vn 0.4817 0.5140 0.7098 +vn 0.7315 0.5246 0.4355 +vn 0.5059 0.5595 0.6566 +vn 0.3066 0.4907 0.8156 +vn 0.8308 0.4626 0.3093 +vn 0.8777 0.1800 0.4441 +vn 0.8681 0.1901 0.4584 +vn 0.6957 0.2771 0.6627 +vn 0.6437 0.3048 0.7020 +vn 0.4139 0.3522 0.8394 +vn 0.2803 0.3854 0.8791 +vn 0.5881 0.7373 0.3325 +vn 0.1324 0.8899 0.4364 +vn 0.4371 0.8219 0.3653 +vn 0.8184 0.5182 0.2483 +vn 0.6014 0.6629 0.4460 +vn 0.2651 0.7661 0.5855 +vn 0.2431 0.7718 0.5876 +vn 0.6295 0.6280 0.4575 +vn 0.8749 0.3006 0.3798 +vn 0.8396 0.3590 0.4077 +vn 0.3035 0.6839 0.6634 +vn 0.5632 0.5058 0.6534 +vn 0.2321 0.5254 0.8186 +vn 0.6662 0.4071 0.6248 +vn 0.3255 0.4922 0.8073 +vn 0.0001 0.8989 0.4381 +vn -0.0000 0.8749 0.4844 +vn -0.0001 0.6454 0.7639 +vn -0.0000 0.5848 0.8111 +vn -0.1659 0.9002 0.4027 +vn -0.2446 0.8567 0.4541 +vn -0.8628 0.4355 0.2567 +vn -0.7661 0.5713 0.2946 +vn -0.5474 0.7525 0.3661 +vn -0.2689 0.7911 0.5494 +vn -0.6254 0.6404 0.4458 +vn -0.3192 0.7577 0.5691 +vn -0.8484 0.3866 0.3615 +vn -0.3215 0.6264 0.7102 +vn -0.4633 0.5385 0.7038 +vn -0.6529 0.4111 0.6362 +vn -0.4627 0.5474 0.6973 +vn -0.9147 0.1500 0.3752 +vn -0.9099 0.1563 0.3843 +vn -0.6472 0.3035 0.6994 +vn -0.5528 0.3134 0.7721 +vn -0.2284 0.3991 0.8880 +vn -0.9980 0.0225 0.0588 +vn -0.9983 0.0302 0.0506 +vn -0.8361 0.3655 0.4091 +vn -0.8653 0.3270 0.3800 +vn -0.8155 0.2965 0.4970 +vn -0.7499 0.3631 0.5529 +vn -0.5641 0.4408 0.6982 +vn -0.6821 0.4775 0.5538 +vn -0.7852 0.4789 0.3926 +vn -0.6987 0.5517 0.4555 +vn -0.7439 0.5997 0.2949 +vn -0.5745 0.5052 0.6440 +vn -0.9474 0.2329 -0.2195 +vn -0.3973 0.4612 0.7934 +vn 0.9995 0.0082 -0.0298 +vn 0.9998 0.0016 -0.0174 +vn -0.9721 0.2304 0.0430 +vn -0.9609 0.2733 0.0452 +vn -0.8663 0.4978 0.0418 +vn -0.8069 0.5888 0.0467 +vn -0.6399 0.7672 0.0435 +vn -0.6304 0.7750 0.0440 +vn -0.4476 0.8932 0.0431 +vn -0.3812 0.9234 0.0456 +vn -0.1583 0.9870 0.0283 +vn -0.2128 0.9762 0.0414 +vn -0.8802 0.2207 0.4203 +vn -0.8136 0.2964 0.5003 +vn -0.7912 0.4283 0.4366 +vn -0.6381 0.6886 0.3446 +vn -0.6937 0.5213 0.4970 +vn -0.4207 0.8524 0.3103 +vn -0.6643 0.1382 0.7345 +vn -0.4269 0.8539 0.2977 +vn -0.6563 0.4695 0.5906 +vn -0.6393 0.2951 0.7100 +vn -0.4701 0.6446 0.6029 +vn -0.1604 0.9483 0.2739 +vn -0.2071 0.9253 0.3176 +vn -0.4069 0.6859 0.6033 +vn -0.4473 0.6324 0.6325 +vn -0.5193 0.3893 0.7608 +vn -0.5716 0.2321 0.7870 +vn -0.9189 -0.0015 0.3946 +vn -0.8489 0.0019 0.5286 +vn -0.7986 -0.0000 0.6019 +vn -0.1307 -0.9227 0.3627 +vn -0.3299 -0.8934 0.3051 +vn -0.2452 -0.8756 0.4161 +vn -0.4910 -0.7908 0.3655 +vn -0.4241 -0.8000 0.4245 +vn -0.9520 -0.1512 0.2662 +vn -0.8566 -0.4152 0.3062 +vn -0.6313 -0.6509 0.4216 +vn -0.8760 -0.3281 0.3534 +vn -0.5322 -0.6904 0.4900 +vn -0.7706 -0.5453 0.3299 +vn -0.6408 -0.6194 0.4535 +vn -0.7650 -0.4619 0.4489 +vn -0.8453 -0.2122 0.4904 +vn -0.7266 -0.4418 0.5262 +vn -0.8307 -0.2432 0.5008 +vn -0.5270 -0.4670 0.7101 +vn -0.7052 -0.2546 0.6618 +vn -0.6462 -0.3169 0.6942 +vn -0.7209 -0.0866 0.6876 +vn 0.0789 -0.9309 0.3565 +vn 0.0001 -0.9064 0.4224 +vn -0.0002 -0.8286 0.5598 +vn 0.1513 -0.8712 0.4670 +vn 0.1424 -0.8201 0.5543 +vn 0.5082 -0.7865 0.3508 +vn 0.6220 -0.7194 0.3091 +vn 0.2775 -0.8082 0.5194 +vn 0.4352 -0.7549 0.4906 +vn 0.8423 -0.4625 0.2768 +vn 0.7442 -0.5854 0.3216 +vn 0.6082 -0.6791 0.4109 +vn 0.7408 -0.5540 0.3798 +vn 0.3062 -0.7458 0.5916 +vn 0.9009 -0.1154 0.4185 +vn 0.4292 -0.6233 0.6537 +vn 0.5092 -0.6165 0.6006 +vn 0.6556 -0.4979 0.5677 +vn 0.8136 -0.2644 0.5178 +vn 0.5116 -0.4879 0.7072 +vn 0.8049 -0.1790 0.5658 +vn 0.7140 -0.3329 0.6160 +vn 0.7159 -0.3374 0.6113 +vn 0.5803 -0.0024 0.8144 +vn 0.5826 -0.0017 0.8128 +vn 0.5848 0.0115 0.8111 +vn 0.0063 0.9989 0.0454 +vn 0.0145 0.9989 0.0439 +vn 0.0071 0.9990 0.0449 +vn 0.0075 0.9990 0.0451 +vn 0.0138 0.9989 0.0443 +vn 0.1868 0.8932 0.4091 +vn 0.2172 0.6764 0.7038 +vn 0.2270 0.6873 0.6900 +vn 0.3882 0.3105 0.8677 +vn 0.2558 0.4195 0.8709 +vn 0.1822 0.3662 0.9125 +vn 0.9821 0.1846 0.0377 +vn 0.9549 0.2906 0.0610 +vn 0.9192 0.3921 0.0370 +vn 0.7980 0.5998 0.0583 +vn 0.8259 0.5618 0.0473 +vn 0.7175 0.6956 0.0373 +vn 0.5403 0.8401 0.0487 +vn 0.5515 0.8325 0.0531 +vn 0.3610 0.9320 0.0337 +vn 0.2382 0.9698 0.0523 +vn 0.1774 0.9833 0.0408 +vn 0.7408 0.5928 0.3160 +vn 0.7428 0.5918 0.3130 +vn 0.6596 0.6832 0.3134 +vn 0.6532 0.6619 0.3676 +vn 0.8384 0.5297 -0.1284 +vn 0.5175 0.5588 0.6481 +vn 0.4489 0.5508 0.7036 +vn 0.3500 0.4320 0.8312 +vn 0.3092 0.4351 0.8457 +vn -0.0000 0.3959 0.9183 +vn 0.0003 0.4100 0.9121 +vn -0.0321 0.3907 0.9200 +vn -0.0001 0.3884 0.9215 +vn -0.0001 0.3915 0.9202 +vn -0.0000 0.3984 0.9172 +vn -0.1813 0.9831 0.0244 +vn -0.3568 0.9334 0.0380 +vn -0.4351 0.8981 0.0641 +vn -0.5523 0.8328 0.0373 +vn -0.7344 0.6769 0.0491 +vn -0.7442 0.6658 0.0538 +vn -0.8575 0.5130 0.0397 +vn -0.8926 0.4488 0.0443 +vn -0.9294 0.3636 0.0633 +vn -0.9449 0.3232 0.0527 +vn -0.9919 0.1217 0.0360 +vn -0.7490 0.6033 0.2739 +vn -0.6147 0.6228 0.4840 +vn -0.5190 0.5651 0.6413 +vn -0.3125 0.7648 0.5634 +vn -0.3277 0.4730 0.8179 +vn -0.3986 0.4861 0.7777 +vn -0.2933 0.3222 0.9001 +vn -0.0048 0.9990 0.0437 +vn -0.0103 0.9989 0.0453 +vn -0.0126 0.9990 0.0439 +vn -0.0116 0.9989 0.0454 +vn -0.0091 0.9989 0.0470 +vn -0.1056 0.9112 0.3983 +vn -0.2118 0.7165 0.6646 +vn -0.1934 0.6963 0.6912 +vn -0.3384 0.3160 0.8863 +vn -0.2090 0.4481 0.8692 +vn -0.5991 0.0013 0.8006 +vn -0.5740 -0.0024 0.8189 +vn -0.5800 -0.0005 0.8146 +vn -0.1003 -0.6448 0.7577 +vn -0.1722 -0.5706 0.8029 +vn -0.1838 -0.5513 0.8138 +vn -0.2740 -0.4700 0.8391 +vn -0.2501 -0.4839 0.8386 +vn -0.3670 -0.3672 0.8547 +vn -0.3832 -0.3298 0.8628 +vn -0.5588 -0.0680 0.8265 +vn -0.4322 -0.2639 0.8623 +vn -0.5132 -0.1462 0.8457 +vn -0.4573 -0.2042 0.8656 +vn -0.0001 -0.6994 0.7147 +vn -0.0000 -0.7030 0.7112 +vn 0.0425 -0.6850 0.7273 +vn 0.1366 -0.5923 0.7941 +vn 0.1729 -0.5693 0.8038 +vn 0.2301 -0.5053 0.8317 +vn 0.2437 -0.4969 0.8329 +vn 0.3570 -0.3693 0.8580 +vn 0.3672 -0.3428 0.8647 +vn 0.5549 -0.0816 0.8279 +vn 0.4620 -0.2255 0.8577 +vn 0.4719 -0.1930 0.8603 +vn 0.3669 0.0005 0.9303 +vn 0.2874 -0.0014 0.9578 +vn 0.1819 0.0021 0.9833 +vn 0.0127 0.9412 0.3377 +vn -0.0018 0.9023 0.4310 +vn 0.0058 0.6131 0.7899 +vn 0.0177 0.7079 0.7061 +vn 0.0136 0.4191 0.9078 +vn 0.0068 0.3682 0.9297 +vn 0.3717 0.8617 0.3454 +vn 0.1543 0.9667 0.2041 +vn 0.5029 0.7651 0.4022 +vn 0.1991 0.8279 0.5244 +vn 0.3525 0.8502 0.3911 +vn 0.4944 0.5426 0.6791 +vn 0.2141 0.8448 0.4904 +vn 0.3352 0.5614 0.7566 +vn 0.2667 0.3009 0.9156 +vn 0.2708 0.4659 0.8424 +vn -0.1266 0.5535 0.8232 +vn 0.1694 0.4467 0.8785 +vn 0.1924 0.2517 0.9485 +vn 0.1054 0.3443 0.9329 +vn -0.0000 0.2914 0.9566 +vn -0.0001 0.2637 0.9646 +vn -0.0001 0.1708 0.9853 +vn -0.0000 0.1333 0.9911 +vn -0.3362 0.8527 0.3999 +vn -0.5005 0.7346 0.4580 +vn -0.1667 0.9153 0.3666 +vn -0.1182 0.8809 0.4584 +vn -0.3567 0.8120 0.4620 +vn -0.4773 0.8134 0.3324 +vn -0.1621 0.7084 0.6869 +vn -0.3961 0.6763 0.6211 +vn -0.1683 0.6081 0.7758 +vn -0.3603 0.5527 0.7515 +vn -0.2779 0.4683 0.8387 +vn -0.0249 0.3512 0.9360 +vn -0.1681 0.3122 0.9350 +vn -0.2353 0.3813 0.8940 +vn -0.0006 0.9129 0.4081 +vn -0.0087 0.9313 0.3641 +vn -0.0062 0.7427 0.6697 +vn 0.0017 0.7060 0.7082 +vn -0.0152 0.3894 0.9210 +vn -0.0155 0.3919 0.9199 +vn -0.3492 0.0006 0.9371 +vn -0.3171 -0.0009 0.9484 +vn -0.0929 -0.4132 0.9059 +vn -0.1047 -0.4191 0.9019 +vn -0.1659 -0.2121 0.9631 +vn -0.2845 -0.0939 0.9541 +vn -0.1849 -0.2333 0.9547 +vn -0.0993 -0.1995 0.9748 +vn -0.0964 -0.0609 0.9935 +vn -0.0000 -0.5214 0.8533 +vn 0.0001 -0.5019 0.8649 +vn -0.0001 -0.2608 0.9654 +vn 0.0001 -0.1853 0.9827 +vn 0.0651 -0.4734 0.8784 +vn 0.2554 -0.2567 0.9321 +vn 0.1263 -0.2703 0.9545 +vn 0.1259 -0.2300 0.9650 +vn 0.0558 -0.2895 0.9555 +vn 0.1853 -0.0787 0.9795 +vn 0.2454 -0.0827 0.9659 +vn -0.0051 0.0017 1.0000 +vn -0.0070 0.0014 1.0000 +vn 0.0132 -0.0017 0.9999 +vn -0.0001 0.0004 1.0000 +vn -0.0000 -0.0002 1.0000 +vn 0.0053 -0.0013 1.0000 +vn -0.0049 -0.0007 1.0000 +vn 0.0018 0.0003 1.0000 +vn 0.0020 0.0003 1.0000 +vn 0.0026 0.0005 1.0000 +vn 0.0045 -0.0019 1.0000 +vn 0.5294 -0.8483 0.0097 +vn 0.5858 -0.8102 0.0217 +vn 0.8960 -0.4437 0.0175 +vn 0.9060 -0.4230 0.0138 +vn -0.0003 -1.0000 0.0027 +vn 0.0002 -0.9998 0.0217 +vn -0.8341 -0.5511 0.0258 +vn -0.7330 -0.6802 -0.0039 +vn -0.3997 -0.9160 0.0356 +vn 0.0001 0.9987 0.0509 +vn 0.0001 0.9986 0.0530 +vn 0.9998 -0.0025 0.0193 +vn 0.9998 -0.0016 0.0174 +vn -0.9998 -0.0054 0.0172 +vn -0.9999 -0.0038 0.0136 +vn 0.9981 0.0443 0.0433 +vn 0.9266 0.3739 0.0403 +vn 0.8946 0.4443 0.0477 +vn 0.7294 0.6829 0.0399 +vn 0.6230 0.7804 0.0527 +vn 0.4271 0.9036 0.0313 +vn 0.9990 0.0084 0.0429 +vn 0.9987 0.0247 0.0454 +vn -0.9985 0.0312 0.0446 +vn -0.9987 0.0208 0.0460 +vn -0.9575 0.2859 0.0390 +vn -0.8879 0.4574 0.0493 +vn -0.7894 0.6128 0.0370 +vn -0.6029 0.7959 0.0556 +vn -0.3997 0.9162 0.0287 +vn 0.9557 0.2908 0.0463 +vn 0.9467 0.3195 0.0405 +vn 0.7389 0.6723 0.0459 +vn 0.7207 0.6921 0.0396 +vn 0.3429 0.9382 0.0461 +vn 0.3264 0.9443 0.0424 +vn 0.0059 0.9989 0.0471 +vn 0.0113 0.9990 0.0438 +vn 0.0174 0.9989 0.0425 +vn -0.0000 0.9990 0.0436 +vn 0.9994 -0.0030 0.0348 +vn 0.9991 -0.0048 0.0415 +vn 0.4866 -0.8723 0.0475 +vn 0.5320 -0.8466 0.0157 +vn 0.8816 -0.4692 0.0517 +vn 0.9058 -0.4230 0.0225 +vn 0.0003 -0.9997 0.0252 +vn 0.0001 -0.9994 0.0355 +vn -0.9456 -0.3247 0.0213 +vn -0.9170 -0.3953 0.0533 +vn -0.6959 -0.7178 0.0211 +vn -0.6653 -0.7455 0.0406 +vn -0.3286 -0.9440 0.0288 +vn -0.3109 -0.9497 0.0366 +vn -0.9993 -0.0021 0.0384 +vn -0.9994 -0.0030 0.0348 +vn -0.0051 0.9990 0.0438 +vn -0.0190 0.9991 0.0385 +vn -0.0000 0.9988 0.0496 +vn -0.0320 0.9985 0.0442 +vn -0.2949 0.9540 0.0534 +vn -0.4497 0.8926 0.0326 +vn -0.6240 0.7796 0.0541 +vn -0.7382 0.6737 0.0353 +vn -0.9132 0.4050 0.0460 +vn -0.9104 0.4113 0.0443 +vn -0.9976 0.0496 0.0477 +vn 0.0016 0.0432 -0.9991 +vn -0.0043 0.0983 -0.9951 +vn 0.0002 0.0149 -0.9999 +vn -0.0001 0.3629 -0.9318 +vn 0.0001 0.3932 -0.9195 +vn -0.0001 0.5571 -0.8304 +vn 0.0002 0.6153 -0.7883 +vn -0.0002 0.7706 -0.6373 +vn 0.0002 0.8165 -0.5773 +vn -0.0000 0.9494 -0.3141 +vn -0.0001 0.9550 -0.2965 +vn -0.0000 -0.0012 -1.0000 +vn 0.0002 -0.0060 -1.0000 vt 0.647387 0.000318 vt 0.415797 0.008175 vt 0.276695 0.005359 @@ -1218,2359 +3032,2171 @@ vt 0.990601 0.996377 vt 0.010459 0.997145 vt 0.982620 0.999538 vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647395 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647400 0.000319 vt 0.647401 0.000319 vt 0.647400 0.000319 -vt 0.647401 0.000319 -vt 0.647400 0.000319 -vt 0.647401 0.000319 -vt 0.647400 0.000319 -vt 0.647401 0.000319 -vt 0.647400 0.000319 -vt 0.647400 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647400 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647401 0.000319 -vt 0.647406 0.000319 -vt 0.647407 0.000319 -vt 0.647406 0.000319 -vt 0.647407 0.000319 -vt 0.647406 0.000319 -vt 0.647407 0.000319 -vt 0.647406 0.000319 vt 0.647406 0.000319 vt 0.647407 0.000319 -vt 0.647407 0.000319 -vt 0.647406 0.000319 -vt 0.647406 0.000319 -vt 0.647407 0.000319 -vt 0.647407 0.000319 -vt 0.647406 0.000319 -vt 0.647406 0.000319 -vt 0.647407 0.000319 -vt 0.647407 0.000319 -vt 0.647406 0.000319 -vt 0.647406 0.000319 -vt 0.647407 0.000319 -vt 0.647407 0.000319 -vt 0.647406 0.000319 -vt 0.647407 0.000319 -vt 0.647406 0.000319 -vt 0.647407 0.000319 -vt 0.647407 0.000319 -vt 0.647406 0.000319 -vt 0.647406 0.000319 -vt 0.647406 0.000319 -vt 0.647407 0.000319 -vt 0.647407 0.000319 -vt 0.647407 0.000318 -vt 0.647407 0.000318 -vt 0.647407 0.000318 -vt 0.647407 0.000318 vt 0.647407 0.000318 -vt 0.647407 0.000318 -vt 0.647408 0.000320 -vt 0.647408 0.000320 -vt 0.647408 0.000320 -vt 0.647408 0.000320 vt 0.647408 0.000320 -vt 0.647408 0.000320 -vt 0.647414 0.000320 vt 0.647414 0.000320 vt 0.647415 0.000320 -vt 0.647415 0.000320 -vt 0.647415 0.000320 -vt 0.647415 0.000320 -vt 0.647415 0.000320 -vt 0.647415 0.000320 -vt 0.647415 0.000320 -vt 0.647415 0.000346 -vt 0.647415 0.000346 -vt 0.647415 0.000346 -vt 0.647415 0.000346 -vt 0.647415 0.000346 vt 0.647415 0.000346 vt 0.647414 0.000346 -vt 0.647414 0.000346 -vt 0.647387 0.000346 -vt 0.647387 0.000346 -vt 0.647387 0.000346 -vt 0.647387 0.000346 -vt 0.647387 0.000346 -vt 0.647387 0.000346 -vt 0.647387 0.000346 -vt 0.647387 0.000346 vt 0.647387 0.000346 vt 0.647387 0.000320 -vt 0.647387 0.000320 -vt 0.647387 0.000320 -vt 0.647387 0.000320 -vt 0.647387 0.000320 -vt 0.647387 0.000320 -vt 0.647387 0.000320 -vt 0.647387 0.000320 -vt 0.647394 0.000320 -vt 0.647394 0.000320 -vt 0.647394 0.000320 -vt 0.647394 0.000320 -vt 0.647394 0.000320 vt 0.647394 0.000320 vt 0.647395 0.000318 vt 0.647394 0.000318 -vt 0.647395 0.000318 -vt 0.647395 0.000318 -vt 0.647395 0.000318 -vt 0.647395 0.000318 vt 0.647404 0.000318 -vt 0.647387 0.000318 s 0 -f 1/1 541/1 149/2 -f 412/1 541/1 1/1 -f 9/1 48/1 47/1 -f 6/1 9/1 47/1 -f 8/3 50/1 48/1 -f 9/1 8/3 48/1 -f 2/1 26/1 69/1 -f 71/1 2/1 69/1 -f 3/1 2/1 71/1 -f 72/1 3/1 71/1 -f 152/1 447/1 150/1 -f 448/1 447/1 152/1 -f 154/1 448/1 152/1 -f 154/1 4/1 448/1 -f 4/1 5/1 450/4 -f 154/1 5/1 4/1 -f 155/1 5/1 154/1 -f 528/1 5/1 155/1 -f 158/1 528/1 155/1 -f 159/1 528/1 158/1 -f 161/1 528/1 159/1 -f 322/1 528/1 161/1 -f 321/5 322/1 161/1 -f 7/1 9/1 6/1 -f 7/1 8/3 9/1 -f 165/1 10/1 7/1 -f 10/1 8/3 7/1 -f 165/1 13/1 10/1 -f 10/1 13/1 8/3 -f 11/1 12/1 165/1 -f 12/1 13/1 165/1 -f 14/1 12/1 11/1 -f 16/1 13/1 12/1 -f 16/1 12/1 14/1 -f 18/1 13/1 16/1 -f 15/1 16/1 14/1 -f 17/1 16/1 15/1 -f 17/1 18/1 16/1 -f 19/1 20/1 17/1 -f 20/1 18/1 17/1 -f 21/1 22/1 19/1 -f 22/1 20/1 19/1 -f 25/1 22/1 21/1 -f 166/1 25/1 21/1 -f 25/1 20/1 22/1 -f 23/1 24/1 166/1 -f 24/1 25/1 166/1 -f 27/1 26/1 2/1 -f 27/1 28/1 26/1 -f 27/1 29/1 28/1 -f 3/1 27/1 2/1 -f 3/1 29/1 27/1 -f 3/1 31/1 29/1 -f 29/1 30/1 28/1 -f 31/1 30/1 29/1 -f 142/1 31/1 3/1 -f 33/1 32/1 30/1 -f 31/1 33/1 30/1 -f 142/1 33/1 31/1 -f 36/1 35/1 32/1 -f 33/1 36/1 32/1 -f 34/1 36/1 33/1 -f 142/1 34/1 33/1 -f 144/1 34/1 142/1 -f 36/1 39/1 35/1 -f 37/1 39/1 36/1 -f 34/1 37/1 36/1 -f 144/1 37/1 34/1 -f 38/1 39/1 37/1 -f 144/1 38/1 37/1 -f 38/1 40/1 39/1 -f 144/1 41/1 38/1 -f 43/1 41/1 144/1 -f 41/1 40/1 38/1 -f 41/1 42/1 40/1 -f 43/1 42/1 41/1 -f 43/1 167/1 42/1 -f 169/1 167/1 43/1 -f 168/1 169/1 43/1 -f 437/1 240/1 237/1 -f 438/1 240/1 437/1 -f 438/1 242/1 240/1 -f 522/1 242/1 438/1 -f 44/1 242/1 522/1 -f 44/1 245/1 242/1 -f 44/1 246/1 245/1 -f 44/1 248/1 246/1 -f 46/1 248/1 44/1 -f 46/1 45/1 248/1 -f 46/1 282/1 45/1 -f 69/1 6/1 47/1 -f 69/1 26/1 6/1 -f 48/1 49/1 47/1 -f 51/1 52/1 49/1 -f 51/1 49/1 48/1 -f 50/1 51/1 48/1 -f 55/1 52/1 51/1 -f 55/1 51/1 50/1 -f 54/1 53/1 52/1 -f 55/1 54/1 52/1 -f 50/1 90/1 55/1 -f 90/1 54/1 55/1 -f 57/1 56/1 53/1 -f 54/1 57/1 53/1 -f 90/1 57/1 54/1 -f 57/1 58/1 56/1 -f 57/1 59/1 58/1 -f 90/1 59/1 57/1 -f 91/1 59/1 90/1 -f 59/1 60/1 58/1 -f 62/1 61/1 60/1 -f 59/1 62/1 60/1 -f 65/1 62/1 59/1 -f 91/1 65/1 59/1 -f 62/1 63/1 61/1 -f 64/1 66/1 63/1 -f 62/1 64/1 63/1 -f 65/1 64/1 62/1 -f 68/1 64/1 65/1 -f 64/1 67/1 66/1 -f 253/1 67/1 64/1 -f 68/1 253/1 64/1 -f 73/1 70/1 69/1 -f 70/1 71/1 69/1 -f 73/1 74/1 70/1 -f 70/1 72/1 71/1 -f 74/1 72/1 70/1 -f 74/1 76/1 72/1 -f 254/1 74/1 73/1 -f 75/1 74/1 254/1 -f 75/1 78/1 74/1 -f 78/1 76/1 74/1 -f 77/1 75/1 254/1 -f 77/1 79/1 75/1 -f 79/1 78/1 75/1 -f 80/1 78/1 79/1 -f 255/1 79/1 77/1 -f 255/1 81/1 79/1 -f 81/1 80/1 79/1 -f 80/1 82/1 78/1 -f 81/1 82/1 80/1 -f 83/1 84/1 255/1 -f 84/1 81/1 255/1 -f 84/1 82/1 81/1 -f 85/1 84/1 83/1 -f 88/1 82/1 84/1 -f 85/1 88/1 84/1 -f 86/1 85/1 83/1 -f 87/1 85/1 86/1 -f 87/1 88/1 85/1 -f 256/1 87/1 86/1 -f 256/1 89/1 87/1 -f 89/1 88/1 87/1 -f 89/1 136/1 88/1 -f 257/1 89/1 256/1 -f 257/1 136/1 89/1 -f 119/1 102/1 50/1 -f 8/3 119/1 50/1 -f 13/1 119/1 8/3 -f 102/1 90/1 50/1 -f 123/1 119/1 13/1 -f 102/1 107/1 90/1 -f 18/1 123/1 13/1 -f 129/1 123/1 18/1 -f 111/1 91/1 90/1 -f 107/1 111/1 90/1 -f 20/1 129/1 18/1 -f 111/1 65/1 91/1 -f 130/1 129/1 20/1 -f 111/1 113/1 65/1 -f 113/1 68/1 65/1 -f 25/1 130/1 20/1 -f 93/1 130/1 25/1 -f 92/1 68/1 113/1 -f 92/1 237/1 68/1 -f 437/1 237/1 92/1 -f 25/1 447/1 93/1 -f 150/1 447/1 25/1 -f 435/1 214/1 212/1 -f 217/1 435/1 293/1 -f 217/1 214/1 435/1 -f 223/1 292/1 98/1 -f 223/1 225/1 292/1 -f 225/1 94/1 292/1 -f 225/1 216/1 94/1 -f 216/1 95/1 94/1 -f 216/1 218/1 95/1 -f 218/1 293/1 95/1 -f 218/1 217/1 293/1 -f 233/1 224/1 96/1 -f 224/1 97/1 96/1 -f 224/1 222/1 97/1 -f 222/1 299/1 97/1 -f 222/1 223/1 299/1 -f 223/1 98/1 299/1 -f 305/1 185/1 96/1 -f 185/1 233/1 96/1 -f 186/1 185/1 305/1 -f 307/1 186/1 305/1 -f 187/1 186/1 307/1 -f 306/1 189/1 307/1 -f 189/1 187/1 307/1 -f 316/1 189/1 306/1 -f 197/1 189/1 316/1 -f 99/1 197/1 316/1 -f 198/1 197/1 99/1 -f 313/1 198/1 99/1 -f 196/1 198/1 313/1 -f 319/1 196/1 313/1 -f 202/1 196/1 319/1 -f 205/1 100/1 454/1 -f 100/1 205/1 319/1 -f 205/1 202/1 319/1 -f 103/1 102/1 101/1 -f 105/1 103/1 101/1 -f 327/1 105/1 101/1 -f 103/1 107/1 102/1 -f 105/1 104/1 103/1 -f 328/1 104/1 105/1 -f 104/1 107/1 103/1 -f 108/1 107/1 104/1 -f 328/1 108/1 104/1 -f 106/1 108/1 328/1 -f 109/1 107/1 108/1 -f 106/1 109/1 108/1 -f 109/1 111/1 107/1 -f 110/1 109/1 106/1 -f 109/1 112/1 111/1 -f 110/1 112/1 109/1 -f 330/1 112/1 110/1 -f 112/1 113/1 111/1 -f 114/1 113/1 112/1 -f 330/1 114/1 112/1 -f 331/1 114/1 330/1 -f 114/1 92/1 113/1 -f 115/1 92/1 114/1 -f 331/1 115/1 114/1 -f 115/1 283/1 92/1 -f 441/1 283/1 115/1 -f 119/1 101/1 102/1 -f 116/1 101/1 119/1 -f 117/1 101/1 116/1 -f 117/1 327/1 101/1 -f 118/1 327/1 117/1 -f 119/1 121/1 116/1 -f 121/1 120/1 116/1 -f 120/1 117/1 116/1 -f 120/1 118/1 117/1 -f 123/1 121/1 119/1 -f 121/1 122/1 120/1 -f 123/1 124/1 121/1 -f 124/1 122/1 121/1 -f 129/1 126/1 123/1 -f 126/1 124/1 123/1 -f 126/1 125/1 124/1 -f 127/1 126/1 129/1 -f 128/1 125/1 126/1 -f 127/1 128/1 126/1 -f 130/1 127/1 129/1 -f 130/1 131/1 127/1 -f 131/1 128/1 127/1 -f 133/1 132/1 130/1 -f 132/1 131/1 130/1 -f 133/1 134/1 132/1 -f 93/1 133/1 130/1 -f 284/1 134/1 133/1 -f 93/1 284/1 133/1 -f 285/1 284/1 93/1 -f 540/1 141/1 272/1 -f 520/1 540/1 272/1 -f 136/1 135/1 353/6 -f 136/1 338/1 135/1 -f 258/1 338/1 136/1 -f 258/1 340/1 338/1 -f 137/1 340/1 258/1 -f 261/1 340/1 137/1 -f 261/1 343/1 340/1 -f 262/1 343/1 261/1 -f 264/1 344/1 262/1 -f 344/1 343/1 262/1 -f 346/1 344/1 264/1 -f 138/1 346/1 264/1 -f 138/1 348/1 346/1 -f 139/1 348/1 138/1 -f 350/1 348/1 139/1 -f 268/1 350/1 139/1 -f 140/1 350/1 268/1 -f 141/1 140/1 268/1 -f 272/1 141/1 268/1 -f 356/1 3/1 72/1 -f 356/1 376/1 3/1 -f 76/1 356/1 72/1 -f 363/1 356/1 76/1 -f 376/1 142/1 3/1 -f 78/1 363/1 76/1 -f 376/1 380/1 142/1 -f 143/1 363/1 78/1 -f 82/1 143/1 78/1 -f 380/1 381/1 142/1 -f 381/1 144/1 142/1 -f 372/1 143/1 82/1 -f 387/1 144/1 381/1 -f 88/1 372/1 82/1 -f 353/6 372/1 88/1 -f 387/1 43/1 144/1 -f 136/1 353/6 88/1 -f 389/1 43/1 387/1 -f 389/1 168/1 43/1 -f 170/1 168/1 389/1 -f 395/1 170/1 389/1 -f 395/1 145/1 170/1 -f 396/1 145/1 395/1 -f 396/1 172/1 145/1 -f 146/1 172/1 396/1 -f 146/1 147/1 172/1 -f 399/1 147/1 146/1 -f 399/1 175/1 147/1 -f 403/1 175/1 399/1 -f 179/1 175/1 403/1 -f 404/1 179/1 403/1 -f 148/1 179/1 404/1 -f 406/1 148/1 404/1 -f 182/1 148/1 406/1 -f 407/1 182/1 406/1 -f 149/2 182/1 407/1 -f 1/1 149/2 407/1 -f 151/1 152/1 150/1 -f 413/1 153/1 151/1 -f 151/1 153/1 152/1 -f 153/1 154/1 152/1 -f 413/1 160/1 153/1 -f 153/1 157/1 154/1 -f 160/1 156/1 153/1 -f 156/1 157/1 153/1 -f 157/1 155/1 154/1 -f 158/1 155/1 157/1 -f 157/1 163/1 158/1 -f 160/1 162/1 156/1 -f 156/1 163/1 157/1 -f 162/1 163/1 156/1 -f 158/1 164/1 159/1 -f 164/1 161/1 159/1 -f 163/1 164/1 158/1 -f 162/1 164/1 163/1 -f 164/1 321/5 161/1 -f 413/1 24/1 23/1 -f 413/1 151/1 24/1 -f 151/1 150/1 24/1 -f 150/1 25/1 24/1 -f 26/1 7/1 6/1 -f 28/1 165/1 7/1 -f 26/1 28/1 7/1 -f 28/1 11/1 165/1 -f 30/1 14/1 11/1 -f 28/1 30/1 11/1 -f 32/1 15/1 14/1 -f 30/1 32/1 14/1 -f 35/1 17/1 15/1 -f 32/1 35/1 15/1 -f 35/1 19/1 17/1 -f 35/1 39/1 19/1 -f 39/1 21/1 19/1 -f 40/1 21/1 39/1 -f 40/1 166/1 21/1 -f 42/1 166/1 40/1 -f 42/1 23/1 166/1 -f 167/1 23/1 42/1 -f 170/1 169/1 168/1 -f 169/1 171/1 167/1 -f 170/1 171/1 169/1 -f 171/1 173/1 167/1 -f 145/1 171/1 170/1 -f 145/1 172/1 171/1 -f 172/1 173/1 171/1 -f 147/1 173/1 172/1 -f 147/1 174/1 173/1 -f 147/1 177/1 174/1 -f 175/1 177/1 147/1 -f 177/1 176/1 174/1 -f 179/1 177/1 175/1 -f 177/1 178/1 176/1 -f 179/1 178/1 177/1 -f 179/1 148/1 178/1 -f 180/1 176/1 178/1 -f 148/1 180/1 178/1 -f 180/1 181/1 176/1 -f 148/1 182/1 180/1 -f 183/1 181/1 180/1 -f 182/1 183/1 180/1 -f 149/2 183/1 182/1 -f 183/1 184/1 181/1 -f 541/1 184/1 183/1 -f 149/2 541/1 183/1 -f 186/1 188/1 185/1 -f 187/1 188/1 186/1 -f 188/1 191/1 185/1 -f 189/1 190/1 187/1 -f 200/1 189/1 197/1 -f 187/1 190/1 188/1 -f 200/1 193/1 189/1 -f 193/1 190/1 189/1 -f 188/1 192/1 191/1 -f 195/1 192/1 188/1 -f 190/1 195/1 188/1 -f 192/1 194/2 191/1 -f 193/1 195/1 190/1 -f 200/1 195/1 193/1 -f 195/1 194/2 192/1 -f 198/1 200/1 197/1 -f 196/1 201/1 198/1 -f 199/1 201/1 196/1 -f 202/1 199/1 196/1 -f 203/1 199/1 202/1 -f 198/1 201/1 200/1 -f 200/1 201/1 195/1 -f 203/1 201/1 199/1 -f 204/1 202/1 205/1 -f 204/1 203/1 202/1 -f 206/1 205/1 210/1 -f 205/1 458/1 210/1 -f 205/1 454/1 458/1 -f 206/1 204/1 205/1 -f 320/1 208/1 207/1 -f 208/1 325/1 207/1 -f 325/1 324/1 207/1 -f 208/1 415/1 325/1 -f 415/1 209/1 325/1 -f 415/1 210/1 209/1 -f 418/1 206/1 210/1 -f 415/1 416/1 210/1 -f 417/1 418/1 210/1 -f 416/1 417/1 210/1 -f 432/1 213/1 211/1 -f 212/1 213/1 432/1 -f 214/1 213/1 212/1 -f 215/1 213/1 214/1 -f 217/1 215/1 214/1 -f 219/1 215/1 217/1 -f 420/1 215/1 219/1 -f 219/1 217/1 218/1 -f 225/1 221/1 216/1 -f 221/1 218/1 216/1 -f 220/1 221/1 225/1 -f 221/1 219/1 218/1 -f 221/1 420/1 219/1 -f 230/1 221/1 220/1 -f 230/1 420/1 221/1 -f 233/1 226/1 224/1 -f 227/1 222/1 224/1 -f 227/1 228/1 222/1 -f 228/1 223/1 222/1 -f 228/1 225/1 223/1 -f 226/1 227/1 224/1 -f 220/1 225/1 228/1 -f 231/1 228/1 227/1 -f 229/1 227/1 226/1 -f 229/1 231/1 227/1 -f 230/1 220/1 228/1 -f 231/1 230/1 228/1 -f 229/1 232/1 231/1 -f 232/1 230/1 231/1 -f 185/1 226/1 233/1 -f 191/1 226/1 185/1 -f 191/1 229/1 226/1 -f 191/1 194/2 229/1 -f 194/2 232/1 229/1 -f 274/1 234/1 280/1 -f 235/1 422/1 274/1 -f 422/1 234/1 274/1 -f 425/1 235/1 274/1 -f 428/1 426/1 274/1 -f 426/1 425/1 274/1 -f 275/1 428/1 274/1 -f 211/1 428/1 275/1 -f 236/1 279/1 275/1 -f 279/1 211/1 275/1 -f 213/1 428/1 211/1 -f 240/1 238/1 237/1 -f 240/1 239/1 238/1 -f 241/1 239/1 240/1 -f 241/1 244/1 239/1 -f 244/1 243/1 239/1 -f 242/1 241/1 240/1 -f 245/1 241/1 242/1 -f 244/1 241/1 245/1 -f 249/1 243/1 244/1 -f 247/1 244/1 245/1 -f 246/1 247/1 245/1 -f 247/1 249/1 244/1 -f 249/1 252/1 243/1 -f 250/1 249/1 247/1 -f 248/1 247/1 246/1 -f 250/1 247/1 248/1 -f 45/1 250/1 248/1 -f 252/1 249/1 250/1 -f 45/1 251/1 250/1 -f 282/1 251/1 45/1 -f 251/1 252/1 250/1 -f 239/1 243/1 67/1 -f 253/1 239/1 67/1 -f 238/1 239/1 253/1 -f 68/1 238/1 253/1 -f 237/1 238/1 68/1 -f 49/1 73/1 47/1 -f 73/1 69/1 47/1 -f 52/1 73/1 49/1 -f 254/1 73/1 52/1 -f 53/1 254/1 52/1 -f 56/1 254/1 53/1 -f 77/1 254/1 56/1 -f 58/1 77/1 56/1 -f 255/1 77/1 58/1 -f 60/1 255/1 58/1 -f 83/1 255/1 60/1 -f 61/1 83/1 60/1 -f 86/1 83/1 61/1 -f 63/1 86/1 61/1 -f 66/1 86/1 63/1 -f 66/1 256/1 86/1 -f 67/1 256/1 66/1 -f 259/1 257/1 256/1 -f 259/1 258/1 257/1 -f 258/1 136/1 257/1 -f 259/1 137/1 258/1 -f 260/1 137/1 259/1 -f 260/1 261/1 137/1 -f 263/1 260/1 259/1 -f 263/1 262/1 260/1 -f 262/1 261/1 260/1 -f 263/1 265/1 262/1 -f 265/1 264/1 262/1 -f 138/1 264/1 265/1 -f 266/1 265/1 263/1 -f 266/1 139/1 265/1 -f 139/1 138/1 265/1 -f 267/1 268/1 266/1 -f 268/1 139/1 266/1 -f 270/1 267/1 266/1 -f 270/1 271/1 267/1 -f 271/1 272/1 267/1 -f 272/1 268/1 267/1 -f 269/1 271/1 270/1 -f 269/1 520/1 271/1 -f 520/1 272/1 271/1 -f 276/1 275/1 273/1 -f 275/1 274/1 273/1 -f 236/1 275/1 276/1 -f 277/1 236/1 276/1 -f 278/1 236/1 277/1 -f 279/1 236/1 278/1 -f 430/1 279/1 278/1 -f 211/1 279/1 430/1 -f 432/1 211/1 430/1 -f 251/1 280/1 252/1 -f 282/1 280/1 251/1 -f 46/1 281/1 282/1 -f 281/1 280/1 282/1 -f 273/1 274/1 281/1 -f 274/1 280/1 281/1 -f 436/1 283/1 441/1 -f 436/1 437/1 283/1 -f 437/1 92/1 283/1 -f 285/1 445/1 284/1 -f 446/1 445/1 285/1 -f 93/1 446/1 285/1 -f 447/1 446/1 93/1 -f 291/1 286/1 288/1 -f 291/1 435/1 286/1 -f 293/1 435/1 291/1 -f 297/1 289/1 287/1 -f 290/1 288/1 287/1 -f 298/1 289/1 297/1 -f 289/1 290/1 287/1 -f 95/1 288/1 290/1 -f 95/1 291/1 288/1 -f 98/1 289/1 298/1 -f 292/1 290/1 289/1 -f 98/1 292/1 289/1 -f 292/1 94/1 290/1 -f 94/1 95/1 290/1 -f 95/1 293/1 291/1 -f 300/1 295/1 294/1 -f 297/1 287/1 294/1 -f 295/1 296/1 294/1 -f 296/1 297/1 294/1 -f 295/1 97/1 296/1 -f 98/1 298/1 297/1 -f 300/1 97/1 295/1 -f 296/1 98/1 297/1 -f 97/1 299/1 296/1 -f 96/1 97/1 300/1 -f 299/1 98/1 296/1 -f 302/1 294/1 301/1 -f 302/1 300/1 294/1 -f 304/1 300/1 302/1 -f 304/1 96/1 300/1 -f 305/1 96/1 304/1 -f 301/1 303/1 302/1 -f 314/1 303/1 301/1 -f 309/1 314/1 301/1 -f 303/1 304/1 302/1 -f 310/1 314/1 309/1 -f 314/1 306/1 303/1 -f 316/1 306/1 314/1 -f 303/1 305/1 304/1 -f 307/1 305/1 303/1 -f 306/1 307/1 303/1 -f 308/1 310/1 309/1 -f 311/1 310/1 308/1 -f 317/1 311/1 308/1 -f 317/1 313/1 311/1 -f 315/1 313/1 317/1 -f 312/1 315/1 317/1 -f 311/1 99/1 310/1 -f 313/1 99/1 311/1 -f 310/1 316/1 314/1 -f 312/1 319/1 315/1 -f 99/1 316/1 310/1 -f 315/1 319/1 313/1 -f 318/1 312/1 317/1 -f 100/1 312/1 318/1 -f 100/1 319/1 312/1 -f 320/1 164/1 162/1 -f 320/1 321/5 164/1 -f 320/1 322/1 321/5 -f 320/1 323/1 322/1 -f 320/1 207/1 452/1 -f 323/1 320/1 452/1 -f 324/1 452/1 207/1 -f 324/1 453/1 452/1 -f 325/1 453/1 324/1 -f 325/1 326/1 453/1 -f 209/1 326/1 325/1 -f 209/1 456/1 326/1 -f 210/1 456/1 209/1 -f 210/1 458/1 456/1 -f 464/1 105/1 327/1 -f 464/1 462/1 105/1 -f 462/1 328/1 105/1 -f 462/1 106/1 328/1 -f 329/1 106/1 462/1 -f 329/1 110/1 106/1 -f 329/1 330/1 110/1 -f 461/1 330/1 329/1 -f 461/1 331/1 330/1 -f 443/1 331/1 461/1 -f 443/1 115/1 331/1 -f 443/1 441/1 115/1 -f 465/1 464/1 118/1 -f 464/1 327/1 118/1 -f 120/1 465/1 118/1 -f 122/1 465/1 120/1 -f 466/1 465/1 122/1 -f 124/1 466/1 122/1 -f 125/1 466/1 124/1 -f 128/1 332/1 125/1 -f 332/1 466/1 125/1 -f 131/1 332/1 128/1 -f 132/1 332/1 131/1 -f 134/1 332/1 132/1 -f 134/1 467/1 332/1 -f 284/1 467/1 134/1 -f 352/1 333/1 351/1 -f 540/1 333/1 352/1 -f 141/1 540/1 352/1 -f 334/1 337/1 355/1 -f 335/1 337/1 334/1 -f 338/1 335/1 135/1 -f 336/1 337/1 335/1 -f 338/1 336/1 335/1 -f 336/1 339/1 337/1 -f 338/1 340/1 336/1 -f 339/1 341/1 337/1 -f 340/1 339/1 336/1 -f 343/1 339/1 340/1 -f 339/1 342/1 341/1 -f 343/1 342/1 339/1 -f 343/1 344/1 342/1 -f 342/1 345/1 341/1 -f 344/1 345/1 342/1 -f 346/1 345/1 344/1 -f 346/1 347/1 345/1 -f 348/1 347/1 346/1 -f 347/1 349/1 345/1 -f 350/1 349/1 347/1 -f 348/1 350/1 347/1 -f 350/1 351/1 349/1 -f 140/1 351/1 350/1 -f 140/1 352/1 351/1 -f 141/1 352/1 140/1 -f 135/1 354/1 353/6 -f 135/1 335/1 354/1 -f 334/1 354/1 335/1 -f 358/1 357/1 356/1 -f 363/1 361/1 356/1 -f 358/1 360/1 357/1 -f 360/1 359/1 357/1 -f 361/1 358/1 356/1 -f 361/1 362/1 358/1 -f 362/1 360/1 358/1 -f 361/1 364/1 362/1 -f 363/1 365/1 361/1 -f 365/1 364/1 361/1 -f 365/1 367/1 364/1 -f 143/1 366/1 363/1 -f 366/1 365/1 363/1 -f 366/1 367/1 365/1 -f 368/1 367/1 366/1 -f 143/1 369/1 366/1 -f 369/1 368/1 366/1 -f 372/1 369/1 143/1 -f 369/1 370/1 368/1 -f 371/1 369/1 372/1 -f 371/1 370/1 369/1 -f 374/1 370/1 371/1 -f 353/6 354/1 372/1 -f 354/1 371/1 372/1 -f 354/1 373/1 371/1 -f 373/1 374/1 371/1 -f 334/1 373/1 354/1 -f 334/1 355/1 373/1 -f 355/1 374/1 373/1 -f 357/1 376/1 356/1 -f 357/1 375/1 376/1 -f 359/1 375/1 357/1 -f 475/1 375/1 359/1 -f 375/1 377/1 376/1 -f 377/1 380/1 376/1 -f 378/1 377/1 375/1 -f 475/1 378/1 375/1 -f 379/1 380/1 377/1 -f 378/1 379/1 377/1 -f 476/2 379/1 378/1 -f 476/2 380/1 379/1 -f 383/1 380/1 476/2 -f 477/1 383/1 476/2 -f 383/1 381/1 380/1 -f 477/1 382/1 383/1 -f 383/1 384/1 381/1 -f 385/1 384/1 383/1 -f 382/1 385/1 383/1 -f 479/1 385/1 382/1 -f 384/1 387/1 381/1 -f 386/1 387/1 384/1 -f 385/1 386/1 384/1 -f 479/1 386/1 385/1 -f 480/2 386/1 479/1 -f 386/1 388/1 387/1 -f 390/1 388/1 386/1 -f 480/2 390/1 386/1 -f 391/1 390/1 480/2 -f 388/1 389/1 387/1 -f 391/1 392/1 390/1 -f 392/1 393/1 390/1 -f 393/1 388/1 390/1 -f 393/1 389/1 388/1 -f 394/1 393/1 392/1 -f 393/1 395/1 389/1 -f 394/1 395/1 393/1 -f 396/1 395/1 394/1 -f 398/1 397/1 394/1 -f 397/1 396/1 394/1 -f 146/1 396/1 397/1 -f 398/1 400/1 397/1 -f 400/1 146/1 397/1 -f 400/1 399/1 146/1 -f 401/1 400/1 398/1 -f 401/1 402/1 400/1 -f 402/1 403/1 400/1 -f 403/1 399/1 400/1 -f 405/1 402/1 401/1 -f 405/1 404/1 402/1 -f 404/1 403/1 402/1 -f 408/1 404/1 405/1 -f 408/1 406/1 404/1 -f 411/1 408/1 405/1 -f 411/1 409/1 408/1 -f 407/1 406/1 408/1 -f 409/1 407/1 408/1 -f 409/1 1/1 407/1 -f 410/1 409/1 411/1 -f 410/1 412/1 409/1 -f 412/1 1/1 409/1 -f 181/1 23/1 167/1 -f 184/1 413/1 23/1 -f 181/1 184/1 23/1 -f 173/1 181/1 167/1 -f 176/1 181/1 173/1 -f 174/1 176/1 173/1 -f 482/1 413/1 184/1 -f 482/1 160/1 413/1 -f 482/1 162/1 160/1 -f 482/1 208/1 162/1 -f 208/1 320/1 162/1 -f 485/1 208/1 482/1 -f 414/1 208/1 485/1 -f 415/1 208/1 414/1 -f 488/1 415/1 414/1 -f 491/1 415/1 488/1 -f 416/1 415/1 491/1 -f 493/1 416/1 491/1 -f 494/1 416/1 493/1 -f 417/1 416/1 494/1 -f 497/1 417/1 494/1 -f 500/1 417/1 497/1 -f 502/1 418/1 500/1 -f 418/1 417/1 500/1 -f 504/1 418/1 502/1 -f 230/1 232/1 419/1 -f 428/1 215/1 419/1 -f 215/1 420/1 419/1 -f 420/1 230/1 419/1 -f 232/1 504/1 419/1 -f 204/1 418/1 504/1 -f 203/1 204/1 504/1 -f 194/2 195/1 504/1 -f 195/1 201/1 504/1 -f 201/1 203/1 504/1 -f 232/1 194/2 504/1 -f 428/1 213/1 215/1 -f 206/1 418/1 204/1 -f 234/1 508/1 421/1 -f 234/1 510/1 508/1 -f 422/1 510/1 234/1 -f 422/1 423/1 510/1 -f 235/1 423/1 422/1 -f 235/1 513/1 423/1 -f 235/1 424/1 513/1 -f 425/1 424/1 235/1 -f 425/1 516/1 424/1 -f 425/1 427/1 516/1 -f 425/1 426/1 427/1 -f 426/1 519/1 427/1 -f 426/1 428/1 519/1 -f 428/1 419/1 519/1 -f 270/1 259/1 256/1 -f 269/1 270/1 256/1 -f 67/1 269/1 256/1 -f 421/1 269/1 67/1 -f 243/1 421/1 67/1 -f 270/1 266/1 259/1 -f 266/1 263/1 259/1 -f 252/1 421/1 243/1 -f 280/1 234/1 252/1 -f 234/1 421/1 252/1 -f 429/1 273/1 281/1 -f 429/1 277/1 273/1 -f 277/1 276/1 273/1 -f 429/1 431/1 277/1 -f 431/1 278/1 277/1 -f 431/1 430/1 278/1 -f 431/1 432/1 430/1 -f 431/1 433/1 432/1 -f 525/1 212/1 432/1 -f 433/1 434/1 432/1 -f 434/1 525/1 432/1 -f 439/1 438/1 437/1 -f 436/1 439/1 437/1 -f 440/1 439/1 436/1 -f 439/1 522/1 438/1 -f 440/1 522/1 439/1 -f 436/1 441/1 443/1 -f 442/1 436/1 443/1 -f 442/1 440/1 436/1 -f 284/1 444/1 467/1 -f 445/1 444/1 284/1 -f 445/1 449/2 444/1 -f 448/1 446/1 447/1 -f 4/1 446/1 448/1 -f 4/1 445/1 446/1 -f 450/4 445/1 4/1 -f 450/4 449/2 445/1 -f 288/1 286/1 451/1 -f 553/1 301/1 451/1 -f 301/1 294/1 451/1 -f 287/1 288/1 451/1 -f 294/1 287/1 451/1 -f 309/1 301/1 553/1 -f 308/1 309/1 553/1 -f 318/1 317/1 553/1 -f 317/1 308/1 553/1 -f 530/1 323/1 452/1 -f 453/1 530/1 452/1 -f 457/1 530/1 453/1 -f 326/1 457/1 453/1 -f 456/1 457/1 326/1 -f 454/1 529/1 458/1 -f 529/1 455/1 458/1 -f 458/1 457/1 456/1 -f 459/1 457/1 458/1 -f 455/1 459/1 458/1 -f 463/1 460/1 464/1 -f 461/1 329/1 464/1 -f 460/1 443/1 464/1 -f 443/1 461/1 464/1 -f 465/1 463/1 464/1 -f 329/1 462/1 464/1 -f 562/1 463/1 465/1 -f 466/1 562/1 465/1 -f 332/1 562/1 466/1 -f 564/1 562/1 332/1 -f 467/1 564/1 332/1 -f 460/1 442/1 443/1 -f 444/1 556/1 467/1 -f 556/1 564/1 467/1 -f 468/1 564/1 556/1 -f 451/1 468/1 556/1 -f 469/1 451/1 556/1 -f 558/1 451/1 469/1 -f 559/1 451/1 558/1 -f 553/1 451/1 559/1 -f 351/1 333/1 474/1 -f 355/1 351/1 474/1 -f 337/1 351/1 355/1 -f 345/1 349/1 337/1 -f 349/1 351/1 337/1 -f 341/1 345/1 337/1 -f 360/1 470/1 359/1 -f 362/1 470/1 360/1 -f 471/1 470/1 362/1 -f 364/1 471/1 362/1 -f 472/1 471/1 364/1 -f 367/1 472/1 364/1 -f 368/1 472/1 367/1 -f 370/1 472/1 368/1 -f 473/1 472/1 370/1 -f 374/1 473/1 370/1 -f 374/1 474/1 473/1 -f 355/1 474/1 374/1 -f 359/1 470/1 475/1 -f 470/1 533/1 475/1 -f 533/1 378/1 475/1 -f 533/1 535/1 378/1 -f 535/1 476/2 378/1 -f 535/1 477/1 476/2 -f 535/1 478/1 477/1 -f 478/1 382/1 477/1 -f 478/1 536/1 382/1 -f 536/1 479/1 382/1 -f 536/1 480/2 479/1 -f 481/1 480/2 536/1 -f 481/1 391/1 480/2 -f 481/1 392/1 391/1 -f 481/1 410/1 392/1 -f 410/1 411/1 392/1 -f 411/1 394/1 392/1 -f 411/1 405/1 394/1 -f 405/1 401/1 394/1 -f 401/1 398/1 394/1 -f 483/1 482/1 184/1 -f 541/1 483/1 184/1 -f 487/1 483/1 541/1 -f 484/1 483/1 487/1 -f 484/1 485/1 483/1 -f 485/1 482/1 483/1 -f 486/1 485/1 484/1 -f 486/1 414/1 485/1 -f 492/1 484/1 487/1 -f 492/1 486/1 484/1 -f 489/1 486/1 492/1 -f 489/1 488/1 486/1 -f 488/1 414/1 486/1 -f 491/1 488/1 489/1 -f 492/1 490/1 489/1 -f 490/1 491/1 489/1 -f 493/1 491/1 490/1 -f 495/1 490/1 492/1 -f 495/1 493/1 490/1 -f 496/1 495/1 492/1 -f 495/1 494/1 493/1 -f 496/1 497/1 495/1 -f 497/1 494/1 495/1 -f 501/1 498/1 496/1 -f 498/1 497/1 496/1 -f 498/1 500/1 497/1 -f 501/1 499/1 498/1 -f 499/1 500/1 498/1 -f 499/1 502/1 500/1 -f 503/1 499/1 501/1 -f 503/1 502/1 499/1 -f 503/1 504/1 502/1 -f 503/1 501/1 518/1 -f 505/1 503/1 518/1 -f 504/1 503/1 505/1 -f 419/1 504/1 505/1 -f 508/1 506/1 507/1 -f 421/1 508/1 507/1 -f 509/1 511/1 506/1 -f 508/1 509/1 506/1 -f 510/1 509/1 508/1 -f 509/1 512/1 511/1 -f 423/1 512/1 509/1 -f 510/1 423/1 509/1 -f 513/1 512/1 423/1 -f 512/1 514/1 511/1 -f 424/1 514/1 512/1 -f 513/1 424/1 512/1 -f 516/1 515/1 514/1 -f 424/1 516/1 514/1 -f 515/1 517/1 514/1 -f 516/1 517/1 515/1 -f 427/1 517/1 516/1 -f 519/1 518/1 517/1 -f 427/1 519/1 517/1 -f 519/1 505/1 518/1 -f 419/1 505/1 519/1 -f 421/1 507/1 269/1 -f 507/1 520/1 269/1 -f 507/1 506/1 520/1 -f 523/1 522/1 521/1 -f 523/1 44/1 522/1 -f 523/1 46/1 44/1 -f 523/1 429/1 46/1 -f 429/1 281/1 46/1 -f 524/1 429/1 523/1 -f 431/1 429/1 524/1 -f 433/1 431/1 524/1 -f 547/1 433/1 524/1 -f 547/1 434/1 433/1 -f 551/1 434/1 547/1 -f 526/1 434/1 551/1 -f 526/1 525/1 434/1 -f 526/1 212/1 525/1 -f 286/1 435/1 212/1 -f 526/1 527/1 212/1 -f 527/1 286/1 212/1 -f 451/1 527/1 538/1 -f 286/1 527/1 451/1 -f 442/1 539/1 521/1 -f 522/1 442/1 521/1 -f 522/1 440/1 442/1 -f 5/1 544/1 542/1 -f 450/4 5/1 542/1 -f 528/1 544/1 5/1 -f 530/1 544/1 528/1 -f 322/1 530/1 528/1 -f 323/1 530/1 322/1 -f 444/1 542/1 560/1 -f 449/2 450/4 542/1 -f 444/1 449/2 542/1 -f 549/1 553/1 550/1 -f 549/1 318/1 553/1 -f 318/1 454/1 100/1 -f 549/1 529/1 454/1 -f 318/1 549/1 454/1 -f 549/1 531/1 529/1 -f 457/1 544/1 530/1 -f 457/1 546/1 544/1 -f 457/1 548/1 546/1 -f 459/1 548/1 457/1 -f 455/1 548/1 459/1 -f 552/1 548/1 455/1 -f 529/1 552/1 455/1 -f 531/1 552/1 529/1 -f 333/1 533/1 470/1 -f 474/1 333/1 470/1 -f 539/1 532/1 533/1 -f 532/1 534/1 533/1 -f 333/1 539/1 533/1 -f 472/1 473/1 470/1 -f 473/1 474/1 470/1 -f 534/1 535/1 533/1 -f 471/1 472/1 470/1 -f 534/1 478/1 535/1 -f 534/1 536/1 478/1 -f 534/1 537/1 536/1 -f 537/1 481/1 536/1 -f 537/1 410/1 481/1 -f 561/1 563/1 410/1 -f 563/1 538/1 410/1 -f 554/1 560/1 410/1 -f 537/1 561/1 410/1 -f 538/1 543/1 410/1 -f 557/1 555/1 410/1 -f 555/1 554/1 410/1 -f 543/1 557/1 410/1 -f 560/1 412/1 410/1 -f 540/1 539/1 333/1 -f 521/1 539/1 540/1 -f 506/1 521/1 520/1 -f 521/1 540/1 520/1 -f 560/1 541/1 412/1 -f 542/1 487/1 541/1 -f 560/1 542/1 541/1 -f 506/1 523/1 521/1 -f 544/1 487/1 542/1 -f 538/1 545/1 543/1 -f 506/1 524/1 523/1 -f 546/1 487/1 544/1 -f 511/1 524/1 506/1 -f 492/1 487/1 546/1 -f 538/1 550/1 545/1 -f 548/1 492/1 546/1 -f 511/1 547/1 524/1 -f 511/1 514/1 547/1 -f 496/1 492/1 548/1 -f 517/1 551/1 547/1 -f 514/1 517/1 547/1 -f 552/1 496/1 548/1 -f 501/1 496/1 552/1 -f 549/1 550/1 538/1 -f 527/1 549/1 538/1 -f 517/1 526/1 551/1 -f 531/1 501/1 552/1 -f 517/1 518/1 526/1 -f 518/1 527/1 526/1 -f 518/1 549/1 527/1 -f 518/1 501/1 549/1 -f 501/1 531/1 549/1 -f 550/1 559/1 545/1 -f 550/1 553/1 559/1 -f 555/1 556/1 554/1 -f 557/1 469/1 555/1 -f 469/1 556/1 555/1 -f 543/1 558/1 557/1 -f 558/1 469/1 557/1 -f 559/1 558/1 543/1 -f 545/1 559/1 543/1 -f 556/1 444/1 554/1 -f 444/1 560/1 554/1 -f 442/1 460/1 539/1 -f 460/1 532/1 539/1 -f 460/1 534/1 532/1 -f 463/1 534/1 460/1 -f 463/1 537/1 534/1 -f 562/1 537/1 463/1 -f 562/1 561/1 537/1 -f 564/1 561/1 562/1 -f 564/1 563/1 561/1 -f 468/1 563/1 564/1 -f 468/1 451/1 563/1 -f 451/1 538/1 563/1 -f 565/7 570/8 682/9 -f 567/10 565/7 682/9 -f 566/11 565/7 567/10 -f 599/12 566/11 567/10 -f 659/13 569/14 567/10 -f 568/15 599/12 567/10 -f 569/14 568/15 567/10 -f 570/8 684/16 682/9 -f 565/7 605/17 570/8 -f 605/17 606/18 570/8 -f 606/18 578/19 570/8 -f 640/20 638/21 569/14 -f 642/22 640/20 569/14 -f 581/23 642/22 569/14 -f 638/21 568/15 569/14 -f 571/24 605/17 565/7 -f 610/25 608/26 565/7 -f 608/26 571/24 565/7 -f 582/27 610/25 565/7 -f 588/28 582/27 565/7 -f 566/11 623/29 565/7 -f 623/29 572/30 565/7 -f 572/30 573/31 565/7 -f 573/31 624/32 565/7 -f 624/32 627/33 565/7 -f 627/33 588/28 565/7 -f 574/34 623/29 566/11 -f 575/35 574/34 566/11 -f 629/36 626/37 566/11 -f 599/12 629/36 566/11 -f 626/37 575/35 566/11 -f 638/21 576/38 568/15 -f 576/38 577/39 568/15 -f 577/39 643/40 568/15 -f 643/40 646/41 568/15 -f 646/41 599/12 568/15 -f 580/42 642/22 581/23 -f 578/19 579/43 570/8 -f 611/44 590/45 570/8 -f 579/43 611/44 570/8 -f 589/46 649/47 581/23 -f 649/47 580/42 581/23 -f 613/48 590/45 611/44 -f 588/28 614/49 582/27 -f 630/50 588/28 627/33 -f 599/12 584/51 629/36 -f 583/52 599/12 646/41 -f 589/46 585/53 649/47 -f 616/54 590/45 613/48 -f 632/55 588/28 630/50 -f 586/56 599/12 583/52 -f 588/28 619/57 614/49 -f 599/12 635/58 584/51 -f 589/46 655/59 585/53 -f 618/60 590/45 616/54 -f 633/61 588/28 632/55 -f 653/62 599/12 586/56 -f 622/63 590/45 618/60 -f 588/28 621/64 619/57 -f 636/65 588/28 633/61 -f 599/12 587/66 635/58 -f 657/67 599/12 653/62 -f 589/46 656/68 655/59 -f 588/28 590/45 621/64 -f 621/64 590/45 622/63 -f 599/12 588/28 636/65 -f 587/66 599/12 636/65 -f 589/46 599/12 657/67 -f 656/68 589/46 657/67 -f 662/69 599/12 589/46 -f 588/28 591/70 590/45 -f 593/71 599/12 662/69 -f 588/28 592/72 591/70 -f 592/72 595/73 594/74 -f 665/75 593/71 663/76 -f 667/77 593/71 665/75 -f 592/72 678/78 595/73 -f 596/79 593/71 667/77 -f 592/72 598/80 678/78 -f 597/81 593/71 596/79 -f 669/82 593/71 597/81 -f 599/12 592/72 588/28 -f 592/72 600/83 598/80 -f 675/84 592/72 599/12 -f 593/71 675/84 599/12 -f 675/84 593/71 669/82 -f 672/85 600/83 592/72 -f 669/82 601/86 675/84 -f 673/87 672/85 592/72 -f 601/86 602/88 675/84 -f 603/89 673/87 592/72 -f 675/84 603/89 592/72 -f 602/88 604/90 675/84 -f 690/91 606/92 698/93 -f 606/92 605/94 698/93 -f 605/94 607/95 698/93 -f 571/96 607/95 605/94 -f 692/97 578/98 690/91 -f 578/98 606/92 690/91 -f 571/96 702/99 607/95 -f 608/100 702/99 571/96 -f 694/101 578/98 692/97 -f 608/100 609/102 702/99 -f 610/103 609/102 608/100 -f 579/104 578/98 694/101 -f 704/105 611/106 694/101 -f 611/106 579/104 694/101 -f 610/103 612/107 609/102 -f 582/108 612/107 610/103 -f 613/109 611/106 704/105 -f 615/110 613/109 704/105 -f 582/108 706/111 612/107 -f 614/112 706/111 582/108 -f 616/113 613/109 615/110 -f 614/112 617/114 706/111 -f 709/115 616/113 615/110 -f 619/116 617/114 614/112 -f 618/117 616/113 709/115 -f 619/116 620/118 617/114 -f 622/119 618/117 709/115 -f 712/120 622/119 709/115 -f 621/121 620/118 619/116 -f 621/121 712/120 620/118 -f 712/120 621/121 622/119 -f 685/122 572/123 699/124 -f 572/123 623/125 699/124 -f 623/125 701/126 699/124 -f 574/127 701/126 623/125 -f 686/128 573/129 685/122 -f 573/129 572/123 685/122 -f 575/130 701/126 574/127 -f 624/131 573/129 686/128 -f 575/130 703/132 701/126 -f 625/133 624/131 686/128 -f 626/134 703/132 575/130 -f 627/135 624/131 625/133 -f 626/134 628/136 703/132 -f 697/137 627/135 625/133 -f 629/138 628/136 626/134 -f 630/139 627/135 697/137 -f 696/140 630/139 697/137 -f 629/138 631/141 628/136 -f 584/142 631/141 629/138 -f 632/143 630/139 696/140 -f 584/142 708/144 631/141 -f 695/145 632/143 696/140 -f 635/146 708/144 584/142 -f 633/147 632/143 695/145 -f 635/146 634/148 708/144 -f 636/149 633/147 695/145 -f 637/150 636/149 695/145 -f 635/146 711/151 634/148 -f 587/152 711/151 635/146 -f 587/152 637/150 711/151 -f 637/150 587/152 636/149 -f 576/153 638/154 689/155 -f 638/154 688/156 689/155 -f 639/157 576/153 689/155 -f 640/158 688/156 638/154 -f 641/159 577/160 639/157 -f 577/160 576/153 639/157 -f 640/158 687/161 688/156 -f 642/162 687/161 640/158 -f 644/163 643/164 641/159 -f 643/164 577/160 641/159 -f 580/165 687/161 642/162 -f 580/165 645/166 687/161 -f 647/167 646/168 644/163 -f 646/168 643/164 644/163 -f 580/165 648/169 645/166 -f 649/170 648/169 580/165 -f 583/171 646/168 647/167 -f 650/172 583/171 647/167 -f 649/170 707/173 648/169 -f 585/174 707/173 649/170 -f 586/175 583/171 650/172 -f 585/174 651/176 707/173 -f 654/177 586/175 650/172 -f 655/178 651/176 585/174 -f 655/178 652/179 651/176 -f 653/180 586/175 654/177 -f 657/181 653/180 654/177 -f 710/182 657/181 654/177 -f 655/178 713/183 652/179 -f 656/184 713/183 655/178 -f 713/183 657/181 710/182 -f 713/183 656/184 657/181 -f 660/185 659/186 658/187 -f 660/185 569/188 659/186 -f 661/189 569/188 660/185 -f 661/189 581/190 569/188 -f 662/191 589/192 705/193 -f 700/194 662/191 705/193 -f 593/195 662/191 700/194 -f 716/196 593/195 700/194 -f 664/197 593/195 716/196 -f 663/198 593/195 664/197 -f 666/199 663/198 664/197 -f 666/199 665/200 663/198 -f 666/199 667/201 665/200 -f 668/202 667/201 666/199 -f 668/202 596/203 667/201 -f 719/204 596/203 668/202 -f 719/204 597/205 596/203 -f 720/206 669/207 719/204 -f 669/207 597/205 719/204 -f 670/208 669/207 720/206 -f 670/208 601/209 669/207 -f 722/210 601/209 670/208 -f 722/210 602/211 601/209 -f 721/212 602/211 722/210 -f 721/212 604/213 602/211 -f 675/214 721/212 676/215 -f 675/214 604/213 721/212 -f 600/216 672/217 671/218 -f 672/217 714/219 671/218 -f 672/217 673/220 714/219 -f 673/220 674/221 714/219 -f 673/220 603/222 674/221 -f 603/222 675/214 674/221 -f 675/214 676/215 674/221 -f 598/223 671/218 715/224 -f 600/216 671/218 598/223 -f 594/225 595/226 677/227 -f 595/226 717/228 677/227 -f 595/226 678/229 717/228 -f 678/229 718/230 717/228 -f 678/229 598/223 718/230 -f 598/223 715/224 718/230 -f 679/231 594/225 677/227 -f 592/232 594/225 679/231 -f 590/233 681/234 680/235 -f 591/236 681/234 590/233 -f 591/236 679/231 681/234 -f 592/232 679/231 591/236 -f 570/237 680/235 693/238 -f 590/233 680/235 570/237 -f 682/239 684/240 683/241 -f 684/240 691/242 683/241 -f 684/240 570/237 691/242 -f 570/237 693/238 691/242 -f 658/187 567/243 683/241 -f 567/243 682/239 683/241 -f 659/186 567/243 658/187 -f 705/193 589/192 661/189 -f 589/192 581/190 661/189 -f 639/157 658/187 683/241 -f 686/128 685/122 683/241 -f 641/159 639/157 683/241 -f 625/133 686/128 683/241 -f 644/163 641/159 683/241 -f 690/91 698/93 683/241 -f 698/93 697/137 683/241 -f 697/137 625/133 683/241 -f 685/122 699/124 683/241 -f 699/124 644/163 683/241 -f 687/161 705/193 658/187 -f 688/156 687/161 658/187 -f 689/155 688/156 658/187 -f 639/157 689/155 658/187 -f 692/97 690/91 683/241 -f 691/242 692/97 683/241 -f 705/193 660/185 658/187 -f 705/193 661/189 660/185 -f 693/238 692/97 691/242 -f 694/101 692/97 693/238 -f 680/235 704/105 693/238 -f 704/105 694/101 693/238 -f 647/167 644/163 699/124 -f 637/150 695/145 698/93 -f 695/145 696/140 698/93 -f 696/140 697/137 698/93 -f 607/95 637/150 698/93 -f 654/177 650/172 699/124 -f 710/182 654/177 699/124 -f 700/194 710/182 699/124 -f 716/196 700/194 699/124 -f 701/126 716/196 699/124 -f 650/172 647/167 699/124 -f 702/99 637/150 607/95 -f 703/132 716/196 701/126 -f 609/102 637/150 702/99 -f 645/166 705/193 687/161 -f 628/136 716/196 703/132 -f 612/107 637/150 609/102 -f 648/169 705/193 645/166 -f 716/196 637/150 612/107 -f 680/235 615/110 704/105 -f 706/111 716/196 612/107 -f 631/141 716/196 628/136 -f 707/173 705/193 648/169 -f 617/114 716/196 706/111 -f 708/144 716/196 631/141 -f 651/176 705/193 707/173 -f 700/194 705/193 651/176 -f 680/235 709/115 615/110 -f 652/179 700/194 651/176 -f 620/118 716/196 617/114 -f 634/148 716/196 708/144 -f 680/235 712/120 709/115 -f 711/151 716/196 634/148 -f 713/183 700/194 652/179 -f 680/235 716/196 620/118 -f 712/120 680/235 620/118 -f 700/194 713/183 710/182 -f 637/150 716/196 711/151 -f 681/234 716/196 680/235 -f 676/215 716/196 681/234 -f 679/231 676/215 681/234 -f 714/219 674/221 679/231 -f 671/218 714/219 679/231 -f 674/221 676/215 679/231 -f 715/224 671/218 679/231 -f 718/230 715/224 679/231 -f 676/215 721/212 716/196 -f 677/227 717/228 679/231 -f 717/228 718/230 679/231 -f 721/212 664/197 716/196 -f 721/212 720/206 664/197 -f 720/206 719/204 664/197 -f 719/204 666/199 664/197 -f 719/204 668/202 666/199 -f 721/212 670/208 720/206 -f 721/212 722/210 670/208 -f 724/1 725/1 723/1 -f 725/1 728/1 723/1 -f 728/1 727/1 723/1 -f 724/1 726/1 725/1 -f 789/1 726/1 724/1 -f 725/1 730/1 728/1 -f 726/1 730/1 725/1 -f 789/1 731/1 726/1 -f 790/1 731/1 789/1 -f 728/1 733/1 727/1 -f 790/1 791/1 731/1 -f 727/1 732/1 729/1 -f 733/1 732/1 727/1 -f 726/1 734/1 730/1 -f 726/1 735/1 734/1 -f 731/1 735/1 726/1 -f 734/1 741/1 730/1 -f 732/1 737/1 729/1 -f 728/1 736/1 733/1 -f 730/1 736/1 728/1 -f 731/1 738/1 735/1 -f 740/1 738/1 731/1 -f 791/1 740/1 731/1 -f 741/1 736/1 730/1 -f 733/1 739/1 732/1 -f 736/1 739/1 733/1 -f 738/1 734/1 735/1 -f 791/1 792/1 740/1 -f 742/1 747/1 744/1 -f 745/1 749/1 742/1 -f 746/1 749/1 745/1 -f 743/1 746/1 745/1 -f 764/1 746/1 743/1 -f 744/1 747/1 751/1 -f 742/1 748/1 747/1 -f 749/1 753/1 742/1 -f 748/1 752/1 747/1 -f 742/1 753/1 748/1 -f 764/1 750/1 746/1 -f 747/1 755/1 751/1 -f 752/1 755/1 747/1 -f 749/1 758/1 753/1 -f 746/1 756/1 749/1 -f 750/1 754/1 746/1 -f 753/1 761/1 748/1 -f 748/1 761/1 752/1 -f 749/1 756/1 758/1 -f 746/1 754/1 756/1 -f 753/1 763/1 761/1 -f 750/1 757/1 754/1 -f 752/1 760/1 755/1 -f 759/1 757/1 750/1 -f 752/1 762/1 760/1 -f 761/1 762/1 752/1 -f 758/1 763/1 753/1 -f 759/1 793/1 757/1 -f 766/1 764/1 743/1 -f 768/1 764/1 766/1 -f 768/1 750/1 764/1 -f 773/1 750/1 768/1 -f 773/1 759/1 750/1 -f 798/1 759/1 773/1 -f 798/1 793/1 759/1 -f 767/1 769/1 765/1 -f 769/1 770/1 765/1 -f 770/1 766/1 765/1 -f 770/1 771/1 766/1 -f 771/1 768/1 766/1 -f 813/1 769/1 767/1 -f 771/1 773/1 768/1 -f 772/1 770/1 769/1 -f 813/1 772/1 769/1 -f 772/1 797/1 770/1 -f 797/1 771/1 770/1 -f 797/1 774/1 771/1 -f 774/1 773/1 771/1 -f 841/1 772/1 813/1 -f 796/1 797/1 772/1 -f 774/1 798/1 773/1 -f 841/1 796/1 772/1 -f 797/1 842/1 774/1 -f 842/1 798/1 774/1 -f 778/1 779/1 776/1 -f 777/1 776/1 775/1 -f 777/1 778/1 776/1 -f 780/1 777/1 775/1 -f 777/1 781/1 778/1 -f 781/1 779/1 778/1 -f 780/1 782/1 777/1 -f 782/1 781/1 777/1 -f 781/1 784/1 779/1 -f 782/1 783/1 781/1 -f 823/1 782/1 780/1 -f 897/1 784/1 781/1 -f 822/1 823/1 780/1 -f 783/1 825/1 781/1 -f 825/1 897/1 781/1 -f 823/1 783/1 782/1 -f 824/1 825/1 783/1 -f 824/1 783/1 823/1 -f 779/1 785/1 723/1 -f 776/1 779/1 723/1 -f 785/1 819/1 723/1 -f 819/1 724/1 723/1 -f 819/1 786/1 724/1 -f 786/1 818/1 724/1 -f 818/1 789/1 724/1 -f 787/1 789/1 818/1 -f 787/1 744/1 789/1 -f 788/1 742/1 787/1 -f 742/1 744/1 787/1 -f 816/1 742/1 788/1 -f 745/1 742/1 816/1 -f 743/1 745/1 816/1 -f 817/1 743/1 816/1 -f 767/1 766/1 817/1 -f 766/1 743/1 817/1 -f 765/1 766/1 767/1 -f 775/1 776/1 723/1 -f 727/1 775/1 723/1 -f 780/1 775/1 727/1 -f 729/1 780/1 727/1 -f 822/1 780/1 729/1 -f 737/1 822/1 729/1 -f 751/1 790/1 789/1 -f 744/1 751/1 789/1 -f 751/1 755/1 790/1 -f 755/1 791/1 790/1 -f 760/1 792/1 791/1 -f 755/1 760/1 791/1 -f 798/1 837/1 793/1 -f 826/1 837/1 798/1 -f 871/1 886/1 885/1 -f 871/1 866/1 886/1 -f 866/1 868/1 886/1 -f 868/1 799/1 886/1 -f 868/1 869/1 799/1 -f 869/1 865/1 799/1 -f 865/1 887/1 799/1 -f 865/1 867/1 887/1 -f 867/1 855/1 887/1 -f 855/1 888/1 887/1 -f 855/1 800/1 888/1 -f 855/1 801/1 800/1 -f 856/1 802/1 801/1 -f 855/1 856/1 801/1 -f 856/1 853/1 802/1 -f 853/1 803/1 802/1 -f 853/1 857/1 803/1 -f 857/1 854/1 803/1 -f 854/1 804/1 803/1 -f 854/1 850/1 804/1 -f 807/1 892/1 808/1 -f 807/1 806/1 892/1 -f 806/1 810/1 892/1 -f 806/1 809/1 810/1 -f 809/1 894/1 810/1 -f 809/1 795/1 894/1 -f 795/1 896/1 894/1 -f 795/1 794/1 896/1 -f 794/1 811/1 896/1 -f 812/1 767/1 817/1 -f 812/1 814/2 767/1 -f 814/2 813/1 767/1 -f 814/2 841/1 813/1 -f 815/1 788/1 787/1 -f 815/1 893/1 788/1 -f 893/1 816/1 788/1 -f 893/1 895/1 816/1 -f 895/1 817/1 816/1 -f 895/1 812/1 817/1 -f 815/1 787/1 818/1 -f 821/1 815/1 818/1 -f 889/1 819/1 785/1 -f 889/1 891/1 819/1 -f 891/1 786/1 819/1 -f 891/1 820/1 786/1 -f 821/1 818/1 786/1 -f 820/1 821/1 786/1 -f 898/1 889/1 785/1 -f 779/1 898/1 785/1 -f 784/1 898/1 779/1 -f 909/1 899/1 737/1 -f 899/1 822/1 737/1 -f 923/1 924/1 792/1 -f 760/1 923/1 792/1 -f 732/1 909/1 737/1 -f 914/1 909/1 732/1 -f 910/1 914/1 732/1 -f 739/1 910/1 732/1 -f 736/1 910/1 739/1 -f 913/1 910/1 736/1 -f 912/1 913/1 736/1 -f 741/1 912/1 736/1 -f 911/1 912/1 741/1 -f 734/1 911/1 741/1 -f 738/1 908/1 734/1 -f 908/1 911/1 734/1 -f 925/1 908/1 738/1 -f 740/1 925/1 738/1 -f 924/1 925/1 740/1 -f 792/1 924/1 740/1 -f 762/1 926/1 760/1 -f 926/1 923/1 760/1 -f 930/1 926/1 762/1 -f 761/1 930/1 762/1 -f 928/1 930/1 761/1 -f 763/1 928/1 761/1 -f 927/1 928/1 763/1 -f 758/1 927/1 763/1 -f 932/1 927/1 758/1 -f 756/1 929/1 758/1 -f 929/1 932/1 758/1 -f 754/1 929/1 756/1 -f 936/1 929/1 754/1 -f 757/1 938/1 754/1 -f 938/1 936/1 754/1 -f 837/1 938/1 757/1 -f 793/1 837/1 757/1 -f 827/1 828/1 826/1 -f 830/1 831/1 827/1 -f 831/1 828/1 827/1 -f 829/1 833/1 830/1 -f 831/1 832/1 828/1 -f 843/1 834/1 829/1 -f 834/1 833/1 829/1 -f 833/1 831/1 830/1 -f 836/1 832/1 831/1 -f 833/1 836/1 831/1 -f 835/1 836/1 833/1 -f 834/1 835/1 833/1 -f 828/1 837/1 826/1 -f 828/1 838/1 837/1 -f 832/1 838/1 828/1 -f 840/1 839/1 811/1 -f 794/1 840/1 811/1 -f 814/2 843/1 841/1 -f 829/1 796/1 841/1 -f 843/1 829/1 841/1 -f 829/1 830/1 796/1 -f 830/1 797/1 796/1 -f 830/1 827/1 797/1 -f 827/1 842/1 797/1 -f 827/1 826/1 842/1 -f 826/1 798/1 842/1 -f 941/1 942/1 843/1 -f 942/1 834/1 843/1 -f 942/1 835/1 834/1 -f 942/1 943/1 835/1 -f 943/1 945/1 835/1 -f 945/1 836/1 835/1 -f 804/1 844/1 949/1 -f 850/1 844/1 804/1 -f 848/1 847/1 844/1 -f 851/1 848/1 844/1 -f 845/1 848/1 851/1 -f 849/1 848/1 845/1 -f 846/1 847/1 848/1 -f 962/1 849/1 845/1 -f 849/1 846/1 848/1 -f 846/1 954/1 847/1 -f 849/1 957/1 846/1 -f 958/1 957/1 849/1 -f 962/1 958/1 849/1 -f 851/1 844/1 850/1 -f 863/1 851/1 850/1 -f 845/1 851/1 863/1 -f 864/1 845/1 863/1 -f 962/1 845/1 864/1 -f 852/1 962/1 864/1 -f 858/1 857/1 853/1 -f 859/1 856/1 855/1 -f 856/1 858/1 853/1 -f 857/1 861/1 854/1 -f 858/1 862/1 857/1 -f 860/1 858/1 856/1 -f 859/1 860/1 856/1 -f 862/1 861/1 857/1 -f 863/1 850/1 854/1 -f 861/1 863/1 854/1 -f 860/1 862/1 858/1 -f 864/1 861/1 862/1 -f 860/1 852/1 862/1 -f 864/1 863/1 861/1 -f 852/1 864/1 862/1 -f 867/1 859/1 855/1 -f 870/1 859/1 867/1 -f 872/1 859/1 870/1 -f 872/1 860/1 859/1 -f 865/1 870/1 867/1 -f 869/1 870/1 865/1 -f 871/1 873/1 866/1 -f 873/1 868/1 866/1 -f 868/1 874/1 869/1 -f 869/1 872/1 870/1 -f 873/1 874/1 868/1 -f 874/1 872/1 869/1 -f 876/1 873/1 871/1 -f 961/1 872/1 874/1 -f 873/1 961/1 874/1 -f 876/1 875/1 873/1 -f 875/1 961/1 873/1 -f 877/1 879/1 871/1 -f 879/1 876/1 871/1 -f 879/1 875/1 876/1 -f 879/1 882/1 875/1 -f 882/1 961/1 875/1 -f 877/1 871/1 965/1 -f 871/1 885/1 965/1 -f 878/1 879/1 877/1 -f 880/1 878/1 877/1 -f 878/1 883/1 879/1 -f 880/1 883/1 878/1 -f 883/1 882/1 879/1 -f 881/1 883/1 880/1 -f 966/1 968/1 881/1 -f 968/1 883/1 881/1 -f 967/1 968/1 966/1 -f 968/1 970/1 883/1 -f 970/1 882/1 883/1 -f 970/1 969/1 882/1 -f 805/1 807/1 808/1 -f 890/1 805/1 808/1 -f 898/1 808/1 889/1 -f 808/1 891/1 889/1 -f 890/1 808/1 898/1 -f 808/1 892/1 891/1 -f 892/1 820/1 891/1 -f 892/1 810/1 820/1 -f 810/1 821/1 820/1 -f 810/1 815/1 821/1 -f 894/1 815/1 810/1 -f 893/1 815/1 894/1 -f 896/1 893/1 894/1 -f 895/1 893/1 896/1 -f 811/1 895/1 896/1 -f 812/1 895/1 811/1 -f 839/1 812/1 811/1 -f 814/2 812/1 839/1 -f 899/1 823/1 822/1 -f 899/1 900/1 823/1 -f 900/1 824/1 823/1 -f 900/1 901/1 824/1 -f 901/1 825/1 824/1 -f 901/1 902/1 825/1 -f 902/1 897/1 825/1 -f 902/1 903/1 897/1 -f 898/1 784/1 897/1 -f 903/1 898/1 897/1 -f 978/1 900/1 899/1 -f 978/1 904/1 900/1 -f 904/1 901/1 900/1 -f 905/1 902/1 901/1 -f 904/1 905/1 901/1 -f 905/1 903/1 902/1 -f 977/1 904/1 978/1 -f 905/1 906/1 903/1 -f 907/1 905/1 904/1 -f 977/1 907/1 904/1 -f 907/1 906/1 905/1 -f 973/1 972/1 903/1 -f 906/1 973/1 903/1 -f 974/1 973/1 906/1 -f 907/1 974/1 906/1 -f 1010/1 974/1 907/1 -f 977/1 1010/1 907/1 -f 915/1 899/1 909/1 -f 978/1 899/1 915/1 -f 921/1 978/1 915/1 -f 924/1 979/1 925/1 -f 925/1 980/1 908/1 -f 979/1 980/1 925/1 -f 918/1 911/1 908/1 -f 980/1 918/1 908/1 -f 914/1 915/1 909/1 -f 913/1 919/1 910/1 -f 920/1 912/1 911/1 -f 919/1 914/1 910/1 -f 918/1 920/1 911/1 -f 916/1 913/1 912/1 -f 920/1 916/1 912/1 -f 916/1 919/1 913/1 -f 917/1 915/1 914/1 -f 916/1 981/1 919/1 -f 919/1 917/1 914/1 -f 920/1 981/1 916/1 -f 919/1 922/1 917/1 -f 981/1 922/1 919/1 -f 917/1 921/1 915/1 -f 926/1 931/1 923/1 -f 931/1 924/1 923/1 -f 931/1 979/1 924/1 -f 930/1 931/1 926/1 -f 930/1 935/1 931/1 -f 933/1 928/1 927/1 -f 932/1 933/1 927/1 -f 928/1 935/1 930/1 -f 933/1 982/1 928/1 -f 929/1 936/1 937/1 -f 929/1 934/1 932/1 -f 932/1 934/1 933/1 -f 937/1 934/1 929/1 -f 982/1 935/1 928/1 -f 838/1 938/1 837/1 -f 933/1 939/1 982/1 -f 934/1 939/1 933/1 -f 937/1 940/1 934/1 -f 938/1 984/1 936/1 -f 940/1 939/1 934/1 -f 838/1 984/1 938/1 -f 936/1 940/1 937/1 -f 984/1 940/1 936/1 -f 945/1 985/1 838/1 -f 832/1 945/1 838/1 -f 836/1 945/1 832/1 -f 843/1 814/2 839/1 -f 840/1 843/1 839/1 -f 988/1 840/1 953/1 -f 988/1 941/1 840/1 -f 941/1 843/1 840/1 -f 944/1 942/1 941/1 -f 943/1 942/1 944/1 -f 946/1 943/1 944/1 -f 947/1 945/1 943/1 -f 946/1 947/1 943/1 -f 948/1 947/1 946/1 -f 844/1 847/1 949/1 -f 847/1 950/1 949/1 -f 847/1 954/1 950/1 -f 955/1 951/1 950/1 -f 954/1 955/1 950/1 -f 955/1 987/1 951/1 -f 987/1 952/1 951/1 -f 987/1 989/1 952/1 -f 989/1 986/1 952/1 -f 986/1 953/1 952/1 -f 986/1 988/1 953/1 -f 846/1 956/1 954/1 -f 956/1 955/1 954/1 -f 956/1 987/1 955/1 -f 990/1 987/1 956/1 -f 959/244 956/1 846/1 -f 957/1 959/244 846/1 -f 959/244 990/1 956/1 -f 960/1 959/244 957/1 -f 958/1 960/1 957/1 -f 962/1 860/1 872/1 -f 961/1 962/1 872/1 -f 962/1 852/1 860/1 -f 882/1 962/1 961/1 -f 958/1 962/1 882/1 -f 969/1 958/1 882/1 -f 1007/1 998/1 963/1 -f 998/1 997/1 963/1 -f 997/1 964/1 963/1 -f 997/1 999/1 964/1 -f 999/1 967/1 964/1 -f 967/1 884/1 964/1 -f 967/1 966/1 884/1 -f 966/1 881/1 884/1 -f 881/1 965/1 884/1 -f 881/1 880/1 965/1 -f 880/1 877/1 965/1 -f 1003/1 968/1 967/1 -f 999/1 1003/1 967/1 -f 1003/1 970/1 968/1 -f 1000/1 1003/1 999/1 -f 970/1 971/1 969/1 -f 1003/1 971/1 970/1 -f 1006/1 971/1 1003/1 -f 805/1 890/1 898/1 -f 903/1 805/1 898/1 -f 903/1 963/1 805/1 -f 903/1 972/1 963/1 -f 972/1 1007/1 963/1 -f 1008/1 972/1 973/1 -f 974/1 1008/1 973/1 -f 974/1 975/1 1008/1 -f 1010/1 976/1 974/1 -f 976/1 975/1 974/1 -f 977/1 978/1 921/1 -f 1013/1 1010/1 921/1 -f 1010/1 977/1 921/1 -f 1018/1 980/1 979/1 -f 1018/1 918/1 980/1 -f 1018/1 1016/1 918/1 -f 1016/1 1011/1 918/1 -f 1011/1 920/1 918/1 -f 1011/1 981/1 920/1 -f 1011/1 1014/1 981/1 -f 917/1 1013/1 921/1 -f 1014/1 922/1 981/1 -f 922/1 1013/1 917/1 -f 1014/1 1013/1 922/1 -f 1020/1 1018/1 979/1 -f 931/1 1020/1 979/1 -f 935/1 1020/1 931/1 -f 1022/1 1020/1 935/1 -f 982/1 1022/1 935/1 -f 983/1 1022/1 982/1 -f 939/1 983/1 982/1 -f 940/1 983/1 939/1 -f 1023/1 983/1 940/1 -f 985/1 984/1 838/1 -f 984/1 1023/1 940/1 -f 985/1 1023/1 984/1 -f 947/1 985/1 945/1 -f 947/1 1026/1 985/1 -f 947/1 948/1 1026/1 -f 944/1 941/1 988/1 -f 993/1 944/1 988/1 -f 994/1 946/1 993/1 -f 946/1 944/1 993/1 -f 948/1 946/1 994/1 -f 1028/3 948/1 994/1 -f 991/1 986/1 989/1 -f 991/1 988/1 986/1 -f 990/1 989/1 987/1 -f 991/1 993/1 988/1 -f 959/244 991/1 989/1 -f 990/1 959/244 989/1 -f 992/1 993/1 991/1 -f 959/244 992/1 991/1 -f 960/1 995/1 959/244 -f 995/1 992/1 959/244 -f 1028/3 994/1 993/1 -f 992/1 1028/3 993/1 -f 996/1 992/1 995/1 -f 996/1 1028/3 992/1 -f 971/1 960/1 969/1 -f 960/1 958/1 969/1 -f 1006/1 960/1 971/1 -f 995/1 960/1 1006/1 -f 998/1 1002/1 997/1 -f 1000/1 999/1 997/1 -f 1001/1 998/1 1007/1 -f 1001/1 1004/1 998/1 -f 1004/1 1002/1 998/1 -f 1002/1 1000/1 997/1 -f 1009/1 1004/1 1001/1 -f 1002/1 1003/1 1000/1 -f 1004/1 1005/1 1002/1 -f 1005/1 1003/1 1002/1 -f 1005/1 1006/1 1003/1 -f 1009/1 1027/6 1004/1 -f 1027/6 1005/1 1004/1 -f 1027/6 1006/1 1005/1 -f 1008/1 1007/1 972/1 -f 1008/1 1001/1 1007/1 -f 975/1 1001/1 1008/1 -f 975/1 1009/1 1001/1 -f 976/1 1009/1 975/1 -f 976/1 1027/6 1009/1 -f 976/1 1010/1 1013/1 -f 1015/1 976/1 1013/1 -f 1018/1 1019/1 1016/1 -f 1012/1 1019/1 1018/1 -f 1016/1 1014/1 1011/1 -f 1014/1 1015/1 1013/1 -f 1016/1 1017/1 1014/1 -f 1019/1 1017/1 1016/1 -f 1014/1 1017/1 1015/1 -f 1020/1 1012/1 1018/1 -f 1021/1 1012/1 1020/1 -f 1019/1 1012/1 1021/1 -f 1021/1 1024/1 1019/1 -f 1022/1 1021/1 1020/1 -f 1023/1 1025/1 983/1 -f 983/1 1024/1 1022/1 -f 1025/1 1024/1 983/1 -f 1022/1 1024/1 1021/1 -f 1026/1 1025/1 1023/1 -f 985/1 1026/1 1023/1 -f 1017/1 976/1 1015/1 -f 1017/1 1027/6 976/1 -f 1017/1 1019/1 1027/6 -f 1024/1 995/1 1019/1 -f 995/1 1006/1 1019/1 -f 1006/1 1027/6 1019/1 -f 1024/1 996/1 995/1 -f 1028/3 996/1 1024/1 -f 1026/1 1028/3 1024/1 -f 1026/1 948/1 1028/3 -f 1025/1 1026/1 1024/1 -f 1046/1 1030/1 1045/1 -f 1056/1 1030/1 1046/1 -f 1031/1 1056/1 1046/1 -f 1032/1 1031/1 1046/1 -f 1045/1 1033/1 1042/1 -f 1030/1 1033/1 1045/1 -f 1036/1 1034/1 1035/1 -f 1042/1 1036/1 1035/1 -f 1033/1 1036/1 1042/1 -f 1066/1 1037/1 1067/1 -f 1066/1 1060/1 1037/1 -f 1039/1 1031/1 1032/1 -f 1038/1 1039/1 1032/1 -f 1035/1 1080/1 1077/1 -f 1035/1 1047/1 1080/1 -f 1040/1 1035/1 1077/1 -f 1042/1 1035/1 1040/1 -f 1041/1 1042/1 1040/1 -f 1043/1 1042/1 1041/1 -f 1045/1 1042/1 1043/1 -f 1044/1 1045/1 1043/1 -f 1044/1 1074/1 1045/1 -f 1074/1 1046/1 1045/1 -f 1074/1 1076/1 1046/1 -f 1076/1 1032/1 1046/1 -f 1076/1 1038/1 1032/1 -f 1076/1 1073/1 1038/1 -f 1048/1 1047/1 1035/1 -f 1034/1 1048/1 1035/1 -f 1086/1 1054/1 1061/1 -f 1058/1 1054/1 1086/1 -f 1053/1 1054/1 1058/1 -f 1059/1 1053/1 1058/1 -f 1060/1 1053/1 1059/1 -f 1037/1 1060/1 1059/1 -f 1061/1 1055/1 1084/1 -f 1054/1 1055/1 1061/1 -f 1051/1 1062/1 1085/1 -f 1062/1 1063/1 1085/1 -f 1062/1 1064/1 1063/1 -f 1062/1 1052/1 1064/1 -f 1052/1 1065/1 1064/1 -f 1052/1 1066/1 1065/1 -f 1066/1 1067/1 1065/1 -f 1055/1 1092/1 1084/1 -f 1055/1 1068/1 1092/1 -f 1068/1 1070/1 1092/1 -f 1068/1 1069/1 1070/1 -f 1069/1 1071/1 1070/1 -f 1069/1 1057/1 1071/1 -f 1038/1 1072/1 1071/1 -f 1039/1 1038/1 1071/1 -f 1057/1 1039/1 1071/1 -f 1038/1 1073/1 1072/1 -f 1072/1 1073/1 1093/1 -f 1073/1 1076/1 1093/1 -f 1074/1 1044/1 1094/1 -f 1075/1 1074/1 1094/1 -f 1076/1 1074/1 1075/1 -f 1093/1 1076/1 1075/1 -f 1094/1 1044/1 1089/1 -f 1044/1 1043/1 1089/1 -f 1088/1 1077/1 1087/1 -f 1040/1 1077/1 1088/1 -f 1078/1 1040/1 1088/1 -f 1041/1 1040/1 1078/1 -f 1089/1 1041/1 1078/1 -f 1043/1 1041/1 1089/1 -f 1077/1 1079/1 1087/1 -f 1077/1 1080/1 1079/1 -f 1080/1 1081/1 1079/1 -f 1047/1 1049/1 1081/1 -f 1080/1 1047/1 1081/1 -f 1048/1 1049/1 1047/1 -f 1049/1 1090/1 1081/1 -f 1049/1 1082/1 1090/1 -f 1082/1 1083/1 1090/1 -f 1082/1 1050/1 1083/1 -f 1050/1 1051/1 1083/1 -f 1051/1 1091/1 1083/1 -f 1051/1 1085/1 1091/1 -f 1085/1 1029/1 1091/1 -f 1029/1 1061/1 1084/1 -f 1085/1 1061/1 1029/1 -f 1085/1 1063/1 1061/1 -f 1063/1 1086/1 1061/1 -f 1063/1 1064/1 1086/1 -f 1058/1 1086/1 1064/1 -f 1064/1 1065/1 1058/1 -f 1065/1 1059/1 1058/1 -f 1065/1 1037/1 1059/1 -f 1065/1 1067/1 1037/1 -f 1079/1 1081/1 1087/1 -f 1081/1 1089/1 1087/1 -f 1089/1 1088/1 1087/1 -f 1089/1 1078/1 1088/1 -f 1081/1 1090/1 1089/1 -f 1090/1 1029/1 1089/1 -f 1029/1 1094/1 1089/1 -f 1083/1 1029/1 1090/1 -f 1091/1 1029/1 1083/1 -f 1070/1 1094/1 1029/1 -f 1092/1 1070/1 1029/1 -f 1084/1 1092/1 1029/1 -f 1071/1 1094/1 1070/1 -f 1071/1 1072/1 1094/1 -f 1072/1 1093/1 1094/1 -f 1093/1 1075/1 1094/1 -f 1103/1 1096/1 1095/1 -f 1103/1 1095/1 1099/1 -f 1109/1 1096/1 1103/1 -f 1099/1 1095/1 1108/1 -f 1099/1 1108/1 1097/1 -f 1098/1 1109/1 1103/1 -f 1110/1 1098/1 1103/1 -f 1103/1 1099/1 1104/1 -f 1105/1 1103/1 1100/1 -f 1101/1 1103/1 1104/1 -f 1100/1 1103/1 1101/1 -f 1101/1 1104/1 1102/1 -f 1107/1 1103/1 1105/1 -f 1102/1 1104/1 1106/1 -f 1124/1 1111/1 1113/1 -f 1112/1 1123/1 1111/1 -f 1125/1 1111/1 1124/1 -f 1126/1 1111/1 1125/1 -f 1111/1 1114/1 1112/1 -f 1119/1 1111/1 1126/1 -f 1111/1 1118/1 1114/1 -f 1115/1 1111/1 1119/1 -f 1116/1 1118/1 1111/1 -f 1115/1 1116/1 1111/1 -f 1116/1 1117/1 1118/1 -f 1121/1 1115/1 1119/1 -f 1117/1 1120/1 1118/1 -f 1122/1 1115/1 1121/1 -f 1100/1 1115/1 1105/1 -f 1104/1 1118/1 1106/1 -f 1095/1 1111/1 1108/1 -f 1098/1 1125/1 1109/1 -f 1108/1 1123/1 1097/1 -f 1107/1 1119/1 1103/1 -f 1110/1 1126/1 1098/1 -f 1097/1 1112/1 1099/1 -f 803/1 804/1 949/1 950/1 951/1 952/1 953/1 840/1 794/1 795/1 809/1 806/1 807/1 805/1 963/1 964/1 884/1 965/1 885/1 886/1 799/1 887/1 888/1 801/1 802/1 -f 1030/1 1056/1 1031/1 1039/1 1057/1 1069/1 1068/1 1055/1 1054/1 1053/1 1060/1 1066/1 1052/1 1062/1 1051/1 1050/1 1082/1 1049/1 1048/1 1034/1 1036/1 1033/1 -f 1116/1 1101/1 1102/1 1117/1 -f 1113/1 1096/1 1109/1 1124/1 -f 1108/1 1111/1 1123/1 -f 1126/1 1110/1 1103/1 1119/1 -f 1097/1 1123/1 1112/1 -f 1109/1 1125/1 1124/1 -f 1099/1 1112/1 1114/1 -f 1098/1 1126/1 1125/1 -f 1111/1 1095/1 1096/1 1113/1 -f 1121/1 1107/1 1105/1 1122/1 -f 1107/1 1121/1 1119/1 -f 1118/1 1104/1 1099/1 1114/1 -f 1115/1 1100/1 1101/1 1116/1 -f 1117/1 1102/1 1106/1 1120/1 -f 1105/1 1115/1 1122/1 -f 1106/1 1118/1 1120/1 +usemtl Material.001 +f 1/1/1 541/1/1 149/1/1 +f 412/1/2 541/1/2 1/1/2 +f 9/1/3 48/1/3 47/1/3 +f 6/1/4 9/1/4 47/1/4 +f 8/1/5 50/1/5 48/1/5 +f 9/1/6 8/1/6 48/1/6 +f 2/1/7 26/1/7 69/1/7 +f 71/1/8 2/1/8 69/1/8 +f 3/1/9 2/1/9 71/1/9 +f 72/1/10 3/1/10 71/1/10 +f 152/1/11 447/1/11 150/1/11 +f 448/1/12 447/1/12 152/1/12 +f 154/1/13 448/1/13 152/1/13 +f 154/1/14 4/1/14 448/1/14 +f 4/1/15 5/1/15 450/1/15 +f 154/1/16 5/1/16 4/1/16 +f 155/1/17 5/1/17 154/1/17 +f 528/1/18 5/1/18 155/1/18 +f 158/1/19 528/1/19 155/1/19 +f 159/1/20 528/1/20 158/1/20 +f 161/1/21 528/1/21 159/1/21 +f 322/1/22 528/1/22 161/1/22 +f 321/1/23 322/1/23 161/1/23 +f 7/1/24 9/1/24 6/1/24 +f 7/1/25 8/1/25 9/1/25 +f 165/1/26 10/1/26 7/1/26 +f 10/1/27 8/1/27 7/1/27 +f 165/1/28 13/1/28 10/1/28 +f 10/1/29 13/1/29 8/1/29 +f 11/1/30 12/1/30 165/1/30 +f 12/1/31 13/1/31 165/1/31 +f 14/1/32 12/1/32 11/1/32 +f 16/1/33 13/1/33 12/1/33 +f 16/1/34 12/1/34 14/1/34 +f 18/1/35 13/1/35 16/1/35 +f 15/1/36 16/1/36 14/1/36 +f 17/1/37 16/1/37 15/1/37 +f 17/1/38 18/1/38 16/1/38 +f 19/1/39 20/1/39 17/1/39 +f 20/1/40 18/1/40 17/1/40 +f 21/1/41 22/1/41 19/1/41 +f 22/1/42 20/1/42 19/1/42 +f 25/1/43 22/1/43 21/1/43 +f 166/1/44 25/1/44 21/1/44 +f 25/1/45 20/1/45 22/1/45 +f 23/1/46 24/1/46 166/1/46 +f 24/1/47 25/1/47 166/1/47 +f 27/1/48 26/1/48 2/1/48 +f 27/1/49 28/1/49 26/1/49 +f 27/1/50 29/1/50 28/1/50 +f 3/1/51 27/1/51 2/1/51 +f 3/1/52 29/1/52 27/1/52 +f 3/1/53 31/1/53 29/1/53 +f 29/1/54 30/1/54 28/1/54 +f 31/1/55 30/1/55 29/1/55 +f 142/1/56 31/1/56 3/1/56 +f 33/1/57 32/1/57 30/1/57 +f 31/1/58 33/1/58 30/1/58 +f 142/1/59 33/1/59 31/1/59 +f 36/1/60 35/1/60 32/1/60 +f 33/1/61 36/1/61 32/1/61 +f 34/1/62 36/1/62 33/1/62 +f 142/1/63 34/1/63 33/1/63 +f 144/1/64 34/1/64 142/1/64 +f 36/1/65 39/1/65 35/1/65 +f 37/1/66 39/1/66 36/1/66 +f 34/1/67 37/1/67 36/1/67 +f 144/1/68 37/1/68 34/1/68 +f 38/1/69 39/1/69 37/1/69 +f 144/1/70 38/1/70 37/1/70 +f 38/1/71 40/1/71 39/1/71 +f 144/1/72 41/1/72 38/1/72 +f 43/1/73 41/1/73 144/1/73 +f 41/1/74 40/1/74 38/1/74 +f 41/1/75 42/1/75 40/1/75 +f 43/1/76 42/1/76 41/1/76 +f 43/1/77 167/1/77 42/1/77 +f 169/1/78 167/1/78 43/1/78 +f 168/1/79 169/1/79 43/1/79 +f 437/1/80 240/1/80 237/1/80 +f 438/1/81 240/1/81 437/1/81 +f 438/1/82 242/1/82 240/1/82 +f 522/1/83 242/1/83 438/1/83 +f 44/1/84 242/1/84 522/1/84 +f 44/1/85 245/1/85 242/1/85 +f 44/1/86 246/1/86 245/1/86 +f 44/1/87 248/1/87 246/1/87 +f 46/1/88 248/1/88 44/1/88 +f 46/1/89 45/1/89 248/1/89 +f 46/1/90 282/1/90 45/1/90 +f 69/1/91 6/1/91 47/1/91 +f 69/1/92 26/1/92 6/1/92 +f 48/1/93 49/1/93 47/1/93 +f 51/1/94 52/1/94 49/1/94 +f 51/1/95 49/1/95 48/1/95 +f 50/1/96 51/1/96 48/1/96 +f 55/1/97 52/1/97 51/1/97 +f 55/1/98 51/1/98 50/1/98 +f 54/1/99 53/1/99 52/1/99 +f 55/1/100 54/1/100 52/1/100 +f 50/1/101 90/1/101 55/1/101 +f 90/1/102 54/1/102 55/1/102 +f 57/1/103 56/1/103 53/1/103 +f 54/1/104 57/1/104 53/1/104 +f 90/1/105 57/1/105 54/1/105 +f 57/1/106 58/1/106 56/1/106 +f 57/1/107 59/1/107 58/1/107 +f 90/1/108 59/1/108 57/1/108 +f 91/1/109 59/1/109 90/1/109 +f 59/1/110 60/1/110 58/1/110 +f 62/1/111 61/1/111 60/1/111 +f 59/1/112 62/1/112 60/1/112 +f 65/1/113 62/1/113 59/1/113 +f 91/1/114 65/1/114 59/1/114 +f 62/1/115 63/1/115 61/1/115 +f 64/1/116 66/1/116 63/1/116 +f 62/1/117 64/1/117 63/1/117 +f 65/1/118 64/1/118 62/1/118 +f 68/1/119 64/1/119 65/1/119 +f 64/1/120 67/1/120 66/1/120 +f 253/1/121 67/1/121 64/1/121 +f 68/1/122 253/1/122 64/1/122 +f 73/1/123 70/1/123 69/1/123 +f 70/1/124 71/1/124 69/1/124 +f 73/1/125 74/1/125 70/1/125 +f 70/1/126 72/1/126 71/1/126 +f 74/1/127 72/1/127 70/1/127 +f 74/1/128 76/1/128 72/1/128 +f 254/1/129 74/1/129 73/1/129 +f 75/1/130 74/1/130 254/1/130 +f 75/1/131 78/1/131 74/1/131 +f 78/1/132 76/1/132 74/1/132 +f 77/1/133 75/1/133 254/1/133 +f 77/1/134 79/1/134 75/1/134 +f 79/1/135 78/1/135 75/1/135 +f 80/1/136 78/1/136 79/1/136 +f 255/1/137 79/1/137 77/1/137 +f 255/1/138 81/1/138 79/1/138 +f 81/1/139 80/1/139 79/1/139 +f 80/1/140 82/1/140 78/1/140 +f 81/1/141 82/1/141 80/1/141 +f 83/1/142 84/1/142 255/1/142 +f 84/1/143 81/1/143 255/1/143 +f 84/1/144 82/1/144 81/1/144 +f 85/1/145 84/1/145 83/1/145 +f 88/1/146 82/1/146 84/1/146 +f 85/1/147 88/1/147 84/1/147 +f 86/1/148 85/1/148 83/1/148 +f 87/1/149 85/1/149 86/1/149 +f 87/1/150 88/1/150 85/1/150 +f 256/1/151 87/1/151 86/1/151 +f 256/1/152 89/1/152 87/1/152 +f 89/1/153 88/1/153 87/1/153 +f 89/1/154 136/1/154 88/1/154 +f 257/1/155 89/1/155 256/1/155 +f 257/1/156 136/1/156 89/1/156 +f 119/1/157 102/1/157 50/1/157 +f 8/1/158 119/1/158 50/1/158 +f 13/1/159 119/1/159 8/1/159 +f 102/1/160 90/1/160 50/1/160 +f 123/1/161 119/1/161 13/1/161 +f 102/1/162 107/1/162 90/1/162 +f 18/1/163 123/1/163 13/1/163 +f 129/1/164 123/1/164 18/1/164 +f 111/1/165 91/1/165 90/1/165 +f 107/1/166 111/1/166 90/1/166 +f 20/1/167 129/1/167 18/1/167 +f 111/1/168 65/1/168 91/1/168 +f 130/1/169 129/1/169 20/1/169 +f 111/1/170 113/1/170 65/1/170 +f 113/1/171 68/1/171 65/1/171 +f 25/1/172 130/1/172 20/1/172 +f 93/1/173 130/1/173 25/1/173 +f 92/1/174 68/1/174 113/1/174 +f 92/1/175 237/1/175 68/1/175 +f 437/1/176 237/1/176 92/1/176 +f 25/1/177 447/1/177 93/1/177 +f 150/1/178 447/1/178 25/1/178 +f 435/1/179 214/1/179 212/1/179 +f 217/1/180 435/1/180 293/1/180 +f 217/1/181 214/1/181 435/1/181 +f 223/1/182 292/1/182 98/1/182 +f 223/1/183 225/1/183 292/1/183 +f 225/1/184 94/1/184 292/1/184 +f 225/1/185 216/1/185 94/1/185 +f 216/1/186 95/1/186 94/1/186 +f 216/1/187 218/1/187 95/1/187 +f 218/1/188 293/1/188 95/1/188 +f 218/1/189 217/1/189 293/1/189 +f 233/1/190 224/1/190 96/1/190 +f 224/1/191 97/1/191 96/1/191 +f 224/1/192 222/1/192 97/1/192 +f 222/1/193 299/1/193 97/1/193 +f 222/1/194 223/1/194 299/1/194 +f 223/1/195 98/1/195 299/1/195 +f 305/1/196 185/1/196 96/1/196 +f 185/1/197 233/1/197 96/1/197 +f 186/1/198 185/1/198 305/1/198 +f 307/1/199 186/1/199 305/1/199 +f 187/1/200 186/1/200 307/1/200 +f 306/1/201 189/1/201 307/1/201 +f 189/1/202 187/1/202 307/1/202 +f 316/1/203 189/1/203 306/1/203 +f 197/1/204 189/1/204 316/1/204 +f 99/1/205 197/1/205 316/1/205 +f 198/1/206 197/1/206 99/1/206 +f 313/1/207 198/1/207 99/1/207 +f 196/1/208 198/1/208 313/1/208 +f 319/1/209 196/1/209 313/1/209 +f 202/1/210 196/1/210 319/1/210 +f 205/1/211 100/1/211 454/1/211 +f 100/1/212 205/1/212 319/1/212 +f 205/1/213 202/1/213 319/1/213 +f 103/1/214 102/1/214 101/1/214 +f 105/1/215 103/1/215 101/1/215 +f 327/1/216 105/1/216 101/1/216 +f 103/1/217 107/1/217 102/1/217 +f 105/1/218 104/1/218 103/1/218 +f 328/1/219 104/1/219 105/1/219 +f 104/1/220 107/1/220 103/1/220 +f 108/1/221 107/1/221 104/1/221 +f 328/1/222 108/1/222 104/1/222 +f 106/1/223 108/1/223 328/1/223 +f 109/1/224 107/1/224 108/1/224 +f 106/1/225 109/1/225 108/1/225 +f 109/1/226 111/1/226 107/1/226 +f 110/1/227 109/1/227 106/1/227 +f 109/1/228 112/1/228 111/1/228 +f 110/1/229 112/1/229 109/1/229 +f 330/1/230 112/1/230 110/1/230 +f 112/1/231 113/1/231 111/1/231 +f 114/1/232 113/1/232 112/1/232 +f 330/1/233 114/1/233 112/1/233 +f 331/1/234 114/1/234 330/1/234 +f 114/1/235 92/1/235 113/1/235 +f 115/1/236 92/1/236 114/1/236 +f 331/1/237 115/1/237 114/1/237 +f 115/1/238 283/1/238 92/1/238 +f 441/1/239 283/1/239 115/1/239 +f 119/1/240 101/1/240 102/1/240 +f 116/1/241 101/1/241 119/1/241 +f 117/1/242 101/1/242 116/1/242 +f 117/1/243 327/1/243 101/1/243 +f 118/1/244 327/1/244 117/1/244 +f 119/1/245 121/1/245 116/1/245 +f 121/1/246 120/1/246 116/1/246 +f 120/1/247 117/1/247 116/1/247 +f 120/1/248 118/1/248 117/1/248 +f 123/1/249 121/1/249 119/1/249 +f 121/1/250 122/1/250 120/1/250 +f 123/1/251 124/1/251 121/1/251 +f 124/1/252 122/1/252 121/1/252 +f 129/1/253 126/1/253 123/1/253 +f 126/1/254 124/1/254 123/1/254 +f 126/1/255 125/1/255 124/1/255 +f 127/1/256 126/1/256 129/1/256 +f 128/1/257 125/1/257 126/1/257 +f 127/1/258 128/1/258 126/1/258 +f 130/1/259 127/1/259 129/1/259 +f 130/1/260 131/1/260 127/1/260 +f 131/1/261 128/1/261 127/1/261 +f 133/1/262 132/1/262 130/1/262 +f 132/1/263 131/1/263 130/1/263 +f 133/1/264 134/1/264 132/1/264 +f 93/1/265 133/1/265 130/1/265 +f 284/1/266 134/1/266 133/1/266 +f 93/1/267 284/1/267 133/1/267 +f 285/1/268 284/1/268 93/1/268 +f 540/1/269 141/1/269 272/1/269 +f 520/1/270 540/1/270 272/1/270 +f 136/1/271 135/1/271 353/1/271 +f 136/1/272 338/1/272 135/1/272 +f 258/1/273 338/1/273 136/1/273 +f 258/1/274 340/1/274 338/1/274 +f 137/1/275 340/1/275 258/1/275 +f 261/1/276 340/1/276 137/1/276 +f 261/1/277 343/1/277 340/1/277 +f 262/1/278 343/1/278 261/1/278 +f 264/1/279 344/1/279 262/1/279 +f 344/1/280 343/1/280 262/1/280 +f 346/1/281 344/1/281 264/1/281 +f 138/1/282 346/1/282 264/1/282 +f 138/1/283 348/1/283 346/1/283 +f 139/1/284 348/1/284 138/1/284 +f 350/1/285 348/1/285 139/1/285 +f 268/1/286 350/1/286 139/1/286 +f 140/1/287 350/1/287 268/1/287 +f 141/1/288 140/1/288 268/1/288 +f 272/1/289 141/1/289 268/1/289 +f 356/1/290 3/1/290 72/1/290 +f 356/1/291 376/1/291 3/1/291 +f 76/1/292 356/1/292 72/1/292 +f 363/1/293 356/1/293 76/1/293 +f 376/1/294 142/1/294 3/1/294 +f 78/1/295 363/1/295 76/1/295 +f 376/1/296 380/1/296 142/1/296 +f 143/1/297 363/1/297 78/1/297 +f 82/1/298 143/1/298 78/1/298 +f 380/1/299 381/1/299 142/1/299 +f 381/1/300 144/1/300 142/1/300 +f 372/1/301 143/1/301 82/1/301 +f 387/1/302 144/1/302 381/1/302 +f 88/1/303 372/1/303 82/1/303 +f 353/1/304 372/1/304 88/1/304 +f 387/1/305 43/1/305 144/1/305 +f 136/1/306 353/1/306 88/1/306 +f 389/1/307 43/1/307 387/1/307 +f 389/1/308 168/1/308 43/1/308 +f 170/1/309 168/1/309 389/1/309 +f 395/1/310 170/1/310 389/1/310 +f 395/1/311 145/1/311 170/1/311 +f 396/1/312 145/1/312 395/1/312 +f 396/1/313 172/1/313 145/1/313 +f 146/1/314 172/1/314 396/1/314 +f 146/1/315 147/1/315 172/1/315 +f 399/1/316 147/1/316 146/1/316 +f 399/1/317 175/1/317 147/1/317 +f 403/1/318 175/1/318 399/1/318 +f 179/1/319 175/1/319 403/1/319 +f 404/1/320 179/1/320 403/1/320 +f 148/1/321 179/1/321 404/1/321 +f 406/1/322 148/1/322 404/1/322 +f 182/1/323 148/1/323 406/1/323 +f 407/1/324 182/1/324 406/1/324 +f 149/1/325 182/1/325 407/1/325 +f 1/1/326 149/1/326 407/1/326 +f 151/1/327 152/1/327 150/1/327 +f 413/1/328 153/1/328 151/1/328 +f 151/1/329 153/1/329 152/1/329 +f 153/1/330 154/1/330 152/1/330 +f 413/1/331 160/1/331 153/1/331 +f 153/1/332 157/1/332 154/1/332 +f 160/1/333 156/1/333 153/1/333 +f 156/1/334 157/1/334 153/1/334 +f 157/1/335 155/1/335 154/1/335 +f 158/1/336 155/1/336 157/1/336 +f 157/1/337 163/1/337 158/1/337 +f 160/1/338 162/1/338 156/1/338 +f 156/1/339 163/1/339 157/1/339 +f 162/1/340 163/1/340 156/1/340 +f 158/1/341 164/1/341 159/1/341 +f 164/1/342 161/1/342 159/1/342 +f 163/1/343 164/1/343 158/1/343 +f 162/1/344 164/1/344 163/1/344 +f 164/1/345 321/1/345 161/1/345 +f 413/1/346 24/1/346 23/1/346 +f 413/1/347 151/1/347 24/1/347 +f 151/1/348 150/1/348 24/1/348 +f 150/1/349 25/1/349 24/1/349 +f 26/1/350 7/1/350 6/1/350 +f 28/1/351 165/1/351 7/1/351 +f 26/1/352 28/1/352 7/1/352 +f 28/1/353 11/1/353 165/1/353 +f 30/1/354 14/1/354 11/1/354 +f 28/1/355 30/1/355 11/1/355 +f 32/1/356 15/1/356 14/1/356 +f 30/1/357 32/1/357 14/1/357 +f 35/1/358 17/1/358 15/1/358 +f 32/1/359 35/1/359 15/1/359 +f 35/1/360 19/1/360 17/1/360 +f 35/1/361 39/1/361 19/1/361 +f 39/1/362 21/1/362 19/1/362 +f 40/1/363 21/1/363 39/1/363 +f 40/1/364 166/1/364 21/1/364 +f 42/1/365 166/1/365 40/1/365 +f 42/1/366 23/1/366 166/1/366 +f 167/1/367 23/1/367 42/1/367 +f 170/1/368 169/1/368 168/1/368 +f 169/1/369 171/1/369 167/1/369 +f 170/1/370 171/1/370 169/1/370 +f 171/1/371 173/1/371 167/1/371 +f 145/1/372 171/1/372 170/1/372 +f 145/1/373 172/1/373 171/1/373 +f 172/1/374 173/1/374 171/1/374 +f 147/1/375 173/1/375 172/1/375 +f 147/1/376 174/1/376 173/1/376 +f 147/1/377 177/1/377 174/1/377 +f 175/1/378 177/1/378 147/1/378 +f 177/1/379 176/1/379 174/1/379 +f 179/1/380 177/1/380 175/1/380 +f 177/1/381 178/1/381 176/1/381 +f 179/1/382 178/1/382 177/1/382 +f 179/1/383 148/1/383 178/1/383 +f 180/1/384 176/1/384 178/1/384 +f 148/1/385 180/1/385 178/1/385 +f 180/1/386 181/1/386 176/1/386 +f 148/1/387 182/1/387 180/1/387 +f 183/1/388 181/1/388 180/1/388 +f 182/1/389 183/1/389 180/1/389 +f 149/1/390 183/1/390 182/1/390 +f 183/1/391 184/1/391 181/1/391 +f 541/1/392 184/1/392 183/1/392 +f 149/1/393 541/1/393 183/1/393 +f 186/1/394 188/1/394 185/1/394 +f 187/1/395 188/1/395 186/1/395 +f 188/1/396 191/1/396 185/1/396 +f 189/1/397 190/1/397 187/1/397 +f 200/1/398 189/1/398 197/1/398 +f 187/1/399 190/1/399 188/1/399 +f 200/1/400 193/1/400 189/1/400 +f 193/1/401 190/1/401 189/1/401 +f 188/1/402 192/1/402 191/1/402 +f 195/1/403 192/1/403 188/1/403 +f 190/1/404 195/1/404 188/1/404 +f 192/1/405 194/1/405 191/1/405 +f 193/1/406 195/1/406 190/1/406 +f 200/1/407 195/1/407 193/1/407 +f 195/1/408 194/1/408 192/1/408 +f 198/1/409 200/1/409 197/1/409 +f 196/1/410 201/1/410 198/1/410 +f 199/1/411 201/1/411 196/1/411 +f 202/1/412 199/1/412 196/1/412 +f 203/1/413 199/1/413 202/1/413 +f 198/1/414 201/1/414 200/1/414 +f 200/1/415 201/1/415 195/1/415 +f 203/1/416 201/1/416 199/1/416 +f 204/1/417 202/1/417 205/1/417 +f 204/1/418 203/1/418 202/1/418 +f 206/1/419 205/1/419 210/1/419 +f 205/1/420 458/1/420 210/1/420 +f 205/1/421 454/1/421 458/1/421 +f 206/1/422 204/1/422 205/1/422 +f 320/1/423 208/1/423 207/1/423 +f 208/1/423 325/1/423 207/1/423 +f 325/1/424 324/1/424 207/1/424 +f 208/1/423 415/1/423 325/1/423 +f 415/1/423 209/1/423 325/1/423 +f 415/1/423 210/1/423 209/1/423 +f 418/1/423 206/1/423 210/1/423 +f 415/1/423 416/1/423 210/1/423 +f 417/1/423 418/1/423 210/1/423 +f 416/1/423 417/1/423 210/1/423 +f 432/1/425 213/1/425 211/1/425 +f 212/1/426 213/1/426 432/1/426 +f 214/1/427 213/1/427 212/1/427 +f 215/1/428 213/1/428 214/1/428 +f 217/1/429 215/1/429 214/1/429 +f 219/1/430 215/1/430 217/1/430 +f 420/1/431 215/1/431 219/1/431 +f 219/1/432 217/1/432 218/1/432 +f 225/1/433 221/1/433 216/1/433 +f 221/1/434 218/1/434 216/1/434 +f 220/1/435 221/1/435 225/1/435 +f 221/1/436 219/1/436 218/1/436 +f 221/1/437 420/1/437 219/1/437 +f 230/1/438 221/1/438 220/1/438 +f 230/1/439 420/1/439 221/1/439 +f 233/1/440 226/1/440 224/1/440 +f 227/1/441 222/1/441 224/1/441 +f 227/1/442 228/1/442 222/1/442 +f 228/1/443 223/1/443 222/1/443 +f 228/1/444 225/1/444 223/1/444 +f 226/1/445 227/1/445 224/1/445 +f 220/1/446 225/1/446 228/1/446 +f 231/1/447 228/1/447 227/1/447 +f 229/1/448 227/1/448 226/1/448 +f 229/1/449 231/1/449 227/1/449 +f 230/1/450 220/1/450 228/1/450 +f 231/1/451 230/1/451 228/1/451 +f 229/1/452 232/1/452 231/1/452 +f 232/1/453 230/1/453 231/1/453 +f 185/1/454 226/1/454 233/1/454 +f 191/1/455 226/1/455 185/1/455 +f 191/1/456 229/1/456 226/1/456 +f 191/1/457 194/1/457 229/1/457 +f 194/1/458 232/1/458 229/1/458 +f 274/1/423 234/1/423 280/1/423 +f 235/1/423 422/1/423 274/1/423 +f 422/1/423 234/1/423 274/1/423 +f 425/1/423 235/1/423 274/1/423 +f 428/1/423 426/1/423 274/1/423 +f 426/1/423 425/1/423 274/1/423 +f 275/1/423 428/1/423 274/1/423 +f 211/1/423 428/1/423 275/1/423 +f 236/1/423 279/1/423 275/1/423 +f 279/1/423 211/1/423 275/1/423 +f 213/1/423 428/1/423 211/1/423 +f 240/1/459 238/1/459 237/1/459 +f 240/1/460 239/1/460 238/1/460 +f 241/1/461 239/1/461 240/1/461 +f 241/1/462 244/1/462 239/1/462 +f 244/1/463 243/1/463 239/1/463 +f 242/1/464 241/1/464 240/1/464 +f 245/1/465 241/1/465 242/1/465 +f 244/1/466 241/1/466 245/1/466 +f 249/1/467 243/1/467 244/1/467 +f 247/1/468 244/1/468 245/1/468 +f 246/1/469 247/1/469 245/1/469 +f 247/1/470 249/1/470 244/1/470 +f 249/1/471 252/1/471 243/1/471 +f 250/1/472 249/1/472 247/1/472 +f 248/1/473 247/1/473 246/1/473 +f 250/1/474 247/1/474 248/1/474 +f 45/1/475 250/1/475 248/1/475 +f 252/1/476 249/1/476 250/1/476 +f 45/1/477 251/1/477 250/1/477 +f 282/1/478 251/1/478 45/1/478 +f 251/1/479 252/1/479 250/1/479 +f 239/1/480 243/1/480 67/1/480 +f 253/1/481 239/1/481 67/1/481 +f 238/1/482 239/1/482 253/1/482 +f 68/1/483 238/1/483 253/1/483 +f 237/1/484 238/1/484 68/1/484 +f 49/1/485 73/1/485 47/1/485 +f 73/1/486 69/1/486 47/1/486 +f 52/1/487 73/1/487 49/1/487 +f 254/1/488 73/1/488 52/1/488 +f 53/1/489 254/1/489 52/1/489 +f 56/1/490 254/1/490 53/1/490 +f 77/1/491 254/1/491 56/1/491 +f 58/1/492 77/1/492 56/1/492 +f 255/1/493 77/1/493 58/1/493 +f 60/1/494 255/1/494 58/1/494 +f 83/1/495 255/1/495 60/1/495 +f 61/1/496 83/1/496 60/1/496 +f 86/1/497 83/1/497 61/1/497 +f 63/1/498 86/1/498 61/1/498 +f 66/1/499 86/1/499 63/1/499 +f 66/1/500 256/1/500 86/1/500 +f 67/1/501 256/1/501 66/1/501 +f 259/1/502 257/1/502 256/1/502 +f 259/1/503 258/1/503 257/1/503 +f 258/1/504 136/1/504 257/1/504 +f 259/1/505 137/1/505 258/1/505 +f 260/1/506 137/1/506 259/1/506 +f 260/1/507 261/1/507 137/1/507 +f 263/1/508 260/1/508 259/1/508 +f 263/1/509 262/1/509 260/1/509 +f 262/1/510 261/1/510 260/1/510 +f 263/1/511 265/1/511 262/1/511 +f 265/1/512 264/1/512 262/1/512 +f 138/1/513 264/1/513 265/1/513 +f 266/1/514 265/1/514 263/1/514 +f 266/1/515 139/1/515 265/1/515 +f 139/1/516 138/1/516 265/1/516 +f 267/1/517 268/1/517 266/1/517 +f 268/1/518 139/1/518 266/1/518 +f 270/1/519 267/1/519 266/1/519 +f 270/1/520 271/1/520 267/1/520 +f 271/1/521 272/1/521 267/1/521 +f 272/1/522 268/1/522 267/1/522 +f 269/1/523 271/1/523 270/1/523 +f 269/1/524 520/1/524 271/1/524 +f 520/1/525 272/1/525 271/1/525 +f 276/1/526 275/1/526 273/1/526 +f 275/1/527 274/1/527 273/1/527 +f 236/1/528 275/1/528 276/1/528 +f 277/1/529 236/1/529 276/1/529 +f 278/1/530 236/1/530 277/1/530 +f 279/1/531 236/1/531 278/1/531 +f 430/1/532 279/1/532 278/1/532 +f 211/1/533 279/1/533 430/1/533 +f 432/1/534 211/1/534 430/1/534 +f 251/1/535 280/1/535 252/1/535 +f 282/1/536 280/1/536 251/1/536 +f 46/1/537 281/1/537 282/1/537 +f 281/1/538 280/1/538 282/1/538 +f 273/1/539 274/1/539 281/1/539 +f 274/1/540 280/1/540 281/1/540 +f 436/1/541 283/1/541 441/1/541 +f 436/1/542 437/1/542 283/1/542 +f 437/1/543 92/1/543 283/1/543 +f 285/1/544 445/1/544 284/1/544 +f 446/1/545 445/1/545 285/1/545 +f 93/1/546 446/1/546 285/1/546 +f 447/1/547 446/1/547 93/1/547 +f 291/1/548 286/1/548 288/1/548 +f 291/1/549 435/1/549 286/1/549 +f 293/1/550 435/1/550 291/1/550 +f 297/1/551 289/1/551 287/1/551 +f 290/1/552 288/1/552 287/1/552 +f 298/1/553 289/1/553 297/1/553 +f 289/1/554 290/1/554 287/1/554 +f 95/1/555 288/1/555 290/1/555 +f 95/1/556 291/1/556 288/1/556 +f 98/1/557 289/1/557 298/1/557 +f 292/1/558 290/1/558 289/1/558 +f 98/1/559 292/1/559 289/1/559 +f 292/1/560 94/1/560 290/1/560 +f 94/1/561 95/1/561 290/1/561 +f 95/1/562 293/1/562 291/1/562 +f 300/1/563 295/1/563 294/1/563 +f 297/1/564 287/1/564 294/1/564 +f 295/1/565 296/1/565 294/1/565 +f 296/1/566 297/1/566 294/1/566 +f 295/1/567 97/1/567 296/1/567 +f 98/1/568 298/1/568 297/1/568 +f 300/1/569 97/1/569 295/1/569 +f 296/1/570 98/1/570 297/1/570 +f 97/1/571 299/1/571 296/1/571 +f 96/1/572 97/1/572 300/1/572 +f 299/1/573 98/1/573 296/1/573 +f 302/1/574 294/1/574 301/1/574 +f 302/1/575 300/1/575 294/1/575 +f 304/1/576 300/1/576 302/1/576 +f 304/1/577 96/1/577 300/1/577 +f 305/1/578 96/1/578 304/1/578 +f 301/1/579 303/1/579 302/1/579 +f 314/1/580 303/1/580 301/1/580 +f 309/1/581 314/1/581 301/1/581 +f 303/1/582 304/1/582 302/1/582 +f 310/1/583 314/1/583 309/1/583 +f 314/1/584 306/1/584 303/1/584 +f 316/1/585 306/1/585 314/1/585 +f 303/1/586 305/1/586 304/1/586 +f 307/1/587 305/1/587 303/1/587 +f 306/1/588 307/1/588 303/1/588 +f 308/1/589 310/1/589 309/1/589 +f 311/1/590 310/1/590 308/1/590 +f 317/1/591 311/1/591 308/1/591 +f 317/1/592 313/1/592 311/1/592 +f 315/1/593 313/1/593 317/1/593 +f 312/1/594 315/1/594 317/1/594 +f 311/1/595 99/1/595 310/1/595 +f 313/1/596 99/1/596 311/1/596 +f 310/1/597 316/1/597 314/1/597 +f 312/1/598 319/1/598 315/1/598 +f 99/1/599 316/1/599 310/1/599 +f 315/1/600 319/1/600 313/1/600 +f 318/1/601 312/1/601 317/1/601 +f 100/1/602 312/1/602 318/1/602 +f 100/1/603 319/1/603 312/1/603 +f 320/1/604 164/1/604 162/1/604 +f 320/1/605 321/1/605 164/1/605 +f 320/1/606 322/1/606 321/1/606 +f 320/1/607 323/1/607 322/1/607 +f 320/1/608 207/1/608 452/1/608 +f 323/1/609 320/1/609 452/1/609 +f 324/1/610 452/1/610 207/1/610 +f 324/1/611 453/1/611 452/1/611 +f 325/1/612 453/1/612 324/1/612 +f 325/1/613 326/1/613 453/1/613 +f 209/1/614 326/1/614 325/1/614 +f 209/1/615 456/1/615 326/1/615 +f 210/1/616 456/1/616 209/1/616 +f 210/1/617 458/1/617 456/1/617 +f 464/1/618 105/1/618 327/1/618 +f 464/1/619 462/1/619 105/1/619 +f 462/1/620 328/1/620 105/1/620 +f 462/1/621 106/1/621 328/1/621 +f 329/1/622 106/1/622 462/1/622 +f 329/1/623 110/1/623 106/1/623 +f 329/1/624 330/1/624 110/1/624 +f 461/1/625 330/1/625 329/1/625 +f 461/1/626 331/1/626 330/1/626 +f 443/1/627 331/1/627 461/1/627 +f 443/1/628 115/1/628 331/1/628 +f 443/1/629 441/1/629 115/1/629 +f 465/1/630 464/1/630 118/1/630 +f 464/1/631 327/1/631 118/1/631 +f 120/1/632 465/1/632 118/1/632 +f 122/1/633 465/1/633 120/1/633 +f 466/1/634 465/1/634 122/1/634 +f 124/1/635 466/1/635 122/1/635 +f 125/1/636 466/1/636 124/1/636 +f 128/1/637 332/1/637 125/1/637 +f 332/1/638 466/1/638 125/1/638 +f 131/1/639 332/1/639 128/1/639 +f 132/1/640 332/1/640 131/1/640 +f 134/1/641 332/1/641 132/1/641 +f 134/1/642 467/1/642 332/1/642 +f 284/1/643 467/1/643 134/1/643 +f 352/1/644 333/1/644 351/1/644 +f 540/1/645 333/1/645 352/1/645 +f 141/1/646 540/1/646 352/1/646 +f 334/1/647 337/1/647 355/1/647 +f 335/1/648 337/1/648 334/1/648 +f 338/1/649 335/1/649 135/1/649 +f 336/1/650 337/1/650 335/1/650 +f 338/1/651 336/1/651 335/1/651 +f 336/1/652 339/1/652 337/1/652 +f 338/1/653 340/1/653 336/1/653 +f 339/1/654 341/1/654 337/1/654 +f 340/1/655 339/1/655 336/1/655 +f 343/1/656 339/1/656 340/1/656 +f 339/1/657 342/1/657 341/1/657 +f 343/1/658 342/1/658 339/1/658 +f 343/1/659 344/1/659 342/1/659 +f 342/1/660 345/1/660 341/1/660 +f 344/1/661 345/1/661 342/1/661 +f 346/1/662 345/1/662 344/1/662 +f 346/1/663 347/1/663 345/1/663 +f 348/1/664 347/1/664 346/1/664 +f 347/1/665 349/1/665 345/1/665 +f 350/1/666 349/1/666 347/1/666 +f 348/1/667 350/1/667 347/1/667 +f 350/1/668 351/1/668 349/1/668 +f 140/1/669 351/1/669 350/1/669 +f 140/1/670 352/1/670 351/1/670 +f 141/1/671 352/1/671 140/1/671 +f 135/1/672 354/1/672 353/1/672 +f 135/1/673 335/1/673 354/1/673 +f 334/1/674 354/1/674 335/1/674 +f 358/1/675 357/1/675 356/1/675 +f 363/1/676 361/1/676 356/1/676 +f 358/1/677 360/1/677 357/1/677 +f 360/1/678 359/1/678 357/1/678 +f 361/1/679 358/1/679 356/1/679 +f 361/1/680 362/1/680 358/1/680 +f 362/1/681 360/1/681 358/1/681 +f 361/1/682 364/1/682 362/1/682 +f 363/1/683 365/1/683 361/1/683 +f 365/1/684 364/1/684 361/1/684 +f 365/1/685 367/1/685 364/1/685 +f 143/1/686 366/1/686 363/1/686 +f 366/1/687 365/1/687 363/1/687 +f 366/1/688 367/1/688 365/1/688 +f 368/1/689 367/1/689 366/1/689 +f 143/1/690 369/1/690 366/1/690 +f 369/1/691 368/1/691 366/1/691 +f 372/1/692 369/1/692 143/1/692 +f 369/1/693 370/1/693 368/1/693 +f 371/1/694 369/1/694 372/1/694 +f 371/1/695 370/1/695 369/1/695 +f 374/1/696 370/1/696 371/1/696 +f 353/1/697 354/1/697 372/1/697 +f 354/1/698 371/1/698 372/1/698 +f 354/1/699 373/1/699 371/1/699 +f 373/1/700 374/1/700 371/1/700 +f 334/1/701 373/1/701 354/1/701 +f 334/1/702 355/1/702 373/1/702 +f 355/1/703 374/1/703 373/1/703 +f 357/1/704 376/1/704 356/1/704 +f 357/1/705 375/1/705 376/1/705 +f 359/1/706 375/1/706 357/1/706 +f 475/1/707 375/1/707 359/1/707 +f 375/1/708 377/1/708 376/1/708 +f 377/1/709 380/1/709 376/1/709 +f 378/1/710 377/1/710 375/1/710 +f 475/1/711 378/1/711 375/1/711 +f 379/1/712 380/1/712 377/1/712 +f 378/1/713 379/1/713 377/1/713 +f 476/1/714 379/1/714 378/1/714 +f 476/1/715 380/1/715 379/1/715 +f 383/1/716 380/1/716 476/1/716 +f 477/1/717 383/1/717 476/1/717 +f 383/1/718 381/1/718 380/1/718 +f 477/1/719 382/1/719 383/1/719 +f 383/1/720 384/1/720 381/1/720 +f 385/1/721 384/1/721 383/1/721 +f 382/1/722 385/1/722 383/1/722 +f 479/1/723 385/1/723 382/1/723 +f 384/1/724 387/1/724 381/1/724 +f 386/1/725 387/1/725 384/1/725 +f 385/1/726 386/1/726 384/1/726 +f 479/1/727 386/1/727 385/1/727 +f 480/1/728 386/1/728 479/1/728 +f 386/1/729 388/1/729 387/1/729 +f 390/1/730 388/1/730 386/1/730 +f 480/1/731 390/1/731 386/1/731 +f 391/1/732 390/1/732 480/1/732 +f 388/1/733 389/1/733 387/1/733 +f 391/1/734 392/1/734 390/1/734 +f 392/1/735 393/1/735 390/1/735 +f 393/1/736 388/1/736 390/1/736 +f 393/1/737 389/1/737 388/1/737 +f 394/1/738 393/1/738 392/1/738 +f 393/1/739 395/1/739 389/1/739 +f 394/1/740 395/1/740 393/1/740 +f 396/1/741 395/1/741 394/1/741 +f 398/1/742 397/1/742 394/1/742 +f 397/1/743 396/1/743 394/1/743 +f 146/1/744 396/1/744 397/1/744 +f 398/1/745 400/1/745 397/1/745 +f 400/1/746 146/1/746 397/1/746 +f 400/1/747 399/1/747 146/1/747 +f 401/1/748 400/1/748 398/1/748 +f 401/1/749 402/1/749 400/1/749 +f 402/1/750 403/1/750 400/1/750 +f 403/1/751 399/1/751 400/1/751 +f 405/1/752 402/1/752 401/1/752 +f 405/1/753 404/1/753 402/1/753 +f 404/1/754 403/1/754 402/1/754 +f 408/1/755 404/1/755 405/1/755 +f 408/1/756 406/1/756 404/1/756 +f 411/1/757 408/1/757 405/1/757 +f 411/1/758 409/1/758 408/1/758 +f 407/1/759 406/1/759 408/1/759 +f 409/1/760 407/1/760 408/1/760 +f 409/1/761 1/1/761 407/1/761 +f 410/1/762 409/1/762 411/1/762 +f 410/1/763 412/1/763 409/1/763 +f 412/1/764 1/1/764 409/1/764 +f 181/1/765 23/1/765 167/1/765 +f 184/1/766 413/1/766 23/1/766 +f 181/1/767 184/1/767 23/1/767 +f 173/1/768 181/1/768 167/1/768 +f 176/1/769 181/1/769 173/1/769 +f 174/1/770 176/1/770 173/1/770 +f 482/1/771 413/1/771 184/1/771 +f 482/1/772 160/1/772 413/1/772 +f 482/1/773 162/1/773 160/1/773 +f 482/1/774 208/1/774 162/1/774 +f 208/1/775 320/1/775 162/1/775 +f 485/1/776 208/1/776 482/1/776 +f 414/1/777 208/1/777 485/1/777 +f 415/1/778 208/1/778 414/1/778 +f 488/1/779 415/1/779 414/1/779 +f 491/1/780 415/1/780 488/1/780 +f 416/1/781 415/1/781 491/1/781 +f 493/1/782 416/1/782 491/1/782 +f 494/1/783 416/1/783 493/1/783 +f 417/1/784 416/1/784 494/1/784 +f 497/1/785 417/1/785 494/1/785 +f 500/1/786 417/1/786 497/1/786 +f 502/1/787 418/1/787 500/1/787 +f 418/1/788 417/1/788 500/1/788 +f 504/1/789 418/1/789 502/1/789 +f 230/1/790 232/1/790 419/1/790 +f 428/1/791 215/1/791 419/1/791 +f 215/1/792 420/1/792 419/1/792 +f 420/1/793 230/1/793 419/1/793 +f 232/1/794 504/1/794 419/1/794 +f 204/1/795 418/1/795 504/1/795 +f 203/1/796 204/1/796 504/1/796 +f 194/1/797 195/1/797 504/1/797 +f 195/1/798 201/1/798 504/1/798 +f 201/1/799 203/1/799 504/1/799 +f 232/1/800 194/1/800 504/1/800 +f 428/1/801 213/1/801 215/1/801 +f 206/1/802 418/1/802 204/1/802 +f 234/1/803 508/1/803 421/1/803 +f 234/1/804 510/1/804 508/1/804 +f 422/1/805 510/1/805 234/1/805 +f 422/1/806 423/1/806 510/1/806 +f 235/1/807 423/1/807 422/1/807 +f 235/1/808 513/1/808 423/1/808 +f 235/1/809 424/1/809 513/1/809 +f 425/1/810 424/1/810 235/1/810 +f 425/1/811 516/1/811 424/1/811 +f 425/1/812 427/1/812 516/1/812 +f 425/1/813 426/1/813 427/1/813 +f 426/1/814 519/1/814 427/1/814 +f 426/1/815 428/1/815 519/1/815 +f 428/1/816 419/1/816 519/1/816 +f 270/1/817 259/1/817 256/1/817 +f 269/1/818 270/1/818 256/1/818 +f 67/1/819 269/1/819 256/1/819 +f 421/1/820 269/1/820 67/1/820 +f 243/1/821 421/1/821 67/1/821 +f 270/1/822 266/1/822 259/1/822 +f 266/1/823 263/1/823 259/1/823 +f 252/1/824 421/1/824 243/1/824 +f 280/1/825 234/1/825 252/1/825 +f 234/1/826 421/1/826 252/1/826 +f 429/1/827 273/1/827 281/1/827 +f 429/1/827 277/1/827 273/1/827 +f 277/1/828 276/1/828 273/1/828 +f 429/1/829 431/1/829 277/1/829 +f 431/1/830 278/1/830 277/1/830 +f 431/1/831 430/1/831 278/1/831 +f 431/1/832 432/1/832 430/1/832 +f 431/1/833 433/1/833 432/1/833 +f 525/1/834 212/1/834 432/1/834 +f 433/1/835 434/1/835 432/1/835 +f 434/1/835 525/1/835 432/1/835 +f 439/1/836 438/1/836 437/1/836 +f 436/1/837 439/1/837 437/1/837 +f 440/1/838 439/1/838 436/1/838 +f 439/1/839 522/1/839 438/1/839 +f 440/1/840 522/1/840 439/1/840 +f 436/1/841 441/1/841 443/1/841 +f 442/1/842 436/1/842 443/1/842 +f 442/1/843 440/1/843 436/1/843 +f 284/1/844 444/1/844 467/1/844 +f 445/1/845 444/1/845 284/1/845 +f 445/1/846 449/1/846 444/1/846 +f 448/1/847 446/1/847 447/1/847 +f 4/1/848 446/1/848 448/1/848 +f 4/1/849 445/1/849 446/1/849 +f 450/1/850 445/1/850 4/1/850 +f 450/1/851 449/1/851 445/1/851 +f 288/1/852 286/1/852 451/1/852 +f 553/1/853 301/1/853 451/1/853 +f 301/1/854 294/1/854 451/1/854 +f 287/1/855 288/1/855 451/1/855 +f 294/1/856 287/1/856 451/1/856 +f 309/1/857 301/1/857 553/1/857 +f 308/1/858 309/1/858 553/1/858 +f 318/1/859 317/1/859 553/1/859 +f 317/1/860 308/1/860 553/1/860 +f 530/1/827 323/1/827 452/1/827 +f 453/1/827 530/1/827 452/1/827 +f 457/1/861 530/1/861 453/1/861 +f 326/1/862 457/1/862 453/1/862 +f 456/1/863 457/1/863 326/1/863 +f 454/1/864 529/1/864 458/1/864 +f 529/1/865 455/1/865 458/1/865 +f 458/1/866 457/1/866 456/1/866 +f 459/1/867 457/1/867 458/1/867 +f 455/1/868 459/1/868 458/1/868 +f 463/1/423 460/1/423 464/1/423 +f 461/1/423 329/1/423 464/1/423 +f 460/1/423 443/1/423 464/1/423 +f 443/1/423 461/1/423 464/1/423 +f 465/1/423 463/1/423 464/1/423 +f 329/1/423 462/1/423 464/1/423 +f 562/1/423 463/1/423 465/1/423 +f 466/1/423 562/1/423 465/1/423 +f 332/1/423 562/1/423 466/1/423 +f 564/1/423 562/1/423 332/1/423 +f 467/1/423 564/1/423 332/1/423 +f 460/1/423 442/1/423 443/1/423 +f 444/1/423 556/1/423 467/1/423 +f 556/1/423 564/1/423 467/1/423 +f 468/1/423 564/1/423 556/1/423 +f 451/1/423 468/1/423 556/1/423 +f 469/1/423 451/1/423 556/1/423 +f 558/1/423 451/1/423 469/1/423 +f 559/1/423 451/1/423 558/1/423 +f 553/1/423 451/1/423 559/1/423 +f 351/1/869 333/1/869 474/1/869 +f 355/1/870 351/1/870 474/1/870 +f 337/1/871 351/1/871 355/1/871 +f 345/1/872 349/1/872 337/1/872 +f 349/1/873 351/1/873 337/1/873 +f 341/1/874 345/1/874 337/1/874 +f 360/1/875 470/1/875 359/1/875 +f 362/1/876 470/1/876 360/1/876 +f 471/1/877 470/1/877 362/1/877 +f 364/1/878 471/1/878 362/1/878 +f 472/1/879 471/1/879 364/1/879 +f 367/1/880 472/1/880 364/1/880 +f 368/1/881 472/1/881 367/1/881 +f 370/1/882 472/1/882 368/1/882 +f 473/1/883 472/1/883 370/1/883 +f 374/1/884 473/1/884 370/1/884 +f 374/1/885 474/1/885 473/1/885 +f 355/1/886 474/1/886 374/1/886 +f 359/1/887 470/1/887 475/1/887 +f 470/1/888 533/1/888 475/1/888 +f 533/1/889 378/1/889 475/1/889 +f 533/1/890 535/1/890 378/1/890 +f 535/1/891 476/1/891 378/1/891 +f 535/1/892 477/1/892 476/1/892 +f 535/1/893 478/1/893 477/1/893 +f 478/1/894 382/1/894 477/1/894 +f 478/1/895 536/1/895 382/1/895 +f 536/1/896 479/1/896 382/1/896 +f 536/1/897 480/1/897 479/1/897 +f 481/1/898 480/1/898 536/1/898 +f 481/1/899 391/1/899 480/1/899 +f 481/1/900 392/1/900 391/1/900 +f 481/1/901 410/1/901 392/1/901 +f 410/1/902 411/1/902 392/1/902 +f 411/1/903 394/1/903 392/1/903 +f 411/1/904 405/1/904 394/1/904 +f 405/1/905 401/1/905 394/1/905 +f 401/1/906 398/1/906 394/1/906 +f 483/1/907 482/1/907 184/1/907 +f 541/1/908 483/1/908 184/1/908 +f 487/1/909 483/1/909 541/1/909 +f 484/1/910 483/1/910 487/1/910 +f 484/1/911 485/1/911 483/1/911 +f 485/1/912 482/1/912 483/1/912 +f 486/1/913 485/1/913 484/1/913 +f 486/1/914 414/1/914 485/1/914 +f 492/1/915 484/1/915 487/1/915 +f 492/1/916 486/1/916 484/1/916 +f 489/1/917 486/1/917 492/1/917 +f 489/1/918 488/1/918 486/1/918 +f 488/1/919 414/1/919 486/1/919 +f 491/1/920 488/1/920 489/1/920 +f 492/1/921 490/1/921 489/1/921 +f 490/1/922 491/1/922 489/1/922 +f 493/1/923 491/1/923 490/1/923 +f 495/1/924 490/1/924 492/1/924 +f 495/1/925 493/1/925 490/1/925 +f 496/1/926 495/1/926 492/1/926 +f 495/1/927 494/1/927 493/1/927 +f 496/1/928 497/1/928 495/1/928 +f 497/1/929 494/1/929 495/1/929 +f 501/1/930 498/1/930 496/1/930 +f 498/1/931 497/1/931 496/1/931 +f 498/1/932 500/1/932 497/1/932 +f 501/1/933 499/1/933 498/1/933 +f 499/1/934 500/1/934 498/1/934 +f 499/1/935 502/1/935 500/1/935 +f 503/1/936 499/1/936 501/1/936 +f 503/1/937 502/1/937 499/1/937 +f 503/1/938 504/1/938 502/1/938 +f 503/1/939 501/1/939 518/1/939 +f 505/1/940 503/1/940 518/1/940 +f 504/1/941 503/1/941 505/1/941 +f 419/1/942 504/1/942 505/1/942 +f 508/1/943 506/1/943 507/1/943 +f 421/1/944 508/1/944 507/1/944 +f 509/1/945 511/1/945 506/1/945 +f 508/1/946 509/1/946 506/1/946 +f 510/1/947 509/1/947 508/1/947 +f 509/1/948 512/1/948 511/1/948 +f 423/1/949 512/1/949 509/1/949 +f 510/1/950 423/1/950 509/1/950 +f 513/1/951 512/1/951 423/1/951 +f 512/1/952 514/1/952 511/1/952 +f 424/1/953 514/1/953 512/1/953 +f 513/1/954 424/1/954 512/1/954 +f 516/1/955 515/1/955 514/1/955 +f 424/1/956 516/1/956 514/1/956 +f 515/1/957 517/1/957 514/1/957 +f 516/1/958 517/1/958 515/1/958 +f 427/1/959 517/1/959 516/1/959 +f 519/1/960 518/1/960 517/1/960 +f 427/1/961 519/1/961 517/1/961 +f 519/1/962 505/1/962 518/1/962 +f 419/1/963 505/1/963 519/1/963 +f 421/1/964 507/1/964 269/1/964 +f 507/1/965 520/1/965 269/1/965 +f 507/1/966 506/1/966 520/1/966 +f 523/1/967 522/1/967 521/1/967 +f 523/1/968 44/1/968 522/1/968 +f 523/1/969 46/1/969 44/1/969 +f 523/1/970 429/1/970 46/1/970 +f 429/1/971 281/1/971 46/1/971 +f 524/1/972 429/1/972 523/1/972 +f 431/1/973 429/1/973 524/1/973 +f 433/1/974 431/1/974 524/1/974 +f 547/1/975 433/1/975 524/1/975 +f 547/1/976 434/1/976 433/1/976 +f 551/1/977 434/1/977 547/1/977 +f 526/1/978 434/1/978 551/1/978 +f 526/1/979 525/1/979 434/1/979 +f 526/1/980 212/1/980 525/1/980 +f 286/1/981 435/1/981 212/1/981 +f 526/1/982 527/1/982 212/1/982 +f 527/1/983 286/1/983 212/1/983 +f 451/1/984 527/1/984 538/1/984 +f 286/1/985 527/1/985 451/1/985 +f 442/1/986 539/1/986 521/1/986 +f 522/1/987 442/1/987 521/1/987 +f 522/1/988 440/1/988 442/1/988 +f 5/1/989 544/1/989 542/1/989 +f 450/1/990 5/1/990 542/1/990 +f 528/1/991 544/1/991 5/1/991 +f 530/1/992 544/1/992 528/1/992 +f 322/1/993 530/1/993 528/1/993 +f 323/1/994 530/1/994 322/1/994 +f 444/1/995 542/1/995 560/1/995 +f 449/1/996 450/1/996 542/1/996 +f 444/1/997 449/1/997 542/1/997 +f 549/1/998 553/1/998 550/1/998 +f 549/1/999 318/1/999 553/1/999 +f 318/1/1000 454/1/1000 100/1/1000 +f 549/1/1001 529/1/1001 454/1/1001 +f 318/1/1002 549/1/1002 454/1/1002 +f 549/1/1003 531/1/1003 529/1/1003 +f 457/1/1004 544/1/1004 530/1/1004 +f 457/1/1005 546/1/1005 544/1/1005 +f 457/1/1006 548/1/1006 546/1/1006 +f 459/1/1007 548/1/1007 457/1/1007 +f 455/1/1008 548/1/1008 459/1/1008 +f 552/1/1009 548/1/1009 455/1/1009 +f 529/1/1010 552/1/1010 455/1/1010 +f 531/1/1011 552/1/1011 529/1/1011 +f 333/1/1012 533/1/1012 470/1/1012 +f 474/1/1012 333/1/1012 470/1/1012 +f 539/1/1012 532/1/1012 533/1/1012 +f 532/1/1012 534/1/1012 533/1/1012 +f 333/1/1012 539/1/1012 533/1/1012 +f 472/1/1012 473/1/1012 470/1/1012 +f 473/1/1012 474/1/1012 470/1/1012 +f 534/1/1012 535/1/1012 533/1/1012 +f 471/1/1012 472/1/1012 470/1/1012 +f 534/1/1012 478/1/1012 535/1/1012 +f 534/1/1012 536/1/1012 478/1/1012 +f 534/1/1012 537/1/1012 536/1/1012 +f 537/1/1012 481/1/1012 536/1/1012 +f 537/1/1012 410/1/1012 481/1/1012 +f 561/1/1012 563/1/1012 410/1/1012 +f 563/1/1012 538/1/1012 410/1/1012 +f 554/1/1012 560/1/1012 410/1/1012 +f 537/1/1012 561/1/1012 410/1/1012 +f 538/1/1012 543/1/1012 410/1/1012 +f 557/1/1012 555/1/1012 410/1/1012 +f 555/1/1012 554/1/1012 410/1/1012 +f 543/1/1012 557/1/1012 410/1/1012 +f 560/1/1013 412/1/1013 410/1/1013 +f 540/1/1014 539/1/1014 333/1/1014 +f 521/1/1015 539/1/1015 540/1/1015 +f 506/1/1016 521/1/1016 520/1/1016 +f 521/1/1017 540/1/1017 520/1/1017 +f 560/1/1018 541/1/1018 412/1/1018 +f 542/1/1019 487/1/1019 541/1/1019 +f 560/1/1020 542/1/1020 541/1/1020 +f 506/1/1021 523/1/1021 521/1/1021 +f 544/1/1022 487/1/1022 542/1/1022 +f 538/1/1012 545/1/1012 543/1/1012 +f 506/1/1023 524/1/1023 523/1/1023 +f 546/1/1024 487/1/1024 544/1/1024 +f 511/1/1025 524/1/1025 506/1/1025 +f 492/1/1026 487/1/1026 546/1/1026 +f 538/1/1027 550/1/1027 545/1/1027 +f 548/1/1028 492/1/1028 546/1/1028 +f 511/1/1029 547/1/1029 524/1/1029 +f 511/1/1030 514/1/1030 547/1/1030 +f 496/1/1031 492/1/1031 548/1/1031 +f 517/1/1032 551/1/1032 547/1/1032 +f 514/1/1033 517/1/1033 547/1/1033 +f 552/1/1034 496/1/1034 548/1/1034 +f 501/1/1035 496/1/1035 552/1/1035 +f 549/1/1036 550/1/1036 538/1/1036 +f 527/1/1037 549/1/1037 538/1/1037 +f 517/1/1038 526/1/1038 551/1/1038 +f 531/1/1039 501/1/1039 552/1/1039 +f 517/1/1040 518/1/1040 526/1/1040 +f 518/1/1041 527/1/1041 526/1/1041 +f 518/1/1042 549/1/1042 527/1/1042 +f 518/1/1043 501/1/1043 549/1/1043 +f 501/1/1044 531/1/1044 549/1/1044 +f 550/1/1045 559/1/1045 545/1/1045 +f 550/1/1046 553/1/1046 559/1/1046 +f 555/1/1047 556/1/1047 554/1/1047 +f 557/1/1048 469/1/1048 555/1/1048 +f 469/1/1049 556/1/1049 555/1/1049 +f 543/1/1050 558/1/1050 557/1/1050 +f 558/1/1051 469/1/1051 557/1/1051 +f 559/1/1052 558/1/1052 543/1/1052 +f 545/1/1053 559/1/1053 543/1/1053 +f 556/1/1054 444/1/1054 554/1/1054 +f 444/1/1055 560/1/1055 554/1/1055 +f 442/1/1056 460/1/1056 539/1/1056 +f 460/1/1057 532/1/1057 539/1/1057 +f 460/1/1058 534/1/1058 532/1/1058 +f 463/1/1059 534/1/1059 460/1/1059 +f 463/1/1060 537/1/1060 534/1/1060 +f 562/1/1061 537/1/1061 463/1/1061 +f 562/1/1062 561/1/1062 537/1/1062 +f 564/1/1063 561/1/1063 562/1/1063 +f 564/1/1064 563/1/1064 561/1/1064 +f 468/1/1065 563/1/1065 564/1/1065 +f 468/1/1066 451/1/1066 563/1/1066 +f 451/1/1067 538/1/1067 563/1/1067 +f 565/2/423 570/3/423 682/4/423 +f 567/5/423 565/2/423 682/4/423 +f 566/6/423 565/2/423 567/5/423 +f 599/7/423 566/6/423 567/5/423 +f 659/8/423 569/9/423 567/5/423 +f 568/10/423 599/7/423 567/5/423 +f 569/9/423 568/10/423 567/5/423 +f 570/3/423 684/11/423 682/4/423 +f 565/2/423 605/12/423 570/3/423 +f 605/12/423 606/13/423 570/3/423 +f 606/13/423 578/14/423 570/3/423 +f 640/15/423 638/16/423 569/9/423 +f 642/17/423 640/15/423 569/9/423 +f 581/18/423 642/17/423 569/9/423 +f 638/16/423 568/10/423 569/9/423 +f 571/19/423 605/12/423 565/2/423 +f 610/20/423 608/21/423 565/2/423 +f 608/21/423 571/19/423 565/2/423 +f 582/22/423 610/20/423 565/2/423 +f 588/23/423 582/22/423 565/2/423 +f 566/6/423 623/24/423 565/2/423 +f 623/24/423 572/25/423 565/2/423 +f 572/25/423 573/26/423 565/2/423 +f 573/26/423 624/27/423 565/2/423 +f 624/27/423 627/28/423 565/2/423 +f 627/28/423 588/23/423 565/2/423 +f 574/29/423 623/24/423 566/6/423 +f 575/30/423 574/29/423 566/6/423 +f 629/31/423 626/32/423 566/6/423 +f 599/7/423 629/31/423 566/6/423 +f 626/32/423 575/30/423 566/6/423 +f 638/16/423 576/33/423 568/10/423 +f 576/33/423 577/34/423 568/10/423 +f 577/34/423 643/35/423 568/10/423 +f 643/35/423 646/36/423 568/10/423 +f 646/36/423 599/7/423 568/10/423 +f 580/37/423 642/17/423 581/18/423 +f 578/14/423 579/38/423 570/3/423 +f 611/39/423 590/40/423 570/3/423 +f 579/38/423 611/39/423 570/3/423 +f 589/41/423 649/42/423 581/18/423 +f 649/42/423 580/37/423 581/18/423 +f 613/43/423 590/40/423 611/39/423 +f 588/23/423 614/44/423 582/22/423 +f 630/45/423 588/23/423 627/28/423 +f 599/7/423 584/46/423 629/31/423 +f 583/47/423 599/7/423 646/36/423 +f 589/41/423 585/48/423 649/42/423 +f 616/49/423 590/40/423 613/43/423 +f 632/50/423 588/23/423 630/45/423 +f 586/51/423 599/7/423 583/47/423 +f 588/23/423 619/52/423 614/44/423 +f 599/7/423 635/53/423 584/46/423 +f 589/41/423 655/54/423 585/48/423 +f 618/55/423 590/40/423 616/49/423 +f 633/56/423 588/23/423 632/50/423 +f 653/57/423 599/7/423 586/51/423 +f 622/58/423 590/40/423 618/55/423 +f 588/23/423 621/59/423 619/52/423 +f 636/60/423 588/23/423 633/56/423 +f 599/7/423 587/61/423 635/53/423 +f 657/62/423 599/7/423 653/57/423 +f 589/41/423 656/63/423 655/54/423 +f 588/23/423 590/40/423 621/59/423 +f 621/59/423 590/40/423 622/58/423 +f 599/7/423 588/23/423 636/60/423 +f 587/61/423 599/7/423 636/60/423 +f 589/41/423 599/7/423 657/62/423 +f 656/63/423 589/41/423 657/62/423 +f 662/64/423 599/7/423 589/41/423 +f 588/23/423 591/65/423 590/40/423 +f 593/66/423 599/7/423 662/64/423 +f 588/23/1068 592/67/1068 591/65/1068 +f 592/67/423 595/68/423 594/69/423 +f 665/70/423 593/66/423 663/71/423 +f 667/72/423 593/66/423 665/70/423 +f 592/67/423 678/73/423 595/68/423 +f 596/74/423 593/66/423 667/72/423 +f 592/67/423 598/75/423 678/73/423 +f 597/76/423 593/66/423 596/74/423 +f 669/77/423 593/66/423 597/76/423 +f 599/7/423 592/67/423 588/23/423 +f 592/67/423 600/78/423 598/75/423 +f 675/79/423 592/67/423 599/7/423 +f 593/66/423 675/79/423 599/7/423 +f 675/79/423 593/66/423 669/77/423 +f 672/80/423 600/78/423 592/67/423 +f 669/77/423 601/81/423 675/79/423 +f 673/82/423 672/80/423 592/67/423 +f 601/81/423 602/83/423 675/79/423 +f 603/84/423 673/82/423 592/67/423 +f 675/79/423 603/84/423 592/67/423 +f 602/83/423 604/85/423 675/79/423 +f 690/86/1069 606/86/1069 698/86/1069 +f 606/86/1070 605/86/1070 698/86/1070 +f 605/86/1071 607/86/1071 698/86/1071 +f 571/86/1072 607/86/1072 605/86/1072 +f 692/86/1073 578/86/1073 690/86/1073 +f 578/86/1074 606/86/1074 690/86/1074 +f 571/86/1075 702/86/1075 607/86/1075 +f 608/86/1076 702/86/1076 571/86/1076 +f 694/86/1077 578/86/1077 692/86/1077 +f 608/86/1078 609/86/1078 702/86/1078 +f 610/86/1079 609/86/1079 608/86/1079 +f 579/86/1080 578/86/1080 694/86/1080 +f 704/86/1081 611/86/1081 694/86/1081 +f 611/86/1082 579/86/1082 694/86/1082 +f 610/86/1083 612/86/1083 609/86/1083 +f 582/86/1084 612/86/1084 610/86/1084 +f 613/86/1085 611/86/1085 704/86/1085 +f 615/86/1086 613/86/1086 704/86/1086 +f 582/86/1087 706/86/1087 612/86/1087 +f 614/86/1088 706/86/1088 582/86/1088 +f 616/86/1089 613/86/1089 615/86/1089 +f 614/86/1090 617/86/1090 706/86/1090 +f 709/86/1091 616/86/1091 615/86/1091 +f 619/86/1092 617/86/1092 614/86/1092 +f 618/86/1093 616/86/1093 709/86/1093 +f 619/86/1094 620/86/1094 617/86/1094 +f 622/86/1095 618/86/1095 709/86/1095 +f 712/86/1096 622/86/1096 709/86/1096 +f 621/86/1097 620/86/1097 619/86/1097 +f 621/86/1098 712/86/1098 620/86/1098 +f 712/86/1099 621/86/1099 622/86/1099 +f 685/87/1069 572/87/1069 699/87/1069 +f 572/87/1070 623/87/1070 699/87/1070 +f 623/87/1100 701/87/1100 699/87/1100 +f 574/87/1101 701/87/1101 623/87/1101 +f 686/87/1102 573/87/1102 685/87/1102 +f 573/87/1103 572/87/1103 685/87/1103 +f 575/87/1104 701/87/1104 574/87/1104 +f 624/88/1105 573/87/1105 686/87/1105 +f 575/87/1106 703/87/1106 701/87/1106 +f 625/88/1107 624/88/1107 686/87/1107 +f 626/87/1108 703/87/1108 575/87/1108 +f 627/88/1109 624/88/1109 625/88/1109 +f 626/87/1110 628/87/1110 703/87/1110 +f 697/88/1111 627/88/1111 625/88/1111 +f 629/87/1112 628/87/1112 626/87/1112 +f 630/88/1113 627/88/1113 697/88/1113 +f 696/88/1086 630/88/1086 697/88/1086 +f 629/87/1114 631/87/1114 628/87/1114 +f 584/87/1088 631/87/1088 629/87/1088 +f 632/88/1089 630/88/1089 696/88/1089 +f 584/87/1090 708/87/1090 631/87/1090 +f 695/87/1091 632/88/1091 696/88/1091 +f 635/87/1092 708/87/1092 584/87/1092 +f 633/87/1093 632/88/1093 695/87/1093 +f 635/87/1115 634/87/1115 708/87/1115 +f 636/87/1095 633/87/1095 695/87/1095 +f 637/87/1116 636/87/1116 695/87/1116 +f 635/87/1117 711/87/1117 634/87/1117 +f 587/87/1118 711/87/1118 635/87/1118 +f 587/87/1119 637/87/1119 711/87/1119 +f 637/87/1120 587/87/1120 636/87/1120 +f 576/89/1121 638/90/1121 689/89/1121 +f 638/90/1122 688/90/1122 689/89/1122 +f 639/89/1123 576/89/1123 689/89/1123 +f 640/90/1124 688/90/1124 638/90/1124 +f 641/89/1125 577/89/1125 639/89/1125 +f 577/89/1126 576/89/1126 639/89/1126 +f 640/90/1127 687/90/1127 688/90/1127 +f 642/90/1128 687/90/1128 640/90/1128 +f 644/89/1129 643/89/1129 641/89/1129 +f 643/89/1130 577/89/1130 641/89/1130 +f 580/90/1131 687/90/1131 642/90/1131 +f 580/90/1132 645/90/1132 687/90/1132 +f 647/89/1081 646/89/1081 644/89/1081 +f 646/89/1133 643/89/1133 644/89/1133 +f 580/90/1134 648/90/1134 645/90/1134 +f 649/90/1084 648/90/1084 580/90/1084 +f 583/89/1085 646/89/1085 647/89/1085 +f 650/89/1086 583/89/1086 647/89/1086 +f 649/90/1135 707/90/1135 648/90/1135 +f 585/90/1088 707/90/1088 649/90/1088 +f 586/89/1089 583/89/1089 650/89/1089 +f 585/90/1136 651/90/1136 707/90/1136 +f 654/89/1091 586/89/1091 650/89/1091 +f 655/90/1137 651/90/1137 585/90/1137 +f 655/90/1138 652/90/1138 651/90/1138 +f 653/89/1093 586/89/1093 654/89/1093 +f 657/89/1095 653/89/1095 654/89/1095 +f 710/89/1139 657/89/1139 654/89/1139 +f 655/90/1140 713/90/1140 652/90/1140 +f 656/90/1141 713/90/1141 655/90/1141 +f 713/90/1142 657/89/1142 710/89/1142 +f 713/90/1143 656/90/1143 657/89/1143 +f 660/91/1144 659/91/1144 658/91/1144 +f 660/91/1145 569/91/1145 659/91/1145 +f 661/91/1146 569/91/1146 660/91/1146 +f 661/91/1147 581/91/1147 569/91/1147 +f 662/92/1148 589/92/1148 705/92/1148 +f 700/92/1149 662/92/1149 705/92/1149 +f 593/92/1150 662/92/1150 700/92/1150 +f 716/92/1151 593/92/1151 700/92/1151 +f 664/93/1152 593/92/1152 716/92/1152 +f 663/93/1153 593/92/1153 664/93/1153 +f 666/94/1154 663/93/1154 664/93/1154 +f 666/94/1155 665/94/1155 663/93/1155 +f 666/94/1156 667/94/1156 665/94/1156 +f 668/94/1157 667/94/1157 666/94/1157 +f 668/94/1158 596/94/1158 667/94/1158 +f 719/94/1159 596/94/1159 668/94/1159 +f 719/94/1160 597/94/1160 596/94/1160 +f 720/95/1161 669/95/1161 719/94/1161 +f 669/95/1162 597/94/1162 719/94/1162 +f 670/95/1163 669/95/1163 720/95/1163 +f 670/95/1164 601/95/1164 669/95/1164 +f 722/95/1165 601/95/1165 670/95/1165 +f 722/95/1166 602/95/1166 601/95/1166 +f 721/96/1167 602/95/1167 722/95/1167 +f 721/96/1168 604/96/1168 602/95/1168 +f 675/97/1169 721/96/1169 676/97/1169 +f 675/97/1170 604/96/1170 721/96/1170 +f 600/97/1171 672/97/1171 671/97/1171 +f 672/97/1172 714/97/1172 671/97/1172 +f 672/97/1173 673/97/1173 714/97/1173 +f 673/97/1174 674/97/1174 714/97/1174 +f 673/97/1175 603/97/1175 674/97/1175 +f 603/97/1176 675/97/1176 674/97/1176 +f 675/97/1177 676/97/1177 674/97/1177 +f 598/98/1178 671/97/1178 715/98/1178 +f 600/97/1179 671/97/1179 598/98/1179 +f 594/98/1180 595/98/1180 677/98/1180 +f 595/98/1181 717/98/1181 677/98/1181 +f 595/98/1182 678/98/1182 717/98/1182 +f 678/98/1183 718/98/1183 717/98/1183 +f 678/98/1184 598/98/1184 718/98/1184 +f 598/98/1185 715/98/1185 718/98/1185 +f 679/99/1186 594/98/1186 677/98/1186 +f 592/99/1187 594/98/1187 679/99/1187 +f 590/99/1188 681/99/1188 680/99/1188 +f 591/99/1189 681/99/1189 590/99/1189 +f 591/99/1190 679/99/1190 681/99/1190 +f 592/99/1191 679/99/1191 591/99/1191 +f 570/100/1192 680/99/1192 693/101/1192 +f 590/99/1193 680/99/1193 570/100/1193 +f 682/100/1194 684/100/1194 683/100/1194 +f 684/100/1195 691/100/1195 683/100/1195 +f 684/100/1196 570/100/1196 691/100/1196 +f 570/100/1197 693/101/1197 691/100/1197 +f 658/91/1198 567/102/1198 683/100/1198 +f 567/102/1199 682/100/1199 683/100/1199 +f 659/91/1200 567/102/1200 658/91/1200 +f 705/92/1201 589/92/1201 661/91/1201 +f 589/92/1202 581/91/1202 661/91/1202 +f 639/89/1012 658/91/1012 683/100/1012 +f 686/87/1012 685/87/1012 683/100/1012 +f 641/89/1012 639/89/1012 683/100/1012 +f 625/88/1012 686/87/1012 683/100/1012 +f 644/89/1012 641/89/1012 683/100/1012 +f 690/86/1012 698/86/1012 683/100/1012 +f 698/86/1012 697/88/1012 683/100/1012 +f 697/88/1012 625/88/1012 683/100/1012 +f 685/87/1012 699/87/1012 683/100/1012 +f 699/87/1012 644/89/1012 683/100/1012 +f 687/90/1012 705/92/1012 658/91/1012 +f 688/90/1012 687/90/1012 658/91/1012 +f 689/89/1012 688/90/1012 658/91/1012 +f 639/89/1012 689/89/1012 658/91/1012 +f 692/86/1012 690/86/1012 683/100/1012 +f 691/100/1012 692/86/1012 683/100/1012 +f 705/92/1012 660/91/1012 658/91/1012 +f 705/92/1012 661/91/1012 660/91/1012 +f 693/101/1012 692/86/1012 691/100/1012 +f 694/86/1012 692/86/1012 693/101/1012 +f 680/99/1012 704/86/1012 693/101/1012 +f 704/86/1012 694/86/1012 693/101/1012 +f 647/89/1012 644/89/1012 699/87/1012 +f 637/87/1012 695/87/1012 698/86/1012 +f 695/87/1012 696/88/1012 698/86/1012 +f 696/88/1012 697/88/1012 698/86/1012 +f 607/86/1012 637/87/1012 698/86/1012 +f 654/89/1012 650/89/1012 699/87/1012 +f 710/89/1012 654/89/1012 699/87/1012 +f 700/92/1012 710/89/1012 699/87/1012 +f 716/92/1012 700/92/1012 699/87/1012 +f 701/87/1012 716/92/1012 699/87/1012 +f 650/89/1012 647/89/1012 699/87/1012 +f 702/86/1012 637/87/1012 607/86/1012 +f 703/87/1012 716/92/1012 701/87/1012 +f 609/86/1012 637/87/1012 702/86/1012 +f 645/90/1012 705/92/1012 687/90/1012 +f 628/87/1012 716/92/1012 703/87/1012 +f 612/86/1012 637/87/1012 609/86/1012 +f 648/90/1012 705/92/1012 645/90/1012 +f 716/92/1012 637/87/1012 612/86/1012 +f 680/99/1012 615/86/1012 704/86/1012 +f 706/86/1012 716/92/1012 612/86/1012 +f 631/87/1012 716/92/1012 628/87/1012 +f 707/90/1012 705/92/1012 648/90/1012 +f 617/86/1012 716/92/1012 706/86/1012 +f 708/87/1012 716/92/1012 631/87/1012 +f 651/90/1012 705/92/1012 707/90/1012 +f 700/92/1012 705/92/1012 651/90/1012 +f 680/99/1012 709/86/1012 615/86/1012 +f 652/90/1012 700/92/1012 651/90/1012 +f 620/86/1012 716/92/1012 617/86/1012 +f 634/87/1012 716/92/1012 708/87/1012 +f 680/99/1012 712/86/1012 709/86/1012 +f 711/87/1012 716/92/1012 634/87/1012 +f 713/90/1012 700/92/1012 652/90/1012 +f 680/99/1012 716/92/1012 620/86/1012 +f 712/86/1012 680/99/1012 620/86/1012 +f 700/92/1012 713/90/1012 710/89/1012 +f 637/87/1012 716/92/1012 711/87/1012 +f 681/99/1012 716/92/1012 680/99/1012 +f 676/97/1012 716/92/1012 681/99/1012 +f 679/99/1012 676/97/1012 681/99/1012 +f 714/97/1012 674/97/1012 679/99/1012 +f 671/97/1012 714/97/1012 679/99/1012 +f 674/97/1012 676/97/1012 679/99/1012 +f 715/98/1012 671/97/1012 679/99/1012 +f 718/98/1012 715/98/1012 679/99/1012 +f 676/97/1012 721/96/1012 716/92/1012 +f 677/98/1012 717/98/1012 679/99/1012 +f 717/98/1012 718/98/1012 679/99/1012 +f 721/96/1012 664/93/1012 716/92/1012 +f 721/96/1012 720/95/1012 664/93/1012 +f 720/95/1012 719/94/1012 664/93/1012 +f 719/94/1012 666/94/1012 664/93/1012 +f 719/94/1012 668/94/1012 666/94/1012 +f 721/96/1012 670/95/1012 720/95/1012 +f 721/96/1012 722/95/1012 670/95/1012 +f 724/1/1203 725/1/1203 723/1/1203 +f 725/1/1204 728/1/1204 723/1/1204 +f 728/1/1205 727/1/1205 723/1/1205 +f 724/1/1206 726/1/1206 725/1/1206 +f 789/1/1207 726/1/1207 724/1/1207 +f 725/1/1208 730/1/1208 728/1/1208 +f 726/1/1209 730/1/1209 725/1/1209 +f 789/1/1210 731/1/1210 726/1/1210 +f 790/1/1211 731/1/1211 789/1/1211 +f 728/1/1212 733/1/1212 727/1/1212 +f 790/1/1213 791/1/1213 731/1/1213 +f 727/1/1214 732/1/1214 729/1/1214 +f 733/1/1215 732/1/1215 727/1/1215 +f 726/1/1216 734/1/1216 730/1/1216 +f 726/1/1217 735/1/1217 734/1/1217 +f 731/1/1218 735/1/1218 726/1/1218 +f 734/1/1219 741/1/1219 730/1/1219 +f 732/1/1220 737/1/1220 729/1/1220 +f 728/1/1221 736/1/1221 733/1/1221 +f 730/1/1222 736/1/1222 728/1/1222 +f 731/1/1223 738/1/1223 735/1/1223 +f 740/1/1224 738/1/1224 731/1/1224 +f 791/1/1225 740/1/1225 731/1/1225 +f 741/1/1226 736/1/1226 730/1/1226 +f 733/1/1227 739/1/1227 732/1/1227 +f 736/1/1228 739/1/1228 733/1/1228 +f 738/1/1229 734/1/1229 735/1/1229 +f 791/1/1230 792/1/1230 740/1/1230 +f 742/1/1231 747/1/1231 744/1/1231 +f 745/1/1232 749/1/1232 742/1/1232 +f 746/1/1233 749/1/1233 745/1/1233 +f 743/1/1234 746/1/1234 745/1/1234 +f 764/1/1235 746/1/1235 743/1/1235 +f 744/1/1236 747/1/1236 751/1/1236 +f 742/1/1237 748/1/1237 747/1/1237 +f 749/1/1238 753/1/1238 742/1/1238 +f 748/1/1239 752/1/1239 747/1/1239 +f 742/1/1240 753/1/1240 748/1/1240 +f 764/1/1241 750/1/1241 746/1/1241 +f 747/1/1242 755/1/1242 751/1/1242 +f 752/1/1243 755/1/1243 747/1/1243 +f 749/1/1244 758/1/1244 753/1/1244 +f 746/1/1245 756/1/1245 749/1/1245 +f 750/1/1246 754/1/1246 746/1/1246 +f 753/1/1247 761/1/1247 748/1/1247 +f 748/1/1248 761/1/1248 752/1/1248 +f 749/1/1249 756/1/1249 758/1/1249 +f 746/1/1250 754/1/1250 756/1/1250 +f 753/1/1251 763/1/1251 761/1/1251 +f 750/1/1252 757/1/1252 754/1/1252 +f 752/1/1253 760/1/1253 755/1/1253 +f 759/1/1254 757/1/1254 750/1/1254 +f 752/1/1255 762/1/1255 760/1/1255 +f 761/1/1256 762/1/1256 752/1/1256 +f 758/1/1257 763/1/1257 753/1/1257 +f 759/1/1258 793/1/1258 757/1/1258 +f 766/1/1259 764/1/1259 743/1/1259 +f 768/1/1260 764/1/1260 766/1/1260 +f 768/1/1261 750/1/1261 764/1/1261 +f 773/1/1262 750/1/1262 768/1/1262 +f 773/1/1263 759/1/1263 750/1/1263 +f 798/1/1264 759/1/1264 773/1/1264 +f 798/1/1265 793/1/1265 759/1/1265 +f 767/1/1266 769/1/1266 765/1/1266 +f 769/1/1267 770/1/1267 765/1/1267 +f 770/1/1268 766/1/1268 765/1/1268 +f 770/1/1269 771/1/1269 766/1/1269 +f 771/1/1270 768/1/1270 766/1/1270 +f 813/1/1271 769/1/1271 767/1/1271 +f 771/1/1272 773/1/1272 768/1/1272 +f 772/1/1273 770/1/1273 769/1/1273 +f 813/1/1274 772/1/1274 769/1/1274 +f 772/1/1275 797/1/1275 770/1/1275 +f 797/1/1276 771/1/1276 770/1/1276 +f 797/1/1277 774/1/1277 771/1/1277 +f 774/1/1278 773/1/1278 771/1/1278 +f 841/1/1279 772/1/1279 813/1/1279 +f 796/1/1280 797/1/1280 772/1/1280 +f 774/1/1281 798/1/1281 773/1/1281 +f 841/1/1282 796/1/1282 772/1/1282 +f 797/1/1283 842/1/1283 774/1/1283 +f 842/1/1284 798/1/1284 774/1/1284 +f 778/1/1285 779/1/1285 776/1/1285 +f 777/1/1286 776/1/1286 775/1/1286 +f 777/1/1287 778/1/1287 776/1/1287 +f 780/1/1288 777/1/1288 775/1/1288 +f 777/1/1289 781/1/1289 778/1/1289 +f 781/1/1290 779/1/1290 778/1/1290 +f 780/1/1291 782/1/1291 777/1/1291 +f 782/1/1292 781/1/1292 777/1/1292 +f 781/1/1293 784/1/1293 779/1/1293 +f 782/1/1294 783/1/1294 781/1/1294 +f 823/1/1295 782/1/1295 780/1/1295 +f 897/1/1296 784/1/1296 781/1/1296 +f 822/1/1297 823/1/1297 780/1/1297 +f 783/1/1298 825/1/1298 781/1/1298 +f 825/1/1299 897/1/1299 781/1/1299 +f 823/1/1300 783/1/1300 782/1/1300 +f 824/1/1301 825/1/1301 783/1/1301 +f 824/1/1302 783/1/1302 823/1/1302 +f 779/1/1303 785/1/1303 723/1/1303 +f 776/1/1304 779/1/1304 723/1/1304 +f 785/1/1305 819/1/1305 723/1/1305 +f 819/1/1306 724/1/1306 723/1/1306 +f 819/1/1307 786/1/1307 724/1/1307 +f 786/1/1308 818/1/1308 724/1/1308 +f 818/1/1309 789/1/1309 724/1/1309 +f 787/1/1310 789/1/1310 818/1/1310 +f 787/1/1311 744/1/1311 789/1/1311 +f 788/1/1312 742/1/1312 787/1/1312 +f 742/1/1313 744/1/1313 787/1/1313 +f 816/1/1314 742/1/1314 788/1/1314 +f 745/1/1315 742/1/1315 816/1/1315 +f 743/1/1316 745/1/1316 816/1/1316 +f 817/1/1317 743/1/1317 816/1/1317 +f 767/1/1318 766/1/1318 817/1/1318 +f 766/1/1319 743/1/1319 817/1/1319 +f 765/1/1320 766/1/1320 767/1/1320 +f 775/1/1321 776/1/1321 723/1/1321 +f 727/1/1322 775/1/1322 723/1/1322 +f 780/1/1323 775/1/1323 727/1/1323 +f 729/1/1324 780/1/1324 727/1/1324 +f 822/1/1325 780/1/1325 729/1/1325 +f 737/1/1326 822/1/1326 729/1/1326 +f 751/1/1327 790/1/1327 789/1/1327 +f 744/1/1328 751/1/1328 789/1/1328 +f 751/1/1329 755/1/1329 790/1/1329 +f 755/1/1330 791/1/1330 790/1/1330 +f 760/1/1331 792/1/1331 791/1/1331 +f 755/1/1332 760/1/1332 791/1/1332 +f 798/1/1333 837/1/1333 793/1/1333 +f 826/1/1334 837/1/1334 798/1/1334 +f 871/1/1335 886/1/1335 885/1/1335 +f 871/1/1336 866/1/1336 886/1/1336 +f 866/1/1337 868/1/1337 886/1/1337 +f 868/1/1338 799/1/1338 886/1/1338 +f 868/1/1339 869/1/1339 799/1/1339 +f 869/1/1340 865/1/1340 799/1/1340 +f 865/1/1341 887/1/1341 799/1/1341 +f 865/1/1342 867/1/1342 887/1/1342 +f 867/1/1343 855/1/1343 887/1/1343 +f 855/1/1344 888/1/1344 887/1/1344 +f 855/1/1345 800/1/1345 888/1/1345 +f 855/1/1346 801/1/1346 800/1/1346 +f 856/1/1347 802/1/1347 801/1/1347 +f 855/1/1348 856/1/1348 801/1/1348 +f 856/1/1349 853/1/1349 802/1/1349 +f 853/1/1350 803/1/1350 802/1/1350 +f 853/1/1351 857/1/1351 803/1/1351 +f 857/1/1352 854/1/1352 803/1/1352 +f 854/1/1353 804/1/1353 803/1/1353 +f 854/1/1354 850/1/1354 804/1/1354 +f 807/1/1355 892/1/1355 808/1/1355 +f 807/1/1356 806/1/1356 892/1/1356 +f 806/1/1357 810/1/1357 892/1/1357 +f 806/1/1358 809/1/1358 810/1/1358 +f 809/1/1359 894/1/1359 810/1/1359 +f 809/1/1360 795/1/1360 894/1/1360 +f 795/1/1361 896/1/1361 894/1/1361 +f 795/1/1362 794/1/1362 896/1/1362 +f 794/1/1363 811/1/1363 896/1/1363 +f 812/1/1364 767/1/1364 817/1/1364 +f 812/1/1365 814/1/1365 767/1/1365 +f 814/1/1366 813/1/1366 767/1/1366 +f 814/1/1367 841/1/1367 813/1/1367 +f 815/1/1368 788/1/1368 787/1/1368 +f 815/1/1369 893/1/1369 788/1/1369 +f 893/1/1370 816/1/1370 788/1/1370 +f 893/1/1371 895/1/1371 816/1/1371 +f 895/1/1372 817/1/1372 816/1/1372 +f 895/1/1373 812/1/1373 817/1/1373 +f 815/1/1374 787/1/1374 818/1/1374 +f 821/1/1375 815/1/1375 818/1/1375 +f 889/1/1376 819/1/1376 785/1/1376 +f 889/1/1377 891/1/1377 819/1/1377 +f 891/1/1378 786/1/1378 819/1/1378 +f 891/1/1379 820/1/1379 786/1/1379 +f 821/1/1380 818/1/1380 786/1/1380 +f 820/1/1381 821/1/1381 786/1/1381 +f 898/1/1382 889/1/1382 785/1/1382 +f 779/1/1383 898/1/1383 785/1/1383 +f 784/1/1384 898/1/1384 779/1/1384 +f 909/1/1385 899/1/1385 737/1/1385 +f 899/1/1386 822/1/1386 737/1/1386 +f 923/1/1387 924/1/1387 792/1/1387 +f 760/1/1388 923/1/1388 792/1/1388 +f 732/1/1389 909/1/1389 737/1/1389 +f 914/1/1390 909/1/1390 732/1/1390 +f 910/1/1391 914/1/1391 732/1/1391 +f 739/1/1392 910/1/1392 732/1/1392 +f 736/1/1393 910/1/1393 739/1/1393 +f 913/1/1394 910/1/1394 736/1/1394 +f 912/1/1395 913/1/1395 736/1/1395 +f 741/1/1396 912/1/1396 736/1/1396 +f 911/1/1397 912/1/1397 741/1/1397 +f 734/1/1398 911/1/1398 741/1/1398 +f 738/1/1399 908/1/1399 734/1/1399 +f 908/1/1400 911/1/1400 734/1/1400 +f 925/1/1401 908/1/1401 738/1/1401 +f 740/1/1402 925/1/1402 738/1/1402 +f 924/1/1403 925/1/1403 740/1/1403 +f 792/1/1404 924/1/1404 740/1/1404 +f 762/1/1405 926/1/1405 760/1/1405 +f 926/1/1406 923/1/1406 760/1/1406 +f 930/1/1407 926/1/1407 762/1/1407 +f 761/1/1408 930/1/1408 762/1/1408 +f 928/1/1409 930/1/1409 761/1/1409 +f 763/1/1410 928/1/1410 761/1/1410 +f 927/1/1411 928/1/1411 763/1/1411 +f 758/1/1412 927/1/1412 763/1/1412 +f 932/1/1413 927/1/1413 758/1/1413 +f 756/1/1414 929/1/1414 758/1/1414 +f 929/1/1415 932/1/1415 758/1/1415 +f 754/1/1416 929/1/1416 756/1/1416 +f 936/1/1417 929/1/1417 754/1/1417 +f 757/1/1418 938/1/1418 754/1/1418 +f 938/1/1419 936/1/1419 754/1/1419 +f 837/1/1420 938/1/1420 757/1/1420 +f 793/1/1421 837/1/1421 757/1/1421 +f 827/1/1422 828/1/1422 826/1/1422 +f 830/1/1423 831/1/1423 827/1/1423 +f 831/1/1424 828/1/1424 827/1/1424 +f 829/1/1425 833/1/1425 830/1/1425 +f 831/1/1426 832/1/1426 828/1/1426 +f 843/1/1427 834/1/1427 829/1/1427 +f 834/1/1428 833/1/1428 829/1/1428 +f 833/1/1429 831/1/1429 830/1/1429 +f 836/1/1430 832/1/1430 831/1/1430 +f 833/1/1431 836/1/1431 831/1/1431 +f 835/1/1432 836/1/1432 833/1/1432 +f 834/1/1433 835/1/1433 833/1/1433 +f 828/1/1434 837/1/1434 826/1/1434 +f 828/1/1435 838/1/1435 837/1/1435 +f 832/1/1436 838/1/1436 828/1/1436 +f 840/1/1437 839/1/1437 811/1/1437 +f 794/1/1438 840/1/1438 811/1/1438 +f 814/1/1439 843/1/1439 841/1/1439 +f 829/1/1440 796/1/1440 841/1/1440 +f 843/1/1441 829/1/1441 841/1/1441 +f 829/1/1442 830/1/1442 796/1/1442 +f 830/1/1443 797/1/1443 796/1/1443 +f 830/1/1444 827/1/1444 797/1/1444 +f 827/1/1445 842/1/1445 797/1/1445 +f 827/1/1446 826/1/1446 842/1/1446 +f 826/1/1447 798/1/1447 842/1/1447 +f 941/1/1448 942/1/1448 843/1/1448 +f 942/1/1449 834/1/1449 843/1/1449 +f 942/1/1450 835/1/1450 834/1/1450 +f 942/1/1451 943/1/1451 835/1/1451 +f 943/1/1452 945/1/1452 835/1/1452 +f 945/1/1453 836/1/1453 835/1/1453 +f 804/1/1454 844/1/1454 949/1/1454 +f 850/1/1455 844/1/1455 804/1/1455 +f 848/1/1456 847/1/1456 844/1/1456 +f 851/1/1457 848/1/1457 844/1/1457 +f 845/1/1458 848/1/1458 851/1/1458 +f 849/1/1459 848/1/1459 845/1/1459 +f 846/1/1460 847/1/1460 848/1/1460 +f 962/1/1461 849/1/1461 845/1/1461 +f 849/1/1462 846/1/1462 848/1/1462 +f 846/1/1463 954/1/1463 847/1/1463 +f 849/1/1464 957/1/1464 846/1/1464 +f 958/1/1465 957/1/1465 849/1/1465 +f 962/1/1466 958/1/1466 849/1/1466 +f 851/1/1467 844/1/1467 850/1/1467 +f 863/1/1468 851/1/1468 850/1/1468 +f 845/1/1469 851/1/1469 863/1/1469 +f 864/1/1470 845/1/1470 863/1/1470 +f 962/1/1471 845/1/1471 864/1/1471 +f 852/1/1472 962/1/1472 864/1/1472 +f 858/1/1473 857/1/1473 853/1/1473 +f 859/1/1474 856/1/1474 855/1/1474 +f 856/1/1475 858/1/1475 853/1/1475 +f 857/1/1476 861/1/1476 854/1/1476 +f 858/1/1477 862/1/1477 857/1/1477 +f 860/1/1478 858/1/1478 856/1/1478 +f 859/1/1479 860/1/1479 856/1/1479 +f 862/1/1480 861/1/1480 857/1/1480 +f 863/1/1481 850/1/1481 854/1/1481 +f 861/1/1482 863/1/1482 854/1/1482 +f 860/1/1483 862/1/1483 858/1/1483 +f 864/1/1484 861/1/1484 862/1/1484 +f 860/1/1485 852/1/1485 862/1/1485 +f 864/1/1486 863/1/1486 861/1/1486 +f 852/1/1487 864/1/1487 862/1/1487 +f 867/1/1488 859/1/1488 855/1/1488 +f 870/1/1489 859/1/1489 867/1/1489 +f 872/1/1490 859/1/1490 870/1/1490 +f 872/1/1491 860/1/1491 859/1/1491 +f 865/1/1492 870/1/1492 867/1/1492 +f 869/1/1493 870/1/1493 865/1/1493 +f 871/1/1494 873/1/1494 866/1/1494 +f 873/1/1495 868/1/1495 866/1/1495 +f 868/1/1496 874/1/1496 869/1/1496 +f 869/1/1497 872/1/1497 870/1/1497 +f 873/1/1498 874/1/1498 868/1/1498 +f 874/1/1499 872/1/1499 869/1/1499 +f 876/1/1500 873/1/1500 871/1/1500 +f 961/1/1501 872/1/1501 874/1/1501 +f 873/1/1502 961/1/1502 874/1/1502 +f 876/1/1503 875/1/1503 873/1/1503 +f 875/1/1504 961/1/1504 873/1/1504 +f 877/1/1505 879/1/1505 871/1/1505 +f 879/1/1506 876/1/1506 871/1/1506 +f 879/1/1507 875/1/1507 876/1/1507 +f 879/1/1508 882/1/1508 875/1/1508 +f 882/1/1509 961/1/1509 875/1/1509 +f 877/1/1510 871/1/1510 965/1/1510 +f 871/1/1511 885/1/1511 965/1/1511 +f 878/1/1512 879/1/1512 877/1/1512 +f 880/1/1513 878/1/1513 877/1/1513 +f 878/1/1514 883/1/1514 879/1/1514 +f 880/1/1515 883/1/1515 878/1/1515 +f 883/1/1516 882/1/1516 879/1/1516 +f 881/1/1517 883/1/1517 880/1/1517 +f 966/1/1518 968/1/1518 881/1/1518 +f 968/1/1519 883/1/1519 881/1/1519 +f 967/1/1520 968/1/1520 966/1/1520 +f 968/1/1521 970/1/1521 883/1/1521 +f 970/1/1522 882/1/1522 883/1/1522 +f 970/1/1523 969/1/1523 882/1/1523 +f 805/1/1524 807/1/1524 808/1/1524 +f 890/1/1525 805/1/1525 808/1/1525 +f 898/1/1012 808/1/1012 889/1/1012 +f 808/1/1012 891/1/1012 889/1/1012 +f 890/1/1012 808/1/1012 898/1/1012 +f 808/1/1012 892/1/1012 891/1/1012 +f 892/1/1012 820/1/1012 891/1/1012 +f 892/1/1012 810/1/1012 820/1/1012 +f 810/1/1012 821/1/1012 820/1/1012 +f 810/1/1012 815/1/1012 821/1/1012 +f 894/1/1012 815/1/1012 810/1/1012 +f 893/1/1012 815/1/1012 894/1/1012 +f 896/1/1012 893/1/1012 894/1/1012 +f 895/1/1012 893/1/1012 896/1/1012 +f 811/1/1012 895/1/1012 896/1/1012 +f 812/1/1012 895/1/1012 811/1/1012 +f 839/1/1012 812/1/1012 811/1/1012 +f 814/1/1012 812/1/1012 839/1/1012 +f 899/1/1526 823/1/1526 822/1/1526 +f 899/1/1527 900/1/1527 823/1/1527 +f 900/1/1528 824/1/1528 823/1/1528 +f 900/1/1529 901/1/1529 824/1/1529 +f 901/1/1530 825/1/1530 824/1/1530 +f 901/1/1531 902/1/1531 825/1/1531 +f 902/1/1532 897/1/1532 825/1/1532 +f 902/1/1533 903/1/1533 897/1/1533 +f 898/1/1534 784/1/1534 897/1/1534 +f 903/1/1535 898/1/1535 897/1/1535 +f 978/1/1536 900/1/1536 899/1/1536 +f 978/1/1537 904/1/1537 900/1/1537 +f 904/1/1538 901/1/1538 900/1/1538 +f 905/1/1539 902/1/1539 901/1/1539 +f 904/1/1540 905/1/1540 901/1/1540 +f 905/1/1541 903/1/1541 902/1/1541 +f 977/1/1542 904/1/1542 978/1/1542 +f 905/1/1543 906/1/1543 903/1/1543 +f 907/1/1544 905/1/1544 904/1/1544 +f 977/1/1545 907/1/1545 904/1/1545 +f 907/1/1546 906/1/1546 905/1/1546 +f 973/1/1547 972/1/1547 903/1/1547 +f 906/1/1548 973/1/1548 903/1/1548 +f 974/1/1549 973/1/1549 906/1/1549 +f 907/1/1550 974/1/1550 906/1/1550 +f 1010/1/1551 974/1/1551 907/1/1551 +f 977/1/1552 1010/1/1552 907/1/1552 +f 915/1/1553 899/1/1553 909/1/1553 +f 978/1/1554 899/1/1554 915/1/1554 +f 921/1/1555 978/1/1555 915/1/1555 +f 924/1/1556 979/1/1556 925/1/1556 +f 925/1/1557 980/1/1557 908/1/1557 +f 979/1/1558 980/1/1558 925/1/1558 +f 918/1/1559 911/1/1559 908/1/1559 +f 980/1/1560 918/1/1560 908/1/1560 +f 914/1/1561 915/1/1561 909/1/1561 +f 913/1/1562 919/1/1562 910/1/1562 +f 920/1/1563 912/1/1563 911/1/1563 +f 919/1/1564 914/1/1564 910/1/1564 +f 918/1/1565 920/1/1565 911/1/1565 +f 916/1/1566 913/1/1566 912/1/1566 +f 920/1/1567 916/1/1567 912/1/1567 +f 916/1/1568 919/1/1568 913/1/1568 +f 917/1/1569 915/1/1569 914/1/1569 +f 916/1/1570 981/1/1570 919/1/1570 +f 919/1/1571 917/1/1571 914/1/1571 +f 920/1/1572 981/1/1572 916/1/1572 +f 919/1/1573 922/1/1573 917/1/1573 +f 981/1/1574 922/1/1574 919/1/1574 +f 917/1/1575 921/1/1575 915/1/1575 +f 926/1/1576 931/1/1576 923/1/1576 +f 931/1/1577 924/1/1577 923/1/1577 +f 931/1/1578 979/1/1578 924/1/1578 +f 930/1/1579 931/1/1579 926/1/1579 +f 930/1/1580 935/1/1580 931/1/1580 +f 933/1/1581 928/1/1581 927/1/1581 +f 932/1/1582 933/1/1582 927/1/1582 +f 928/1/1583 935/1/1583 930/1/1583 +f 933/1/1584 982/1/1584 928/1/1584 +f 929/1/1585 936/1/1585 937/1/1585 +f 929/1/1586 934/1/1586 932/1/1586 +f 932/1/1587 934/1/1587 933/1/1587 +f 937/1/1588 934/1/1588 929/1/1588 +f 982/1/1589 935/1/1589 928/1/1589 +f 838/1/1590 938/1/1590 837/1/1590 +f 933/1/1591 939/1/1591 982/1/1591 +f 934/1/1592 939/1/1592 933/1/1592 +f 937/1/1593 940/1/1593 934/1/1593 +f 938/1/1594 984/1/1594 936/1/1594 +f 940/1/1595 939/1/1595 934/1/1595 +f 838/1/1596 984/1/1596 938/1/1596 +f 936/1/1597 940/1/1597 937/1/1597 +f 984/1/1598 940/1/1598 936/1/1598 +f 945/1/1599 985/1/1599 838/1/1599 +f 832/1/1600 945/1/1600 838/1/1600 +f 836/1/1601 945/1/1601 832/1/1601 +f 843/1/1602 814/1/1602 839/1/1602 +f 840/1/1603 843/1/1603 839/1/1603 +f 988/1/1604 840/1/1604 953/1/1604 +f 988/1/1605 941/1/1605 840/1/1605 +f 941/1/1606 843/1/1606 840/1/1606 +f 944/1/1607 942/1/1607 941/1/1607 +f 943/1/1608 942/1/1608 944/1/1608 +f 946/1/1609 943/1/1609 944/1/1609 +f 947/1/1610 945/1/1610 943/1/1610 +f 946/1/1611 947/1/1611 943/1/1611 +f 948/1/1612 947/1/1612 946/1/1612 +f 844/1/1613 847/1/1613 949/1/1613 +f 847/1/1614 950/1/1614 949/1/1614 +f 847/1/1615 954/1/1615 950/1/1615 +f 955/1/1616 951/1/1616 950/1/1616 +f 954/1/1617 955/1/1617 950/1/1617 +f 955/1/1618 987/1/1618 951/1/1618 +f 987/1/1619 952/1/1619 951/1/1619 +f 987/1/1620 989/1/1620 952/1/1620 +f 989/1/1621 986/1/1621 952/1/1621 +f 986/1/1622 953/1/1622 952/1/1622 +f 986/1/1623 988/1/1623 953/1/1623 +f 846/1/1624 956/1/1624 954/1/1624 +f 956/1/1625 955/1/1625 954/1/1625 +f 956/1/1626 987/1/1626 955/1/1626 +f 990/1/1627 987/1/1627 956/1/1627 +f 959/1/1628 956/1/1628 846/1/1628 +f 957/1/1629 959/1/1629 846/1/1629 +f 959/1/1630 990/1/1630 956/1/1630 +f 960/1/1631 959/1/1631 957/1/1631 +f 958/1/1632 960/1/1632 957/1/1632 +f 962/1/1633 860/1/1633 872/1/1633 +f 961/1/1634 962/1/1634 872/1/1634 +f 962/1/1635 852/1/1635 860/1/1635 +f 882/1/1636 962/1/1636 961/1/1636 +f 958/1/1637 962/1/1637 882/1/1637 +f 969/1/1638 958/1/1638 882/1/1638 +f 1007/1/1639 998/1/1639 963/1/1639 +f 998/1/1640 997/1/1640 963/1/1640 +f 997/1/1641 964/1/1641 963/1/1641 +f 997/1/1642 999/1/1642 964/1/1642 +f 999/1/1643 967/1/1643 964/1/1643 +f 967/1/1644 884/1/1644 964/1/1644 +f 967/1/1645 966/1/1645 884/1/1645 +f 966/1/1646 881/1/1646 884/1/1646 +f 881/1/1647 965/1/1647 884/1/1647 +f 881/1/1648 880/1/1648 965/1/1648 +f 880/1/1649 877/1/1649 965/1/1649 +f 1003/1/1650 968/1/1650 967/1/1650 +f 999/1/1651 1003/1/1651 967/1/1651 +f 1003/1/1652 970/1/1652 968/1/1652 +f 1000/1/1653 1003/1/1653 999/1/1653 +f 970/1/1654 971/1/1654 969/1/1654 +f 1003/1/1655 971/1/1655 970/1/1655 +f 1006/1/1656 971/1/1656 1003/1/1656 +f 805/1/1657 890/1/1657 898/1/1657 +f 903/1/1658 805/1/1658 898/1/1658 +f 903/1/1659 963/1/1659 805/1/1659 +f 903/1/1660 972/1/1660 963/1/1660 +f 972/1/1661 1007/1/1661 963/1/1661 +f 1008/1/1662 972/1/1662 973/1/1662 +f 974/1/1663 1008/1/1663 973/1/1663 +f 974/1/1664 975/1/1664 1008/1/1664 +f 1010/1/1665 976/1/1665 974/1/1665 +f 976/1/1666 975/1/1666 974/1/1666 +f 977/1/1667 978/1/1667 921/1/1667 +f 1013/1/1668 1010/1/1668 921/1/1668 +f 1010/1/1669 977/1/1669 921/1/1669 +f 1018/1/1670 980/1/1670 979/1/1670 +f 1018/1/1671 918/1/1671 980/1/1671 +f 1018/1/1672 1016/1/1672 918/1/1672 +f 1016/1/1673 1011/1/1673 918/1/1673 +f 1011/1/1674 920/1/1674 918/1/1674 +f 1011/1/1675 981/1/1675 920/1/1675 +f 1011/1/1676 1014/1/1676 981/1/1676 +f 917/1/1677 1013/1/1677 921/1/1677 +f 1014/1/1678 922/1/1678 981/1/1678 +f 922/1/1679 1013/1/1679 917/1/1679 +f 1014/1/1680 1013/1/1680 922/1/1680 +f 1020/1/1681 1018/1/1681 979/1/1681 +f 931/1/1682 1020/1/1682 979/1/1682 +f 935/1/1683 1020/1/1683 931/1/1683 +f 1022/1/1684 1020/1/1684 935/1/1684 +f 982/1/1685 1022/1/1685 935/1/1685 +f 983/1/1686 1022/1/1686 982/1/1686 +f 939/1/1687 983/1/1687 982/1/1687 +f 940/1/1688 983/1/1688 939/1/1688 +f 1023/1/1689 983/1/1689 940/1/1689 +f 985/1/1690 984/1/1690 838/1/1690 +f 984/1/1691 1023/1/1691 940/1/1691 +f 985/1/1692 1023/1/1692 984/1/1692 +f 947/1/1693 985/1/1693 945/1/1693 +f 947/1/1694 1026/1/1694 985/1/1694 +f 947/1/1695 948/1/1695 1026/1/1695 +f 944/1/1696 941/1/1696 988/1/1696 +f 993/1/1697 944/1/1697 988/1/1697 +f 994/1/1698 946/1/1698 993/1/1698 +f 946/1/1699 944/1/1699 993/1/1699 +f 948/1/1700 946/1/1700 994/1/1700 +f 1028/1/1701 948/1/1701 994/1/1701 +f 991/1/1702 986/1/1702 989/1/1702 +f 991/1/1703 988/1/1703 986/1/1703 +f 990/1/1704 989/1/1704 987/1/1704 +f 991/1/1705 993/1/1705 988/1/1705 +f 959/1/1706 991/1/1706 989/1/1706 +f 990/1/1707 959/1/1707 989/1/1707 +f 992/1/1708 993/1/1708 991/1/1708 +f 959/1/1709 992/1/1709 991/1/1709 +f 960/1/1710 995/1/1710 959/1/1710 +f 995/1/1711 992/1/1711 959/1/1711 +f 1028/1/1712 994/1/1712 993/1/1712 +f 992/1/1713 1028/1/1713 993/1/1713 +f 996/1/1714 992/1/1714 995/1/1714 +f 996/1/1715 1028/1/1715 992/1/1715 +f 971/1/1716 960/1/1716 969/1/1716 +f 960/1/1717 958/1/1717 969/1/1717 +f 1006/1/1718 960/1/1718 971/1/1718 +f 995/1/1719 960/1/1719 1006/1/1719 +f 998/1/1720 1002/1/1720 997/1/1720 +f 1000/1/1721 999/1/1721 997/1/1721 +f 1001/1/1722 998/1/1722 1007/1/1722 +f 1001/1/1723 1004/1/1723 998/1/1723 +f 1004/1/1724 1002/1/1724 998/1/1724 +f 1002/1/1725 1000/1/1725 997/1/1725 +f 1009/1/1726 1004/1/1726 1001/1/1726 +f 1002/1/1727 1003/1/1727 1000/1/1727 +f 1004/1/1728 1005/1/1728 1002/1/1728 +f 1005/1/1729 1003/1/1729 1002/1/1729 +f 1005/1/1730 1006/1/1730 1003/1/1730 +f 1009/1/1731 1027/1/1731 1004/1/1731 +f 1027/1/1732 1005/1/1732 1004/1/1732 +f 1027/1/1733 1006/1/1733 1005/1/1733 +f 1008/1/1734 1007/1/1734 972/1/1734 +f 1008/1/1735 1001/1/1735 1007/1/1735 +f 975/1/1736 1001/1/1736 1008/1/1736 +f 975/1/1737 1009/1/1737 1001/1/1737 +f 976/1/1738 1009/1/1738 975/1/1738 +f 976/1/1739 1027/1/1739 1009/1/1739 +f 976/1/1740 1010/1/1740 1013/1/1740 +f 1015/1/1741 976/1/1741 1013/1/1741 +f 1018/1/1742 1019/1/1742 1016/1/1742 +f 1012/1/1743 1019/1/1743 1018/1/1743 +f 1016/1/1744 1014/1/1744 1011/1/1744 +f 1014/1/1745 1015/1/1745 1013/1/1745 +f 1016/1/1746 1017/1/1746 1014/1/1746 +f 1019/1/1747 1017/1/1747 1016/1/1747 +f 1014/1/1748 1017/1/1748 1015/1/1748 +f 1020/1/1749 1012/1/1749 1018/1/1749 +f 1021/1/1750 1012/1/1750 1020/1/1750 +f 1019/1/1751 1012/1/1751 1021/1/1751 +f 1021/1/1752 1024/1/1752 1019/1/1752 +f 1022/1/1753 1021/1/1753 1020/1/1753 +f 1023/1/1754 1025/1/1754 983/1/1754 +f 983/1/1755 1024/1/1755 1022/1/1755 +f 1025/1/1756 1024/1/1756 983/1/1756 +f 1022/1/1757 1024/1/1757 1021/1/1757 +f 1026/1/1758 1025/1/1758 1023/1/1758 +f 985/1/1759 1026/1/1759 1023/1/1759 +f 1017/1/1760 976/1/1760 1015/1/1760 +f 1017/1/1761 1027/1/1761 976/1/1761 +f 1017/1/1762 1019/1/1762 1027/1/1762 +f 1024/1/1763 995/1/1763 1019/1/1763 +f 995/1/1764 1006/1/1764 1019/1/1764 +f 1006/1/1765 1027/1/1765 1019/1/1765 +f 1024/1/1766 996/1/1766 995/1/1766 +f 1028/1/1767 996/1/1767 1024/1/1767 +f 1026/1/1768 1028/1/1768 1024/1/1768 +f 1026/1/1769 948/1/1769 1028/1/1769 +f 1025/1/1770 1026/1/1770 1024/1/1770 +f 1046/1/1771 1030/1/1771 1045/1/1771 +f 1056/1/1772 1030/1/1772 1046/1/1772 +f 1031/1/1773 1056/1/1773 1046/1/1773 +f 1032/1/1774 1031/1/1774 1046/1/1774 +f 1045/1/1775 1033/1/1775 1042/1/1775 +f 1030/1/1776 1033/1/1776 1045/1/1776 +f 1036/1/1777 1034/1/1777 1035/1/1777 +f 1042/1/1778 1036/1/1778 1035/1/1778 +f 1033/1/1779 1036/1/1779 1042/1/1779 +f 1066/1/1780 1037/1/1780 1067/1/1780 +f 1066/1/1781 1060/1/1781 1037/1/1781 +f 1039/1/1782 1031/1/1782 1032/1/1782 +f 1038/1/1783 1039/1/1783 1032/1/1783 +f 1035/1/423 1080/1/423 1077/1/423 +f 1035/1/423 1047/1/423 1080/1/423 +f 1040/1/423 1035/1/423 1077/1/423 +f 1042/1/423 1035/1/423 1040/1/423 +f 1041/1/423 1042/1/423 1040/1/423 +f 1043/1/423 1042/1/423 1041/1/423 +f 1045/1/423 1042/1/423 1043/1/423 +f 1044/1/423 1045/1/423 1043/1/423 +f 1044/1/423 1074/1/423 1045/1/423 +f 1074/1/423 1046/1/423 1045/1/423 +f 1074/1/423 1076/1/423 1046/1/423 +f 1076/1/423 1032/1/423 1046/1/423 +f 1076/1/423 1038/1/423 1032/1/423 +f 1076/1/423 1073/1/423 1038/1/423 +f 1048/1/1784 1047/1/1784 1035/1/1784 +f 1034/1/1785 1048/1/1785 1035/1/1785 +f 1086/1/1786 1054/1/1786 1061/1/1786 +f 1058/1/1787 1054/1/1787 1086/1/1787 +f 1053/1/1788 1054/1/1788 1058/1/1788 +f 1059/1/1789 1053/1/1789 1058/1/1789 +f 1060/1/1790 1053/1/1790 1059/1/1790 +f 1037/1/1791 1060/1/1791 1059/1/1791 +f 1061/1/1792 1055/1/1792 1084/1/1792 +f 1054/1/1793 1055/1/1793 1061/1/1793 +f 1051/1/1794 1062/1/1794 1085/1/1794 +f 1062/1/1795 1063/1/1795 1085/1/1795 +f 1062/1/1796 1064/1/1796 1063/1/1796 +f 1062/1/1797 1052/1/1797 1064/1/1797 +f 1052/1/1798 1065/1/1798 1064/1/1798 +f 1052/1/1799 1066/1/1799 1065/1/1799 +f 1066/1/1800 1067/1/1800 1065/1/1800 +f 1055/1/1801 1092/1/1801 1084/1/1801 +f 1055/1/1802 1068/1/1802 1092/1/1802 +f 1068/1/1803 1070/1/1803 1092/1/1803 +f 1068/1/1804 1069/1/1804 1070/1/1804 +f 1069/1/1805 1071/1/1805 1070/1/1805 +f 1069/1/1806 1057/1/1806 1071/1/1806 +f 1038/1/1807 1072/1/1807 1071/1/1807 +f 1039/1/1808 1038/1/1808 1071/1/1808 +f 1057/1/1809 1039/1/1809 1071/1/1809 +f 1038/1/1810 1073/1/1810 1072/1/1810 +f 1072/1/1811 1073/1/1811 1093/1/1811 +f 1073/1/1812 1076/1/1812 1093/1/1812 +f 1074/1/1813 1044/1/1813 1094/1/1813 +f 1075/1/1814 1074/1/1814 1094/1/1814 +f 1076/1/1815 1074/1/1815 1075/1/1815 +f 1093/1/1816 1076/1/1816 1075/1/1816 +f 1094/1/1817 1044/1/1817 1089/1/1817 +f 1044/1/1818 1043/1/1818 1089/1/1818 +f 1088/1/1819 1077/1/1819 1087/1/1819 +f 1040/1/1820 1077/1/1820 1088/1/1820 +f 1078/1/1821 1040/1/1821 1088/1/1821 +f 1041/1/1822 1040/1/1822 1078/1/1822 +f 1089/1/1823 1041/1/1823 1078/1/1823 +f 1043/1/1824 1041/1/1824 1089/1/1824 +f 1077/1/1825 1079/1/1825 1087/1/1825 +f 1077/1/1826 1080/1/1826 1079/1/1826 +f 1080/1/1827 1081/1/1827 1079/1/1827 +f 1047/1/1828 1049/1/1828 1081/1/1828 +f 1080/1/1829 1047/1/1829 1081/1/1829 +f 1048/1/1830 1049/1/1830 1047/1/1830 +f 1049/1/1831 1090/1/1831 1081/1/1831 +f 1049/1/1832 1082/1/1832 1090/1/1832 +f 1082/1/1833 1083/1/1833 1090/1/1833 +f 1082/1/1834 1050/1/1834 1083/1/1834 +f 1050/1/1835 1051/1/1835 1083/1/1835 +f 1051/1/1836 1091/1/1836 1083/1/1836 +f 1051/1/1837 1085/1/1837 1091/1/1837 +f 1085/1/1838 1029/1/1838 1091/1/1838 +f 1029/1/1839 1061/1/1839 1084/1/1839 +f 1085/1/1840 1061/1/1840 1029/1/1840 +f 1085/1/1841 1063/1/1841 1061/1/1841 +f 1063/1/1842 1086/1/1842 1061/1/1842 +f 1063/1/1843 1064/1/1843 1086/1/1843 +f 1058/1/1844 1086/1/1844 1064/1/1844 +f 1064/1/1845 1065/1/1845 1058/1/1845 +f 1065/1/1846 1059/1/1846 1058/1/1846 +f 1065/1/1847 1037/1/1847 1059/1/1847 +f 1065/1/1848 1067/1/1848 1037/1/1848 +f 1079/1/1012 1081/1/1012 1087/1/1012 +f 1081/1/1012 1089/1/1012 1087/1/1012 +f 1089/1/1012 1088/1/1012 1087/1/1012 +f 1089/1/1012 1078/1/1012 1088/1/1012 +f 1081/1/1012 1090/1/1012 1089/1/1012 +f 1090/1/1012 1029/1/1012 1089/1/1012 +f 1029/1/1012 1094/1/1012 1089/1/1012 +f 1083/1/1012 1029/1/1012 1090/1/1012 +f 1091/1/1849 1029/1/1849 1083/1/1849 +f 1070/1/1012 1094/1/1012 1029/1/1012 +f 1092/1/1012 1070/1/1012 1029/1/1012 +f 1084/1/1850 1092/1/1850 1029/1/1850 +f 1071/1/1012 1094/1/1012 1070/1/1012 +f 1071/1/1012 1072/1/1012 1094/1/1012 +f 1072/1/1012 1093/1/1012 1094/1/1012 +f 1093/1/1012 1075/1/1012 1094/1/1012 +f 803/1/1012 804/1/1012 949/1/1012 950/1/1012 951/1/1012 952/1/1012 953/1/1012 840/1/1012 794/1/1012 795/1/1012 809/1/1012 806/1/1012 807/1/1012 805/1/1012 963/1/1012 964/1/1012 884/1/1012 965/1/1012 885/1/1012 886/1/1012 799/1/1012 887/1/1012 888/1/1012 801/1/1012 802/1/1012 +f 1030/1/423 1056/1/423 1031/1/423 1039/1/423 1057/1/423 1069/1/423 1068/1/423 1055/1/423 1054/1/423 1053/1/423 1060/1/423 1066/1/423 1052/1/423 1062/1/423 1051/1/423 1050/1/423 1082/1/423 1049/1/423 1048/1/423 1034/1/423 1036/1/423 1033/1/423 diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml index 7acba1e103e..41bf047795a 100644 --- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml +++ b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml @@ -18,6 +18,12 @@ Item name: "cura" } + UM.I18nCatalog + { + id: catalog_fdmprinter + name: "fdmprinter.def.json" + } + width: parent.width height: childrenRect.height @@ -281,7 +287,7 @@ Item UM.Label { - text: Cura.MachineManager.activeDefinitionVariantsName + text: catalog_fdmprinter.i18nc("variant_name", Cura.MachineManager.activeDefinitionVariantsName) height: parent.height width: selectors.textWidth } diff --git a/resources/quality/ultimaker_method/um_method_1a_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1a_um-petg-175_0.2mm.inst.cfg index f6b18d4da5f..1305ad72b38 100644 --- a/resources/quality/ultimaker_method/um_method_1a_um-petg-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_1a_um-petg-175_0.2mm.inst.cfg @@ -36,7 +36,6 @@ raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 raft_surface_line_width = 0.4 raft_surface_speed = 40 -raft_surface_wall_count = 2 skin_overlap = 10 speed_layer_0 = 15 speed_print = 60 diff --git a/resources/quality/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm.inst.cfg index f79fe83fb98..06f6d7fe4de 100644 --- a/resources/quality/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm.inst.cfg @@ -56,8 +56,7 @@ support_bottom_enable = False support_infill_angles = [45 ] support_infill_rate = 12 support_interface_density = 75 -support_interface_height = =layer_height * 4 -support_interface_material_flow = =material_flow * 0.9 +support_interface_material_flow = =support_material_flow support_interface_offset = 0.8 support_interface_pattern = zigzag support_line_width = =line_width * 0.75 @@ -65,7 +64,6 @@ support_material_flow = =material_flow * 0.9 support_offset = 1 support_pattern = zigzag support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width support_top_distance = =support_z_distance support_xy_distance = 0.35 diff --git a/resources/quality/ultimaker_method/um_method_1c_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1c_um-petg-175_0.2mm.inst.cfg index 6ca8ebc7689..2c975a2d6c8 100644 --- a/resources/quality/ultimaker_method/um_method_1c_um-petg-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_1c_um-petg-175_0.2mm.inst.cfg @@ -36,7 +36,6 @@ raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 raft_surface_line_width = 0.4 raft_surface_speed = 40 -raft_surface_wall_count = 2 skin_overlap = 10 speed_layer_0 = 15 speed_print = 60 diff --git a/resources/quality/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm.inst.cfg index 52a7cff2e0b..7b88cb56595 100644 --- a/resources/quality/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm.inst.cfg @@ -56,8 +56,7 @@ support_bottom_enable = False support_infill_angles = [45 ] support_infill_rate = 12 support_interface_density = 75 -support_interface_height = =layer_height * 4 -support_interface_material_flow = =material_flow * 0.9 +support_interface_material_flow = =support_material_flow support_interface_offset = 0.8 support_interface_pattern = zigzag support_line_width = =line_width * 0.75 @@ -65,7 +64,6 @@ support_material_flow = =material_flow * 0.9 support_offset = 1 support_pattern = zigzag support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width support_top_distance = =support_z_distance support_xy_distance = 0.35 diff --git a/resources/quality/ultimaker_method/um_method_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg index 501facd1a87..11a738ba810 100644 --- a/resources/quality/ultimaker_method/um_method_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg @@ -23,15 +23,13 @@ initial_layer_line_width_factor = 110 layer_height_0 = =layer_height * 1.5 material_flow_layer_0 = 110 material_initial_print_temperature = 245 -retraction_amount = 1.5 -retraction_speed = 45 +retraction_amount = 0.75 +retraction_speed = 5 roofing_line_width = 0.4 skin_line_width = 0.45 skin_material_flow_layer_0 = 110 skin_overlap = 20.0 -skirt_brim_line_width = 1 skirt_brim_minimal_length = 100.0 -skirt_height = 3 speed_print = 25 support_enable = False top_bottom_thickness = =layer_height * 2 diff --git a/resources/quality/ultimaker_method/um_method_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg index af34079d705..2aafe1c4066 100644 --- a/resources/quality/ultimaker_method/um_method_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg @@ -15,8 +15,14 @@ weight = -2 [values] infill_sparse_density = 50 raft_airgap = 0.22 +raft_interface_flow = 110 +raft_interface_infill_overlap = 25 raft_interface_speed = =speed_print * 1/2 +raft_interface_z_offset = -0.1 +raft_surface_flow = 110 +raft_surface_infill_overlap = 50 raft_surface_speed = =speed_print * 1/2 +raft_surface_z_offset = -0.075 speed_layer_0 = =speed_print * 1/4 speed_prime_tower = =speed_print * 3/4 speed_print = 40 diff --git a/resources/quality/ultimaker_method/um_method_labs_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_um-petg-175_0.2mm.inst.cfg index 83d160323c5..3e41c54e582 100644 --- a/resources/quality/ultimaker_method/um_method_labs_um-petg-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_labs_um-petg-175_0.2mm.inst.cfg @@ -36,7 +36,6 @@ raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 raft_surface_line_width = 0.4 raft_surface_speed = 40 -raft_surface_wall_count = 2 skin_overlap = 10 speed_layer_0 = 15 speed_print = 60 diff --git a/resources/quality/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm.inst.cfg index 3a804d10e34..4690f604cba 100644 --- a/resources/quality/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm.inst.cfg @@ -56,8 +56,7 @@ support_bottom_enable = False support_infill_angles = [45 ] support_infill_rate = 12 support_interface_density = 75 -support_interface_height = =layer_height * 4 -support_interface_material_flow = =material_flow * 0.9 +support_interface_material_flow = =support_material_flow support_interface_offset = 0.8 support_interface_pattern = zigzag support_line_width = =line_width * 0.75 @@ -65,7 +64,6 @@ support_material_flow = =material_flow * 0.9 support_offset = 1 support_pattern = zigzag support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width support_top_distance = =support_z_distance support_xy_distance = 0.35 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1a_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1a_um-petg-175_0.2mm.inst.cfg index 694fa5499b5..67b23523d27 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1a_um-petg-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1a_um-petg-175_0.2mm.inst.cfg @@ -36,7 +36,6 @@ raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 raft_surface_line_width = 0.4 raft_surface_speed = 40 -raft_surface_wall_count = 2 skin_overlap = 10 speed_layer_0 = 15 speed_print = 60 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm.inst.cfg index 834ef7ce14a..bedd1290e0f 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm.inst.cfg @@ -56,8 +56,7 @@ support_bottom_enable = False support_infill_angles = [45 ] support_infill_rate = 12 support_interface_density = 75 -support_interface_height = =layer_height * 4 -support_interface_material_flow = =material_flow * 0.9 +support_interface_material_flow = =support_material_flow support_interface_offset = 0.8 support_interface_pattern = zigzag support_line_width = =line_width * 0.75 @@ -65,7 +64,6 @@ support_material_flow = =material_flow * 0.9 support_offset = 1 support_pattern = zigzag support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width support_top_distance = =support_z_distance support_xy_distance = 0.35 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-petg-175_0.2mm.inst.cfg index 8a6fb0320da..a506338aa41 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-petg-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-petg-175_0.2mm.inst.cfg @@ -36,7 +36,6 @@ raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 raft_surface_line_width = 0.4 raft_surface_speed = 40 -raft_surface_wall_count = 2 skin_overlap = 10 speed_layer_0 = 15 speed_print = 60 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm.inst.cfg index 36c1f99bf23..618b9c1d21e 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm.inst.cfg @@ -56,8 +56,7 @@ support_bottom_enable = False support_infill_angles = [45 ] support_infill_rate = 12 support_interface_density = 75 -support_interface_height = =layer_height * 4 -support_interface_material_flow = =material_flow * 0.9 +support_interface_material_flow = =support_material_flow support_interface_offset = 0.8 support_interface_pattern = zigzag support_line_width = =line_width * 0.75 @@ -65,7 +64,6 @@ support_material_flow = =material_flow * 0.9 support_offset = 1 support_pattern = zigzag support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width support_top_distance = =support_z_distance support_xy_distance = 0.35 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg index 2b17449bb67..f4d07747513 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg @@ -23,15 +23,13 @@ initial_layer_line_width_factor = 110 layer_height_0 = =layer_height * 1.5 material_flow_layer_0 = 110 material_initial_print_temperature = 245 -retraction_amount = 1.5 -retraction_speed = 45 +retraction_amount = 0.75 +retraction_speed = 5 roofing_line_width = 0.4 skin_line_width = 0.45 skin_material_flow_layer_0 = 110 skin_overlap = 20.0 -skirt_brim_line_width = 1 skirt_brim_minimal_length = 100.0 -skirt_height = 3 speed_print = 25 support_enable = False top_bottom_thickness = =layer_height * 2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg index a1366e7eecc..c4f6a716946 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg @@ -15,8 +15,14 @@ weight = -2 [values] infill_sparse_density = 50 raft_airgap = 0.22 +raft_interface_flow = 110 +raft_interface_infill_overlap = 25 raft_interface_speed = =speed_print * 1/2 +raft_interface_z_offset = -0.1 +raft_surface_flow = 110 +raft_surface_infill_overlap = 50 raft_surface_speed = =speed_print * 1/2 +raft_surface_z_offset = -0.075 speed_layer_0 = =speed_print * 1/4 speed_prime_tower = =speed_print * 3/4 speed_print = 40 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-petg-175_0.2mm.inst.cfg index 0caa7605476..0c364346e51 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-petg-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-petg-175_0.2mm.inst.cfg @@ -36,7 +36,6 @@ raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 raft_surface_line_width = 0.4 raft_surface_speed = 40 -raft_surface_wall_count = 2 skin_overlap = 10 speed_layer_0 = 15 speed_print = 60 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm.inst.cfg index 006f929acbd..4f131c9b150 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm.inst.cfg @@ -56,8 +56,7 @@ support_bottom_enable = False support_infill_angles = [45 ] support_infill_rate = 12 support_interface_density = 75 -support_interface_height = =layer_height * 4 -support_interface_material_flow = =material_flow * 0.9 +support_interface_material_flow = =support_material_flow support_interface_offset = 0.8 support_interface_pattern = zigzag support_line_width = =line_width * 0.75 @@ -65,7 +64,6 @@ support_material_flow = =material_flow * 0.9 support_offset = 1 support_pattern = zigzag support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width support_top_distance = =support_z_distance support_xy_distance = 0.35 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-petg-175_0.2mm.inst.cfg index 1c51fb895dd..4b78e76ca1a 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-petg-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-petg-175_0.2mm.inst.cfg @@ -34,7 +34,6 @@ raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 raft_surface_line_width = 0.4 raft_surface_speed = 40 -raft_surface_wall_count = 2 skin_overlap = 10 speed_layer_0 = 15 speed_print = 60 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm.inst.cfg index a8a877007bc..8efec8ddd18 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm.inst.cfg @@ -54,8 +54,7 @@ support_bottom_enable = False support_infill_angles = [45 ] support_infill_rate = 12 support_interface_density = 75 -support_interface_height = =layer_height * 4 -support_interface_material_flow = =material_flow * 0.9 +support_interface_material_flow = =support_material_flow support_interface_offset = 0.8 support_interface_pattern = zigzag support_line_width = =line_width * 0.75 @@ -63,7 +62,6 @@ support_material_flow = =material_flow * 0.9 support_offset = 1 support_pattern = zigzag support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width support_top_distance = =support_z_distance support_xy_distance = 0.35 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-petg-175_0.2mm.inst.cfg index aed6b809dce..48a5754baf9 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-petg-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-petg-175_0.2mm.inst.cfg @@ -34,7 +34,6 @@ raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 raft_surface_line_width = 0.4 raft_surface_speed = 40 -raft_surface_wall_count = 2 skin_overlap = 10 speed_layer_0 = 15 speed_print = 60 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm.inst.cfg index adcb34d9ca9..505dc59efc5 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm.inst.cfg @@ -54,8 +54,7 @@ support_bottom_enable = False support_infill_angles = [45 ] support_infill_rate = 12 support_interface_density = 75 -support_interface_height = =layer_height * 4 -support_interface_material_flow = =material_flow * 0.9 +support_interface_material_flow = =support_material_flow support_interface_offset = 0.8 support_interface_pattern = zigzag support_line_width = =line_width * 0.75 @@ -63,7 +62,6 @@ support_material_flow = =material_flow * 0.9 support_offset = 1 support_pattern = zigzag support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width support_top_distance = =support_z_distance support_xy_distance = 0.35 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg index 5fff8ce1fbf..30d455cccea 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg @@ -15,8 +15,14 @@ weight = -2 [values] infill_sparse_density = 50 raft_airgap = 0.22 +raft_interface_flow = 110 +raft_interface_infill_overlap = 25 raft_interface_speed = =speed_print * 1/2 +raft_interface_z_offset = -0.1 +raft_surface_flow = 110 +raft_surface_infill_overlap = 50 raft_surface_speed = =speed_print * 1/2 +raft_surface_z_offset = -0.075 speed_layer_0 = =speed_print * 1/4 speed_prime_tower = =speed_print * 3/4 speed_print = 40 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-petg-175_0.2mm.inst.cfg index 69c62ca3f28..6e5bcf52064 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-petg-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-petg-175_0.2mm.inst.cfg @@ -34,7 +34,6 @@ raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 raft_surface_line_width = 0.4 raft_surface_speed = 40 -raft_surface_wall_count = 2 skin_overlap = 10 speed_layer_0 = 15 speed_print = 60 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm.inst.cfg index 631fae2fe39..e9254988a54 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm.inst.cfg @@ -54,8 +54,7 @@ support_bottom_enable = False support_infill_angles = [45 ] support_infill_rate = 12 support_interface_density = 75 -support_interface_height = =layer_height * 4 -support_interface_material_flow = =material_flow * 0.9 +support_interface_material_flow = =support_material_flow support_interface_offset = 0.8 support_interface_pattern = zigzag support_line_width = =line_width * 0.75 @@ -63,7 +62,6 @@ support_material_flow = =material_flow * 0.9 support_offset = 1 support_pattern = zigzag support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width support_top_distance = =support_z_distance support_xy_distance = 0.35 diff --git a/resources/setting_visibility/advanced.cfg b/resources/setting_visibility/advanced.cfg index 261743c7085..93c3dc91efd 100644 --- a/resources/setting_visibility/advanced.cfg +++ b/resources/setting_visibility/advanced.cfg @@ -148,3 +148,6 @@ interlocking_enable conical_overhang_enabled support_conical_enabled adaptive_layer_height_enabled +scarf_joint_seam_length +scarf_joint_seam_start_height_ratio +scarf_split_distance diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 99509570814..b13618e5c16 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -481,3 +481,6 @@ small_hole_max_size small_feature_max_length small_feature_speed_factor small_feature_speed_factor_0 +scarf_joint_seam_length +scarf_joint_seam_start_height_ratio +scarf_split_distance diff --git a/resources/shaders/grid.shader b/resources/shaders/grid.shader index 0ec6cc0f989..7386263c840 100644 --- a/resources/shaders/grid.shader +++ b/resources/shaders/grid.shader @@ -45,6 +45,7 @@ fragment = float majorLine = min(majorGrid.x, majorGrid.y); gl_FragColor = mix(minorGridColor, u_gridColor0, 1.0 - min(majorLine, 1.0)); + gl_FragColor.a = u_plateColor.a; } vertex41core = @@ -88,6 +89,7 @@ fragment41core = float majorLine = min(majorGrid.x, majorGrid.y); frag_color = mix(minorGridColor, u_gridColor0, 1.0 - min(majorLine, 1.0)); + frag_color.a = u_plateColor.a; } [defaults] diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index 237caedea9a..aabe7687e41 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -1,3 +1,68 @@ +[5.9] + +* New features and improvements: +- Introduced scarf seam settings in experimental, Scarf Seam Length, Scarf Seam Start Height, and Scarf Seam Split Distance +- Updated the Start and End G-code edit options (for both Machine and Extruder) to include If/Else statements and formulas +- Introduced Build Fan Speed at Height, Build Fan Speed at Layer, and Build Volume Fan Number to control extra fans, like those controlling the build volume separately +- Added the "Extra Infill Lines to Support Skins" setting and other improvements to help make printing over sparse infill more reliable, contributed by @Hello1024 +- Significant UI speed improvements interacting with custom settings especially if your printer has multiple extruders +- Introduced an Anycolor option for the UltiMaker S and F series enabling you to print with any UltiMaker color loaded in the material station that is compatible with the printjobs. Note that it’s only compatible with the latest version of the firmware (for Factor 4 >=10.1 and for S-series >=9.0) +- Added an option to Export Package for Technical Support to the help menu, it includes a project file with the settings but also the logs +- Improved the way materials are selected when using multiple extruders to print the build plate adhesion so it doesn't default to the first extruder but the best option instead. +- Improved processes so not only installers but also executables inside installers are signed for Windows +- Introduced an error message that informs when a file is too big to slice +- Made it possible for multiple Engine plugins that are registered to the same slot to be used together. (Only for Modify plugins, and Plugins will be addressed alphabetically) +- Moved the Gradual Flow Engine Plug-in to CuraEngine instead +- Improved and expanded the Insert at Layer Change post-processing script, contributed by @GregValiant +- Improved and expanded the Time Lapse Post Processing script, contributed by @GregValiant +- Added a registry entry to provide the option to silent uninstall on Windows, contributed by @Rotzbua + +* Bug fixes: +- Fixed a crash that would occur when renaming profile names that would result in changing the order of the profiles +- Fixed a bug so objects in a 3MF reload in the same position as they were saved again, contributed by @nilsiism +- Fixed an issue where overhanging walls and walls that were adjacent to overhanging walls were not printed at the correct speed +- Fixed a bug that prevented the "Sync materials with printers" page from displaying when accessed immediately after starting Cura or signing in +- Fixed a bug where reloading an updated model would result in not all the duplicates of the model being updated +- Fixed a bug that showed incompatible materials when switching between printers with a different filament diameter. +- Fixed a bug where tree support in enclosed holes have missing layers +- Made improvements in the G-codePathModify slot for Engine Plugins, contributed by @ThomasRahm +- Fixed a bug that prevented changes to the initial layer diameter from being applied properly, contributed by @ThomasRahm +- Fixed a rounding issue in the engine math, @0x5844 + +* Bugs resolved after the first Beta +- Spiralize outer contour no longer adds unnecessary seams to the model +- When coasting is enabled the printhead no longer drops down +- Updated the strategy for sharpest corner - smart hiding seam location combination +- Fixed a bug where long scarf seams and short scarf seam steps would result in the seam being moved outward +- Fixed a bug where seam acceleration and deceleration were not working +- Fixed a bug where infill was wrongly removed from narrow spaces +- Triple-clicking values and searches that you entered now has you select everything so you can edit it in the field similar to other desktop applications +- Updated dependencies and improved how unwanted and unused binaries are excluded from the building process. +- Added Eazao material for the new Eazao printers + +* Printer definitions, profiles, and materials: +- Introduced Makerbot Sketch Sprint +- Introduced Makerbot Sketch and Sketch Large +- Introduced new materials to the UltiMaker Method series, ABS, PETG, Nylon-CF, and Tough PLA +- Introduced Labs Extruder for the UltiMaker Method series together with BASF Ultrafuse 316L, TPE SEBS 1300 95A, and Polymax PC. Except BASF Ultrafuse 316L is not available on the Method XL. +- Various setting improvements for ABS and Nylon for UltiMaker Method series +- Various setting improvements for dual extrusion support for the UltiMaker Method series +- Implemented a hard limit so the bed temperature cannot be more than 120C on all UltiMaker printers. +- Introduced the Creality CR-M4, contributed by @kixell +- Introduced Eazao M500, M600, M700, and Potter, and updated the Eazao Zero, contributed by @Eazo +- Introduced ZYYX+, ZYYX Pro, and ZYYX Pro ii, contributed by @theodorhansson +- Updated acceleration settings for the Creality Ender-2 V3 SE, contributed by @T9Air + +* Community Translations +- Updated Japanese translations by @h1data +- Brazilian Portuguese by @Patola + +* Known issues +- This second beta introduces a change that affects the UI so please use buttons, dropdowns, menus, and flows. We hope we did this correctly but it is a tricky change. If you see the crash please report it to us, and we will also see it show up in our crash tracking tool. +- There is a slight regression in terms of seam alignment in different strategies we hope to resolve before stable +- We see an increase in micro-segments in the outer wall, which we hope to resolve before stable +- We see rare cases of Cura crashing after opening project files with custom extruders or printer settings than the printer that is already loaded + [5.8.1] * Bug fixes: diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index 2d537d8ee85..160799be6e9 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -642,11 +642,11 @@ "monitor_preheat_temperature_control": [4.5, 2.0], "welcome_wizard_window": [46, 50], - "modal_window_minimum": [60.0, 45], + "modal_window_minimum": [60.0, 50.0], "wizard_progress": [10.0, 0.0], "message": [30.0, 5.0], - "message_close": [1, 1], + "message_close": [2, 2], "message_radius": [0.25, 0.25], "message_action_button": [0, 2.5], "message_image": [15.0, 10.0], diff --git a/scripts/fix_lokalize_translations.sh b/scripts/fix_lokalize_translations.sh new file mode 100755 index 00000000000..b97b74bd28d --- /dev/null +++ b/scripts/fix_lokalize_translations.sh @@ -0,0 +1,12 @@ +#! /bin/bash + +default_i18n_dir="../resources/i18n" +i18n_dir=${1:-$default_i18n_dir} + +for language_dir in "$i18n_dir"/*; do + if [[ -d "$language_dir" ]]; then + for language_file in "$language_dir"/*.po; do + sed -i "/#, fuzzy/d" "$language_file" + done + fi +done