diff --git a/README.md b/README.md
index a108994cb7..ff39e4142a 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ For crashes and similar issues, please attach the following information:
If the Cura user interface still starts, you can also reach this directory from the application menu in Help -> Show settings folder
-For additional support, you could also ask in the #cura channel on FreeNode IRC. For help with development, there is also the #cura-dev channel.
+For additional support, you could also ask in the [#cura channel](https://web.libera.chat/#cura) on [libera.chat](https://libera.chat/). For help with development, there is also the [#cura-dev channel](https://web.libera.chat/#cura-dev).
Dependencies
------------
@@ -26,10 +26,16 @@ Dependencies
* [PySerial](https://github.com/pyserial/pyserial) Only required for USB printing support.
* [python-zeroconf](https://github.com/jstasiak/python-zeroconf) Only required to detect mDNS-enabled printers.
+For a list of required Python packages, with their recommended version, see `requirements.txt`.
+
+This list is not exhaustive at the moment, please check the links in the next section for more details.
+
Build scripts
-------------
Please check out [cura-build](https://github.com/Ultimaker/cura-build) for detailed building instructions.
+If you want to build the entire environment from scratch before building Cura as well, [cura-build-environment](https://github.com/Ultimaker/cura-build) might be a starting point before cura-build. (Again, see cura-build for more details.)
+
Running from Source
-------------
Please check our [Wiki page](https://github.com/Ultimaker/Cura/wiki/Running-Cura-from-Source) for details about running Cura from source.
diff --git a/cura/API/Account.py b/cura/API/Account.py
index 4e8c90e052..728d0690a3 100644
--- a/cura/API/Account.py
+++ b/cura/API/Account.py
@@ -40,7 +40,7 @@ class Account(QObject):
"""
# The interval in which sync services are automatically triggered
- SYNC_INTERVAL = 30.0 # seconds
+ SYNC_INTERVAL = 60.0 # seconds
Q_ENUMS(SyncState)
loginStateChanged = pyqtSignal(bool)
diff --git a/cura/ApplicationMetadata.py b/cura/ApplicationMetadata.py
index 11204a542b..2c3ecbc856 100644
--- a/cura/ApplicationMetadata.py
+++ b/cura/ApplicationMetadata.py
@@ -13,7 +13,7 @@ DEFAULT_CURA_DEBUG_MODE = False
# Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for
# example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the
# CuraVersion.py.in template.
-CuraSDKVersion = "7.5.0"
+CuraSDKVersion = "7.6.0"
try:
from cura.CuraVersion import CuraAppName # type: ignore
diff --git a/cura/AutoSave.py b/cura/AutoSave.py
index d80e34771e..3205f48af1 100644
--- a/cura/AutoSave.py
+++ b/cura/AutoSave.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2019 Ultimaker B.V.
+# Copyright (c) 2021 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from PyQt5.QtCore import QTimer
@@ -6,6 +6,8 @@ from typing import Any, TYPE_CHECKING
from UM.Logger import Logger
+import time
+
if TYPE_CHECKING:
from cura.CuraApplication import CuraApplication
@@ -56,8 +58,8 @@ class AutoSave:
def _onTimeout(self) -> None:
self._saving = True # To prevent the save process from triggering another autosave.
- Logger.log("d", "Autosaving preferences, instances and profiles")
+ save_start_time = time.time()
self._application.saveSettings()
-
+ Logger.log("d", "Autosaving preferences, instances and profiles took %s seconds", time.time() - save_start_time)
self._saving = False
diff --git a/cura/Backups/Backup.py b/cura/Backups/Backup.py
index 85852e74f6..d9f1788744 100644
--- a/cura/Backups/Backup.py
+++ b/cura/Backups/Backup.py
@@ -14,6 +14,7 @@ from UM.Logger import Logger
from UM.Message import Message
from UM.Platform import Platform
from UM.Resources import Resources
+from UM.Version import Version
if TYPE_CHECKING:
from cura.CuraApplication import CuraApplication
@@ -28,6 +29,8 @@ class Backup:
IGNORED_FILES = [r"cura\.log", r"plugins\.json", r"cache", r"__pycache__", r"\.qmlc", r"\.pyc"]
"""These files should be ignored when making a backup."""
+ IGNORED_FOLDERS = [r"plugins"]
+
SECRETS_SETTINGS = ["general/ultimaker_auth_data"]
"""Secret preferences that need to obfuscated when making a backup of Cura"""
@@ -74,8 +77,9 @@ class Backup:
machine_count = max(len([s for s in files if "machine_instances/" in s]) - 1, 0) # If people delete their profiles but not their preferences, it can still make a backup, and report -1 profiles. Server crashes on this.
material_count = max(len([s for s in files if "materials/" in s]) - 1, 0)
profile_count = max(len([s for s in files if "quality_changes/" in s]) - 1, 0)
- plugin_count = len([s for s in files if "plugin.json" in s])
-
+ # We don't store plugins anymore, since if you can make backups, you have an account (and the plugins are
+ # on the marketplace anyway)
+ plugin_count = 0
# Store the archive and metadata so the BackupManager can fetch them when needed.
self.zip_file = buffer.getvalue()
self.meta_data = {
@@ -94,8 +98,7 @@ class Backup:
:param root_path: The root directory to archive recursively.
:return: The archive as bytes.
"""
-
- ignore_string = re.compile("|".join(self.IGNORED_FILES))
+ ignore_string = re.compile("|".join(self.IGNORED_FILES + self.IGNORED_FOLDERS))
try:
archive = ZipFile(buffer, "w", ZIP_DEFLATED)
for root, folders, files in os.walk(root_path):
@@ -132,8 +135,8 @@ class Backup:
"Tried to restore a Cura backup without having proper data or meta data."))
return False
- current_version = self._application.getVersion()
- version_to_restore = self.meta_data.get("cura_release", "master")
+ current_version = Version(self._application.getVersion())
+ version_to_restore = Version(self.meta_data.get("cura_release", "master"))
if current_version < version_to_restore:
# Cannot restore version newer than current because settings might have changed.
diff --git a/cura/Backups/BackupsManager.py b/cura/Backups/BackupsManager.py
index fb758455c1..6d620b8d27 100644
--- a/cura/Backups/BackupsManager.py
+++ b/cura/Backups/BackupsManager.py
@@ -4,6 +4,7 @@
from typing import Dict, Optional, Tuple, TYPE_CHECKING
from UM.Logger import Logger
+from UM.Version import Version
from cura.Backups.Backup import Backup
if TYPE_CHECKING:
@@ -52,6 +53,18 @@ class BackupsManager:
backup = Backup(self._application, zip_file = zip_file, meta_data = meta_data)
restored = backup.restore()
+
+ package_manager = self._application.getPackageManager()
+
+ # If the backup was made with Cura 4.10 (or higher), we no longer store plugins.
+ # Since the restored backup doesn't have those plugins anymore, we should remove it from the list
+ # of installed plugins.
+ if Version(meta_data.get("cura_release")) >= Version("4.10.0"):
+ for package_id in package_manager.getAllInstalledPackageIDs():
+ package_data = package_manager.getInstalledPackageInfo(package_id)
+ if package_data.get("package_type") == "plugin" and not package_data.get("is_bundled"):
+ package_manager.removePackage(package_id)
+
if restored:
# At this point, Cura will need to restart for the changes to take effect.
# We don't want to store the data at this point as that would override the just-restored backup.
diff --git a/cura/CuraActions.py b/cura/CuraActions.py
index d6e5add912..4d121338d8 100644
--- a/cura/CuraActions.py
+++ b/cura/CuraActions.py
@@ -67,11 +67,15 @@ class CuraActions(QObject):
current_node = parent_node
parent_node = current_node.getParent()
- # This was formerly done with SetTransformOperation but because of
- # unpredictable matrix deconstruction it was possible that mirrors
- # could manifest as rotations. Centering is therefore done by
- # moving the node to negative whatever its position is:
- center_operation = TranslateOperation(current_node, -current_node._position)
+ # Find out where the bottom of the object is
+ bbox = current_node.getBoundingBox()
+ if bbox:
+ center_y = current_node.getWorldPosition().y - bbox.bottom
+ else:
+ center_y = 0
+
+ # Move the object so that it's bottom is on to of the buildplate
+ center_operation = TranslateOperation(current_node, Vector(0, center_y, 0), set_position = True)
operation.addOperation(center_operation)
operation.push()
diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py
index 9a0bac6f73..d8895fabf2 100755
--- a/cura/CuraApplication.py
+++ b/cura/CuraApplication.py
@@ -257,6 +257,9 @@ class CuraApplication(QtApplication):
from cura.CuraPackageManager import CuraPackageManager
self._package_manager_class = CuraPackageManager
+ from UM.CentralFileStorage import CentralFileStorage
+ CentralFileStorage.setIsEnterprise(ApplicationMetadata.IsEnterpriseVersion)
+
@pyqtProperty(str, constant=True)
def ultimakerCloudApiRootUrl(self) -> str:
return UltimakerCloudConstants.CuraCloudAPIRoot
@@ -1526,12 +1529,8 @@ class CuraApplication(QtApplication):
# Compute the center of the objects
object_centers = []
- # Forget about the translation that the original objects have
- zero_translation = Matrix(data=numpy.zeros(3))
for mesh, node in zip(meshes, group_node.getChildren()):
- transformation = node.getLocalTransformation()
- transformation.setTranslation(zero_translation)
- transformed_mesh = mesh.getTransformed(transformation)
+ transformed_mesh = mesh.getTransformed(Matrix()) # Forget about the transformations that the original object had.
center = transformed_mesh.getCenterPosition()
if center is not None:
object_centers.append(center)
@@ -1546,7 +1545,7 @@ class CuraApplication(QtApplication):
# Move each node to the same position.
for mesh, node in zip(meshes, group_node.getChildren()):
- node.setTransformation(Matrix())
+ node.setTransformation(Matrix()) # Removes any changes in position and rotation.
# Align the object around its zero position
# and also apply the offset to center it inside the group.
node.setPosition(-mesh.getZeroPosition() - offset)
@@ -1867,6 +1866,7 @@ class CuraApplication(QtApplication):
else:
node = CuraSceneNode()
node.setMeshData(original_node.getMeshData())
+ node.source_mime_type = original_node.source_mime_type
# Setting meshdata does not apply scaling.
if original_node.getScale() != Vector(1.0, 1.0, 1.0):
diff --git a/cura/Machines/Models/MachineModelUtils.py b/cura/Machines/Models/MachineModelUtils.py
index a23b1ff3a5..b4fff37724 100644
--- a/cura/Machines/Models/MachineModelUtils.py
+++ b/cura/Machines/Models/MachineModelUtils.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2019 Ultimaker B.V.
+# Copyright (c) 2021 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from typing import TYPE_CHECKING
@@ -34,4 +34,4 @@ def fetchLayerHeight(quality_group: "QualityGroup") -> float:
if isinstance(layer_height, SettingFunction):
layer_height = layer_height(global_stack)
- return float(layer_height)
+ return round(float(layer_height), 3)
diff --git a/cura/Machines/Models/MaterialManagementModel.py b/cura/Machines/Models/MaterialManagementModel.py
index 4a696ec974..85f208d8b0 100644
--- a/cura/Machines/Models/MaterialManagementModel.py
+++ b/cura/Machines/Models/MaterialManagementModel.py
@@ -1,10 +1,11 @@
-# Copyright (c) 2019 Ultimaker B.V.
+# Copyright (c) 2021 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
import copy # To duplicate materials.
-from PyQt5.QtCore import QObject, pyqtSignal, pyqtSlot # To allow the preference page proxy to be used from the actual preferences page.
+from PyQt5.QtCore import pyqtProperty, pyqtSignal, pyqtSlot, QObject, QUrl
from typing import Any, Dict, Optional, TYPE_CHECKING
import uuid # To generate new GUIDs for new materials.
+import zipfile # To export all materials in a .zip archive.
from UM.i18n import i18nCatalog
from UM.Logger import Logger
@@ -24,6 +25,11 @@ class MaterialManagementModel(QObject):
This class handles the actions in that page, such as creating new materials, renaming them, etc.
"""
+ def __init__(self, parent: QObject) -> None:
+ super().__init__(parent)
+ cura_application = cura.CuraApplication.CuraApplication.getInstance()
+ self._preferred_export_all_path = None # type: Optional[QUrl] # Path to export all materials to. None if not yet initialised.
+ cura_application.getOutputDeviceManager().outputDevicesChanged.connect(self._onOutputDevicesChanged)
favoritesChanged = pyqtSignal(str)
"""Triggered when a favorite is added or removed.
@@ -79,6 +85,7 @@ class MaterialManagementModel(QObject):
:param material_node: The material to remove.
"""
+ Logger.info(f"Removing material {material_node.container_id}")
container_registry = CuraContainerRegistry.getInstance()
materials_this_base_file = container_registry.findContainersMetadata(base_file = material_node.base_file)
@@ -194,6 +201,7 @@ class MaterialManagementModel(QObject):
:return: The root material ID of the duplicate material.
"""
+ Logger.info(f"Duplicating material {material_node.base_file} to {new_base_id}")
return self.duplicateMaterialByBaseFile(material_node.base_file, new_base_id, new_metadata)
@pyqtSlot(result = str)
@@ -262,3 +270,52 @@ class MaterialManagementModel(QObject):
self.favoritesChanged.emit(material_base_file)
except ValueError: # Material was not in the favorites list.
Logger.log("w", "Material {material_base_file} was already not a favorite material.".format(material_base_file = material_base_file))
+
+ def _onOutputDevicesChanged(self) -> None:
+ """
+ When the list of output devices changes, we may want to update the
+ preferred export path.
+ """
+ cura_application = cura.CuraApplication.CuraApplication.getInstance()
+ device_manager = cura_application.getOutputDeviceManager()
+ devices = device_manager.getOutputDevices()
+ for device in devices:
+ if device.__class__.__name__ == "RemovableDriveOutputDevice":
+ self._preferred_export_all_path = QUrl.fromLocalFile(device.getId())
+ break
+ else: # No removable drives? Use local path.
+ self._preferred_export_all_path = cura_application.getDefaultPath("dialog_material_path")
+ self.outputDevicesChanged.emit()
+
+ outputDevicesChanged = pyqtSignal() # Triggered when adding or removing removable drives.
+ @pyqtProperty(QUrl, notify = outputDevicesChanged)
+ def preferredExportAllPath(self) -> QUrl:
+ """
+ Get the preferred path to export materials to.
+
+ If there is a removable drive, that should be the preferred path. Otherwise it should be the most recent local
+ file path.
+ :return: The preferred path to export all materials to.
+ """
+ if self._preferred_export_all_path is None: # Not initialised yet. Can happen when output devices changed before class got created.
+ self._onOutputDevicesChanged()
+ return self._preferred_export_all_path
+
+ @pyqtSlot(QUrl)
+ def exportAll(self, file_path: QUrl) -> None:
+ """
+ Export all materials to a certain file path.
+ :param file_path: The path to export the materials to.
+ """
+ registry = CuraContainerRegistry.getInstance()
+
+ archive = zipfile.ZipFile(file_path.toLocalFile(), "w", compression = zipfile.ZIP_DEFLATED)
+ for metadata in registry.findInstanceContainersMetadata(type = "material"):
+ if metadata["base_file"] != metadata["id"]: # Only process base files.
+ continue
+ if metadata["id"] == "empty_material": # Don't export the empty material.
+ continue
+ material = registry.findContainers(id = metadata["id"])[0]
+ suffix = registry.getMimeTypeForContainer(type(material)).preferredSuffix
+ filename = metadata["id"] + "." + suffix
+ archive.writestr(filename, material.serialize())
diff --git a/cura/Machines/Models/QualitySettingsModel.py b/cura/Machines/Models/QualitySettingsModel.py
index 43f5c71e15..b046b7546d 100644
--- a/cura/Machines/Models/QualitySettingsModel.py
+++ b/cura/Machines/Models/QualitySettingsModel.py
@@ -99,7 +99,7 @@ class QualitySettingsModel(ListModel):
if self._selected_position == self.GLOBAL_STACK_POSITION:
quality_node = quality_group.node_for_global
else:
- quality_node = quality_group.nodes_for_extruders.get(str(self._selected_position))
+ quality_node = quality_group.nodes_for_extruders.get(self._selected_position)
settings_keys = quality_group.getAllKeys()
quality_containers = []
if quality_node is not None and quality_node.container is not None:
@@ -117,7 +117,9 @@ class QualitySettingsModel(ListModel):
if self._selected_position == self.GLOBAL_STACK_POSITION and global_container:
quality_changes_metadata = global_container.getMetaData()
else:
- quality_changes_metadata = extruders_container.get(str(self._selected_position))
+ extruder = extruders_container.get(self._selected_position)
+ if extruder:
+ quality_changes_metadata = extruder.getMetaData()
if quality_changes_metadata is not None: # It can be None if number of extruders are changed during runtime.
container = container_registry.findContainers(id = quality_changes_metadata["id"])
if container:
diff --git a/cura/OAuth2/AuthorizationHelpers.py b/cura/OAuth2/AuthorizationHelpers.py
index d79f24df15..5b95b3a3bb 100644
--- a/cura/OAuth2/AuthorizationHelpers.py
+++ b/cura/OAuth2/AuthorizationHelpers.py
@@ -1,12 +1,12 @@
-# Copyright (c) 2020 Ultimaker B.V.
+# Copyright (c) 2021 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
+
from datetime import datetime
import json
import random
from hashlib import sha512
from base64 import b64encode
-from typing import Optional, Any, Dict, Tuple
-
+from typing import Optional
import requests
from UM.i18n import i18nCatalog
@@ -115,7 +115,7 @@ class AuthorizationHelpers:
token_request = requests.get(check_token_url, headers = {
"Authorization": "Bearer {}".format(access_token)
})
- except requests.exceptions.ConnectionError:
+ except (requests.exceptions.ConnectionError, requests.exceptions.Timeout):
# Connection was suddenly dropped. Nothing we can do about that.
Logger.logException("w", "Something failed while attempting to parse the JWT token")
return None
diff --git a/cura/OAuth2/AuthorizationService.py b/cura/OAuth2/AuthorizationService.py
index da654b52bb..96091f9c11 100644
--- a/cura/OAuth2/AuthorizationService.py
+++ b/cura/OAuth2/AuthorizationService.py
@@ -113,8 +113,10 @@ class AuthorizationService:
# The token could not be refreshed using the refresh token. We should login again.
return None
# Ensure it gets stored as otherwise we only have it in memory. The stored refresh token has been deleted
- # from the server already.
- self._storeAuthData(self._auth_data)
+ # from the server already. Do not store the auth_data if we could not get new auth_data (eg due to a
+ # network error), since this would cause an infinite loop trying to get new auth-data
+ if self._auth_data.success:
+ self._storeAuthData(self._auth_data)
return self._auth_helpers.parseJWT(self._auth_data.access_token)
def getAccessToken(self) -> Optional[str]:
diff --git a/cura/Scene/CuraSceneNode.py b/cura/Scene/CuraSceneNode.py
index 93a1511681..5fbaded650 100644
--- a/cura/Scene/CuraSceneNode.py
+++ b/cura/Scene/CuraSceneNode.py
@@ -119,21 +119,23 @@ class CuraSceneNode(SceneNode):
self._aabb = None
if self._mesh_data:
self._aabb = self._mesh_data.getExtents(self.getWorldTransformation(copy = False))
- else: # If there is no mesh_data, use a bounding box that encompasses the local (0,0,0)
- position = self.getWorldPosition()
- self._aabb = AxisAlignedBox(minimum = position, maximum = position)
for child in self.getAllChildren():
if child.callDecoration("isNonPrintingMesh"):
# Non-printing-meshes inside a group should not affect push apart or drop to build plate
continue
- if not child.getMeshData():
- # Nodes without mesh data should not affect bounding boxes of their parents.
+ child_bb = child.getBoundingBox()
+ if child_bb is None or child_bb.minimum == child_bb.maximum:
+ # Child had a degenerate bounding box, such as an empty group. Don't count it along.
continue
if self._aabb is None:
- self._aabb = child.getBoundingBox()
+ self._aabb = child_bb
else:
- self._aabb = self._aabb + child.getBoundingBox()
+ self._aabb = self._aabb + child_bb
+
+ if self._aabb is None: # No children that should be included? Just use your own position then, but it's an invalid AABB.
+ position = self.getWorldPosition()
+ self._aabb = AxisAlignedBox(minimum = position, maximum = position)
def __deepcopy__(self, memo: Dict[int, object]) -> "CuraSceneNode":
"""Taken from SceneNode, but replaced SceneNode with CuraSceneNode"""
@@ -142,6 +144,7 @@ class CuraSceneNode(SceneNode):
copy.setTransformation(self.getLocalTransformation(copy= False))
copy.setMeshData(self._mesh_data)
copy.setVisible(cast(bool, deepcopy(self._visible, memo)))
+ copy.source_mime_type = cast(str, deepcopy(self.source_mime_type, memo))
copy._selectable = cast(bool, deepcopy(self._selectable, memo))
copy._name = cast(str, deepcopy(self._name, memo))
for decorator in self._decorators:
diff --git a/cura/Settings/ContainerManager.py b/cura/Settings/ContainerManager.py
index 48d4cb3cbc..45f2edab20 100644
--- a/cura/Settings/ContainerManager.py
+++ b/cura/Settings/ContainerManager.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2020 Ultimaker B.V.
+# Copyright (c) 2021 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
import os
@@ -241,6 +241,7 @@ class ContainerManager(QObject):
file_url = file_url_or_string.toLocalFile()
else:
file_url = file_url_or_string
+ Logger.info(f"Importing material from {file_url}")
if not file_url or not os.path.exists(file_url):
return {"status": "error", "message": "Invalid path"}
diff --git a/cura/Settings/GlobalStack.py b/cura/Settings/GlobalStack.py
index 2c7cbf5e25..282034c0ee 100755
--- a/cura/Settings/GlobalStack.py
+++ b/cura/Settings/GlobalStack.py
@@ -86,6 +86,14 @@ class GlobalStack(CuraContainerStack):
def supportsNetworkConnection(self):
return self.getMetaDataEntry("supports_network_connection", False)
+ @pyqtProperty(bool, constant = True)
+ def supportsMaterialExport(self):
+ """
+ Whether the printer supports Cura's export format of material profiles.
+ :return: ``True`` if it supports it, or ``False`` if not.
+ """
+ return self.getMetaDataEntry("supports_material_export", False)
+
@classmethod
def getLoadingPriority(cls) -> int:
return 2
diff --git a/cura/UI/ObjectsModel.py b/cura/UI/ObjectsModel.py
index 02d4096278..0c109d7a4a 100644
--- a/cura/UI/ObjectsModel.py
+++ b/cura/UI/ObjectsModel.py
@@ -132,9 +132,26 @@ class ObjectsModel(ListModel):
is_group = bool(node.callDecoration("isGroup"))
+ name_handled_as_group = False
force_rename = False
- if not is_group:
- # Handle names for individual nodes
+ if is_group:
+ # Handle names for grouped nodes
+ original_name = self._group_name_prefix
+
+ current_name = node.getName()
+ if current_name.startswith(self._group_name_prefix):
+ # This group has a standard group name, but we may need to renumber it
+ name_index = int(current_name.split("#")[-1])
+ name_handled_as_group = True
+ elif not current_name:
+ # Force rename this group because this node has not been named as a group yet, probably because
+ # it's a newly created group.
+ name_index = 0
+ force_rename = True
+ name_handled_as_group = True
+
+ if not is_group or not name_handled_as_group:
+ # Handle names for individual nodes or groups that already have a non-group name
name = node.getName()
name_match = self._naming_regex.fullmatch(name)
@@ -144,18 +161,6 @@ class ObjectsModel(ListModel):
else:
original_name = name_match.groups()[0]
name_index = int(name_match.groups()[1])
- else:
- # Handle names for grouped nodes
- original_name = self._group_name_prefix
-
- current_name = node.getName()
- if current_name.startswith(self._group_name_prefix):
- name_index = int(current_name.split("#")[-1])
- else:
- # Force rename this group because this node has not been named as a group yet, probably because
- # it's a newly created group.
- name_index = 0
- force_rename = True
if original_name not in name_to_node_info_dict:
# Keep track of 2 things:
diff --git a/cura_app.py b/cura_app.py
index 0445f896ae..b9a42f0aba 100755
--- a/cura_app.py
+++ b/cura_app.py
@@ -16,14 +16,6 @@ import argparse
import faulthandler
import os
-# Workaround for a race condition on certain systems where there
-# is a race condition between Arcus and PyQt. Importing Arcus
-# first seems to prevent Sip from going into a state where it
-# tries to create PyQt objects on a non-main thread.
-import Arcus # @UnusedImport
-import Savitar # @UnusedImport
-import pynest2d # @UnusedImport
-
from PyQt5.QtNetwork import QSslConfiguration, QSslSocket
from UM.Platform import Platform
diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py
index c4170ebfcf..d0442e083b 100755
--- a/plugins/3MFReader/ThreeMFWorkspaceReader.py
+++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2020 Ultimaker B.V.
+# Copyright (c) 2021 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from configparser import ConfigParser
@@ -412,7 +412,12 @@ class ThreeMFWorkspaceReader(WorkspaceReader):
quality_container_id = parser["containers"][str(_ContainerIndexes.Quality)]
quality_type = "empty_quality"
if quality_container_id not in ("empty", "empty_quality"):
- quality_type = instance_container_info_dict[quality_container_id].parser["metadata"]["quality_type"]
+ if quality_container_id in instance_container_info_dict:
+ quality_type = instance_container_info_dict[quality_container_id].parser["metadata"]["quality_type"]
+ else: # If a version upgrade changed the quality profile in the stack, we'll need to look for it in the built-in profiles instead of the workspace.
+ quality_matches = ContainerRegistry.getInstance().findContainersMetadata(id = quality_container_id)
+ if quality_matches: # If there's no profile with this ID, leave it empty_quality.
+ quality_type = quality_matches[0]["quality_type"]
# Get machine info
serialized = archive.open(global_stack_file).read().decode("utf-8")
diff --git a/plugins/3MFReader/plugin.json b/plugins/3MFReader/plugin.json
index c0cbd52fcc..700fa89335 100644
--- a/plugins/3MFReader/plugin.json
+++ b/plugins/3MFReader/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides support for reading 3MF files.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/3MFWriter/plugin.json b/plugins/3MFWriter/plugin.json
index 4fb3feeb4e..b9d82581e9 100644
--- a/plugins/3MFWriter/plugin.json
+++ b/plugins/3MFWriter/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides support for writing 3MF files.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/AMFReader/plugin.json b/plugins/AMFReader/plugin.json
index 71b1ca0dae..87e47eb893 100644
--- a/plugins/AMFReader/plugin.json
+++ b/plugins/AMFReader/plugin.json
@@ -3,5 +3,5 @@
"author": "fieldOfView",
"version": "1.0.0",
"description": "Provides support for reading AMF files.",
- "api": "7.5.0"
+ "api": "7.6.0"
}
diff --git a/plugins/CuraDrive/plugin.json b/plugins/CuraDrive/plugin.json
index 5ba917ed1a..ed830c9c10 100644
--- a/plugins/CuraDrive/plugin.json
+++ b/plugins/CuraDrive/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"description": "Backup and restore your configuration.",
"version": "1.2.0",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/CuraEngineBackend/plugin.json b/plugins/CuraEngineBackend/plugin.json
index 0a64fa4c8e..f0a042284f 100644
--- a/plugins/CuraEngineBackend/plugin.json
+++ b/plugins/CuraEngineBackend/plugin.json
@@ -2,7 +2,7 @@
"name": "CuraEngine Backend",
"author": "Ultimaker B.V.",
"description": "Provides the link to the CuraEngine slicing backend.",
- "api": "7.5.0",
+ "api": "7.6.0",
"version": "1.0.1",
"i18n-catalog": "cura"
}
diff --git a/plugins/CuraProfileReader/plugin.json b/plugins/CuraProfileReader/plugin.json
index 0845dcdcaf..efa3ddfa74 100644
--- a/plugins/CuraProfileReader/plugin.json
+++ b/plugins/CuraProfileReader/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides support for importing Cura profiles.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/CuraProfileWriter/plugin.json b/plugins/CuraProfileWriter/plugin.json
index be9ebf7169..626ad6b533 100644
--- a/plugins/CuraProfileWriter/plugin.json
+++ b/plugins/CuraProfileWriter/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides support for exporting Cura profiles.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog":"cura"
}
diff --git a/plugins/DigitalLibrary/plugin.json b/plugins/DigitalLibrary/plugin.json
index 77d9818421..b99e81b381 100644
--- a/plugins/DigitalLibrary/plugin.json
+++ b/plugins/DigitalLibrary/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.",
"version": "1.0.0",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml b/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml
index e1918b3da7..5b237a3e48 100644
--- a/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml
+++ b/plugins/DigitalLibrary/resources/qml/OpenProjectFilesPage.qml
@@ -65,6 +65,11 @@ Item
model: manager.digitalFactoryFileModel
visible: model.count != 0 && manager.retrievingFileStatus != DF.RetrievalStatus.InProgress
selectionMode: OldControls.SelectionMode.SingleSelection
+ onDoubleClicked:
+ {
+ manager.setSelectedFileIndices([row]);
+ openFilesButton.clicked();
+ }
OldControls.TableViewColumn
{
diff --git a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py
index 93e24a0651..69163f9cdf 100644
--- a/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py
+++ b/plugins/DigitalLibrary/src/DFFileExportAndUploadManager.py
@@ -2,6 +2,7 @@
# Cura is released under the terms of the LGPLv3 or higher.
import json
import threading
+from json import JSONDecodeError
from typing import List, Dict, Any, Callable, Union, Optional
from PyQt5.QtCore import QUrl
@@ -43,7 +44,7 @@ class DFFileExportAndUploadManager:
self._library_project_id = library_project_id # type: str
self._library_project_name = library_project_name # type: str
self._file_name = file_name # type: str
-
+ self._upload_jobs = [] # type: List[ExportFileJob]
self._formats = formats # type: List[str]
self._api = DigitalFactoryApiClient(application = CuraApplication.getInstance(), on_error = lambda error: Logger.log("e", str(error)))
@@ -80,6 +81,8 @@ class DFFileExportAndUploadManager:
)
self._generic_success_message.actionTriggered.connect(self._onMessageActionTriggered)
+
+
def _onCuraProjectFileExported(self, job: ExportFileJob) -> None:
"""Handler for when the DF Library workspace file (3MF) has been created locally.
@@ -271,7 +274,11 @@ class DFFileExportAndUploadManager:
def extractErrorTitle(reply_body: Optional[str]) -> str:
error_title = ""
if reply_body:
- reply_dict = json.loads(reply_body)
+ try:
+ reply_dict = json.loads(reply_body)
+ except JSONDecodeError:
+ Logger.logException("w", "Unable to extract title from reply body")
+ return error_title
if "errors" in reply_dict and len(reply_dict["errors"]) >= 1 and "title" in reply_dict["errors"][0]:
error_title = reply_dict["errors"][0]["title"]
return error_title
@@ -313,8 +320,13 @@ class DFFileExportAndUploadManager:
QDesktopServices.openUrl(QUrl(project_url))
message.hide()
+ def start(self) -> None:
+ for job in self._upload_jobs:
+ job.start()
+
def initializeFileUploadJobMetadata(self) -> Dict[str, Any]:
metadata = {}
+ self._upload_jobs = []
if "3mf" in self._formats and "3mf" in self._file_handlers and self._file_handlers["3mf"]:
filename_3mf = self._file_name + ".3mf"
metadata[filename_3mf] = {
@@ -335,7 +347,7 @@ class DFFileExportAndUploadManager:
}
job_3mf = ExportFileJob(self._file_handlers["3mf"], self._nodes, self._file_name, "3mf")
job_3mf.finished.connect(self._onCuraProjectFileExported)
- job_3mf.start()
+ self._upload_jobs.append(job_3mf)
if "ufp" in self._formats and "ufp" in self._file_handlers and self._file_handlers["ufp"]:
filename_ufp = self._file_name + ".ufp"
@@ -357,5 +369,5 @@ class DFFileExportAndUploadManager:
}
job_ufp = ExportFileJob(self._file_handlers["ufp"], self._nodes, self._file_name, "ufp")
job_ufp.finished.connect(self._onPrintFileExported)
- job_ufp.start()
+ self._upload_jobs.append(job_ufp)
return metadata
diff --git a/plugins/DigitalLibrary/src/DigitalFactoryController.py b/plugins/DigitalLibrary/src/DigitalFactoryController.py
index 33fcc506e7..352a8c70f2 100644
--- a/plugins/DigitalLibrary/src/DigitalFactoryController.py
+++ b/plugins/DigitalLibrary/src/DigitalFactoryController.py
@@ -385,6 +385,11 @@ class DigitalFactoryController(QObject):
def _applicationInitializationFinished(self) -> None:
self._supported_file_types = self._application.getInstance().getMeshFileHandler().getSupportedFileTypesRead()
+ # Although Cura supports these, it's super confusing in this context to show them.
+ for extension in ["jpg", "jpeg", "png", "bmp", "gif"]:
+ if extension in self._supported_file_types:
+ del self._supported_file_types[extension]
+
@pyqtSlot()
def openSelectedFiles(self) -> None:
""" Downloads, then opens all files selected in the Qt frontend open dialog.
@@ -541,6 +546,7 @@ class DigitalFactoryController(QObject):
on_upload_success = self.uploadFileSuccess.emit,
on_upload_finished = self.uploadFileFinished.emit,
on_upload_progress = self.uploadFileProgress.emit)
+ self.file_upload_manager.start()
# Save the project id to make sure it will be preselected the next time the user opens the save dialog
self._current_workspace_information.setEntryToStore("digital_factory", "library_project_id", library_project_id)
diff --git a/plugins/DigitalLibrary/src/DigitalFactoryFileModel.py b/plugins/DigitalLibrary/src/DigitalFactoryFileModel.py
index 718bd11cd2..535cce0e8f 100644
--- a/plugins/DigitalLibrary/src/DigitalFactoryFileModel.py
+++ b/plugins/DigitalLibrary/src/DigitalFactoryFileModel.py
@@ -40,6 +40,7 @@ class DigitalFactoryFileModel(ListModel):
def setFiles(self, df_files_in_project: List[DigitalFactoryFileResponse]) -> None:
if self._files == df_files_in_project:
return
+ self.clear()
self._files = df_files_in_project
self._update()
diff --git a/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py b/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py
index 30c04c7177..d76774cab1 100644
--- a/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py
+++ b/plugins/DigitalLibrary/src/DigitalFactoryProjectModel.py
@@ -21,7 +21,7 @@ class DigitalFactoryProjectModel(ListModel):
dfProjectModelChanged = pyqtSignal()
- def __init__(self, parent = None):
+ def __init__(self, parent = None) -> None:
super().__init__(parent)
self.addRoleName(self.DisplayNameRole, "displayName")
self.addRoleName(self.LibraryProjectIdRole, "libraryProjectId")
diff --git a/plugins/DigitalLibrary/tests/TestDFFileExportAndUploadManager.py b/plugins/DigitalLibrary/tests/TestDFFileExportAndUploadManager.py
new file mode 100644
index 0000000000..2fb0ae4142
--- /dev/null
+++ b/plugins/DigitalLibrary/tests/TestDFFileExportAndUploadManager.py
@@ -0,0 +1,48 @@
+from unittest.mock import MagicMock, patch
+
+import pytest
+from src.DFFileExportAndUploadManager import DFFileExportAndUploadManager
+
+
+@pytest.fixture
+def upload_manager():
+ file_handler = MagicMock(name = "file_handler")
+ file_handler.getSupportedFileTypesWrite = MagicMock(return_value = [{
+ "id": "test",
+ "extension": ".3mf",
+ "description": "nope",
+ "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml",
+ "mode": "binary",
+ "hide_in_file_dialog": True,
+ }])
+ node = MagicMock(name = "SceneNode")
+ application = MagicMock(name = "CuraApplication")
+ with patch("cura.CuraApplication.CuraApplication.getInstance", MagicMock(return_value = application)):
+ return DFFileExportAndUploadManager(file_handlers = {"3mf": file_handler},
+ nodes = [node],
+ library_project_id = "test_library_project_id",
+ library_project_name = "test_library_project_name",
+ file_name = "file_name",
+ formats = ["3mf"],
+ on_upload_error = MagicMock(),
+ on_upload_success = MagicMock(),
+ on_upload_finished = MagicMock(),
+ on_upload_progress = MagicMock())
+
+
+@pytest.mark.parametrize("input,expected_result",
+ [("", ""),
+ ("invalid json! {}", ""),
+ ("{\"errors\": [{}]}", ""),
+ ("{\"errors\": [{\"title\": \"some title\"}]}", "some title")])
+def test_extractErrorTitle(upload_manager, input, expected_result):
+ assert upload_manager.extractErrorTitle(input) == expected_result
+
+
+def test_exportJobError(upload_manager):
+ mocked_application = MagicMock()
+ with patch("UM.Application.Application.getInstance", MagicMock(return_value = mocked_application)):
+ upload_manager._onJobExportError("file_name.3mf")
+
+ # Ensure that message was displayed
+ mocked_application.showMessageSignal.emit.assert_called_once()
diff --git a/plugins/DigitalLibrary/tests/TestDigitalFactoryFileModel.py b/plugins/DigitalLibrary/tests/TestDigitalFactoryFileModel.py
new file mode 100644
index 0000000000..7817d03516
--- /dev/null
+++ b/plugins/DigitalLibrary/tests/TestDigitalFactoryFileModel.py
@@ -0,0 +1,73 @@
+from pathlib import Path
+
+from src.DigitalFactoryFileModel import DigitalFactoryFileModel
+from src.DigitalFactoryFileResponse import DigitalFactoryFileResponse
+
+
+file_1 = DigitalFactoryFileResponse(client_id = "client_id_1",
+ content_type = "zomg",
+ file_name = "file_1.3mf",
+ file_id = "file_id_1",
+ library_project_id = "project_id_1",
+ status = "test",
+ user_id = "user_id_1",
+ username = "username_1",
+ uploaded_at = "2021-04-07T10:33:25.000Z")
+
+file_2 = DigitalFactoryFileResponse(client_id ="client_id_2",
+ content_type = "zomg",
+ file_name = "file_2.3mf",
+ file_id = "file_id_2",
+ library_project_id = "project_id_2",
+ status = "test",
+ user_id = "user_id_2",
+ username = "username_2",
+ uploaded_at = "2021-02-06T09:33:22.000Z")
+
+file_wtf = DigitalFactoryFileResponse(client_id ="client_id_1",
+ content_type = "zomg",
+ file_name = "file_3.wtf",
+ file_id = "file_id_3",
+ library_project_id = "project_id_1",
+ status = "test",
+ user_id = "user_id_1",
+ username = "username_1",
+ uploaded_at = "2021-04-06T12:33:25.000Z")
+
+
+def test_setFiles():
+ model = DigitalFactoryFileModel()
+
+ assert model.count == 0
+
+ model.setFiles([file_1, file_2])
+ assert model.count == 2
+
+ assert model.getItem(0)["fileName"] == "file_1.3mf"
+ assert model.getItem(1)["fileName"] == "file_2.3mf"
+
+
+def test_clearProjects():
+ model = DigitalFactoryFileModel()
+ model.setFiles([file_1, file_2])
+ model.clearFiles()
+ assert model.count == 0
+
+
+def test_setProjectMultipleTimes():
+ model = DigitalFactoryFileModel()
+ model.setFiles([file_1, file_2])
+ model.setFiles([file_2])
+ assert model.count == 1
+ assert model.getItem(0)["fileName"] == "file_2.3mf"
+
+
+def test_setFilter():
+ model = DigitalFactoryFileModel()
+
+ model.setFiles([file_1, file_2, file_wtf])
+ model.setFilters({"file_name": lambda x: Path(x).suffix[1:].lower() in ["3mf"]})
+ assert model.count == 2
+
+ model.clearFilters()
+ assert model.count == 3
diff --git a/plugins/DigitalLibrary/tests/TestDigitalFactoryProjectModel.py b/plugins/DigitalLibrary/tests/TestDigitalFactoryProjectModel.py
new file mode 100644
index 0000000000..890f62f3f6
--- /dev/null
+++ b/plugins/DigitalLibrary/tests/TestDigitalFactoryProjectModel.py
@@ -0,0 +1,55 @@
+
+from src.DigitalFactoryProjectModel import DigitalFactoryProjectModel
+from src.DigitalFactoryProjectResponse import DigitalFactoryProjectResponse
+
+
+project_1 = DigitalFactoryProjectResponse(library_project_id = "omg",
+ display_name = "zomg",
+ username = "nope",
+ organization_shared = True)
+
+project_2 = DigitalFactoryProjectResponse(library_project_id = "omg2",
+ display_name = "zomg2",
+ username = "nope",
+ organization_shared = False)
+
+
+def test_setProjects():
+ model = DigitalFactoryProjectModel()
+
+ assert model.count == 0
+
+ model.setProjects([project_1, project_2])
+ assert model.count == 2
+
+ assert model.getItem(0)["displayName"] == "zomg"
+ assert model.getItem(1)["displayName"] == "zomg2"
+
+
+def test_clearProjects():
+ model = DigitalFactoryProjectModel()
+ model.setProjects([project_1, project_2])
+ model.clearProjects()
+ assert model.count == 0
+
+
+def test_setProjectMultipleTimes():
+ model = DigitalFactoryProjectModel()
+ model.setProjects([project_1, project_2])
+ model.setProjects([project_2])
+ assert model.count == 1
+ assert model.getItem(0)["displayName"] == "zomg2"
+
+
+def test_extendProjects():
+ model = DigitalFactoryProjectModel()
+
+ assert model.count == 0
+
+ model.setProjects([project_1])
+ assert model.count == 1
+
+ model.extendProjects([project_2])
+ assert model.count == 2
+ assert model.getItem(0)["displayName"] == "zomg"
+ assert model.getItem(1)["displayName"] == "zomg2"
diff --git a/plugins/DigitalLibrary/tests/TestDigitalLibraryApiClient.py b/plugins/DigitalLibrary/tests/TestDigitalLibraryApiClient.py
new file mode 100644
index 0000000000..ba0a0b15b4
--- /dev/null
+++ b/plugins/DigitalLibrary/tests/TestDigitalLibraryApiClient.py
@@ -0,0 +1,86 @@
+from unittest.mock import MagicMock
+
+import pytest
+
+from cura.CuraApplication import CuraApplication
+from src.DigitalFactoryApiClient import DigitalFactoryApiClient
+from src.PaginationManager import PaginationManager
+
+
+@pytest.fixture
+def application():
+ app = MagicMock(spec=CuraApplication, name = "Mocked Cura Application")
+ return app
+
+
+@pytest.fixture
+def pagination_manager():
+ manager = MagicMock(name = "Mocked Pagination Manager")
+ return manager
+
+
+@pytest.fixture
+def api_client(application, pagination_manager):
+ api_client = DigitalFactoryApiClient(application, MagicMock())
+ api_client._projects_pagination_mgr = pagination_manager
+ return api_client
+
+
+def test_getProjectsFirstPage(api_client):
+ # setup
+ http_manager = MagicMock()
+ api_client._http = http_manager
+ pagination_manager = api_client._projects_pagination_mgr
+ pagination_manager.limit = 20
+
+ finished_callback = MagicMock()
+ failed_callback = MagicMock()
+
+ # Call
+ api_client.getProjectsFirstPage(on_finished = finished_callback, failed = failed_callback)
+
+ # Asserts
+ pagination_manager.reset.assert_called_once() # Should be called since we asked for new set of projects
+ http_manager.get.assert_called_once()
+ args = http_manager.get.call_args_list[0]
+
+ # Ensure that it's called with the right limit
+ assert args[0][0] == "https://api.ultimaker.com/cura/v1/projects?limit=20"
+
+ # Change the limit & try again
+ http_manager.get.reset_mock()
+ pagination_manager.limit = 80
+ api_client.getProjectsFirstPage(on_finished = finished_callback, failed = failed_callback)
+ args = http_manager.get.call_args_list[0]
+
+ # Ensure that it's called with the right limit
+ assert args[0][0] == "https://api.ultimaker.com/cura/v1/projects?limit=80"
+
+
+def test_getMoreProjects_noNewProjects(api_client):
+ api_client.hasMoreProjectsToLoad = MagicMock(return_value = False)
+ http_manager = MagicMock()
+ api_client._http = http_manager
+
+ finished_callback = MagicMock()
+ failed_callback = MagicMock()
+ api_client.getMoreProjects(finished_callback, failed_callback)
+
+ http_manager.get.assert_not_called()
+
+
+def test_getMoreProjects_hasNewProjects(api_client):
+ api_client.hasMoreProjectsToLoad = MagicMock(return_value = True)
+ http_manager = MagicMock()
+ api_client._http = http_manager
+
+ finished_callback = MagicMock()
+ failed_callback = MagicMock()
+ api_client.getMoreProjects(finished_callback, failed_callback)
+
+ http_manager.get.assert_called_once()
+
+
+def test_clear(api_client):
+ api_client.clear()
+ api_client._projects_pagination_mgr.reset.assert_called_once()
diff --git a/plugins/DigitalLibrary/tests/conftest.py b/plugins/DigitalLibrary/tests/conftest.py
new file mode 100644
index 0000000000..2afda2a171
--- /dev/null
+++ b/plugins/DigitalLibrary/tests/conftest.py
@@ -0,0 +1,5 @@
+
+# Ensure that the importing for all tests work
+import sys
+import os
+sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), ".."))
diff --git a/plugins/FirmwareUpdateChecker/plugin.json b/plugins/FirmwareUpdateChecker/plugin.json
index 84f46b52c6..bc46b95b66 100644
--- a/plugins/FirmwareUpdateChecker/plugin.json
+++ b/plugins/FirmwareUpdateChecker/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Checks for firmware updates.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/FirmwareUpdater/plugin.json b/plugins/FirmwareUpdater/plugin.json
index 974434d6e5..b1eb5c24fe 100644
--- a/plugins/FirmwareUpdater/plugin.json
+++ b/plugins/FirmwareUpdater/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides a machine actions for updating firmware.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/GCodeGzReader/plugin.json b/plugins/GCodeGzReader/plugin.json
index 690defe6d6..afb6a240ff 100644
--- a/plugins/GCodeGzReader/plugin.json
+++ b/plugins/GCodeGzReader/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Reads g-code from a compressed archive.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/GCodeGzWriter/plugin.json b/plugins/GCodeGzWriter/plugin.json
index 9c7a8367ef..3ca1a9ff41 100644
--- a/plugins/GCodeGzWriter/plugin.json
+++ b/plugins/GCodeGzWriter/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Writes g-code to a compressed archive.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/GCodeProfileReader/plugin.json b/plugins/GCodeProfileReader/plugin.json
index 4054e10df7..d26ca2d56c 100644
--- a/plugins/GCodeProfileReader/plugin.json
+++ b/plugins/GCodeProfileReader/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides support for importing profiles from g-code files.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/GCodeReader/plugin.json b/plugins/GCodeReader/plugin.json
index ee3b215182..c0c3669668 100644
--- a/plugins/GCodeReader/plugin.json
+++ b/plugins/GCodeReader/plugin.json
@@ -3,6 +3,6 @@
"author": "Victor Larchenko, Ultimaker B.V.",
"version": "1.0.1",
"description": "Allows loading and displaying G-code files.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/GCodeWriter/plugin.json b/plugins/GCodeWriter/plugin.json
index 2a00cb5980..8a4138f4e1 100644
--- a/plugins/GCodeWriter/plugin.json
+++ b/plugins/GCodeWriter/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Writes g-code to a file.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/ImageReader/plugin.json b/plugins/ImageReader/plugin.json
index aec2a0a24e..e0d23a97fe 100644
--- a/plugins/ImageReader/plugin.json
+++ b/plugins/ImageReader/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Enables ability to generate printable geometry from 2D image files.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/LegacyProfileReader/plugin.json b/plugins/LegacyProfileReader/plugin.json
index 811c5fc6c4..bab8f4f6b8 100644
--- a/plugins/LegacyProfileReader/plugin.json
+++ b/plugins/LegacyProfileReader/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides support for importing profiles from legacy Cura versions.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/MachineSettingsAction/plugin.json b/plugins/MachineSettingsAction/plugin.json
index 881ed89523..97805d7380 100644
--- a/plugins/MachineSettingsAction/plugin.json
+++ b/plugins/MachineSettingsAction/plugin.json
@@ -3,6 +3,6 @@
"author": "fieldOfView, Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/ModelChecker/plugin.json b/plugins/ModelChecker/plugin.json
index 7444fa2008..d2dd1f7de8 100644
--- a/plugins/ModelChecker/plugin.json
+++ b/plugins/ModelChecker/plugin.json
@@ -2,7 +2,7 @@
"name": "Model Checker",
"author": "Ultimaker B.V.",
"version": "1.0.1",
- "api": "7.5.0",
+ "api": "7.6.0",
"description": "Checks models and print configuration for possible printing issues and give suggestions.",
"i18n-catalog": "cura"
}
diff --git a/plugins/MonitorStage/plugin.json b/plugins/MonitorStage/plugin.json
index de47e872a0..ed0c815f37 100644
--- a/plugins/MonitorStage/plugin.json
+++ b/plugins/MonitorStage/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides a monitor stage in Cura.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
\ No newline at end of file
diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py b/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py
index 445f7ff676..401396f2b8 100644
--- a/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py
+++ b/plugins/PerObjectSettingsTool/PerObjectSettingVisibilityHandler.py
@@ -73,38 +73,40 @@ class PerObjectSettingVisibilityHandler(UM.Settings.Models.SettingVisibilityHand
# Add all instances that are not added, but are in visibility list
for item in visible:
- if settings.getInstance(item) is None: # Setting was not added already.
- definition = self._stack.getSettingDefinition(item)
- if definition:
- new_instance = SettingInstance(definition, settings)
+ if settings.getInstance(item) is not None: # Setting was added already.
+ continue
+ definition = self._stack.getSettingDefinition(item)
+ if not definition:
+ Logger.log("w", f"Unable to add instance ({item}) to per-object visibility because we couldn't find the matching definition.")
+ continue
+
+ new_instance = SettingInstance(definition, settings)
+ stack_nr = -1
+ stack = None
+ # Check from what stack we should copy the raw property of the setting from.
+ if self._stack.getProperty("machine_extruder_count", "value") > 1:
+ if definition.limit_to_extruder != "-1":
+ # A limit to extruder function was set and it's a multi extrusion machine. Check what stack we do need to use.
+ stack_nr = str(int(round(float(self._stack.getProperty(item, "limit_to_extruder")))))
+
+ # Check if the found stack_number is in the extruder list of extruders.
+ if stack_nr not in ExtruderManager.getInstance().extruderIds and self._stack.getProperty("extruder_nr", "value") is not None:
stack_nr = -1
- stack = None
- # Check from what stack we should copy the raw property of the setting from.
- if self._stack.getProperty("machine_extruder_count", "value") > 1:
- if definition.limit_to_extruder != "-1":
- # A limit to extruder function was set and it's a multi extrusion machine. Check what stack we do need to use.
- stack_nr = str(int(round(float(self._stack.getProperty(item, "limit_to_extruder")))))
- # Check if the found stack_number is in the extruder list of extruders.
- if stack_nr not in ExtruderManager.getInstance().extruderIds and self._stack.getProperty("extruder_nr", "value") is not None:
- stack_nr = -1
+ # Use the found stack number to get the right stack to copy the value from.
+ if stack_nr in ExtruderManager.getInstance().extruderIds:
+ stack = ContainerRegistry.getInstance().findContainerStacks(id = ExtruderManager.getInstance().extruderIds[stack_nr])[0]
+ else:
+ stack = self._stack
- # Use the found stack number to get the right stack to copy the value from.
- if stack_nr in ExtruderManager.getInstance().extruderIds:
- stack = ContainerRegistry.getInstance().findContainerStacks(id = ExtruderManager.getInstance().extruderIds[stack_nr])[0]
- else:
- stack = self._stack
-
- # Use the raw property to set the value (so the inheritance doesn't break)
- if stack is not None:
- new_instance.setProperty("value", stack.getRawProperty(item, "value"))
- else:
- new_instance.setProperty("value", None)
- new_instance.resetState() # Ensure that the state is not seen as a user state.
- settings.addInstance(new_instance)
- visibility_changed = True
- else:
- Logger.log("w", "Unable to add instance (%s) to per-object visibility because we couldn't find the matching definition", item)
+ # Use the raw property to set the value (so the inheritance doesn't break)
+ if stack is not None:
+ new_instance.setProperty("value", stack.getRawProperty(item, "value"))
+ else:
+ new_instance.setProperty("value", None)
+ new_instance.resetState() # Ensure that the state is not seen as a user state.
+ settings.addInstance(new_instance)
+ visibility_changed = True
if visibility_changed:
self.visibilityChanged.emit()
diff --git a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml
index 05507fc4a2..7ab4bdb1a1 100644
--- a/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml
+++ b/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml
@@ -1,4 +1,4 @@
-// Copyright (c) 2017 Ultimaker B.V.
+// Copyright (c) 2021 Ultimaker B.V.
// Uranium is released under the terms of the LGPLv3 or higher.
import QtQuick 2.2
@@ -136,10 +136,12 @@ Item
}
- ComboBox
+ Cura.ComboBox
{
id: infillOnlyComboBox
width: parent.width / 2 - UM.Theme.getSize("default_margin").width
+ height: UM.Theme.getSize("setting_control").height
+ textRole: "text"
model: ListModel
{
diff --git a/plugins/PerObjectSettingsTool/plugin.json b/plugins/PerObjectSettingsTool/plugin.json
index 2d9faabb67..15d53d6c06 100644
--- a/plugins/PerObjectSettingsTool/plugin.json
+++ b/plugins/PerObjectSettingsTool/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides the Per Model Settings.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/PostProcessingPlugin/__init__.py b/plugins/PostProcessingPlugin/__init__.py
index 019627ebd5..4b3045021f 100644
--- a/plugins/PostProcessingPlugin/__init__.py
+++ b/plugins/PostProcessingPlugin/__init__.py
@@ -1,14 +1,6 @@
# Copyright (c) 2020 Jaime van Kessel, Ultimaker B.V.
# The PostProcessingPlugin is released under the terms of the AGPLv3 or higher.
-# Workaround for a race condition on certain systems where there
-# is a race condition between Arcus and PyQt. Importing Arcus
-# first seems to prevent Sip from going into a state where it
-# tries to create PyQt objects on a non-main thread.
-import Arcus # @UnusedImport
-import Savitar # @UnusedImport
-import pynest2d # @UnusedImport
-
from . import PostProcessingPlugin
diff --git a/plugins/PostProcessingPlugin/plugin.json b/plugins/PostProcessingPlugin/plugin.json
index c44c6a74e4..da0479f8e8 100644
--- a/plugins/PostProcessingPlugin/plugin.json
+++ b/plugins/PostProcessingPlugin/plugin.json
@@ -2,7 +2,7 @@
"name": "Post Processing",
"author": "Ultimaker",
"version": "2.2.1",
- "api": "7.5.0",
+ "api": "7.6.0",
"description": "Extension that allows for user created scripts for post processing",
"catalog": "cura"
}
\ No newline at end of file
diff --git a/plugins/PostProcessingPlugin/scripts/FilamentChange.py b/plugins/PostProcessingPlugin/scripts/FilamentChange.py
index 74b9687f8c..17ff045b8d 100644
--- a/plugins/PostProcessingPlugin/scripts/FilamentChange.py
+++ b/plugins/PostProcessingPlugin/scripts/FilamentChange.py
@@ -1,6 +1,9 @@
-# Copyright (c) 2019 Ultimaker B.V.
+# Copyright (c) 2021 Ultimaker B.V.
# The PostProcessingPlugin is released under the terms of the AGPLv3 or higher.
+# Modification 06.09.2020
+# add checkbox, now you can choose and use configuration from the firmware itself.
+
from typing import List
from ..Script import Script
@@ -13,7 +16,7 @@ class FilamentChange(Script):
def getSettingDataString(self):
return """{
- "name":"Filament Change",
+ "name": "Filament Change",
"key": "FilamentChange",
"metadata": {},
"version": 2,
@@ -27,14 +30,21 @@ class FilamentChange(Script):
"type": "str",
"default_value": "1"
},
-
+ "firmware_config":
+ {
+ "label": "Use Firmware Configuration",
+ "description": "Use the settings in your firmware, or customise the parameters of the filament change here.",
+ "type": "bool",
+ "default_value": false
+ },
"initial_retract":
{
"label": "Initial Retraction",
"description": "Initial filament retraction distance. The filament will be retracted with this amount before moving the nozzle away from the ongoing print.",
"unit": "mm",
"type": "float",
- "default_value": 30.0
+ "default_value": 30.0,
+ "enabled": "not firmware_config"
},
"later_retract":
{
@@ -42,7 +52,8 @@ class FilamentChange(Script):
"description": "Later filament retraction distance for removal. The filament will be retracted all the way out of the printer so that you can change the filament.",
"unit": "mm",
"type": "float",
- "default_value": 300.0
+ "default_value": 300.0,
+ "enabled": "not firmware_config"
},
"x_position":
{
@@ -50,7 +61,8 @@ class FilamentChange(Script):
"description": "Extruder X position. The print head will move here for filament change.",
"unit": "mm",
"type": "float",
- "default_value": 0
+ "default_value": 0,
+ "enabled": "not firmware_config"
},
"y_position":
{
@@ -58,7 +70,17 @@ class FilamentChange(Script):
"description": "Extruder Y position. The print head will move here for filament change.",
"unit": "mm",
"type": "float",
- "default_value": 0
+ "default_value": 0,
+ "enabled": "not firmware_config"
+ },
+ "z_position":
+ {
+ "label": "Z Position (relative)",
+ "description": "Extruder relative Z position. Move the print head up for filament change.",
+ "unit": "mm",
+ "type": "float",
+ "default_value": 0,
+ "minimum_value": 0
}
}
}"""
@@ -74,20 +96,26 @@ class FilamentChange(Script):
later_retract = self.getSettingValueByKey("later_retract")
x_pos = self.getSettingValueByKey("x_position")
y_pos = self.getSettingValueByKey("y_position")
+ z_pos = self.getSettingValueByKey("z_position")
+ firmware_config = self.getSettingValueByKey("firmware_config")
color_change = "M600"
- if initial_retract is not None and initial_retract > 0.:
- color_change = color_change + (" E%.2f" % initial_retract)
+ if not firmware_config:
+ if initial_retract is not None and initial_retract > 0.:
+ color_change = color_change + (" E%.2f" % initial_retract)
- if later_retract is not None and later_retract > 0.:
- color_change = color_change + (" L%.2f" % later_retract)
+ if later_retract is not None and later_retract > 0.:
+ color_change = color_change + (" L%.2f" % later_retract)
- if x_pos is not None:
- color_change = color_change + (" X%.2f" % x_pos)
-
- if y_pos is not None:
- color_change = color_change + (" Y%.2f" % y_pos)
+ if x_pos is not None:
+ color_change = color_change + (" X%.2f" % x_pos)
+
+ if y_pos is not None:
+ color_change = color_change + (" Y%.2f" % y_pos)
+
+ if z_pos is not None and z_pos > 0.:
+ color_change = color_change + (" Z%.2f" % z_pos)
color_change = color_change + " ; Generated by FilamentChange plugin\n"
@@ -101,4 +129,4 @@ class FilamentChange(Script):
if 0 < layer_num < len(data):
data[layer_num] = color_change + data[layer_num]
- return data
\ No newline at end of file
+ return data
diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py
index eea4d38560..a9e570e0cb 100644
--- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py
+++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py
@@ -387,7 +387,7 @@ class PauseAtHeight(Script):
#Retraction
prepend_gcode += self.putValue(M = 83) + " ; switch to relative E values for any needed retraction\n"
if retraction_amount != 0:
- prepend_gcode += self.putValue(G = 1, E = retraction_amount, F = 6000) + "\n"
+ prepend_gcode += self.putValue(G = 1, E = -retraction_amount, F = 6000) + "\n"
#Move the head away
prepend_gcode += self.putValue(G = 1, Z = current_z + 1, F = 300) + " ; move up a millimeter to get out of the way\n"
@@ -507,7 +507,15 @@ class PauseAtHeight(Script):
else:
Logger.log("w", "No previous feedrate found in gcode, feedrate for next layer(s) might be incorrect")
- prepend_gcode += self.putValue(M = 82) + " ; switch back to absolute E values\n"
+ extrusion_mode_string = "absolute"
+ extrusion_mode_numeric = 82
+
+ relative_extrusion = Application.getInstance().getGlobalContainerStack().getProperty("relative_extrusion", "value")
+ if relative_extrusion:
+ extrusion_mode_string = "relative"
+ extrusion_mode_numeric = 83
+
+ prepend_gcode += self.putValue(M = extrusion_mode_numeric) + " ; switch back to " + extrusion_mode_string + " E values\n"
# reset extrude value to pre pause value
prepend_gcode += self.putValue(G = 92, E = current_e) + "\n"
diff --git a/plugins/PrepareStage/plugin.json b/plugins/PrepareStage/plugin.json
index e575d78951..e584c9cd83 100644
--- a/plugins/PrepareStage/plugin.json
+++ b/plugins/PrepareStage/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides a prepare stage in Cura.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
\ No newline at end of file
diff --git a/plugins/PreviewStage/plugin.json b/plugins/PreviewStage/plugin.json
index b12784bb7c..517a1851ae 100644
--- a/plugins/PreviewStage/plugin.json
+++ b/plugins/PreviewStage/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides a preview stage in Cura.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
\ No newline at end of file
diff --git a/plugins/RemovableDriveOutputDevice/plugin.json b/plugins/RemovableDriveOutputDevice/plugin.json
index d914afc717..0cc4adcb10 100644
--- a/plugins/RemovableDriveOutputDevice/plugin.json
+++ b/plugins/RemovableDriveOutputDevice/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"description": "Provides removable drive hotplugging and writing support.",
"version": "1.0.1",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/SentryLogger/plugin.json b/plugins/SentryLogger/plugin.json
index e0f386adf6..668912072c 100644
--- a/plugins/SentryLogger/plugin.json
+++ b/plugins/SentryLogger/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Logs certain events so that they can be used by the crash reporter",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py
index 506bc5a01d..2754fb5d94 100644
--- a/plugins/SimulationView/SimulationPass.py
+++ b/plugins/SimulationView/SimulationPass.py
@@ -65,7 +65,7 @@ class SimulationPass(RenderPass):
self._layer_shader.setUniformValue("u_active_extruder", float(max(0, self._extruder_manager.activeExtruderIndex)))
if not self._compatibility_mode:
self._layer_shader.setUniformValue("u_starts_color", Color(*Application.getInstance().getTheme().getColor("layerview_starts").getRgb()))
-
+
if self._layer_view:
self._layer_shader.setUniformValue("u_max_feedrate", self._layer_view.getMaxFeedrate())
self._layer_shader.setUniformValue("u_min_feedrate", self._layer_view.getMinFeedrate())
@@ -73,6 +73,8 @@ class SimulationPass(RenderPass):
self._layer_shader.setUniformValue("u_min_thickness", self._layer_view.getMinThickness())
self._layer_shader.setUniformValue("u_max_line_width", self._layer_view.getMaxLineWidth())
self._layer_shader.setUniformValue("u_min_line_width", self._layer_view.getMinLineWidth())
+ self._layer_shader.setUniformValue("u_max_flow_rate", self._layer_view.getMaxFlowRate())
+ self._layer_shader.setUniformValue("u_min_flow_rate", self._layer_view.getMinFlowRate())
self._layer_shader.setUniformValue("u_layer_view_type", self._layer_view.getSimulationViewType())
self._layer_shader.setUniformValue("u_extruder_opacity", self._layer_view.getExtruderOpacities())
self._layer_shader.setUniformValue("u_show_travel_moves", self._layer_view.getShowTravelMoves())
@@ -86,6 +88,8 @@ class SimulationPass(RenderPass):
self._layer_shader.setUniformValue("u_min_feedrate", 0)
self._layer_shader.setUniformValue("u_max_thickness", 1)
self._layer_shader.setUniformValue("u_min_thickness", 0)
+ self._layer_shader.setUniformValue("u_max_flow_rate", 1)
+ self._layer_shader.setUniformValue("u_min_flow_rate", 0)
self._layer_shader.setUniformValue("u_max_line_width", 1)
self._layer_shader.setUniformValue("u_min_line_width", 0)
self._layer_shader.setUniformValue("u_layer_view_type", 1)
@@ -174,9 +178,9 @@ class SimulationPass(RenderPass):
self._switching_layers = True
# The first line does not have a previous line: add a MoveCombingType in front for start detection
- # this way the first start of the layer can also be drawn
+ # this way the first start of the layer can also be drawn
prev_line_types = numpy.concatenate([numpy.asarray([LayerPolygon.MoveCombingType], dtype = numpy.float32), layer_data._attributes["line_types"]["value"]])
- # Remove the last element
+ # Remove the last element
prev_line_types = prev_line_types[0:layer_data._attributes["line_types"]["value"].size]
layer_data._attributes["prev_line_types"] = {'opengl_type': 'float', 'value': prev_line_types, 'opengl_name': 'a_prev_line_type'}
diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py
index 9494e42a5e..57209f2678 100644
--- a/plugins/SimulationView/SimulationView.py
+++ b/plugins/SimulationView/SimulationView.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2020 Ultimaker B.V.
+# Copyright (c) 2021 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
import sys
@@ -30,6 +30,7 @@ from UM.View.GL.ShaderProgram import ShaderProgram
from UM.i18n import i18nCatalog
from cura.CuraView import CuraView
+from cura.LayerPolygon import LayerPolygon # To distinguish line types.
from cura.Scene.ConvexHullNode import ConvexHullNode
from cura.CuraApplication import CuraApplication
@@ -93,6 +94,8 @@ class SimulationView(CuraView):
self._min_thickness = sys.float_info.max
self._max_line_width = sys.float_info.min
self._min_line_width = sys.float_info.max
+ self._min_flow_rate = sys.float_info.max
+ self._max_flow_rate = sys.float_info.min
self._global_container_stack = None # type: Optional[ContainerStack]
self._proxy = None
@@ -115,6 +118,7 @@ class SimulationView(CuraView):
Application.getInstance().getPreferences().addPreference("layerview/show_infill", True)
Application.getInstance().getPreferences().addPreference("layerview/show_starts", True)
+ self.visibleStructuresChanged.connect(self.calculateColorSchemeLimits)
self._updateWithPreferences()
self._solid_layers = int(Application.getInstance().getPreferences().getValue("view/top_layer_count"))
@@ -198,6 +202,7 @@ class SimulationView(CuraView):
if node.getMeshData() is None:
return
self.setActivity(False)
+ self.calculateColorSchemeLimits()
self.calculateMaxLayers()
self.calculateMaxPathsOnLayer(self._current_layer_num)
@@ -218,12 +223,6 @@ class SimulationView(CuraView):
def resetLayerData(self) -> None:
self._current_layer_mesh = None
self._current_layer_jumps = None
- self._max_feedrate = sys.float_info.min
- self._min_feedrate = sys.float_info.max
- self._max_thickness = sys.float_info.min
- self._min_thickness = sys.float_info.max
- self._max_line_width = sys.float_info.min
- self._min_line_width = sys.float_info.max
def beginRendering(self) -> None:
scene = self.getController().getScene()
@@ -248,58 +247,59 @@ class SimulationView(CuraView):
renderer.queueNode(node, transparent = True, shader = self._ghost_shader)
def setLayer(self, value: int) -> None:
+ """
+ Set the upper end of the range of visible layers.
+
+ If setting it below the lower end of the range, the lower end is lowered so that 1 layer stays visible.
+ :param value: The new layer number to show, 0-indexed.
+ """
if self._current_layer_num != value:
- self._current_layer_num = value
- if self._current_layer_num < 0:
- self._current_layer_num = 0
- if self._current_layer_num > self._max_layers:
- self._current_layer_num = self._max_layers
- if self._current_layer_num < self._minimum_layer_num:
- self._minimum_layer_num = self._current_layer_num
+ self._current_layer_num = min(max(value, 0), self._max_layers)
+ self._minimum_layer_num = min(self._current_layer_num, self._minimum_layer_num)
self._startUpdateTopLayers()
-
self.currentLayerNumChanged.emit()
def setMinimumLayer(self, value: int) -> None:
+ """
+ Set the lower end of the range of visible layers.
+
+ If setting it above the upper end of the range, the upper end is increased so that 1 layer stays visible.
+ :param value: The new lower end of the range of visible layers, 0-indexed.
+ """
if self._minimum_layer_num != value:
- self._minimum_layer_num = value
- if self._minimum_layer_num < 0:
- self._minimum_layer_num = 0
- if self._minimum_layer_num > self._max_layers:
- self._minimum_layer_num = self._max_layers
- if self._minimum_layer_num > self._current_layer_num:
- self._current_layer_num = self._minimum_layer_num
+ self._minimum_layer_num = min(max(value, 0), self._max_layers)
+ self._current_layer_num = max(self._current_layer_num, self._minimum_layer_num)
self._startUpdateTopLayers()
-
self.currentLayerNumChanged.emit()
def setPath(self, value: int) -> None:
+ """
+ Set the upper end of the range of visible paths on the current layer.
+
+ If setting it below the lower end of the range, the lower end is lowered so that 1 path stays visible.
+ :param value: The new path index to show, 0-indexed.
+ """
if self._current_path_num != value:
- self._current_path_num = value
- if self._current_path_num < 0:
- self._current_path_num = 0
- if self._current_path_num > self._max_paths:
- self._current_path_num = self._max_paths
- if self._current_path_num < self._minimum_path_num:
- self._minimum_path_num = self._current_path_num
+ self._current_path_num = min(max(value, 0), self._max_paths)
+ self._minimum_path_num = min(self._minimum_path_num, self._current_path_num)
self._startUpdateTopLayers()
self.currentPathNumChanged.emit()
def setMinimumPath(self, value: int) -> None:
+ """
+ Set the lower end of the range of visible paths on the current layer.
+
+ If setting it above the upper end of the range, the upper end is increased so that 1 path stays visible.
+ :param value: The new lower end of the range of visible paths, 0-indexed.
+ """
if self._minimum_path_num != value:
- self._minimum_path_num = value
- if self._minimum_path_num < 0:
- self._minimum_path_num = 0
- if self._minimum_path_num > self._max_layers:
- self._minimum_path_num = self._max_layers
- if self._minimum_path_num > self._current_path_num:
- self._current_path_num = self._minimum_path_num
+ self._minimum_path_num = min(max(value, 0), self._max_paths)
+ self._current_path_num = max(self._current_path_num, self._minimum_path_num)
self._startUpdateTopLayers()
-
self.currentPathNumChanged.emit()
def setSimulationViewType(self, layer_view_type: int) -> None:
@@ -333,37 +333,52 @@ class SimulationView(CuraView):
# If more than 16 extruders are called for, this should be converted to a sampler1d.
return Matrix(self._extruder_opacity)
- def setShowTravelMoves(self, show):
+ def setShowTravelMoves(self, show: bool) -> None:
+ if show == self._show_travel_moves:
+ return
self._show_travel_moves = show
self.currentLayerNumChanged.emit()
+ self.visibleStructuresChanged.emit()
- def getShowTravelMoves(self):
+ def getShowTravelMoves(self) -> bool:
return self._show_travel_moves
def setShowHelpers(self, show: bool) -> None:
+ if show == self._show_helpers:
+ return
self._show_helpers = show
self.currentLayerNumChanged.emit()
+ self.visibleStructuresChanged.emit()
def getShowHelpers(self) -> bool:
return self._show_helpers
def setShowSkin(self, show: bool) -> None:
+ if show == self._show_skin:
+ return
self._show_skin = show
self.currentLayerNumChanged.emit()
+ self.visibleStructuresChanged.emit()
def getShowSkin(self) -> bool:
return self._show_skin
def setShowInfill(self, show: bool) -> None:
+ if show == self._show_infill:
+ return
self._show_infill = show
self.currentLayerNumChanged.emit()
+ self.visibleStructuresChanged.emit()
def getShowInfill(self) -> bool:
return self._show_infill
def setShowStarts(self, show: bool) -> None:
+ if show == self._show_starts:
+ return
self._show_starts = show
self.currentLayerNumChanged.emit()
+ self.visibleStructuresChanged.emit()
def getShowStarts(self) -> bool:
return self._show_starts
@@ -398,12 +413,23 @@ class SimulationView(CuraView):
return 0.0 # If it's still max-float, there are no measurements. Use 0 then.
return self._min_line_width
+ def getMaxFlowRate(self) -> float:
+ return self._max_flow_rate
+
+ def getMinFlowRate(self) -> float:
+ if abs(self._min_flow_rate - sys.float_info.max) < 10: # Some lenience due to floating point rounding.
+ return 0.0 # If it's still max-float, there are no measurements. Use 0 then.
+ return self._min_flow_rate
+
def calculateMaxLayers(self) -> None:
+ """
+ Calculates number of layers, triggers signals if the number of layers changed and makes sure the top layers are
+ recalculated for legacy layer view.
+ """
scene = self.getController().getScene()
self._old_max_layers = self._max_layers
new_max_layers = -1
- """Recalculate num max layers"""
for node in DepthFirstIterator(scene.getRoot()): # type: ignore
layer_data = node.callDecoration("getLayerData")
if not layer_data:
@@ -418,19 +444,6 @@ class SimulationView(CuraView):
if len(layer_data.getLayer(layer_id).polygons) < 1:
continue
- # Store the max and min feedrates and thicknesses for display purposes
- for p in layer_data.getLayer(layer_id).polygons:
- self._max_feedrate = max(float(p.lineFeedrates.max()), self._max_feedrate)
- self._min_feedrate = min(float(p.lineFeedrates.min()), self._min_feedrate)
- self._max_line_width = max(float(p.lineWidths.max()), self._max_line_width)
- self._min_line_width = min(float(p.lineWidths.min()), self._min_line_width)
- self._max_thickness = max(float(p.lineThicknesses.max()), self._max_thickness)
- try:
- self._min_thickness = min(float(p.lineThicknesses[numpy.nonzero(p.lineThicknesses)].min()), self._min_thickness)
- except ValueError:
- # Sometimes, when importing a GCode the line thicknesses are zero and so the minimum (avoiding
- # the zero) can't be calculated
- Logger.log("i", "Min thickness can't be calculated because all the values are zero")
if max_layer_number < layer_id:
max_layer_number = layer_id
if min_layer_number > layer_id:
@@ -454,6 +467,87 @@ class SimulationView(CuraView):
self.maxLayersChanged.emit()
self._startUpdateTopLayers()
+ def calculateColorSchemeLimits(self) -> None:
+ """
+ Calculates the limits of the colour schemes, depending on the layer view data that is visible to the user.
+ """
+ # Before we start, save the old values so that we can tell if any of the spectrums need to change.
+ old_min_feedrate = self._min_feedrate
+ old_max_feedrate = self._max_feedrate
+ old_min_linewidth = self._min_line_width
+ old_max_linewidth = self._max_line_width
+ old_min_thickness = self._min_thickness
+ old_max_thickness = self._max_thickness
+ old_min_flow_rate = self._min_flow_rate
+ old_max_flow_rate = self._max_flow_rate
+
+ self._min_feedrate = sys.float_info.max
+ self._max_feedrate = sys.float_info.min
+ self._min_line_width = sys.float_info.max
+ self._max_line_width = sys.float_info.min
+ self._min_thickness = sys.float_info.max
+ self._max_thickness = sys.float_info.min
+ self._min_flow_rate = sys.float_info.max
+ self._max_flow_rate = sys.float_info.min
+
+ # The colour scheme is only influenced by the visible lines, so filter the lines by if they should be visible.
+ visible_line_types = []
+ if self.getShowSkin(): # Actually "shell".
+ visible_line_types.append(LayerPolygon.SkinType)
+ visible_line_types.append(LayerPolygon.Inset0Type)
+ visible_line_types.append(LayerPolygon.InsetXType)
+ if self.getShowInfill():
+ visible_line_types.append(LayerPolygon.InfillType)
+ if self.getShowHelpers():
+ visible_line_types.append(LayerPolygon.PrimeTowerType)
+ visible_line_types.append(LayerPolygon.SkirtType)
+ visible_line_types.append(LayerPolygon.SupportType)
+ visible_line_types.append(LayerPolygon.SupportInfillType)
+ visible_line_types.append(LayerPolygon.SupportInterfaceType)
+ visible_line_types_with_extrusion = visible_line_types.copy() # Copy before travel moves are added
+ if self.getShowTravelMoves():
+ visible_line_types.append(LayerPolygon.MoveCombingType)
+ visible_line_types.append(LayerPolygon.MoveRetractionType)
+
+ for node in DepthFirstIterator(self.getController().getScene().getRoot()):
+ layer_data = node.callDecoration("getLayerData")
+ if not layer_data:
+ continue
+
+ for layer_index in layer_data.getLayers():
+ for polyline in layer_data.getLayer(layer_index).polygons:
+ is_visible = numpy.isin(polyline.types, visible_line_types)
+ visible_indices = numpy.where(is_visible)[0]
+ visible_indicies_with_extrusion = numpy.where(numpy.isin(polyline.types, visible_line_types_with_extrusion))[0]
+ if visible_indices.size == 0: # No items to take maximum or minimum of.
+ continue
+ visible_feedrates = numpy.take(polyline.lineFeedrates, visible_indices)
+ visible_feedrates_with_extrusion = numpy.take(polyline.lineFeedrates, visible_indicies_with_extrusion)
+ visible_linewidths = numpy.take(polyline.lineWidths, visible_indices)
+ visible_linewidths_with_extrusion = numpy.take(polyline.lineWidths, visible_indicies_with_extrusion)
+ visible_thicknesses = numpy.take(polyline.lineThicknesses, visible_indices)
+ visible_thicknesses_with_extrusion = numpy.take(polyline.lineThicknesses, visible_indicies_with_extrusion)
+ self._max_feedrate = max(float(visible_feedrates.max()), self._max_feedrate)
+ if visible_feedrates_with_extrusion.size != 0:
+ flow_rates = visible_feedrates_with_extrusion * visible_linewidths_with_extrusion * visible_thicknesses_with_extrusion
+ self._min_flow_rate = min(float(flow_rates.min()), self._min_flow_rate)
+ self._max_flow_rate = max(float(flow_rates.max()), self._max_flow_rate)
+ self._min_feedrate = min(float(visible_feedrates.min()), self._min_feedrate)
+ self._max_line_width = max(float(visible_linewidths.max()), self._max_line_width)
+ self._min_line_width = min(float(visible_linewidths.min()), self._min_line_width)
+ self._max_thickness = max(float(visible_thicknesses.max()), self._max_thickness)
+ try:
+ self._min_thickness = min(float(visible_thicknesses[numpy.nonzero(visible_thicknesses)].min()), self._min_thickness)
+ except ValueError:
+ # Sometimes, when importing a GCode the line thicknesses are zero and so the minimum (avoiding the zero) can't be calculated.
+ Logger.log("w", "Min thickness can't be calculated because all the values are zero")
+
+ if old_min_feedrate != self._min_feedrate or old_max_feedrate != self._max_feedrate \
+ or old_min_linewidth != self._min_line_width or old_max_linewidth != self._max_line_width \
+ or old_min_thickness != self._min_thickness or old_max_thickness != self._max_thickness \
+ or old_min_flow_rate != self._min_flow_rate or old_max_flow_rate != self._max_flow_rate:
+ self.colorSchemeLimitsChanged.emit()
+
def calculateMaxPathsOnLayer(self, layer_num: int) -> None:
# Update the currentPath
scene = self.getController().getScene()
@@ -480,6 +574,8 @@ class SimulationView(CuraView):
preferencesChanged = Signal()
busyChanged = Signal()
activityChanged = Signal()
+ visibleStructuresChanged = Signal()
+ colorSchemeLimitsChanged = Signal()
def getProxy(self, engine, script_engine):
"""Hackish way to ensure the proxy is already created
@@ -511,6 +607,7 @@ class SimulationView(CuraView):
Application.getInstance().getPreferences().preferenceChanged.connect(self._onPreferencesChanged)
self._controller.getScene().getRoot().childrenChanged.connect(self._onSceneChanged)
+ self.calculateColorSchemeLimits()
self.calculateMaxLayers()
self.calculateMaxPathsOnLayer(self._current_layer_num)
diff --git a/plugins/SimulationView/SimulationViewMenuComponent.qml b/plugins/SimulationView/SimulationViewMenuComponent.qml
index 708fc932c8..a9108c9d42 100644
--- a/plugins/SimulationView/SimulationViewMenuComponent.qml
+++ b/plugins/SimulationView/SimulationViewMenuComponent.qml
@@ -90,6 +90,7 @@ Cura.ExpandableComponent
property bool show_feedrate_gradient: show_gradient && UM.Preferences.getValue("layerview/layer_view_type") == 2
property bool show_thickness_gradient: show_gradient && UM.Preferences.getValue("layerview/layer_view_type") == 3
property bool show_line_width_gradient: show_gradient && UM.Preferences.getValue("layerview/layer_view_type") == 4
+ property bool show_flow_rate_gradient: show_gradient && UM.Preferences.getValue("layerview/layer_view_type") == 5
property bool only_show_top_layers: UM.Preferences.getValue("view/only_show_top_layers")
property int top_layer_count: UM.Preferences.getValue("view/top_layer_count")
@@ -125,6 +126,10 @@ Cura.ExpandableComponent
text: catalog.i18nc("@label:listbox", "Line Width"),
type_id: 4
})
+ layerViewTypes.append({
+ text: catalog.i18nc("@label:listbox", "Flow"),
+ type_id: 5
+ })
}
ComboBox
@@ -150,10 +155,13 @@ Cura.ExpandableComponent
{
// Update the visibility of the legends.
viewSettings.show_legend = UM.SimulationView.compatibilityMode || (type_id == 1);
- viewSettings.show_gradient = !UM.SimulationView.compatibilityMode && (type_id == 2 || type_id == 3 || type_id == 4);
+ viewSettings.show_gradient = !UM.SimulationView.compatibilityMode &&
+ (type_id == 2 || type_id == 3 || type_id == 4 || type_id == 5) ;
+
viewSettings.show_feedrate_gradient = viewSettings.show_gradient && (type_id == 2);
viewSettings.show_thickness_gradient = viewSettings.show_gradient && (type_id == 3);
viewSettings.show_line_width_gradient = viewSettings.show_gradient && (type_id == 4);
+ viewSettings.show_flow_rate_gradient = viewSettings.show_gradient && (type_id == 5);
}
}
@@ -389,18 +397,24 @@ Cura.ExpandableComponent
// Feedrate selected
if (UM.Preferences.getValue("layerview/layer_view_type") == 2)
{
- return parseFloat(UM.SimulationView.getMinFeedrate()).toFixed(2)
+ return parseFloat(UM.SimulationView.minFeedrate).toFixed(2)
}
// Layer thickness selected
if (UM.Preferences.getValue("layerview/layer_view_type") == 3)
{
- return parseFloat(UM.SimulationView.getMinThickness()).toFixed(2)
+ return parseFloat(UM.SimulationView.minThickness).toFixed(2)
}
- //Line width selected
+ // Line width selected
if(UM.Preferences.getValue("layerview/layer_view_type") == 4)
{
- return parseFloat(UM.SimulationView.getMinLineWidth()).toFixed(2);
+ return parseFloat(UM.SimulationView.minLineWidth).toFixed(2);
}
+ // Flow Rate selected
+ if(UM.Preferences.getValue("layerview/layer_view_type") == 5)
+ {
+ return parseFloat(UM.SimulationView.minFlowRate).toFixed(2);
+ }
+
}
return catalog.i18nc("@label","min")
}
@@ -431,6 +445,11 @@ Cura.ExpandableComponent
{
return "mm"
}
+ // Flow Rate selected
+ if (UM.Preferences.getValue("layerview/layer_view_type") == 5)
+ {
+ return "mm³/s"
+ }
}
return ""
}
@@ -448,17 +467,22 @@ Cura.ExpandableComponent
// Feedrate selected
if (UM.Preferences.getValue("layerview/layer_view_type") == 2)
{
- return parseFloat(UM.SimulationView.getMaxFeedrate()).toFixed(2)
+ return parseFloat(UM.SimulationView.maxFeedrate).toFixed(2)
}
// Layer thickness selected
if (UM.Preferences.getValue("layerview/layer_view_type") == 3)
{
- return parseFloat(UM.SimulationView.getMaxThickness()).toFixed(2)
+ return parseFloat(UM.SimulationView.maxThickness).toFixed(2)
}
//Line width selected
if(UM.Preferences.getValue("layerview/layer_view_type") == 4)
{
- return parseFloat(UM.SimulationView.getMaxLineWidth()).toFixed(2);
+ return parseFloat(UM.SimulationView.maxLineWidth).toFixed(2);
+ }
+ // Flow rate selected
+ if(UM.Preferences.getValue("layerview/layer_view_type") == 5)
+ {
+ return parseFloat(UM.SimulationView.maxFlowRate).toFixed(2);
}
}
return catalog.i18nc("@label","max")
@@ -474,7 +498,10 @@ Cura.ExpandableComponent
Rectangle
{
id: feedrateGradient
- visible: viewSettings.show_feedrate_gradient || viewSettings.show_line_width_gradient
+ visible: (
+ viewSettings.show_feedrate_gradient ||
+ viewSettings.show_line_width_gradient
+ )
anchors.left: parent.left
anchors.right: parent.right
height: Math.round(UM.Theme.getSize("layerview_row").height * 1.5)
@@ -526,7 +553,9 @@ Cura.ExpandableComponent
Rectangle
{
id: thicknessGradient
- visible: viewSettings.show_thickness_gradient
+ visible: (
+ viewSettings.show_thickness_gradient
+ )
anchors.left: parent.left
anchors.right: parent.right
height: Math.round(UM.Theme.getSize("layerview_row").height * 1.5)
@@ -578,6 +607,85 @@ Cura.ExpandableComponent
}
}
}
+
+ // Gradient colors for flow (similar to jet colormap)
+ Rectangle
+ {
+ id: jetGradient
+ visible: (
+ viewSettings.show_flow_rate_gradient
+ )
+ anchors.left: parent.left
+ anchors.right: parent.right
+ height: Math.round(UM.Theme.getSize("layerview_row").height * 1.5)
+ border.width: UM.Theme.getSize("default_lining").width
+ border.color: UM.Theme.getColor("lining")
+
+ LinearGradient
+ {
+ anchors
+ {
+ left: parent.left
+ leftMargin: UM.Theme.getSize("default_lining").width
+ right: parent.right
+ rightMargin: UM.Theme.getSize("default_lining").width
+ top: parent.top
+ topMargin: UM.Theme.getSize("default_lining").width
+ bottom: parent.bottom
+ bottomMargin: UM.Theme.getSize("default_lining").width
+ }
+ start: Qt.point(0, 0)
+ end: Qt.point(parent.width, 0)
+ gradient: Gradient
+ {
+ GradientStop
+ {
+ position: 0.0
+ color: Qt.rgba(0, 0, 0.5, 1)
+ }
+ GradientStop
+ {
+ position: 0.125
+ color: Qt.rgba(0, 0.0, 1.0, 1)
+ }
+ GradientStop
+ {
+ position: 0.25
+ color: Qt.rgba(0, 0.5, 1.0, 1)
+ }
+ GradientStop
+ {
+ position: 0.375
+ color: Qt.rgba(0.0, 1.0, 1.0, 1)
+ }
+ GradientStop
+ {
+ position: 0.5
+ color: Qt.rgba(0.5, 1.0, 0.5, 1)
+ }
+ GradientStop
+ {
+ position: 0.625
+ color: Qt.rgba(1.0, 1.0, 0.0, 1)
+ }
+ GradientStop
+ {
+ position: 0.75
+ color: Qt.rgba(1.0, 0.5, 0, 1)
+ }
+ GradientStop
+ {
+ position: 0.875
+ color: Qt.rgba(1.0, 0.0, 0, 1)
+ }
+ GradientStop
+ {
+ position: 1.0
+ color: Qt.rgba(0.5, 0, 0, 1)
+ }
+ }
+ }
+ }
}
FontMetrics
diff --git a/plugins/SimulationView/SimulationViewProxy.py b/plugins/SimulationView/SimulationViewProxy.py
index 12947f6464..7d78e93ca5 100644
--- a/plugins/SimulationView/SimulationViewProxy.py
+++ b/plugins/SimulationView/SimulationViewProxy.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2018 Ultimaker B.V.
+# Copyright (c) 2021 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from typing import TYPE_CHECKING
@@ -28,6 +28,7 @@ class SimulationViewProxy(QObject):
globalStackChanged = pyqtSignal()
preferencesChanged = pyqtSignal()
busyChanged = pyqtSignal()
+ colorSchemeLimitsChanged = pyqtSignal()
@pyqtProperty(bool, notify=activityChanged)
def layerActivity(self):
@@ -101,30 +102,38 @@ class SimulationViewProxy(QObject):
def getSimulationRunning(self):
return self._simulation_view.isSimulationRunning()
- @pyqtSlot(result=float)
- def getMinFeedrate(self):
+ @pyqtProperty(float, notify = colorSchemeLimitsChanged)
+ def minFeedrate(self):
return self._simulation_view.getMinFeedrate()
- @pyqtSlot(result=float)
- def getMaxFeedrate(self):
+ @pyqtProperty(float, notify = colorSchemeLimitsChanged)
+ def maxFeedrate(self):
return self._simulation_view.getMaxFeedrate()
- @pyqtSlot(result=float)
- def getMinThickness(self):
+ @pyqtProperty(float, notify = colorSchemeLimitsChanged)
+ def minThickness(self):
return self._simulation_view.getMinThickness()
- @pyqtSlot(result=float)
- def getMaxThickness(self):
+ @pyqtProperty(float, notify = colorSchemeLimitsChanged)
+ def maxThickness(self):
return self._simulation_view.getMaxThickness()
- @pyqtSlot(result=float)
- def getMaxLineWidth(self):
+ @pyqtProperty(float, notify = colorSchemeLimitsChanged)
+ def maxLineWidth(self):
return self._simulation_view.getMaxLineWidth()
- @pyqtSlot(result=float)
- def getMinLineWidth(self):
+ @pyqtProperty(float, notify = colorSchemeLimitsChanged)
+ def minLineWidth(self):
return self._simulation_view.getMinLineWidth()
+ @pyqtProperty(float, notify=colorSchemeLimitsChanged)
+ def maxFlowRate(self):
+ return self._simulation_view.getMaxFlowRate()
+
+ @pyqtProperty(float, notify=colorSchemeLimitsChanged)
+ def minFlowRate(self):
+ return self._simulation_view.getMinFlowRate()
+
# Opacity 0..1
@pyqtSlot(int, float)
def setExtruderOpacity(self, extruder_nr, opacity):
@@ -153,6 +162,9 @@ class SimulationViewProxy(QObject):
self.currentLayerChanged.emit()
self._layerActivityChanged()
+ def _onColorSchemeLimitsChanged(self):
+ self.colorSchemeLimitsChanged.emit()
+
def _onPathChanged(self):
self.currentPathChanged.emit()
self._layerActivityChanged()
@@ -182,6 +194,7 @@ class SimulationViewProxy(QObject):
active_view = self._controller.getActiveView()
if active_view == self._simulation_view:
self._simulation_view.currentLayerNumChanged.connect(self._onLayerChanged)
+ self._simulation_view.colorSchemeLimitsChanged.connect(self._onColorSchemeLimitsChanged)
self._simulation_view.currentPathNumChanged.connect(self._onPathChanged)
self._simulation_view.maxLayersChanged.connect(self._onMaxLayersChanged)
self._simulation_view.maxPathsChanged.connect(self._onMaxPathsChanged)
@@ -194,6 +207,7 @@ class SimulationViewProxy(QObject):
# Disconnect all of em again.
self.is_simulationView_selected = False
self._simulation_view.currentLayerNumChanged.disconnect(self._onLayerChanged)
+ self._simulation_view.colorSchemeLimitsChanged.connect(self._onColorSchemeLimitsChanged)
self._simulation_view.currentPathNumChanged.disconnect(self._onPathChanged)
self._simulation_view.maxLayersChanged.disconnect(self._onMaxLayersChanged)
self._simulation_view.maxPathsChanged.disconnect(self._onMaxPathsChanged)
diff --git a/plugins/SimulationView/layers3d.shader b/plugins/SimulationView/layers3d.shader
index c7cf7f061c..f9d67f284c 100644
--- a/plugins/SimulationView/layers3d.shader
+++ b/plugins/SimulationView/layers3d.shader
@@ -12,6 +12,8 @@ vertex41core =
uniform lowp float u_min_thickness;
uniform lowp float u_max_line_width;
uniform lowp float u_min_line_width;
+ uniform lowp float u_max_flow_rate;
+ uniform lowp float u_min_flow_rate;
uniform lowp int u_layer_view_type;
uniform lowp mat4 u_extruder_opacity; // currently only for max 16 extruders, others always visible
@@ -44,7 +46,15 @@ vertex41core =
vec4 feedrateGradientColor(float abs_value, float min_value, float max_value)
{
- float value = (abs_value - min_value)/(max_value - min_value);
+ float value;
+ if(abs(max_value - min_value) < 0.0001) //Max and min are equal (barring floating point rounding errors).
+ {
+ value = 0.5; //Pick a colour in exactly the middle of the range.
+ }
+ else
+ {
+ value = (abs_value - min_value) / (max_value - min_value);
+ }
float red = value;
float green = 1-abs(1-4*value);
if (value > 0.375)
@@ -57,7 +67,15 @@ vertex41core =
vec4 layerThicknessGradientColor(float abs_value, float min_value, float max_value)
{
- float value = (abs_value - min_value)/(max_value - min_value);
+ float value;
+ if(abs(max_value - min_value) < 0.0001) //Max and min are equal (barring floating point rounding errors).
+ {
+ value = 0.5; //Pick a colour in exactly the middle of the range.
+ }
+ else
+ {
+ value = (abs_value - min_value) / (max_value - min_value);
+ }
float red = min(max(4*value-2, 0), 1);
float green = min(1.5*value, 0.75);
if (value > 0.75)
@@ -70,7 +88,15 @@ vertex41core =
vec4 lineWidthGradientColor(float abs_value, float min_value, float max_value)
{
- float value = (abs_value - min_value) / (max_value - min_value);
+ float value;
+ if(abs(max_value - min_value) < 0.0001) //Max and min are equal (barring floating point rounding errors).
+ {
+ value = 0.5; //Pick a colour in exactly the middle of the range.
+ }
+ else
+ {
+ value = (abs_value - min_value) / (max_value - min_value);
+ }
float red = value;
float green = 1 - abs(1 - 4 * value);
if(value > 0.375)
@@ -81,6 +107,30 @@ vertex41core =
return vec4(red, green, blue, 1.0);
}
+ float clamp(float v)
+ {
+ float t = v < 0 ? 0 : v;
+ return t > 1.0 ? 1.0 : t;
+ }
+
+ // Inspired by https://stackoverflow.com/a/46628410
+ vec4 flowRateGradientColor(float abs_value, float min_value, float max_value)
+ {
+ float t;
+ if(abs(min_value - max_value) < 0.0001)
+ {
+ t = 0;
+ }
+ else
+ {
+ t = 2.0 * ((abs_value - min_value) / (max_value - min_value)) - 1;
+ }
+ float red = clamp(1.5 - abs(2.0 * t - 1.0));
+ float green = clamp(1.5 - abs(2.0 * t));
+ float blue = clamp(1.5 - abs(2.0 * t + 1.0));
+ return vec4(red, green, blue, 1.0);
+ }
+
void main()
{
vec4 v1_vertex = a_vertex;
@@ -106,6 +156,10 @@ vertex41core =
case 4: // "Line width"
v_color = lineWidthGradientColor(a_line_dim.x, u_min_line_width, u_max_line_width);
break;
+ case 5: // "Flow"
+ float flow_rate = a_line_dim.x * a_line_dim.y * a_feedrate;
+ v_color = flowRateGradientColor(flow_rate, u_min_flow_rate, u_max_flow_rate);
+ break;
}
v_vertex = world_space_vert.xyz;
@@ -294,7 +348,6 @@ geometry41core =
EndPrimitive();
}
-
if ((u_show_starts == 1) && (v_prev_line_type[0] != 1) && (v_line_type[0] == 1)) {
float w = size_x;
float h = size_y;
@@ -313,7 +366,7 @@ geometry41core =
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))); // Back-bottom-right
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))); // Back-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))); // Back-top-right
-
+
EndPrimitive();
}
}
diff --git a/plugins/SimulationView/plugin.json b/plugins/SimulationView/plugin.json
index 19dd7e3b40..48ee8d04a7 100644
--- a/plugins/SimulationView/plugin.json
+++ b/plugins/SimulationView/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides the Simulation view.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py
index 6eed649cc7..5ead422d0a 100755
--- a/plugins/SliceInfoPlugin/SliceInfo.py
+++ b/plugins/SliceInfoPlugin/SliceInfo.py
@@ -229,6 +229,11 @@ class SliceInfo(QObject, Extension):
model["model_settings"] = model_settings
+ if node.source_mime_type is None:
+ model["mime_type"] = ""
+ else:
+ model["mime_type"] = node.source_mime_type.name
+
data["models"].append(model)
print_times = print_information.printTimes()
diff --git a/plugins/SliceInfoPlugin/example_data.html b/plugins/SliceInfoPlugin/example_data.html
index b349ec328d..5b97f1cba6 100644
--- a/plugins/SliceInfoPlugin/example_data.html
+++ b/plugins/SliceInfoPlugin/example_data.html
@@ -54,6 +54,7 @@
Bounding Box: [minimum x, y, z; maximum x, y, z]
Is Helper Mesh: no
Helper Mesh Type: support mesh
+ File type: STL
diff --git a/plugins/SliceInfoPlugin/plugin.json b/plugins/SliceInfoPlugin/plugin.json
index a816a8e9a0..46a0ca0fab 100644
--- a/plugins/SliceInfoPlugin/plugin.json
+++ b/plugins/SliceInfoPlugin/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Submits anonymous slice info. Can be disabled through preferences.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/SolidView/plugin.json b/plugins/SolidView/plugin.json
index 07151aed34..4c7aec8d84 100644
--- a/plugins/SolidView/plugin.json
+++ b/plugins/SolidView/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides a normal solid mesh view.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
\ No newline at end of file
diff --git a/plugins/SupportEraser/plugin.json b/plugins/SupportEraser/plugin.json
index 115b8455d8..a832dc2daf 100644
--- a/plugins/SupportEraser/plugin.json
+++ b/plugins/SupportEraser/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Creates an eraser mesh to block the printing of support in certain places",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/Toolbox/plugin.json b/plugins/Toolbox/plugin.json
index bc88a20947..c9ac0870c3 100644
--- a/plugins/Toolbox/plugin.json
+++ b/plugins/Toolbox/plugin.json
@@ -2,6 +2,6 @@
"name": "Toolbox",
"author": "Ultimaker B.V.",
"version": "1.0.1",
- "api": "7.5.0",
+ "api": "7.6.0",
"description": "Find, manage and install new Cura packages."
}
diff --git a/plugins/TrimeshReader/plugin.json b/plugins/TrimeshReader/plugin.json
index 0f44967822..200356fa81 100644
--- a/plugins/TrimeshReader/plugin.json
+++ b/plugins/TrimeshReader/plugin.json
@@ -3,5 +3,5 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Provides support for reading model files.",
- "api": "7.5.0"
+ "api": "7.6.0"
}
diff --git a/plugins/UFPReader/plugin.json b/plugins/UFPReader/plugin.json
index 21aab321a4..389b555b95 100644
--- a/plugins/UFPReader/plugin.json
+++ b/plugins/UFPReader/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Provides support for reading Ultimaker Format Packages.",
- "supported_sdk_versions": ["7.5.0"],
+ "supported_sdk_versions": ["7.6.0"],
"i18n-catalog": "cura"
}
\ No newline at end of file
diff --git a/plugins/UFPWriter/UFPWriter.py b/plugins/UFPWriter/UFPWriter.py
index f9b86be651..455a7c3c36 100644
--- a/plugins/UFPWriter/UFPWriter.py
+++ b/plugins/UFPWriter/UFPWriter.py
@@ -5,6 +5,7 @@ from typing import cast, List, Dict
from Charon.VirtualFile import VirtualFile # To open UFP files.
from Charon.OpenMode import OpenMode # To indicate that we want to write to UFP files.
+from Charon.filetypes.OpenPackagingConvention import OPCError
from io import StringIO # For converting g-code to bytes.
from PyQt5.QtCore import QBuffer
@@ -47,35 +48,53 @@ class UFPWriter(MeshWriter):
archive = VirtualFile()
archive.openStream(stream, "application/x-ufp", OpenMode.WriteOnly)
- self._writeObjectList(archive)
+ try:
+ self._writeObjectList(archive)
- # Store the g-code from the scene.
- archive.addContentType(extension = "gcode", mime_type = "text/x-gcode")
+ # Store the g-code from the scene.
+ archive.addContentType(extension = "gcode", mime_type = "text/x-gcode")
+ except EnvironmentError as e:
+ error_msg = catalog.i18nc("@info:error", "Can't write to UFP file:") + " " + str(e)
+ self.setInformation(error_msg)
+ Logger.error(error_msg)
+ return False
gcode_textio = StringIO() # We have to convert the g-code into bytes.
gcode_writer = cast(MeshWriter, PluginRegistry.getInstance().getPluginObject("GCodeWriter"))
success = gcode_writer.write(gcode_textio, None)
if not success: # Writing the g-code failed. Then I can also not write the gzipped g-code.
self.setInformation(gcode_writer.getInformation())
return False
- gcode = archive.getStream("/3D/model.gcode")
- gcode.write(gcode_textio.getvalue().encode("UTF-8"))
- archive.addRelation(virtual_path = "/3D/model.gcode", relation_type = "http://schemas.ultimaker.org/package/2018/relationships/gcode")
+ try:
+ gcode = archive.getStream("/3D/model.gcode")
+ gcode.write(gcode_textio.getvalue().encode("UTF-8"))
+ archive.addRelation(virtual_path = "/3D/model.gcode", relation_type = "http://schemas.ultimaker.org/package/2018/relationships/gcode")
+ except EnvironmentError as e:
+ error_msg = catalog.i18nc("@info:error", "Can't write to UFP file:") + " " + str(e)
+ self.setInformation(error_msg)
+ Logger.error(error_msg)
+ return False
# Attempt to store the thumbnail, if any:
backend = CuraApplication.getInstance().getBackend()
snapshot = None if getattr(backend, "getLatestSnapshot", None) is None else backend.getLatestSnapshot()
if snapshot:
- archive.addContentType(extension = "png", mime_type = "image/png")
- thumbnail = archive.getStream("/Metadata/thumbnail.png")
+ try:
+ archive.addContentType(extension = "png", mime_type = "image/png")
+ thumbnail = archive.getStream("/Metadata/thumbnail.png")
- thumbnail_buffer = QBuffer()
- thumbnail_buffer.open(QBuffer.ReadWrite)
- snapshot.save(thumbnail_buffer, "PNG")
+ thumbnail_buffer = QBuffer()
+ thumbnail_buffer.open(QBuffer.ReadWrite)
+ snapshot.save(thumbnail_buffer, "PNG")
- thumbnail.write(thumbnail_buffer.data())
- archive.addRelation(virtual_path = "/Metadata/thumbnail.png",
- relation_type = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail",
- origin = "/3D/model.gcode")
+ thumbnail.write(thumbnail_buffer.data())
+ archive.addRelation(virtual_path = "/Metadata/thumbnail.png",
+ relation_type = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail",
+ origin = "/3D/model.gcode")
+ except EnvironmentError as e:
+ error_msg = catalog.i18nc("@info:error", "Can't write to UFP file:") + " " + str(e)
+ self.setInformation(error_msg)
+ Logger.error(error_msg)
+ return False
else:
Logger.log("w", "Thumbnail not created, cannot save it")
@@ -90,7 +109,7 @@ class UFPWriter(MeshWriter):
try:
archive.addContentType(extension = material_extension, mime_type = material_mime_type)
- except:
+ except OPCError:
Logger.log("w", "The material extension: %s was already added", material_extension)
added_materials = []
@@ -120,17 +139,23 @@ class UFPWriter(MeshWriter):
Logger.log("e", "Unable serialize material container with root id: %s", material_root_id)
return False
- material_file = archive.getStream(material_file_name)
- material_file.write(serialized_material.encode("UTF-8"))
- archive.addRelation(virtual_path = material_file_name,
- relation_type = "http://schemas.ultimaker.org/package/2018/relationships/material",
- origin = "/3D/model.gcode")
+ try:
+ material_file = archive.getStream(material_file_name)
+ material_file.write(serialized_material.encode("UTF-8"))
+ archive.addRelation(virtual_path = material_file_name,
+ relation_type = "http://schemas.ultimaker.org/package/2018/relationships/material",
+ origin = "/3D/model.gcode")
+ except EnvironmentError as e:
+ error_msg = catalog.i18nc("@info:error", "Can't write to UFP file:") + " " + str(e)
+ self.setInformation(error_msg)
+ Logger.error(error_msg)
+ return False
added_materials.append(material_file_name)
try:
archive.close()
- except OSError as e:
+ except EnvironmentError as e:
error_msg = catalog.i18nc("@info:error", "Can't write to UFP file:") + " " + str(e)
self.setInformation(error_msg)
Logger.error(error_msg)
diff --git a/plugins/UFPWriter/plugin.json b/plugins/UFPWriter/plugin.json
index 43355cd3c3..e494261193 100644
--- a/plugins/UFPWriter/plugin.json
+++ b/plugins/UFPWriter/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides support for writing Ultimaker Format Packages.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
\ No newline at end of file
diff --git a/plugins/UM3NetworkPrinting/plugin.json b/plugins/UM3NetworkPrinting/plugin.json
index fcd214f294..03502c8f94 100644
--- a/plugins/UM3NetworkPrinting/plugin.json
+++ b/plugins/UM3NetworkPrinting/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"description": "Manages network connections to Ultimaker networked printers.",
"version": "2.0.0",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py b/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py
index 28f6b29dd9..96a2b78e8f 100644
--- a/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py
+++ b/plugins/UM3NetworkPrinting/src/Network/SendMaterialJob.py
@@ -7,26 +7,34 @@ from PyQt5.QtNetwork import QNetworkReply, QNetworkRequest
from UM.Job import Job
from UM.Logger import Logger
from cura.CuraApplication import CuraApplication
+from cura.Utils.Threading import call_on_qt_thread
from ..Models.Http.ClusterMaterial import ClusterMaterial
from ..Models.LocalMaterial import LocalMaterial
from ..Messages.MaterialSyncMessage import MaterialSyncMessage
+import time
+import threading
+
if TYPE_CHECKING:
from .LocalClusterOutputDevice import LocalClusterOutputDevice
class SendMaterialJob(Job):
+
"""Asynchronous job to send material profiles to the printer.
This way it won't freeze up the interface while sending those materials.
"""
-
-
def __init__(self, device: "LocalClusterOutputDevice") -> None:
super().__init__()
self.device = device # type: LocalClusterOutputDevice
+ self._send_material_thread = threading.Thread(target = self._sendMissingMaterials)
+ self._send_material_thread.setDaemon(True)
+
+ self._remote_materials = {} # type: Dict[str, ClusterMaterial]
+
def run(self) -> None:
"""Send the request to the printer and register a callback"""
@@ -36,9 +44,15 @@ class SendMaterialJob(Job):
"""Callback for when the remote materials were returned."""
remote_materials_by_guid = {material.guid: material for material in materials}
- self._sendMissingMaterials(remote_materials_by_guid)
+ self._remote_materials = remote_materials_by_guid
+ # It's not the nicest way to do it, but if we don't handle this in a thread
+ # we are blocking the main interface (even though the original call was done in a job)
+ # This should really be refactored so that calculating the list of materials that need to be sent
+ # to the printer is done outside of the job (and running the job actually sends the materials)
+ # TODO: Fix this hack that was introduced for 4.9.1
+ self._send_material_thread.start()
- def _sendMissingMaterials(self, remote_materials_by_guid: Dict[str, ClusterMaterial]) -> None:
+ def _sendMissingMaterials(self) -> None:
"""Determine which materials should be updated and send them to the printer.
:param remote_materials_by_guid: The remote materials by GUID.
@@ -47,7 +61,7 @@ class SendMaterialJob(Job):
if len(local_materials_by_guid) == 0:
Logger.log("d", "There are no local materials to synchronize with the printer.")
return
- material_ids_to_send = self._determineMaterialsToSend(local_materials_by_guid, remote_materials_by_guid)
+ material_ids_to_send = self._determineMaterialsToSend(local_materials_by_guid, self._remote_materials)
if len(material_ids_to_send) == 0:
Logger.log("d", "There are no remote materials to update.")
return
@@ -96,7 +110,11 @@ class SendMaterialJob(Job):
file_name = os.path.basename(file_path)
self._sendMaterialFile(file_path, file_name, root_material_id)
+ time.sleep(1) # Throttle the sending a bit.
+ # This needs to be called on the QT thread since the onFinished needs to happen
+ # in the same thread as where the network manager is located (aka; main thread)
+ @call_on_qt_thread
def _sendMaterialFile(self, file_path: str, file_name: str, material_id: str) -> None:
"""Send a single material file to the printer.
diff --git a/plugins/UM3NetworkPrinting/src/__init__.py b/plugins/UM3NetworkPrinting/src/__init__.py
index 659263c0d6..d5641e902f 100644
--- a/plugins/UM3NetworkPrinting/src/__init__.py
+++ b/plugins/UM3NetworkPrinting/src/__init__.py
@@ -1,9 +1,2 @@
# Copyright (c) 2019 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
-
-# Workaround for a race condition on certain systems where there
-# is a race condition between Arcus and PyQt. Importing Arcus
-# first seems to prevent Sip from going into a state where it
-# tries to create PyQt objects on a non-main thread.
-import Arcus #@UnusedImport
-import Savitar #@UnusedImport
\ No newline at end of file
diff --git a/plugins/USBPrinting/AutoDetectBaudJob.py b/plugins/USBPrinting/AutoDetectBaudJob.py
index c74935dbff..1ebd74af4f 100644
--- a/plugins/USBPrinting/AutoDetectBaudJob.py
+++ b/plugins/USBPrinting/AutoDetectBaudJob.py
@@ -70,7 +70,10 @@ class AutoDetectBaudJob(Job):
timeout_time = time() + wait_response_timeout
while timeout_time > time():
- line = serial.readline()
+ # If baudrate is wrong, then readline() might never
+ # return, even with timeouts set. Using read_until
+ # with size limit seems to fix this.
+ line = serial.read_until(size = 100)
if b"ok" in line and b"T:" in line:
self.setResult(baud_rate)
Logger.log("d", "Detected baud rate {baud_rate} on serial {serial} on retry {retry} with after {time_elapsed:0.2f} seconds.".format(
diff --git a/plugins/USBPrinting/plugin.json b/plugins/USBPrinting/plugin.json
index 5c624b9730..9b5513791f 100644
--- a/plugins/USBPrinting/plugin.json
+++ b/plugins/USBPrinting/plugin.json
@@ -2,7 +2,7 @@
"name": "USB printing",
"author": "Ultimaker B.V.",
"version": "1.0.2",
- "api": "7.5.0",
+ "api": "7.6.0",
"description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.",
"i18n-catalog": "cura"
}
diff --git a/plugins/UltimakerMachineActions/plugin.json b/plugins/UltimakerMachineActions/plugin.json
index 0014f32ad9..798150601c 100644
--- a/plugins/UltimakerMachineActions/plugin.json
+++ b/plugins/UltimakerMachineActions/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json b/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json
index e54a3f1e76..55673d849a 100644
--- a/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Upgrades configurations from Cura 2.1 to Cura 2.2.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json b/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json
index fc9a8c1882..80a3c28628 100644
--- a/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Upgrades configurations from Cura 2.2 to Cura 2.4.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json b/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json
index 936bb5c91c..d64096b899 100644
--- a/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Upgrades configurations from Cura 2.5 to Cura 2.6.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json b/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json
index 6af6ca4f6b..86b6e89793 100644
--- a/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Upgrades configurations from Cura 2.6 to Cura 2.7.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json b/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json
index 09d03174bd..edb9e0933d 100644
--- a/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Upgrades configurations from Cura 2.7 to Cura 3.0.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json b/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json
index 19f2eef45e..cc10cd3cf2 100644
--- a/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Upgrades configurations from Cura 3.0 to Cura 3.1.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json b/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json
index ed12654352..991b985f76 100644
--- a/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Upgrades configurations from Cura 3.2 to Cura 3.3.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json b/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json
index 0592fcafaf..4bc3309156 100644
--- a/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Upgrades configurations from Cura 3.3 to Cura 3.4.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json b/plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json
index 63f1303000..887e6287c2 100644
--- a/plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Upgrades configurations from Cura 3.4 to Cura 3.5.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json b/plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json
index 99656ef1bb..8cdfecaf9b 100644
--- a/plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Upgrades configurations from Cura 3.5 to Cura 4.0.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json b/plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json
index f3a2b1c358..426de00e01 100644
--- a/plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Upgrades configurations from Cura 4.0 to Cura 4.1.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json b/plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json
index 73da1b1279..9801fef742 100644
--- a/plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Upgrades configurations from Cura 4.1 to Cura 4.2.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json b/plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json
index b96db4e9df..847b1ead04 100644
--- a/plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Upgrades configurations from Cura 4.2 to Cura 4.3.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json b/plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json
index 53c5c10595..6a8db66e3f 100644
--- a/plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Upgrades configurations from Cura 4.3 to Cura 4.4.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json b/plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json
index cf58279abc..4463274b42 100644
--- a/plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Upgrades configurations from Cura 4.4 to Cura 4.5.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json b/plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json
index f6e39a53b3..8d3a6db9d7 100644
--- a/plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Upgrades configurations from Cura 4.5 to Cura 4.6.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json b/plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json
index 4517916a19..16c6d15406 100644
--- a/plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json b/plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json
index 394ab5d05f..e7f0fed761 100644
--- a/plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Upgrades configurations from Cura 4.6.2 to Cura 4.7.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json b/plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json
index f8bf682ab0..9674eb0ad2 100644
--- a/plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Upgrades configurations from Cura 4.7 to Cura 4.8.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json b/plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json
index 020db6ea52..8d677f7577 100644
--- a/plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json
+++ b/plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.0",
"description": "Upgrades configurations from Cura 4.8 to Cura 4.9.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/VersionUpgrade/VersionUpgrade49to410/VersionUpgrade49to410.py b/plugins/VersionUpgrade/VersionUpgrade49to410/VersionUpgrade49to410.py
new file mode 100644
index 0000000000..7d9186e06b
--- /dev/null
+++ b/plugins/VersionUpgrade/VersionUpgrade49to410/VersionUpgrade49to410.py
@@ -0,0 +1,178 @@
+# Copyright (c) 2019 Ultimaker B.V.
+# Cura is released under the terms of the LGPLv3 or higher.
+
+import configparser
+import io
+import os.path # To get the file ID.
+from typing import Dict, List, Tuple
+
+from UM.VersionUpgrade import VersionUpgrade
+
+
+class VersionUpgrade49to410(VersionUpgrade):
+ """
+ Upgrades configurations from the state they were in at version 4.9 to the state they should be in at version 4.10.
+ """
+
+ _renamed_profiles = {
+ # Definitions.
+ "twotrees_bluer" : "two_trees_bluer",
+
+ # Upgrade for people who had the original TwoTrees Bluer profiles from 4.9 and earlier.
+ "twotrees_bluer_extruder_0": "two_trees_base_extruder_0",
+ "twotrees_bluer_extruder_1": "two_trees_base_extruder_0"
+ }
+
+ _quality_changes_to_two_trees_base = {
+ "twotrees_bluer_extruder_0",
+ "twotrees_bluer_extruder_1",
+ "twotrees_bluer"
+ }
+
+ # Default variant to select for legacy TwoTrees printers, now that we have variants.
+ _default_variants = {
+ "twotrees_bluer_extruder_0" : "two_trees_bluer_0.4",
+ "twotrees_bluer_extruder_1" : "two_trees_bluer_0.4"
+ }
+
+ _two_trees_bluer_quality_type_conversion = {
+ "high" : "ultra",
+ "normal" : "super",
+ "fast" : "standard",
+ "draft" : "standard",
+ "extra_fast" : "low",
+ "coarse" : "draft",
+ "extra_coarse": "draft"
+ }
+
+ _two_trees_quality_per_material = {
+ # Since legacy TwoTrees printers didn't have different variants, we always pick the 0.4mm variant.
+ "generic_abs_175" : {
+ "high" : "two_trees_0.4_ABS_super",
+ "normal" : "two_trees_0.4_ABS_super",
+ "fast" : "two_trees_0.4_ABS_super",
+ "draft" : "two_trees_0.4_ABS_standard",
+ "extra_fast" : "two_trees_0.4_ABS_low",
+ "coarse" : "two_trees_0.4_ABS_low",
+ "extra_coarse": "two_trees_0.4_ABS_low"
+ },
+ "generic_petg_175": {
+ "high" : "two_trees_0.4_PETG_super",
+ "normal" : "two_trees_0.4_PETG_super",
+ "fast" : "two_trees_0.4_PETG_super",
+ "draft" : "two_trees_0.4_PETG_standard",
+ "extra_fast" : "two_trees_0.4_PETG_low",
+ "coarse" : "two_trees_0.4_PETG_low",
+ "extra_coarse": "two_trees_0.4_PETG_low"
+ },
+ "generic_pla_175" : {
+ "high" : "two_trees_0.4_PLA_super",
+ "normal" : "two_trees_0.4_PLA_super",
+ "fast" : "two_trees_0.4_PLA_super",
+ "draft" : "two_trees_0.4_PLA_standard",
+ "extra_fast" : "two_trees_0.4_PLA_low",
+ "coarse" : "two_trees_0.4_PLA_low",
+ "extra_coarse": "two_trees_0.4_PLA_low"
+ },
+ "generic_tpu_175" : {
+ "high" : "two_trees_0.4_TPU_super",
+ "normal" : "two_trees_0.4_TPU_super",
+ "fast" : "two_trees_0.4_TPU_super",
+ "draft" : "two_trees_0.4_TPU_standard",
+ "extra_fast" : "two_trees_0.4_TPU_standard",
+ "coarse" : "two_trees_0.4_TPU_standard",
+ "extra_coarse": "two_trees_0.4_TPU_standard"
+ },
+ "empty_material" : { # For the global stack.
+ "high" : "two_trees_global_super",
+ "normal" : "two_trees_global_super",
+ "fast" : "two_trees_global_super",
+ "draft" : "two_trees_global_standard",
+ "extra_fast" : "two_trees_global_low",
+ "coarse" : "two_trees_global_low",
+ "extra_coarse": "two_trees_global_low"
+ }
+ }
+
+ _deltacomb_quality_type_conversion = {
+ "a" : "D005",
+ "b" : "D010",
+ "c" : "D015",
+ "d" : "D020",
+ "e" : "D030",
+ "f" : "D045",
+ "g" : "D060"
+ }
+
+ def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]:
+ """Upgrades instance containers to have the new version number.
+
+ This renames the renamed settings in the containers.
+ """
+ parser = configparser.ConfigParser(interpolation = None, comment_prefixes = ())
+ parser.read_string(serialized)
+
+ # Update setting version number.
+ if "metadata" not in parser:
+ parser["metadata"] = {}
+ parser["metadata"]["setting_version"] = "17"
+
+ if "general" not in parser:
+ parser["general"] = {}
+ # Certain instance containers (such as definition changes) reference to a certain definition container
+ # Since a number of those changed name, we also need to update those.
+ old_definition = parser.get("general", "definition", fallback = "")
+ if old_definition in self._renamed_profiles:
+ parser["general"]["definition"] = self._renamed_profiles[old_definition]
+
+ # For quality-changes profiles made for TwoTrees Bluer printers, change the definition to the two_trees_base and make sure that the quality is something we have a profile for.
+ if parser.get("metadata", "type", fallback = "") == "quality_changes":
+ for possible_printer in self._quality_changes_to_two_trees_base:
+ if os.path.basename(filename).startswith(possible_printer + "_"):
+ parser["general"]["definition"] = "two_trees_base"
+ parser["metadata"]["quality_type"] = self._two_trees_bluer_quality_type_conversion.get(parser.get("metadata", "quality_type", fallback = "fast"), "standard")
+ break
+
+ if os.path.basename(filename).startswith("deltacomb_"):
+ parser["general"]["definition"] = "deltacomb_base"
+ parser["metadata"]["quality_type"] = self._deltacomb_quality_type_conversion.get(parser.get("metadata", "quality_type", fallback = "c"), "D015")
+ break
+
+ result = io.StringIO()
+ parser.write(result)
+ return [filename], [result.getvalue()]
+
+ def upgradeStack(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]:
+ """Upgrades stacks to have the new version number."""
+
+ parser = configparser.ConfigParser(interpolation = None)
+ parser.read_string(serialized)
+
+ # Update setting version number.
+ if "metadata" not in parser:
+ parser["metadata"] = {}
+ parser["metadata"]["setting_version"] = "17"
+
+ # Change renamed profiles.
+ if "containers" in parser:
+ definition_id = parser["containers"]["7"]
+ if definition_id in self._quality_changes_to_two_trees_base:
+ material_id = parser["containers"]["4"]
+ old_quality_id = parser["containers"]["3"]
+ if parser["metadata"].get("type", "machine") == "extruder_train":
+ if parser["containers"]["5"] == "empty_variant":
+ if definition_id in self._default_variants:
+ parser["containers"]["5"] = self._default_variants[definition_id] # For legacy TwoTrees printers, change the variant to 0.4.
+
+ # Also change the quality to go along with it.
+ if material_id in self._two_trees_quality_per_material and old_quality_id in self._two_trees_quality_per_material[material_id]:
+ parser["containers"]["3"] = self._two_trees_quality_per_material[material_id][old_quality_id]
+ stack_copy = {} # type: Dict[str, str] # Make a copy so that we don't modify the dict we're iterating over.
+ stack_copy.update(parser["containers"])
+ for position, profile_id in stack_copy.items():
+ if profile_id in self._renamed_profiles:
+ parser["containers"][position] = self._renamed_profiles[profile_id]
+
+ result = io.StringIO()
+ parser.write(result)
+ return [filename], [result.getvalue()]
diff --git a/plugins/VersionUpgrade/VersionUpgrade49to410/__init__.py b/plugins/VersionUpgrade/VersionUpgrade49to410/__init__.py
new file mode 100644
index 0000000000..0d5128473f
--- /dev/null
+++ b/plugins/VersionUpgrade/VersionUpgrade49to410/__init__.py
@@ -0,0 +1,55 @@
+# Copyright (c) 2020 Ultimaker B.V.
+# Cura is released under the terms of the LGPLv3 or higher.
+
+from typing import Any, Dict, TYPE_CHECKING
+
+from . import VersionUpgrade49to410
+
+if TYPE_CHECKING:
+ from UM.Application import Application
+
+upgrade = VersionUpgrade49to410.VersionUpgrade49to410()
+
+
+def getMetaData() -> Dict[str, Any]:
+ return {
+ "version_upgrade": {
+ # From To Upgrade function
+ ("machine_stack", 5000016): ("machine_stack", 5000017, upgrade.upgradeStack),
+ ("extruder_train", 5000016): ("extruder_train", 5000017, upgrade.upgradeStack),
+ ("definition_changes", 4000016): ("definition_changes", 4000017, upgrade.upgradeInstanceContainer),
+ ("quality_changes", 4000016): ("quality_changes", 4000017, upgrade.upgradeInstanceContainer),
+ ("quality", 4000016): ("quality", 4000017, upgrade.upgradeInstanceContainer),
+ ("user", 4000016): ("user", 4000017, upgrade.upgradeInstanceContainer),
+ },
+ "sources": {
+ "machine_stack": {
+ "get_version": upgrade.getCfgVersion,
+ "location": {"./machine_instances"}
+ },
+ "extruder_train": {
+ "get_version": upgrade.getCfgVersion,
+ "location": {"./extruders"}
+ },
+ "definition_changes": {
+ "get_version": upgrade.getCfgVersion,
+ "location": {"./definition_changes"}
+ },
+ "quality_changes": {
+ "get_version": upgrade.getCfgVersion,
+ "location": {"./quality_changes"}
+ },
+ "quality": {
+ "get_version": upgrade.getCfgVersion,
+ "location": {"./quality"}
+ },
+ "user": {
+ "get_version": upgrade.getCfgVersion,
+ "location": {"./user"}
+ }
+ }
+ }
+
+
+def register(app: "Application") -> Dict[str, Any]:
+ return {"version_upgrade": upgrade}
diff --git a/plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json b/plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json
new file mode 100644
index 0000000000..1466e62b6f
--- /dev/null
+++ b/plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json
@@ -0,0 +1,8 @@
+{
+ "name": "Version Upgrade 4.9 to 4.10",
+ "author": "Ultimaker B.V.",
+ "version": "1.0.0",
+ "description": "Upgrades configurations from Cura 4.9 to Cura 4.10.",
+ "api": "7.6.0",
+ "i18n-catalog": "cura"
+}
diff --git a/plugins/X3DReader/plugin.json b/plugins/X3DReader/plugin.json
index c93359b596..c3581f67e8 100644
--- a/plugins/X3DReader/plugin.json
+++ b/plugins/X3DReader/plugin.json
@@ -3,6 +3,6 @@
"author": "Seva Alekseyev, Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides support for reading X3D files.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/XRayView/plugin.json b/plugins/XRayView/plugin.json
index 7b25d78131..1c4ad17cb1 100644
--- a/plugins/XRayView/plugin.json
+++ b/plugins/XRayView/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides the X-Ray view.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/XmlMaterialProfile/plugin.json b/plugins/XmlMaterialProfile/plugin.json
index fd06559e08..a0cec30068 100644
--- a/plugins/XmlMaterialProfile/plugin.json
+++ b/plugins/XmlMaterialProfile/plugin.json
@@ -3,6 +3,6 @@
"author": "Ultimaker B.V.",
"version": "1.0.1",
"description": "Provides capabilities to read and write XML-based material profiles.",
- "api": "7.5.0",
+ "api": "7.6.0",
"i18n-catalog": "cura"
}
diff --git a/plugins/XmlMaterialProfile/tests/TestXmlMaterialProfile.py b/plugins/XmlMaterialProfile/tests/TestXmlMaterialProfile.py
index 651fd5a985..05986dc033 100644
--- a/plugins/XmlMaterialProfile/tests/TestXmlMaterialProfile.py
+++ b/plugins/XmlMaterialProfile/tests/TestXmlMaterialProfile.py
@@ -1,9 +1,5 @@
from unittest.mock import patch, MagicMock
-# Prevents error: "PyCapsule_GetPointer called with incorrect name" with conflicting SIP configurations between Arcus and PyQt: Import custom Sip bindings first!
-import Savitar # Dont remove this line
-import Arcus # No really. Don't. It needs to be there!
-import pynest2d # Really!
from UM.Qt.QtApplication import QtApplication # QtApplication import is required, even though it isn't used.
import pytest
diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json
index ccb301ce4a..5141391f8b 100644
--- a/resources/bundled_packages/cura.json
+++ b/resources/bundled_packages/cura.json
@@ -6,7 +6,7 @@
"display_name": "3MF Reader",
"description": "Provides support for reading 3MF files.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -23,7 +23,7 @@
"display_name": "3MF Writer",
"description": "Provides support for writing 3MF files.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -40,7 +40,7 @@
"display_name": "AMF Reader",
"description": "Provides support for reading AMF files.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "fieldOfView",
@@ -57,7 +57,7 @@
"display_name": "Cura Backups",
"description": "Backup and restore your configuration.",
"package_version": "1.2.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -74,7 +74,7 @@
"display_name": "CuraEngine Backend",
"description": "Provides the link to the CuraEngine slicing backend.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -91,7 +91,7 @@
"display_name": "Cura Profile Reader",
"description": "Provides support for importing Cura profiles.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -108,7 +108,7 @@
"display_name": "Cura Profile Writer",
"description": "Provides support for exporting Cura profiles.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -125,7 +125,7 @@
"display_name": "Ultimaker Digital Library",
"description": "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -142,7 +142,7 @@
"display_name": "Firmware Update Checker",
"description": "Checks for firmware updates.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -159,7 +159,7 @@
"display_name": "Firmware Updater",
"description": "Provides a machine actions for updating firmware.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -176,7 +176,7 @@
"display_name": "Compressed G-code Reader",
"description": "Reads g-code from a compressed archive.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -193,7 +193,7 @@
"display_name": "Compressed G-code Writer",
"description": "Writes g-code to a compressed archive.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -210,7 +210,7 @@
"display_name": "G-Code Profile Reader",
"description": "Provides support for importing profiles from g-code files.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -227,7 +227,7 @@
"display_name": "G-Code Reader",
"description": "Allows loading and displaying G-code files.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "VictorLarchenko",
@@ -244,7 +244,7 @@
"display_name": "G-Code Writer",
"description": "Writes g-code to a file.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -261,7 +261,7 @@
"display_name": "Image Reader",
"description": "Enables ability to generate printable geometry from 2D image files.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -278,7 +278,7 @@
"display_name": "Legacy Cura Profile Reader",
"description": "Provides support for importing profiles from legacy Cura versions.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -295,7 +295,7 @@
"display_name": "Machine Settings Action",
"description": "Provides a way to change machine settings (such as build volume, nozzle size, etc.).",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "fieldOfView",
@@ -312,7 +312,7 @@
"display_name": "Model Checker",
"description": "Checks models and print configuration for possible printing issues and give suggestions.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -329,7 +329,7 @@
"display_name": "Monitor Stage",
"description": "Provides a monitor stage in Cura.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -346,7 +346,7 @@
"display_name": "Per-Object Settings Tool",
"description": "Provides the per-model settings.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -363,7 +363,7 @@
"display_name": "Post Processing",
"description": "Extension that allows for user created scripts for post processing.",
"package_version": "2.2.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -380,7 +380,7 @@
"display_name": "Prepare Stage",
"description": "Provides a prepare stage in Cura.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -397,7 +397,7 @@
"display_name": "Preview Stage",
"description": "Provides a preview stage in Cura.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -414,7 +414,7 @@
"display_name": "Removable Drive Output Device",
"description": "Provides removable drive hotplugging and writing support.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -431,7 +431,7 @@
"display_name": "Sentry Logger",
"description": "Logs certain events so that they can be used by the crash reporter",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -448,7 +448,7 @@
"display_name": "Simulation View",
"description": "Provides the Simulation view.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -465,7 +465,7 @@
"display_name": "Slice Info",
"description": "Submits anonymous slice info. Can be disabled through preferences.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -482,7 +482,7 @@
"display_name": "Solid View",
"description": "Provides a normal solid mesh view.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -499,7 +499,7 @@
"display_name": "Support Eraser Tool",
"description": "Creates an eraser mesh to block the printing of support in certain places.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -516,7 +516,7 @@
"display_name": "Trimesh Reader",
"description": "Provides support for reading model files.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -533,7 +533,7 @@
"display_name": "Toolbox",
"description": "Find, manage and install new Cura packages.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -550,7 +550,7 @@
"display_name": "UFP Reader",
"description": "Provides support for reading Ultimaker Format Packages.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -567,7 +567,7 @@
"display_name": "UFP Writer",
"description": "Provides support for writing Ultimaker Format Packages.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -584,7 +584,7 @@
"display_name": "Ultimaker Machine Actions",
"description": "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.).",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -601,7 +601,7 @@
"display_name": "UM3 Network Printing",
"description": "Manages network connections to Ultimaker 3 printers.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -618,7 +618,7 @@
"display_name": "USB Printing",
"description": "Accepts G-Code and sends them to a printer. Plugin can also update firmware.",
"package_version": "1.0.2",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -635,7 +635,7 @@
"display_name": "Version Upgrade 2.1 to 2.2",
"description": "Upgrades configurations from Cura 2.1 to Cura 2.2.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -652,7 +652,7 @@
"display_name": "Version Upgrade 2.2 to 2.4",
"description": "Upgrades configurations from Cura 2.2 to Cura 2.4.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -669,7 +669,7 @@
"display_name": "Version Upgrade 2.5 to 2.6",
"description": "Upgrades configurations from Cura 2.5 to Cura 2.6.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -686,7 +686,7 @@
"display_name": "Version Upgrade 2.6 to 2.7",
"description": "Upgrades configurations from Cura 2.6 to Cura 2.7.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -703,7 +703,7 @@
"display_name": "Version Upgrade 2.7 to 3.0",
"description": "Upgrades configurations from Cura 2.7 to Cura 3.0.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -720,7 +720,7 @@
"display_name": "Version Upgrade 3.0 to 3.1",
"description": "Upgrades configurations from Cura 3.0 to Cura 3.1.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -737,7 +737,7 @@
"display_name": "Version Upgrade 3.2 to 3.3",
"description": "Upgrades configurations from Cura 3.2 to Cura 3.3.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -754,7 +754,7 @@
"display_name": "Version Upgrade 3.3 to 3.4",
"description": "Upgrades configurations from Cura 3.3 to Cura 3.4.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -771,7 +771,7 @@
"display_name": "Version Upgrade 3.4 to 3.5",
"description": "Upgrades configurations from Cura 3.4 to Cura 3.5.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -788,7 +788,7 @@
"display_name": "Version Upgrade 3.5 to 4.0",
"description": "Upgrades configurations from Cura 3.5 to Cura 4.0.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -805,7 +805,7 @@
"display_name": "Version Upgrade 4.0 to 4.1",
"description": "Upgrades configurations from Cura 4.0 to Cura 4.1.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -822,7 +822,7 @@
"display_name": "Version Upgrade 4.1 to 4.2",
"description": "Upgrades configurations from Cura 4.1 to Cura 4.2.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -839,7 +839,7 @@
"display_name": "Version Upgrade 4.2 to 4.3",
"description": "Upgrades configurations from Cura 4.2 to Cura 4.3.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -856,7 +856,7 @@
"display_name": "Version Upgrade 4.3 to 4.4",
"description": "Upgrades configurations from Cura 4.3 to Cura 4.4.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -873,7 +873,7 @@
"display_name": "Version Upgrade 4.4 to 4.5",
"description": "Upgrades configurations from Cura 4.4 to Cura 4.5.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -890,7 +890,7 @@
"display_name": "Version Upgrade 4.5 to 4.6",
"description": "Upgrades configurations from Cura 4.5 to Cura 4.6.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -907,7 +907,7 @@
"display_name": "Version Upgrade 4.6.0 to 4.6.2",
"description": "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -924,7 +924,7 @@
"display_name": "Version Upgrade 4.6.2 to 4.7",
"description": "Upgrades configurations from Cura 4.6.2 to Cura 4.7.",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -941,7 +941,7 @@
"display_name": "Version Upgrade 4.7.0 to 4.8.0",
"description": "Upgrades configurations from Cura 4.7.0 to Cura 4.8.0",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -958,7 +958,7 @@
"display_name": "Version Upgrade 4.8.0 to 4.9.0",
"description": "Upgrades configurations from Cura 4.8.0 to Cura 4.9.0",
"package_version": "1.0.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -975,7 +975,7 @@
"display_name": "X3D Reader",
"description": "Provides support for reading X3D files.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "SevaAlekseyev",
@@ -992,7 +992,7 @@
"display_name": "XML Material Profiles",
"description": "Provides capabilities to read and write XML-based material profiles.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -1009,7 +1009,7 @@
"display_name": "X-Ray View",
"description": "Provides the X-Ray view.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com",
"author": {
"author_id": "UltimakerPackages",
@@ -1026,7 +1026,7 @@
"display_name": "Generic ABS",
"description": "The generic ABS profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1044,7 +1044,7 @@
"display_name": "Generic BAM",
"description": "The generic BAM profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1062,7 +1062,7 @@
"display_name": "Generic CFF CPE",
"description": "The generic CFF CPE profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1080,7 +1080,7 @@
"display_name": "Generic CFF PA",
"description": "The generic CFF PA profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1098,7 +1098,7 @@
"display_name": "Generic CPE",
"description": "The generic CPE profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1116,7 +1116,7 @@
"display_name": "Generic CPE+",
"description": "The generic CPE+ profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1134,7 +1134,7 @@
"display_name": "Generic GFF CPE",
"description": "The generic GFF CPE profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1152,7 +1152,7 @@
"display_name": "Generic GFF PA",
"description": "The generic GFF PA profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1170,7 +1170,7 @@
"display_name": "Generic HIPS",
"description": "The generic HIPS profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1188,7 +1188,7 @@
"display_name": "Generic Nylon",
"description": "The generic Nylon profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1206,7 +1206,7 @@
"display_name": "Generic PC",
"description": "The generic PC profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1224,7 +1224,7 @@
"display_name": "Generic PETG",
"description": "The generic PETG profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1242,7 +1242,7 @@
"display_name": "Generic PLA",
"description": "The generic PLA profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1260,7 +1260,7 @@
"display_name": "Generic PP",
"description": "The generic PP profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1278,7 +1278,7 @@
"display_name": "Generic PVA",
"description": "The generic PVA profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1296,7 +1296,7 @@
"display_name": "Generic Tough PLA",
"description": "The generic Tough PLA profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1314,7 +1314,7 @@
"display_name": "Generic TPU",
"description": "The generic TPU profile which other profiles can be based upon.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://github.com/Ultimaker/fdm_materials",
"author": {
"author_id": "Generic",
@@ -1332,7 +1332,7 @@
"display_name": "Dagoma Chromatik PLA",
"description": "Filament testé et approuvé pour les imprimantes 3D Dagoma. Chromatik est l'idéal pour débuter et suivre les tutoriels premiers pas. Il vous offre qualité et résistance pour chacune de vos impressions.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://dagoma.fr/boutique/filaments.html",
"author": {
"author_id": "Dagoma",
@@ -1349,7 +1349,7 @@
"display_name": "FABtotum ABS",
"description": "This material is easy to be extruded but it is not the simplest to use. It is one of the most used in 3D printing to get very well finished objects. It is not sustainable and its smoke can be dangerous if inhaled. The reason to prefer this filament to PLA is mainly because of its precision and mechanical specs. ABS (for plastic) stands for Acrylonitrile Butadiene Styrene and it is a thermoplastic which is widely used in everyday objects. It can be printed with any FFF 3D printer which can get to high temperatures as it must be extruded in a range between 220° and 245°, so it’s compatible with all versions of the FABtotum Personal fabricator.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=40",
"author": {
"author_id": "FABtotum",
@@ -1366,7 +1366,7 @@
"display_name": "FABtotum Nylon",
"description": "When 3D printing started this material was not listed among the extrudable filaments. It is flexible as well as resistant to tractions. It is well known for its uses in textile but also in industries which require a strong and flexible material. There are different kinds of Nylon: 3D printing mostly uses Nylon 6 and Nylon 6.6, which are the most common. It requires higher temperatures to be printed, so a 3D printer must be able to reach them (around 240°C): the FABtotum, of course, can.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=53",
"author": {
"author_id": "FABtotum",
@@ -1383,7 +1383,7 @@
"display_name": "FABtotum PLA",
"description": "It is the most common filament used for 3D printing. It is studied to be bio-degradable as it comes from corn starch’s sugar mainly. It is completely made of renewable sources and has no footprint on polluting. PLA stands for PolyLactic Acid and it is a thermoplastic that today is still considered the easiest material to be 3D printed. It can be extruded at lower temperatures: the standard range of FABtotum’s one is between 185° and 195°.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=39",
"author": {
"author_id": "FABtotum",
@@ -1400,7 +1400,7 @@
"display_name": "FABtotum TPU Shore 98A",
"description": "",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://store.fabtotum.com/eu/products/filaments.html?filament_type=66",
"author": {
"author_id": "FABtotum",
@@ -1417,7 +1417,7 @@
"display_name": "Fiberlogy HD PLA",
"description": "With our HD PLA you have many more options. You can use this material in two ways. Choose the one you like best. You can use it as a normal PLA and get prints characterized by a very good adhesion between the layers and high precision. You can also make your prints acquire similar properties to that of ABS – better impact resistance and high temperature resistance. All you need is an oven. Yes, an oven! By annealing our HD PLA in an oven, in accordance with the manual, you will avoid all the inconveniences of printing with ABS, such as unpleasant odour or hazardous fumes.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "http://fiberlogy.com/en/fiberlogy-filaments/filament-hd-pla/",
"author": {
"author_id": "Fiberlogy",
@@ -1434,7 +1434,7 @@
"display_name": "Filo3D PLA",
"description": "Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://dagoma.fr",
"author": {
"author_id": "Dagoma",
@@ -1451,7 +1451,7 @@
"display_name": "IMADE3D JellyBOX PETG",
"description": "",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "http://shop.imade3d.com/filament.html",
"author": {
"author_id": "IMADE3D",
@@ -1468,7 +1468,7 @@
"display_name": "IMADE3D JellyBOX PLA",
"description": "",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "http://shop.imade3d.com/filament.html",
"author": {
"author_id": "IMADE3D",
@@ -1485,7 +1485,7 @@
"display_name": "Octofiber PLA",
"description": "PLA material from Octofiber.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://nl.octofiber.com/3d-printing-filament/pla.html",
"author": {
"author_id": "Octofiber",
@@ -1502,7 +1502,7 @@
"display_name": "PolyFlex™ PLA",
"description": "PolyFlex™ is a highly flexible yet easy to print 3D printing material. Featuring good elasticity and a large strain-to- failure, PolyFlex™ opens up a completely new realm of applications.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "http://www.polymaker.com/shop/polyflex/",
"author": {
"author_id": "Polymaker",
@@ -1519,7 +1519,7 @@
"display_name": "PolyMax™ PLA",
"description": "PolyMax™ PLA is a 3D printing material with excellent mechanical properties and printing quality. PolyMax™ PLA has an impact resistance of up to nine times that of regular PLA, and better overall mechanical properties than ABS.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "http://www.polymaker.com/shop/polymax/",
"author": {
"author_id": "Polymaker",
@@ -1536,7 +1536,7 @@
"display_name": "PolyPlus™ PLA True Colour",
"description": "PolyPlus™ PLA is a premium PLA designed for all desktop FDM/FFF 3D printers. It is produced with our patented Jam-Free™ technology that ensures consistent extrusion and prevents jams.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "http://www.polymaker.com/shop/polyplus-true-colour/",
"author": {
"author_id": "Polymaker",
@@ -1553,7 +1553,7 @@
"display_name": "PolyWood™ PLA",
"description": "PolyWood™ is a wood mimic printing material that contains no actual wood ensuring a clean Jam-Free™ printing experience.",
"package_version": "1.0.1",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "http://www.polymaker.com/shop/polywood/",
"author": {
"author_id": "Polymaker",
@@ -1570,7 +1570,7 @@
"display_name": "Ultimaker ABS",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@@ -1589,7 +1589,7 @@
"display_name": "Ultimaker Breakaway",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com/products/materials/breakaway",
"author": {
"author_id": "UltimakerPackages",
@@ -1608,7 +1608,7 @@
"display_name": "Ultimaker CPE",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@@ -1627,7 +1627,7 @@
"display_name": "Ultimaker CPE+",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com/products/materials/cpe",
"author": {
"author_id": "UltimakerPackages",
@@ -1646,7 +1646,7 @@
"display_name": "Ultimaker Nylon",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@@ -1665,7 +1665,7 @@
"display_name": "Ultimaker PC",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com/products/materials/pc",
"author": {
"author_id": "UltimakerPackages",
@@ -1684,7 +1684,7 @@
"display_name": "Ultimaker PLA",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@@ -1703,7 +1703,7 @@
"display_name": "Ultimaker PP",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com/products/materials/pp",
"author": {
"author_id": "UltimakerPackages",
@@ -1722,7 +1722,7 @@
"display_name": "Ultimaker PVA",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com/products/materials/abs",
"author": {
"author_id": "UltimakerPackages",
@@ -1741,7 +1741,7 @@
"display_name": "Ultimaker TPU 95A",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com/products/materials/tpu-95a",
"author": {
"author_id": "UltimakerPackages",
@@ -1760,7 +1760,7 @@
"display_name": "Ultimaker Tough PLA",
"description": "Example package for material and quality profiles for Ultimaker materials.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://ultimaker.com/products/materials/tough-pla",
"author": {
"author_id": "UltimakerPackages",
@@ -1779,7 +1779,7 @@
"display_name": "Vertex Delta ABS",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",
@@ -1796,7 +1796,7 @@
"display_name": "Vertex Delta PET",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",
@@ -1813,7 +1813,7 @@
"display_name": "Vertex Delta PLA",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",
@@ -1830,7 +1830,7 @@
"display_name": "Vertex Delta TPU",
"description": "ABS material and quality files for the Delta Vertex K8800.",
"package_version": "1.4.0",
- "sdk_version": "7.5.0",
+ "sdk_version": "7.6.0",
"website": "https://vertex3dprinter.eu",
"author": {
"author_id": "Velleman",
diff --git a/resources/definitions/SV03.def.json b/resources/definitions/SV03.def.json
new file mode 100644
index 0000000000..5968a82c0d
--- /dev/null
+++ b/resources/definitions/SV03.def.json
@@ -0,0 +1,70 @@
+{
+ "version": 2,
+ "name": "Sovol-SV03",
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": true,
+ "author": "Sovol",
+ "manufacturer": "Sovol 3D",
+ "file_formats": "text/x-gcode",
+ "has_variants": false,
+ "has_machine_quality": false,
+ "preferred_quality_type": "draft",
+ "machine_extruder_trains": {
+ "0": "SV03_extruder_0"
+ }
+ },
+
+ "overrides": {
+ "machine_name": { "default_value": "SV03" },
+ "machine_extruder_count": { "default_value": 1 },
+ "machine_width": { "default_value": 350 },
+ "machine_depth": { "default_value": 350 },
+ "machine_height": { "default_value": 400 },
+ "machine_max_feedrate_x": { "value": 500 },
+ "machine_max_feedrate_y": { "value": 500 },
+ "machine_max_feedrate_z": { "value": 10 },
+ "machine_max_feedrate_e": { "value": 50 },
+ "machine_max_acceleration_x": { "value": 500 },
+ "machine_max_acceleration_y": { "value": 500 },
+ "machine_max_acceleration_z": { "value": 100 },
+ "machine_max_acceleration_e": { "value": 5000 },
+ "machine_acceleration": { "value": 500 },
+ "machine_max_jerk_xy": { "value": 10 },
+ "machine_max_jerk_z": { "value": 0.4 },
+ "machine_max_jerk_e": { "value": 5 },
+ "machine_heated_bed": { "default_value": true },
+ "material_diameter": { "default_value": 1.75 },
+ "acceleration_print": { "value": 500 },
+ "acceleration_travel": { "value": 500 },
+ "acceleration_travel_layer_0": { "value": "acceleration_travel" },
+ "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" },
+ "jerk_print": { "value": 8 },
+ "jerk_travel": { "value": "jerk_print" },
+ "jerk_travel_layer_0": { "value": "jerk_travel" },
+ "acceleration_enabled": { "value": false },
+ "jerk_enabled": { "value": false },
+ "speed_print": { "value": 50.0 } ,
+ "speed_infill": { "value": "speed_print" },
+ "skirt_brim_speed": { "value": "speed_layer_0" },
+ "line_width": { "value": "machine_nozzle_size" },
+ "optimize_wall_printing_order": { "value": "True" },
+ "material_initial_print_temperature": { "value": "material_print_temperature" },
+ "material_final_print_temperature": { "value": "material_print_temperature" },
+ "material_flow": { "value": 100 },
+ "z_seam_type": { "value": "'back'" },
+ "z_seam_corner": { "value": "'z_seam_corner_weighted'" },
+ "infill_sparse_density": { "value": "20" },
+ "infill_pattern": { "value": "'lines'" },
+ "infill_before_walls": { "value": false },
+ "infill_overlap": { "value": 30.0 },
+ "skin_overlap": { "value": 10.0 },
+ "infill_wipe_dist": { "value": 0.0 },
+ "wall_0_wipe_dist": { "value": 0.0 },
+ "retraction_amount": { "default_value": 3},
+ "retraction_speed": { "default_value": 50},
+ "adhesion_type": { "value": "'skirt'" },
+ "machine_start_gcode": { "default_value": "M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration\nM203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate\nM204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration\nM205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\n\nG28 ;Home\nG29 ;Automatic Leveling\n\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Z Axis up\n" },
+ "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X0 Y240 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" }
+ }
+}
diff --git a/resources/definitions/abax_pri3.def.json b/resources/definitions/abax_pri3.def.json
index 8f0d1a97d8..914dc4d3e0 100644
--- a/resources/definitions/abax_pri3.def.json
+++ b/resources/definitions/abax_pri3.def.json
@@ -1,11 +1,11 @@
{
- "name": "ABAX PRi3",
+ "name": "Abax PRi3",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "ABAX 3d Technologies",
- "manufacturer": "ABAX 3d Technologies",
+ "author": "Abax 3D Technologies",
+ "manufacturer": "Abax 3D Technologies",
"file_formats": "text/x-gcode",
"machine_extruder_trains":
{
diff --git a/resources/definitions/abax_pri5.def.json b/resources/definitions/abax_pri5.def.json
index 5730cc6e05..cb6566e08c 100644
--- a/resources/definitions/abax_pri5.def.json
+++ b/resources/definitions/abax_pri5.def.json
@@ -1,11 +1,11 @@
{
- "name": "ABAX PRi5",
+ "name": "Abax PRi5",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "ABAX 3d Technologies",
- "manufacturer": "ABAX 3d Technologies",
+ "author": "Abax 3D Technologies",
+ "manufacturer": "Abax 3D Technologies",
"file_formats": "text/x-gcode",
"machine_extruder_trains":
{
diff --git a/resources/definitions/abax_titan.def.json b/resources/definitions/abax_titan.def.json
index dc5dd3b14f..0b22634e1f 100644
--- a/resources/definitions/abax_titan.def.json
+++ b/resources/definitions/abax_titan.def.json
@@ -1,11 +1,11 @@
{
- "name": "ABAX Titan",
+ "name": "Abax Titan",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "ABAX 3d Technologies",
- "manufacturer": "ABAX 3d Technologies",
+ "author": "Abax 3D Technologies",
+ "manufacturer": "Abax 3D Technologies",
"file_formats": "text/x-gcode",
"machine_extruder_trains":
{
diff --git a/resources/definitions/alya3dp.def.json b/resources/definitions/alya3dp.def.json
index 4c220fb98b..f335285cfb 100644
--- a/resources/definitions/alya3dp.def.json
+++ b/resources/definitions/alya3dp.def.json
@@ -1,11 +1,11 @@
{
"version": 2,
- "name": "ALYA",
+ "name": "Alya",
"inherits": "fdmprinter",
"metadata":
{
"visible": true,
- "author": "ALYA",
+ "author": "Alya",
"manufacturer": "Kati Hal ARGE",
"file_formats": "text/x-gcode",
"platform": "alya_platform.3mf",
diff --git a/resources/definitions/alyanx3dp.def.json b/resources/definitions/alyanx3dp.def.json
index 627b251706..76ce87445b 100644
--- a/resources/definitions/alyanx3dp.def.json
+++ b/resources/definitions/alyanx3dp.def.json
@@ -1,11 +1,11 @@
{
"version": 2,
- "name": "ALYA NX",
+ "name": "Alya NX",
"inherits": "fdmprinter",
"metadata":
{
"visible": true,
- "author": "ALYA",
+ "author": "Alya",
"manufacturer": "Kati Hal ARGE",
"file_formats": "text/x-gcode",
"platform": "alya_nx_platform.3mf",
diff --git a/resources/definitions/anet3d_a2_plus.def.json b/resources/definitions/anet3d_a2_plus.def.json
index cad4492205..8c766577ac 100644
--- a/resources/definitions/anet3d_a2_plus.def.json
+++ b/resources/definitions/anet3d_a2_plus.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Anet A2 PLUS",
+ "name": "Anet A2 Plus",
"inherits": "anet3d",
"metadata": {
"visible": true,
@@ -11,7 +11,7 @@
},
"overrides": {
- "machine_name": { "default_value": "Anet A2 PLUS" },
+ "machine_name": { "default_value": "Anet A2 Plus" },
"machine_width": {
"default_value": 220
},
diff --git a/resources/definitions/anet3d_a8_plus.def.json b/resources/definitions/anet3d_a8_plus.def.json
index 8e50f50663..baafd53710 100644
--- a/resources/definitions/anet3d_a8_plus.def.json
+++ b/resources/definitions/anet3d_a8_plus.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Anet A8 PLUS",
+ "name": "Anet A8 Plus",
"inherits": "anet3d",
"metadata": {
"visible": true,
@@ -11,7 +11,7 @@
},
"overrides": {
- "machine_name": { "default_value": "Anet A8 PLUS" },
+ "machine_name": { "default_value": "Anet A8 Plus" },
"machine_width": {
"default_value": 300
},
diff --git a/resources/definitions/anet3d_et4_pro.def.json b/resources/definitions/anet3d_et4_pro.def.json
index 5a6b660044..47cd08f50f 100644
--- a/resources/definitions/anet3d_et4_pro.def.json
+++ b/resources/definitions/anet3d_et4_pro.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Anet ET4 PRO",
+ "name": "Anet ET4 Pro",
"inherits": "anet3d",
"metadata": {
"visible": true,
@@ -11,7 +11,7 @@
},
"overrides": {
- "machine_name": { "default_value": "Anet ET4 PRO" },
+ "machine_name": { "default_value": "Anet ET4 Pro" },
"machine_width": {
"default_value": 220
},
diff --git a/resources/definitions/anycubic_i3_mega_s.def.json b/resources/definitions/anycubic_i3_mega_s.def.json
new file mode 100644
index 0000000000..f0c786a393
--- /dev/null
+++ b/resources/definitions/anycubic_i3_mega_s.def.json
@@ -0,0 +1,143 @@
+{
+ "version": 2,
+ "name": "Anycubic i3 Mega (S, Pro)",
+ "inherits": "fdmprinter",
+ "metadata":
+ {
+ "visible": true,
+ "author": "Nils Hendrik Rottgardt",
+ "manufacturer": "Anycubic",
+ "file_formats": "text/x-gcode",
+ "platform": "anycubic_i3_mega_s_platform.3mf",
+ "has_materials": true,
+ "has_variants": false,
+ "has_machine_quality": true,
+ "preferred_quality_type": "normal",
+ "machine_extruder_trains":
+ {
+ "0": "anycubic_i3_mega_s_extruder_0"
+ }
+ },
+
+ "overrides":
+ {
+ "machine_name": { "default_value": "Anycubic i3 Mega (S, Pro)" },
+ "machine_heated_bed": { "default_value": true },
+ "machine_width": { "default_value": 210 },
+ "machine_height": { "default_value": 205 },
+ "machine_depth": { "default_value": 210 },
+ "machine_center_is_zero": { "default_value": false },
+ "gantry_height": { "value": "0" },
+ "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
+ "machine_start_gcode": { "default_value": "G21 ; metric values \nG90 ; absolute positioning \nM82 ; set extruder to absolute mode \nM107 ; start with the fan off \nM140 S{material_bed_temperature_layer_0} ; Start heating the bed \nG4 S60 ; wait 1 minute \nM104 S{material_initial_print_temperature} ; start heating the hot end \nM190 S{material_bed_temperature_layer_0} ; wait for bed \nM109 S{material_initial_print_temperature} ; wait for hotend \nM300 S1000 P500 ; BEEP heating done \nG28 X0 Y10 Z0 ; move X/Y to min endstops \nM420 S1 ; Enable leveling \nM420 Z2.0 ; Set leveling fading height to 2 mm \nG0 Z0.15 ; lift nozzle a bit \nG92 E0 ; zero the extruded length \nG1 X50 E25 F500 ; Extrude 25mm of filament in a 5cm line. \nG92 E0 ; zero the extruded length again \nG1 E-2 F500 ; Retract a little \nG1 X120 F4000 ; Quickly wipe away from the filament line`" },
+ "machine_end_gcode": { "default_value": "M104 S0 ; Extruder off \nM140 S0 ; Heatbed off \nM107 ; Fan off \nG91 ; relative positioning \nG1 E-5 F300 ; retract a little \nG1 Z+10 E-5 ; X-20 Y-20 F{travel_xy_speed} ; lift print head \nG28 X0 Y0 ; homing \nG1 Y180 F2000 ; reset feedrate \nM84 ; disable stepper motors \nG90 ; absolute positioning \nM300 S440 P200 ; Make Print Completed Tones \nM300 S660 P250 ; beep \nM300 S880 P300 ; beep" },
+
+ "machine_max_acceleration_x": { "value": 3000 },
+ "machine_max_acceleration_y": { "value": 3000 },
+ "machine_max_acceleration_z": { "value": 3000 },
+ "machine_max_acceleration_e": { "value": 3000 },
+ "machine_acceleration": { "value": 3000 },
+
+ "machine_max_jerk_xy": { "value": 10 },
+ "machine_max_jerk_z": { "value": 0.4 },
+ "machine_max_jerk_e": { "value": 5 },
+
+ "material_diameter": { "default_value": 1.75 },
+
+ "acceleration_print": { "value": 1800 },
+ "acceleration_travel": { "value": 3000 },
+ "acceleration_travel_layer_0": { "value": "acceleration_travel" },
+ "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" },
+
+ "jerk_print": { "value": 8 },
+ "jerk_travel": { "value": 10 },
+ "jerk_travel_layer_0": { "value": "jerk_travel" },
+
+ "acceleration_enabled": { "value": false },
+ "jerk_enabled": { "value": true },
+
+ "speed_print": { "value": 50.0 } ,
+ "speed_infill": { "value": "speed_print" },
+ "speed_wall": { "value": "speed_print / 2" },
+ "speed_wall_0": { "value": "speed_wall" },
+ "speed_wall_x": { "value": "speed_wall" },
+ "speed_topbottom": { "value": "speed_print / 2" },
+ "speed_roofing": { "value": "speed_topbottom" },
+ "speed_travel": { "value": 100.0, "maximum_value_warning": 150.0 },
+ "speed_layer_0": { "value": 20.0 },
+ "speed_print_layer_0": { "value": "speed_layer_0" },
+ "speed_travel_layer_0": { "value": 100.0 },
+ "speed_prime_tower": { "value": "speed_topbottom" },
+ "speed_support": { "value": "speed_wall_0" },
+ "speed_support_interface": { "value": "speed_topbottom" },
+
+ "skirt_brim_speed": { "value": "speed_layer_0" },
+
+ "optimize_wall_printing_order": { "value": "True" },
+
+ "material_initial_print_temperature": { "value": "material_print_temperature + 10" },
+ "material_final_print_temperature": { "value": "material_print_temperature" },
+ "material_flow": { "value": 100 },
+ "travel_compensate_overlapping_walls_0_enabled": { "value": "False" },
+
+ "infill_sparse_density": { "value": 25 },
+ "infill_before_walls": { "value": false },
+ "infill_overlap": { "value": 15.0 },
+
+
+ "retraction_speed": { "value": 25, "maximum_value": 40 },
+ "retraction_retract_speed": { "maximum_value": 40 },
+ "retraction_prime_speed": { "maximum_value": 40 },
+
+ "retraction_hop_enabled": { "value": true },
+ "retraction_hop": { "value": 0.075 },
+ "retraction_hop_only_when_collides": { "value": true },
+
+ "retraction_combing": { "value": "'off'" },
+ "retraction_combing_max_distance": { "value": 30 },
+ "travel_avoid_other_parts": { "value": true },
+ "travel_avoid_supports": { "value": true },
+ "travel_retract_before_outer_wall": { "value": true },
+
+ "retraction_amount": { "value": 6 },
+ "retraction_enable": { "value": true },
+ "retraction_min_travel": { "value": 1.5 },
+
+ "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" },
+ "cool_fan_speed": { "value": 70 },
+ "cool_fan_speed_0": { "value": 30 },
+
+ "cool_fan_enabled": { "value": true },
+ "cool_min_layer_time": { "value": 10 },
+
+ "adhesion_type": { "value": "'none' if support_enable else 'skirt'" },
+ "brim_replaces_support": { "value": false },
+ "skirt_gap": { "value": 5.0 },
+ "skirt_line_count": { "value": 4 },
+
+
+ "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width / 2.0 / layer_height)))" },
+ "support_pattern": { "value": "'zigzag'" },
+ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" },
+ "support_use_towers": { "value": false },
+ "support_xy_distance": { "value": "wall_line_width_0 * 2" },
+ "support_xy_distance_overhang": { "value": "wall_line_width_0" },
+ "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" },
+ "support_xy_overrides_z": { "value": "'xy_overrides_z'" },
+ "support_wall_count": { "value": 1 },
+ "support_brim_enable": { "value": true },
+ "support_brim_width": { "value": 4 },
+
+ "support_interface_enable": { "value": true },
+ "support_structure": { "value": "'tree'" },
+ "support_type": { "value": "'buildplate' if support_structure == 'tree' else 'everywhere'" },
+ "support_interface_height": { "value": "layer_height * 4" },
+ "support_interface_density": { "value": 33.333 },
+ "support_interface_pattern": { "value": "'grid'" },
+ "support_interface_skip_height": { "value": 0.2 },
+ "minimum_support_area": { "value": 2 },
+ "minimum_interface_area": { "value": 10 },
+ "top_bottom_thickness": { "value": "layer_height_0 + layer_height * math.floor(1.2 / layer_height)" },
+ "wall_thickness": { "value": "line_width * 3" }
+ }
+}
diff --git a/resources/definitions/anycubic_i3_mega_x.def.json b/resources/definitions/anycubic_i3_mega_x.def.json
new file mode 100644
index 0000000000..eb70c60c98
--- /dev/null
+++ b/resources/definitions/anycubic_i3_mega_x.def.json
@@ -0,0 +1,17 @@
+{
+ "version": 2,
+ "name": "Anycubic i3 Mega X",
+ "inherits": "anycubic_i3_mega_s",
+ "metadata":
+ {
+ "quality_definition": "anycubic_i3_mega_s",
+ "platform": "anycubic_i3_mega_x_platform.stl"
+ },
+ "overrides":
+ {
+ "machine_name": { "default_value": "Anycubic i3 Mega X" },
+ "machine_width": { "default_value": 300 },
+ "machine_height": { "default_value": 305 },
+ "machine_depth": { "default_value": 300 }
+ }
+}
diff --git a/resources/definitions/bibo2_dual.def.json b/resources/definitions/bibo2_dual.def.json
index 8c6dc4ec76..dad08603aa 100644
--- a/resources/definitions/bibo2_dual.def.json
+++ b/resources/definitions/bibo2_dual.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "BIBO2 dual",
+ "name": "Bibo 2 dual",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
diff --git a/resources/definitions/biqu_b1.def.json b/resources/definitions/biqu_b1.def.json
index 1ed42367bd..d60e229152 100755
--- a/resources/definitions/biqu_b1.def.json
+++ b/resources/definitions/biqu_b1.def.json
@@ -1,5 +1,5 @@
{
- "name": "BIQU B1",
+ "name": "Biqu B1",
"version": 2,
"inherits": "biqu_base",
"metadata": {
diff --git a/resources/definitions/biqu_b1_abl.def.json b/resources/definitions/biqu_b1_abl.def.json
index e43d50deeb..11876ae80b 100755
--- a/resources/definitions/biqu_b1_abl.def.json
+++ b/resources/definitions/biqu_b1_abl.def.json
@@ -1,5 +1,5 @@
{
- "name": "BIQU B1 ABL",
+ "name": "Biqu B1 ABL",
"version": 2,
"inherits": "biqu_base",
"metadata": {
diff --git a/resources/definitions/biqu_base.def.json b/resources/definitions/biqu_base.def.json
index d6365f0aab..960fb6d494 100755
--- a/resources/definitions/biqu_base.def.json
+++ b/resources/definitions/biqu_base.def.json
@@ -5,7 +5,7 @@
"metadata": {
"visible": false,
"author": "Luke Harrison",
- "manufacturer": "BIQU",
+ "manufacturer": "Biqu",
"file_formats": "text/x-gcode",
"first_start_actions": ["MachineSettingsAction"],
diff --git a/resources/definitions/blv_mgn_cube_300.def.json b/resources/definitions/blv_mgn_cube_300.def.json
index b86949a966..48fb7cd149 100644
--- a/resources/definitions/blv_mgn_cube_300.def.json
+++ b/resources/definitions/blv_mgn_cube_300.def.json
@@ -1,10 +1,9 @@
{
- "name": "BLV mgn Cube 300",
+ "name": "BLV MGN Cube 300",
"version": 2,
"inherits": "blv_mgn_cube_base",
"metadata": {
"visible": true,
- "setting_version": 18,
"author": "wolfgangmauer",
"manufacturer": "BLV",
"file_formats": "text/x-gcode",
diff --git a/resources/definitions/blv_mgn_cube_350.def.json b/resources/definitions/blv_mgn_cube_350.def.json
index fb8d37ff24..c5e5e28723 100644
--- a/resources/definitions/blv_mgn_cube_350.def.json
+++ b/resources/definitions/blv_mgn_cube_350.def.json
@@ -1,10 +1,9 @@
{
- "name": "BLV mgn Cube 350",
+ "name": "BLV MGN Cube 350",
"version": 2,
"inherits": "blv_mgn_cube_base",
"metadata": {
"visible": true,
- "setting_version": 18,
"author": "wolfgangmauer",
"manufacturer": "BLV",
"file_formats": "text/x-gcode",
diff --git a/resources/definitions/blv_mgn_cube_base.def.json b/resources/definitions/blv_mgn_cube_base.def.json
index c56112c4c5..2c73b80cfc 100644
--- a/resources/definitions/blv_mgn_cube_base.def.json
+++ b/resources/definitions/blv_mgn_cube_base.def.json
@@ -1,5 +1,5 @@
{
- "name": "BLV mgn Cube Base",
+ "name": "BLV MGN Cube Base",
"version": 2,
"inherits": "anet3d",
"metadata": {
diff --git a/resources/definitions/creality_base.def.json b/resources/definitions/creality_base.def.json
index e07c6057a0..38becb0838 100644
--- a/resources/definitions/creality_base.def.json
+++ b/resources/definitions/creality_base.def.json
@@ -1,5 +1,5 @@
{
- "name": "Creawsome Base Printer",
+ "name": "Creality Base Printer",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
diff --git a/resources/definitions/creality_ender4.def.json b/resources/definitions/creality_ender4.def.json
index 9c13797c92..6fd02d879f 100644
--- a/resources/definitions/creality_ender4.def.json
+++ b/resources/definitions/creality_ender4.def.json
@@ -4,9 +4,9 @@
"inherits": "creality_base",
"overrides": {
"machine_name": { "default_value": "Creality Ender-4" },
- "machine_width": { "default_value": 452 },
- "machine_depth": { "default_value": 468 },
- "machine_height": { "default_value": 482 },
+ "machine_width": { "default_value": 220 },
+ "machine_depth": { "default_value": 220 },
+ "machine_height": { "default_value": 300 },
"machine_head_with_fans_polygon": { "default_value": [
[-26, 34],
[-26, -32],
@@ -24,4 +24,4 @@
"quality_definition": "creality_base",
"visible": true
}
-}
\ No newline at end of file
+}
diff --git a/resources/definitions/deltacomb_base.def.json b/resources/definitions/deltacomb_base.def.json
old mode 100755
new mode 100644
index e1f66ee8df..254257036a
--- a/resources/definitions/deltacomb_base.def.json
+++ b/resources/definitions/deltacomb_base.def.json
@@ -13,7 +13,7 @@
"has_variants": true,
"variants_name": "Head",
- "preferred_quality_type": "d",
+ "preferred_quality_type": "D020",
"preferred_material": "generic_pla",
"machine_extruder_trains": {
@@ -29,7 +29,7 @@
"machine_heated_bed": { "default_value": true },
"machine_center_is_zero": { "default_value": true },
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
- "machine_start_gcode": { "default_value": ";---------------------------------------\n;Deltacomb start script\n;---------------------------------------\nG21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nG92 E0 ;zero the extruded length\nG1 Z15.0 F9000 ;move to the platform down 15mm\nG1 F9000\n\n;Put printing message on LCD screen\nM117 Printing...\n;---------------------------------------"},
+ "machine_start_gcode": { "default_value": ";---------------------------------------\n;Deltacomb start script\n;---------------------------------------\nG21 ;metric values\nG90 ;absolute positioning\nM107 ;start with the fan off\nG28 ;Home all axes (max endstops)\nM420 S1; Bed Level Enable\nG92 E0 ;zero the extruded length\nG1 Z15.0 F9000 ;move to the platform down 15mm\nG1 F9000\n\n;Put printing message on LCD screen\nM117 In stampa...\nM140 S{print_bed_temperature} ;set the target bed temperature\n;---------------------------------------"},
"machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 F15000 X8.0 E-4.5 ;Wipe filament+material retraction\nG1 F15000 E4.0 Z1 ;Retraction compensation\nG28 ;Home all axes (max endstops)\nM84 ;steppers off\n" },
"machine_shape": { "default_value": "elliptic" },
@@ -60,25 +60,32 @@
"jerk_infill": { "value": "10" },
"jerk_travel": { "value": "10" },
- "retraction_hop_enabled": { "default_value": true },
- "retraction_hop": { "default_value": 0.5 },
- "retraction_amount" : { "default_value": 3.5 },
- "retraction_speed" : { "default_value": 70 },
- "retraction_combing" : { "default_value": "noskin" },
- "travel_avoid_distance": { "value": "1" },
+ "retraction_hop_enabled": { "default_value": true },
+ "retraction_hop": { "default_value": 1.0 },
+ "retraction_amount" : { "default_value": 3.5 },
+ "retraction_speed" : { "default_value": 40 },
+ "retraction_combing" : { "default_value": "noskin" },
+ "travel_avoid_distance": { "value": "1" },
+ "travel_avoid_supports": { "value": "True" },
+ "retraction_hop_only_when_collides": { "value": "1" },
+
+ "switch_extruder_retraction_amount": { "value": 10},
+ "switch_extruder_retraction_speeds": { "default_value": 70 },
"top_bottom_thickness": { "default_value": 0.8 },
"roofing_layer_count": { "value": "1" },
"roofing_line_width": { "value": "line_width * 0.75" },
+ "z_seam_corner": { "value": "'z_seam_corner_weighted'" },
"infill_sparse_density": { "default_value": 30 },
"infill_pattern": { "value": "'cubic'" },
"infill_before_walls": { "default_value": false },
- "support_z_distance": { "value": "layer_height * 2" },
+ "support_z_distance": { "value": "layer_height" },
"support_bottom_distance": { "value": "layer_height" },
- "support_use_towers" : { "default_value": false },
- "support_bottom_enable" : { "value": "0" },
+ "support_use_towers": { "default_value": false },
+ "support_bottom_enable": { "value": false },
+ "support_wall_count": { "value": "1" },
"skirt_brim_speed": { "value": "speed_layer_0" },
"skirt_line_count": { "default_value": 3 },
@@ -86,7 +93,8 @@
"brim_width": { "value": "3" },
"prime_tower_size": { "value": "math.sqrt(extruders_enabled_count * prime_tower_min_volume / layer_height / math.pi) * 2"},
- "prime_tower_position_x": { "value": "prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0)" },
+ "prime_tower_brim_enable": { "value": false },
+ "prime_tower_position_x": { "value": "prime_tower_size / 2" },
"prime_tower_position_y": { "value": "machine_depth / 2 - prime_tower_size - max(extruderValue(adhesion_extruder_nr, 'brim_width') * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 if adhesion_type == 'brim' or (prime_tower_brim_enable and adhesion_type != 'raft') else (extruderValue(adhesion_extruder_nr, 'raft_margin') if adhesion_type == 'raft' else (extruderValue(adhesion_extruder_nr, 'skirt_gap') if adhesion_type == 'skirt' else 0)), max(extruderValues('travel_avoid_distance'))) - max(extruderValues('support_offset')) - sum(extruderValues('skirt_brim_line_width')) * extruderValue(adhesion_extruder_nr, 'initial_layer_line_width_factor') / 100 - (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0) - 1" }
}
}
diff --git a/resources/definitions/deltacomb_dc20.def.json b/resources/definitions/deltacomb_dc20.def.json
old mode 100755
new mode 100644
diff --git a/resources/definitions/deltacomb_dc20dual.def.json b/resources/definitions/deltacomb_dc20dual.def.json
old mode 100755
new mode 100644
index a78415331c..77b228fdc0
--- a/resources/definitions/deltacomb_dc20dual.def.json
+++ b/resources/definitions/deltacomb_dc20dual.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Deltacomb DC-20 DUAL",
+ "name": "Deltacomb DC-20 Dual",
"inherits": "deltacomb_base",
"metadata": {
@@ -19,6 +19,20 @@
"machine_extruder_count": { "default_value": 2, "maximum_value": "2" },
"machine_width": { "default_value": 190 },
"machine_depth": { "default_value": 190 },
- "machine_height": { "default_value": 250 }
+ "machine_height": { "default_value": 250 },
+ "machine_disallowed_areas":{ "default_value": [
+ [[ 53, 78], [ 63, 78], [ 73, 70], [ 62, 70]],
+ [[ 62, 70], [ 73, 70], [ 81, 61], [ 70, 61]],
+ [[ 70, 61], [ 81, 61], [ 88, 51], [ 76, 51]],
+ [[ 76, 51], [ 88, 51], [ 93, 40], [ 81, 40]],
+ [[ 81, 40], [ 93, 40], [ 97, 29], [ 85, 29]],
+ [[ 85, 29], [ 97, 29], [ 101, 17], [ 88, 17]],
+ [[-37, 78], [-47, 78], [-57, 70], [-46, 70]],
+ [[-46, 70], [-57, 70], [-69, 61], [-54, 61]],
+ [[-54, 61], [-69, 61], [-72, 51], [-60, 51]],
+ [[-60, 51], [-72, 51], [-77, 40], [-65, 40]],
+ [[-65, 40], [-77, 40], [-81, 29], [-69, 29]],
+ [[-69, 29], [-81, 29], [-85, 17], [-72, 17]]
+ ]}
}
}
diff --git a/resources/definitions/deltacomb_dc20flux.def.json b/resources/definitions/deltacomb_dc20flux.def.json
index fdd4f77942..fa6fdb0ca7 100644
--- a/resources/definitions/deltacomb_dc20flux.def.json
+++ b/resources/definitions/deltacomb_dc20flux.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Deltacomb DC-20 FLUX",
+ "name": "Deltacomb DC-20 Flux",
"inherits": "deltacomb_base",
"metadata": {
@@ -22,8 +22,12 @@
"machine_depth": { "default_value": 190 },
"machine_height": { "default_value": 250 },
"machine_extruder_count": { "default_value": 2, "maximum_value": "4" },
+ "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" },
"switch_extruder_retraction_amount": { "value": "0" },
- "prime_tower_min_volume": { "value": "45" },
- "prime_tower_enable": { "value": "1" }
+ "prime_tower_min_volume": { "value": "50" },
+ "prime_tower_enable": { "value": "1" },
+ "material_initial_print_temperature": { "value": "material_print_temperature" },
+ "material_final_print_temperature": { "value": "material_print_temperature" },
+ "material_standby_temperature": { "value": "material_print_temperature" }
}
}
diff --git a/resources/definitions/deltacomb_dc21.def.json b/resources/definitions/deltacomb_dc21.def.json
old mode 100755
new mode 100644
diff --git a/resources/definitions/deltacomb_dc21dual.def.json b/resources/definitions/deltacomb_dc21dual.def.json
old mode 100755
new mode 100644
index d173888f7a..97cc057944
--- a/resources/definitions/deltacomb_dc21dual.def.json
+++ b/resources/definitions/deltacomb_dc21dual.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Deltacomb DC-21 DUAL",
+ "name": "Deltacomb DC-21 Dual",
"inherits": "deltacomb_base",
"metadata": {
diff --git a/resources/definitions/deltacomb_dc21flux.def.json b/resources/definitions/deltacomb_dc21flux.def.json
index c6d20cb301..f2b7941518 100644
--- a/resources/definitions/deltacomb_dc21flux.def.json
+++ b/resources/definitions/deltacomb_dc21flux.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Deltacomb DC-21 FLUX",
+ "name": "Deltacomb DC-21 Flux",
"inherits": "deltacomb_base",
"metadata": {
@@ -17,13 +17,17 @@
},
"overrides": {
- "machine_name": { "default_value": "Deltacomb DC-20 FLUX" },
+ "machine_name": { "default_value": "Deltacomb DC-21 FLUX" },
"machine_width": { "default_value": 190 },
"machine_depth": { "default_value": 190 },
"machine_height": { "default_value": 400 },
"machine_extruder_count": { "default_value": 2, "maximum_value": "4" },
+ "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" },
"switch_extruder_retraction_amount": { "value": "0" },
- "prime_tower_min_volume": { "value": "45" },
- "prime_tower_enable": { "value": "1" }
+ "prime_tower_min_volume": { "value": "50" },
+ "prime_tower_enable": { "value": "1" },
+ "material_initial_print_temperature": { "value": "material_print_temperature" },
+ "material_final_print_temperature": { "value": "material_print_temperature" },
+ "material_standby_temperature": { "value": "material_print_temperature" }
}
-}
+}
\ No newline at end of file
diff --git a/resources/definitions/deltacomb_dc30.def.json b/resources/definitions/deltacomb_dc30.def.json
old mode 100755
new mode 100644
diff --git a/resources/definitions/deltacomb_dc30dual.def.json b/resources/definitions/deltacomb_dc30dual.def.json
old mode 100755
new mode 100644
index 4ac2c185b7..97ad1bd102
--- a/resources/definitions/deltacomb_dc30dual.def.json
+++ b/resources/definitions/deltacomb_dc30dual.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Deltacomb DC-30 DUAL",
+ "name": "Deltacomb DC-30 Dual",
"inherits": "deltacomb_base",
"metadata": {
diff --git a/resources/definitions/deltacomb_dc30flux.def.json b/resources/definitions/deltacomb_dc30flux.def.json
index 3b2148d9b8..6bf095701c 100644
--- a/resources/definitions/deltacomb_dc30flux.def.json
+++ b/resources/definitions/deltacomb_dc30flux.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Deltacomb DC-30 FLUX",
+ "name": "Deltacomb DC-30 Flux",
"inherits": "deltacomb_base",
"metadata": {
@@ -22,8 +22,12 @@
"machine_depth": { "default_value": 290 },
"machine_height": { "default_value": 300 },
"machine_extruder_count": { "default_value": 2, "maximum_value": "4" },
+ "machine_end_gcode": { "default_value": ";---------------------------------------\n;Deltacomb end script\n;---------------------------------------\nG91 ;relative positioning\nG1 X8.0 E-10 F6000 ;wipe filament+material retraction\nG1 Z2 E9 ;Lift and start filament shaping\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG28 ;home all axes (max endstops)\nM84 ;steppers off" },
"switch_extruder_retraction_amount": { "value": "0" },
- "prime_tower_min_volume": { "value": "45" },
- "prime_tower_enable": { "value": "1" }
+ "prime_tower_min_volume": { "value": "50" },
+ "prime_tower_enable": { "value": "1" },
+ "material_initial_print_temperature": { "value": "material_print_temperature" },
+ "material_final_print_temperature": { "value": "material_print_temperature" },
+ "material_standby_temperature": { "value": "material_print_temperature" }
}
}
diff --git a/resources/definitions/fabtotum.def.json b/resources/definitions/fabtotum.def.json
index 957dffaef9..1f2565803f 100644
--- a/resources/definitions/fabtotum.def.json
+++ b/resources/definitions/fabtotum.def.json
@@ -1,11 +1,11 @@
{
"version": 2,
- "name": "FABtotum Personal Fabricator",
+ "name": "Fabtotum Personal Fabricator",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "FABtotum",
- "manufacturer": "FABtotum",
+ "author": "Fabtotum",
+ "manufacturer": "Fabtotum",
"file_formats": "text/x-gcode",
"platform": "fabtotum_platform.3mf",
"has_machine_quality": true,
diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json
index 4d2603dbbc..04ad4c83fb 100644
--- a/resources/definitions/fdmprinter.def.json
+++ b/resources/definitions/fdmprinter.def.json
@@ -3103,7 +3103,6 @@
"default_value": 10,
"minimum_value": "0",
"maximum_value": "machine_max_feedrate_z",
- "enabled": "retraction_enable and retraction_hop_enabled",
"settable_per_mesh": false,
"settable_per_extruder": true
},
@@ -3884,7 +3883,7 @@
"retraction_combing_max_distance":
{
"label": "Max Comb Distance With No Retract",
- "description": "When non-zero, combing travel moves that are longer than this distance will use retraction.",
+ "description": "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction.",
"unit": "mm",
"type": "float",
"default_value": 0,
diff --git a/resources/definitions/flashforge_dreamer_nx.def.json b/resources/definitions/flashforge_dreamer_nx.def.json
index c551c2792c..04eae33272 100644
--- a/resources/definitions/flashforge_dreamer_nx.def.json
+++ b/resources/definitions/flashforge_dreamer_nx.def.json
@@ -14,6 +14,8 @@
"overrides": {
"machine_name": { "default_value": "Dreamer NX" },
+ "retraction_amount": { "default_value": 1.3 },
+ "retraction_speed": { "default_value": 40 },
"machine_width": {"default_value": 230},
"machine_height": {"default_value": 140},
"machine_depth": {"default_value": 150},
diff --git a/resources/definitions/flsun_q5.def.json b/resources/definitions/flsun_q5.def.json
index 18d0d46842..db52b54eb6 100644
--- a/resources/definitions/flsun_q5.def.json
+++ b/resources/definitions/flsun_q5.def.json
@@ -1,10 +1,10 @@
{
"version": 2,
- "name": "FLSUN Q5",
+ "name": "Flsun Q5",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "manufacturer": "FLSUN",
+ "manufacturer": "Flsun",
"author": "Daniel Kreuzhofer",
"file_formats": "text/x-gcode",
"machine_extruder_trains": {
diff --git a/resources/definitions/flsun_qq.def.json b/resources/definitions/flsun_qq.def.json
index 02b3849c12..6c32fea5e3 100644
--- a/resources/definitions/flsun_qq.def.json
+++ b/resources/definitions/flsun_qq.def.json
@@ -1,10 +1,10 @@
{
"version": 2,
- "name": "FLSUN QQ",
+ "name": "Flsun QQ",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "manufacturer": "FLSUN",
+ "manufacturer": "Flsun",
"author": "Daniel Green",
"file_formats": "text/x-gcode",
"machine_extruder_trains": {
diff --git a/resources/definitions/flsun_qq_s.def.json b/resources/definitions/flsun_qq_s.def.json
index 241c399cf5..024531a28d 100644
--- a/resources/definitions/flsun_qq_s.def.json
+++ b/resources/definitions/flsun_qq_s.def.json
@@ -1,11 +1,11 @@
{
"version": 2,
- "name": "FLSUN QQ-S",
+ "name": "Flsun QQ-S",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
"author": "Cataldo URSO & Eddy Emck ",
- "manufacturer": "FLSUN",
+ "manufacturer": "Flsun",
"platform": "flsun_qq_s.3mf",
"file_formats": "text/x-gcode",
"has_materials": true,
diff --git a/resources/definitions/hellbot_magna_dual.def.json b/resources/definitions/hellbot_magna_dual.def.json
index 591901885d..feaee38419 100644
--- a/resources/definitions/hellbot_magna_dual.def.json
+++ b/resources/definitions/hellbot_magna_dual.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Hellbot Magna DUAL",
+ "name": "Hellbot Magna Dual",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
diff --git a/resources/definitions/helloBEEprusa.def.json b/resources/definitions/helloBEEprusa.def.json
index 3ef938d7e3..ad1c9fd699 100644
--- a/resources/definitions/helloBEEprusa.def.json
+++ b/resources/definitions/helloBEEprusa.def.json
@@ -1,11 +1,11 @@
{
"version": 2,
- "name": "Hello BEE Prusa",
+ "name": "Hello Bee Prusa",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "BEEVERYCREATIVE",
- "manufacturer": "BEEVERYCREATIVE",
+ "author": "Beeverycreative",
+ "manufacturer": "Beeverycreative",
"platform": "BEEVERYCREATIVE-helloBEEprusa.3mf",
"platform_offset": [-226, -75, -196],
"file_formats": "text/x-gcode",
diff --git a/resources/definitions/ideagen3D_sapphire_plus.def.json b/resources/definitions/ideagen3D_sapphire_plus.def.json
index 7d7e3601a8..55f471793a 100644
--- a/resources/definitions/ideagen3D_sapphire_plus.def.json
+++ b/resources/definitions/ideagen3D_sapphire_plus.def.json
@@ -1,12 +1,12 @@
{
"version": 2,
- "name": "ideagen3D Sapphire Plus",
+ "name": "Ideagen3D Sapphire Plus",
"inherits": "fdmprinter",
"metadata":
{
"visible": true,
- "author": "ideagen3D",
- "manufacturer": "ideagen3D",
+ "author": "Ideagen3D",
+ "manufacturer": "Ideagen3D",
"file_formats": "text/x-gcode",
"platform": "ideagen3D_sapphire_plus.3mf",
"has_materials": true,
diff --git a/resources/definitions/imade3d_jellybox.def.json b/resources/definitions/imade3d_jellybox.def.json
index 9e481dbe0e..134ccc720c 100644
--- a/resources/definitions/imade3d_jellybox.def.json
+++ b/resources/definitions/imade3d_jellybox.def.json
@@ -1,10 +1,10 @@
{
"version": 2,
- "name": "IMADE3D JellyBOX Original",
+ "name": "Imade3D JellyBOX Original",
"inherits": "imade3d_jellybox_root",
"metadata": {
"visible": true,
- "author": "IMADE3D",
+ "author": "Imade3D",
"platform": "imade3d_jellybox_platform.3mf",
"platform_offset": [ 0, -0.3, 0],
"preferred_variant_name": "0.4 mm",
diff --git a/resources/definitions/imade3d_jellybox_2.def.json b/resources/definitions/imade3d_jellybox_2.def.json
index 3cb035bdd1..1774da0b1c 100644
--- a/resources/definitions/imade3d_jellybox_2.def.json
+++ b/resources/definitions/imade3d_jellybox_2.def.json
@@ -1,10 +1,10 @@
{
"version": 2,
- "name": "IMADE3D JellyBOX 2",
+ "name": "Imade3D JellyBOX 2",
"inherits": "imade3d_jellybox_root",
"metadata": {
"visible": true,
- "author": "IMADE3D",
+ "author": "Imade3D",
"platform": "imade3d_jellybox_2_platform.3mf",
"platform_offset": [ 0, -10, 0],
"preferred_variant_name": "0.4 mm",
diff --git a/resources/definitions/imade3d_jellybox_root.def.json b/resources/definitions/imade3d_jellybox_root.def.json
index f631fcb673..5de6d9dae1 100644
--- a/resources/definitions/imade3d_jellybox_root.def.json
+++ b/resources/definitions/imade3d_jellybox_root.def.json
@@ -3,8 +3,8 @@
"name": "imade3d_jellybox_root",
"inherits": "fdmprinter",
"metadata": {
- "author": "IMADE3D",
- "manufacturer": "IMADE3D",
+ "author": "Imade3D",
+ "manufacturer": "Imade3D",
"visible": false,
"file_formats": "text/x-gcode",
"exclude_materials": [
diff --git a/resources/definitions/inat_base.def.json b/resources/definitions/inat_base.def.json
index 5299f5f46f..974ae9ac5a 100644
--- a/resources/definitions/inat_base.def.json
+++ b/resources/definitions/inat_base.def.json
@@ -1,10 +1,10 @@
{
- "name": "INAT Base description",
+ "name": "Inat Base description",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
- "author": "INAT s.r.o.",
- "manufacturer": "INAT s.r.o.",
+ "author": "Inat s.r.o.",
+ "manufacturer": "Inat s.r.o.",
"file_formats": "text/x-gcode",
"visible": false,
"has_materials": true,
@@ -23,7 +23,7 @@
},
"overrides": {
"machine_start_gcode": {
- "default_value": "G28 ;Home\nG0 Z0.6 F200 ;Move nozzle down\nM192 ; Wait for probe temperature to settle\nG28 Z\nG29\nG0 X0 Y0 Z30 F6000\nM84 E\nM0\nG1 Z15.0 F6000 ;Move the platform down 15mm\n"
+ "default_value": "G28 ;Home\nG0 X-2 Y150 F6000 ;Move to the side\nG0 Z0.3 F200 ;Move nozzle down\nM192 ; Wait for probe temperature to settle\nG28 Z\nG29\nG0 X0 Y0 Z30 F6000\nM84 E\nM0\nG1 Z15.0 F6000 ;Move the platform down 15mm\n"
},
"machine_end_gcode": {
"default_value": "M400\nM104 S0\nM140 S0\nM107\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 R5 X\nG0 Y300 F3000\nM84\n"
diff --git a/resources/definitions/inat_proton_x_rail.def.json b/resources/definitions/inat_proton_x_rail.def.json
index 70badb7350..ffaca10bdf 100644
--- a/resources/definitions/inat_proton_x_rail.def.json
+++ b/resources/definitions/inat_proton_x_rail.def.json
@@ -13,7 +13,7 @@
"machine_name": { "default_value": "Proton X Rail" },
"machine_width": { "default_value": 304 },
"machine_depth": { "default_value": 304 },
- "machine_height": { "default_value": 675 },
+ "machine_height": { "default_value": 300 },
"machine_max_acceleration_x": {
"value": 500
},
diff --git a/resources/definitions/inat_proton_x_rod.def.json b/resources/definitions/inat_proton_x_rod.def.json
index 93f9371e97..1c3592bbd3 100644
--- a/resources/definitions/inat_proton_x_rod.def.json
+++ b/resources/definitions/inat_proton_x_rod.def.json
@@ -13,6 +13,6 @@
"machine_name": { "default_value": "Proton X Rod" },
"machine_width": { "default_value": 304 },
"machine_depth": { "default_value": 304 },
- "machine_height": { "default_value": 675 }
+ "machine_height": { "default_value": 300 }
}
}
\ No newline at end of file
diff --git a/resources/definitions/innovo_inventor.def.json b/resources/definitions/innovo_inventor.def.json
index a38bf98a5a..e930b994c3 100644
--- a/resources/definitions/innovo_inventor.def.json
+++ b/resources/definitions/innovo_inventor.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Innovo INVENTOR",
+ "name": "Innovo Inventor",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
diff --git a/resources/definitions/kemiq_q2_beta.def.json b/resources/definitions/kemiq_q2_beta.def.json
index 8eb7954e69..8957e75a28 100644
--- a/resources/definitions/kemiq_q2_beta.def.json
+++ b/resources/definitions/kemiq_q2_beta.def.json
@@ -4,8 +4,8 @@
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "KEMIQ",
- "manufacturer": "KEMIQ",
+ "author": "Kemiq",
+ "manufacturer": "Kemiq",
"file_formats": "text/x-gcode",
"platform": "kemiq_q2.3mf",
"has_machine_quality": true,
diff --git a/resources/definitions/kemiq_q2_gama.def.json b/resources/definitions/kemiq_q2_gama.def.json
index f30cce0311..6bb99125ef 100644
--- a/resources/definitions/kemiq_q2_gama.def.json
+++ b/resources/definitions/kemiq_q2_gama.def.json
@@ -4,8 +4,8 @@
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "KEMIQ",
- "manufacturer": "KEMIQ",
+ "author": "Kemiq",
+ "manufacturer": "Kemiq",
"file_formats": "text/x-gcode",
"platform": "kemiq_q2.3mf",
"has_machine_quality": true,
diff --git a/resources/definitions/kupido.def.json b/resources/definitions/kupido.def.json
index bee92ac282..717c85f93b 100644
--- a/resources/definitions/kupido.def.json
+++ b/resources/definitions/kupido.def.json
@@ -1,11 +1,11 @@
{
"version": 2,
- "name": "KUPIDO",
+ "name": "Kupido",
"inherits": "fdmprinter",
"metadata":
{
"visible": true,
- "author": "ALYA",
+ "author": "Kupido",
"manufacturer": "Kati Hal ARGE",
"file_formats": "text/x-gcode",
"platform_offset": [ 0, 0, 0],
diff --git a/resources/definitions/longer_base.def.json b/resources/definitions/longer_base.def.json
new file mode 100644
index 0000000000..d1638fda75
--- /dev/null
+++ b/resources/definitions/longer_base.def.json
@@ -0,0 +1,170 @@
+{
+ "name": "Longer Base Printer",
+ "version": 2,
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": false,
+ "author": "Longer",
+ "manufacturer": "Longer",
+ "file_formats": "text/x-gcode",
+ "first_start_actions": ["MachineSettingsAction"],
+
+ "machine_extruder_trains": {
+ "0": "longer_base_extruder_0"
+ },
+
+ "has_materials": true,
+ "has_variants": true,
+ "has_machine_quality": true,
+ "variants_name": "Nozzle Size",
+
+ "preferred_variant_name": "0.4mm Nozzle",
+ "preferred_quality_type": "standard",
+ "preferred_material": "generic_pla"
+
+ },
+ "overrides": {
+ "machine_name": { "default_value": "LONGER Base Printer" },
+ "machine_start_gcode": { "default_value": "; LONGER Start G-code\nG21 ; metric values\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nM107 ; start with the fan off\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish\n" },
+ "machine_end_gcode": { "default_value": "; LONGER End G-code\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z\n" },
+
+ "machine_max_feedrate_x": { "value": 500 },
+ "machine_max_feedrate_y": { "value": 500 },
+ "machine_max_feedrate_z": { "value": 10 },
+ "machine_max_feedrate_e": { "value": 50 },
+
+ "machine_max_acceleration_x": { "value": 500 },
+ "machine_max_acceleration_y": { "value": 500 },
+ "machine_max_acceleration_z": { "value": 100 },
+ "machine_max_acceleration_e": { "value": 5000 },
+ "machine_acceleration": { "value": 500 },
+
+ "machine_max_jerk_xy": { "value": 10 },
+ "machine_max_jerk_z": { "value": 0.4 },
+ "machine_max_jerk_e": { "value": 5 },
+
+ "machine_heated_bed": { "default_value": true },
+
+ "material_diameter": { "default_value": 1.75 },
+
+ "acceleration_print": { "value": 500 },
+ "acceleration_travel": { "value": 500 },
+ "acceleration_travel_layer_0": { "value": "acceleration_travel" },
+ "acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" },
+
+ "jerk_print": { "value": 8 },
+ "jerk_travel": { "value": "jerk_print" },
+ "jerk_travel_layer_0": { "value": "jerk_travel" },
+
+ "acceleration_enabled": { "value": false },
+ "jerk_enabled": { "value": false },
+
+ "speed_print": { "value": 50.0 } ,
+ "speed_infill": { "value": "speed_print" },
+ "speed_wall": { "value": "speed_print / 2" },
+ "speed_wall_0": { "value": "speed_wall" },
+ "speed_wall_x": { "value": "speed_wall" },
+ "speed_topbottom": { "value": "speed_print / 2" },
+ "speed_roofing": { "value": "speed_topbottom" },
+ "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" },
+ "speed_layer_0": { "value": 20.0 },
+ "speed_print_layer_0": { "value": "speed_layer_0" },
+ "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" },
+ "speed_prime_tower": { "value": "speed_topbottom" },
+ "speed_support": { "value": "speed_wall_0" },
+ "speed_support_interface": { "value": "speed_topbottom" },
+ "speed_z_hop": { "value": 5 },
+
+ "skirt_brim_speed": { "value": "speed_layer_0" },
+
+ "line_width": { "value": "machine_nozzle_size" },
+
+ "optimize_wall_printing_order": { "value": "True" },
+
+ "material_initial_print_temperature": { "value": "material_print_temperature" },
+ "material_final_print_temperature": { "value": "material_print_temperature" },
+ "material_flow": { "value": 100 },
+ "travel_compensate_overlapping_walls_0_enabled": { "value": "False" },
+
+ "z_seam_type": { "value": "'back'" },
+ "z_seam_corner": { "value": "'z_seam_corner_weighted'" },
+
+ "infill_sparse_density": { "value": "20" },
+ "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" },
+ "infill_before_walls": { "value": false },
+ "infill_overlap": { "value": 30.0 },
+ "skin_overlap": { "value": 10.0 },
+ "infill_wipe_dist": { "value": 0.0 },
+ "wall_0_wipe_dist": { "value": 0.0 },
+
+ "fill_perimeter_gaps": { "value": "'everywhere'" },
+ "fill_outline_gaps": { "value": false },
+ "filter_out_tiny_gaps": { "value": false },
+
+ "retraction_amount": { "default_value": 5 },
+ "retraction_speed": {
+ "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
+ "maximum_value": 200,
+ "default_value": 45
+ },
+ "retraction_retract_speed": {
+ "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
+ "maximum_value": 200
+ },
+ "retraction_prime_speed": {
+ "maximum_value_warning": "machine_max_feedrate_e if retraction_enable else float('inf')",
+ "maximum_value": 200
+ },
+
+ "retraction_hop_enabled": { "value": "False" },
+ "retraction_hop": { "value": 0.2 },
+ "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" },
+ "retraction_combing_max_distance": { "value": 30 },
+ "travel_avoid_other_parts": { "value": true },
+ "travel_avoid_supports": { "value": true },
+ "travel_retract_before_outer_wall": { "value": true },
+
+ "retraction_enable": { "value": true },
+ "retraction_count_max": { "value": 100 },
+ "retraction_extrusion_window": { "value": 10 },
+ "retraction_min_travel": { "value": 1.5 },
+
+ "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" },
+ "cool_fan_enabled": { "value": true },
+ "cool_min_layer_time": { "value": 10 },
+
+ "adhesion_type": { "value": "'skirt'" },
+ "brim_replaces_support": { "value": false },
+ "skirt_gap": { "value": 10.0 },
+ "skirt_line_count": { "value": 3 },
+
+ "adaptive_layer_height_variation": { "value": 0.04 },
+ "adaptive_layer_height_variation_step": { "value": 0.04 },
+
+ "meshfix_maximum_resolution": { "value": "0.25" },
+ "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
+
+ "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },
+ "support_pattern": { "value": "'zigzag'" },
+ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" },
+ "support_use_towers": { "value": false },
+ "support_xy_distance": { "value": "wall_line_width_0 * 2" },
+ "support_xy_distance_overhang": { "value": "wall_line_width_0" },
+ "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
+ "support_xy_overrides_z": { "value": "'xy_overrides_z'" },
+ "support_wall_count": { "value": 1 },
+ "support_brim_enable": { "value": true },
+ "support_brim_width": { "value": 4 },
+
+ "support_interface_enable": { "value": true },
+ "support_interface_height": { "value": "layer_height * 4" },
+ "support_interface_density": { "value": 33.333 },
+ "support_interface_pattern": { "value": "'grid'" },
+ "support_interface_skip_height": { "value": 0.2 },
+ "minimum_support_area": { "value": 2 },
+ "minimum_interface_area": { "value": 10 },
+ "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" },
+ "wall_thickness": {"value": "line_width * 2" }
+
+ }
+}
diff --git a/resources/definitions/longer_cube2.def.json b/resources/definitions/longer_cube2.def.json
new file mode 100644
index 0000000000..7b4266041a
--- /dev/null
+++ b/resources/definitions/longer_cube2.def.json
@@ -0,0 +1,32 @@
+{
+ "name": "Longer Cube2",
+ "version": 2,
+ "inherits": "longer_base",
+ "metadata": {
+ "quality_definition": "longer_base",
+ "visible": true,
+ "platform": "longer_cube2_platform.stl",
+ "platform_offset": [-60, -3 ,70]
+ },
+ "overrides": {
+ "machine_name": { "default_value": "LONGER Cube2" },
+ "machine_start_gcode": { "default_value": "; LONGER Cube2 Start G-code\nG21 ; metric values\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nM107 ; start with the fan off\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y120.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y120.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish\n" },
+ "machine_end_gcode": { "default_value": "; LONGER Cube2 End G-code\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM84 X Y E ;Disable all steppers but Z\n" },
+
+ "machine_heated_bed": { "default_value": false },
+
+ "machine_width": { "default_value": 120 },
+ "machine_depth": { "default_value": 140 },
+ "machine_height": { "default_value": 105 },
+
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-22, 31],
+ [-22, -21],
+ [14, -21],
+ [14, 31]
+ ]
+ },
+
+ "gantry_height": { "value": 18 }
+ }
+}
diff --git a/resources/definitions/longer_lk1.def.json b/resources/definitions/longer_lk1.def.json
new file mode 100644
index 0000000000..b422a205e6
--- /dev/null
+++ b/resources/definitions/longer_lk1.def.json
@@ -0,0 +1,27 @@
+{
+ "name": "Longer LK1",
+ "version": 2,
+ "inherits": "longer_base",
+ "metadata": {
+ "quality_definition": "longer_base",
+ "visible": true,
+ "platform": "longer_310mm_platform.stl",
+ "platform_offset": [-155, -3 ,155]
+ },
+ "overrides": {
+ "machine_name": { "default_value": "LONGER LK1" },
+ "machine_width": { "default_value": 300 },
+ "machine_depth": { "default_value": 300 },
+ "machine_height": { "default_value": 400 },
+
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-22, 39],
+ [-22, -34],
+ [58, -34],
+ [58, 39]
+ ]
+ },
+
+ "gantry_height": { "value": 33 }
+ }
+}
diff --git a/resources/definitions/longer_lk1plus.def.json b/resources/definitions/longer_lk1plus.def.json
new file mode 100644
index 0000000000..da5d1a6f27
--- /dev/null
+++ b/resources/definitions/longer_lk1plus.def.json
@@ -0,0 +1,27 @@
+{
+ "name": "Longer LK1 Plus",
+ "version": 2,
+ "inherits": "longer_base",
+ "metadata": {
+ "quality_definition": "longer_base",
+ "visible": true,
+ "platform": "longer_415mm_platform.stl",
+ "platform_offset": [-207.5, -3 ,207.5]
+ },
+ "overrides": {
+ "machine_name": { "default_value": "LONGER LK1 Plus" },
+ "machine_width": { "default_value": 400 },
+ "machine_depth": { "default_value": 400 },
+ "machine_height": { "default_value": 500 },
+
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-22, 39],
+ [-22, -34],
+ [58, -34],
+ [58, 39]
+ ]
+ },
+
+ "gantry_height": { "value": 33 }
+ }
+}
diff --git a/resources/definitions/longer_lk1pro.def.json b/resources/definitions/longer_lk1pro.def.json
new file mode 100644
index 0000000000..ee0a2e0ac7
--- /dev/null
+++ b/resources/definitions/longer_lk1pro.def.json
@@ -0,0 +1,27 @@
+{
+ "name": "Longer LK1 Pro",
+ "version": 2,
+ "inherits": "longer_base",
+ "metadata": {
+ "quality_definition": "longer_base",
+ "visible": true,
+ "platform": "longer_310mm_platform.stl",
+ "platform_offset": [-155, -3 ,155]
+ },
+ "overrides": {
+ "machine_name": { "default_value": "LONGER LK1 Pro" },
+ "machine_width": { "default_value": 300 },
+ "machine_depth": { "default_value": 300 },
+ "machine_height": { "default_value": 400 },
+
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-22, 39],
+ [-22, -34],
+ [58, -34],
+ [58, 39]
+ ]
+ },
+
+ "gantry_height": { "value": 33 }
+ }
+}
diff --git a/resources/definitions/longer_lk4.def.json b/resources/definitions/longer_lk4.def.json
new file mode 100644
index 0000000000..92cc50f2b5
--- /dev/null
+++ b/resources/definitions/longer_lk4.def.json
@@ -0,0 +1,27 @@
+{
+ "name": "Longer LK4",
+ "version": 2,
+ "inherits": "longer_base",
+ "metadata": {
+ "quality_definition": "longer_base",
+ "visible": true,
+ "platform": "longer_235mm_platform.stl",
+ "platform_offset": [-117.5, -3 ,117.5]
+ },
+ "overrides": {
+ "machine_name": { "default_value": "LONGER LK4" },
+ "machine_width": { "default_value": 220 },
+ "machine_depth": { "default_value": 220 },
+ "machine_height": { "default_value": 250 },
+
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-22, 39],
+ [-22, -34],
+ [58, -34],
+ [58, 39]
+ ]
+ },
+
+ "gantry_height": { "value": 33 }
+ }
+}
diff --git a/resources/definitions/longer_lk4pro.def.json b/resources/definitions/longer_lk4pro.def.json
new file mode 100644
index 0000000000..6cd83b6048
--- /dev/null
+++ b/resources/definitions/longer_lk4pro.def.json
@@ -0,0 +1,27 @@
+{
+ "name": "Longer LK4 Pro",
+ "version": 2,
+ "inherits": "longer_base",
+ "metadata": {
+ "quality_definition": "longer_base",
+ "visible": true,
+ "platform": "longer_235mm_platform.stl",
+ "platform_offset": [-117.5, -3 ,117.5]
+ },
+ "overrides": {
+ "machine_name": { "default_value": "LONGER LK4 Pro" },
+ "machine_width": { "default_value": 220 },
+ "machine_depth": { "default_value": 220 },
+ "machine_height": { "default_value": 250 },
+
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-22, 39],
+ [-22, -34],
+ [58, -34],
+ [58, 39]
+ ]
+ },
+
+ "gantry_height": { "value": 33 }
+ }
+}
diff --git a/resources/definitions/longer_lk5.def.json b/resources/definitions/longer_lk5.def.json
new file mode 100644
index 0000000000..dc473489f1
--- /dev/null
+++ b/resources/definitions/longer_lk5.def.json
@@ -0,0 +1,27 @@
+{
+ "name": "Longer LK5",
+ "version": 2,
+ "inherits": "longer_base",
+ "metadata": {
+ "quality_definition": "longer_base",
+ "visible": true,
+ "platform": "longer_310mm_platform.stl",
+ "platform_offset": [-155, -3 ,155]
+ },
+ "overrides": {
+ "machine_name": { "default_value": "LONGER LK5" },
+ "machine_width": { "default_value": 300 },
+ "machine_depth": { "default_value": 300 },
+ "machine_height": { "default_value": 400 },
+
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-22, 39],
+ [-22, -34],
+ [58, -34],
+ [58, 39]
+ ]
+ },
+
+ "gantry_height": { "value": 33 }
+ }
+}
diff --git a/resources/definitions/longer_lk5pro.def.json b/resources/definitions/longer_lk5pro.def.json
new file mode 100644
index 0000000000..e16038d4b7
--- /dev/null
+++ b/resources/definitions/longer_lk5pro.def.json
@@ -0,0 +1,27 @@
+{
+ "name": "Longer LK5 Pro",
+ "version": 2,
+ "inherits": "longer_base",
+ "metadata": {
+ "quality_definition": "longer_base",
+ "visible": true,
+ "platform": "longer_310mm_platform.stl",
+ "platform_offset": [-155, -3 ,155]
+ },
+ "overrides": {
+ "machine_name": { "default_value": "LONGER LK5 Pro" },
+ "machine_width": { "default_value": 300 },
+ "machine_depth": { "default_value": 300 },
+ "machine_height": { "default_value": 400 },
+
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-22, 39],
+ [-22, -34],
+ [58, -34],
+ [58, 39]
+ ]
+ },
+
+ "gantry_height": { "value": 33 }
+ }
+}
diff --git a/resources/definitions/makeR_pegasus.def.json b/resources/definitions/makeR_pegasus.def.json
index 5e3ab26a4f..a8fbf49875 100644
--- a/resources/definitions/makeR_pegasus.def.json
+++ b/resources/definitions/makeR_pegasus.def.json
@@ -1,11 +1,11 @@
{
"version": 2,
- "name": "makeR Pegasus",
+ "name": "Maker Pegasus",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "makeR",
- "manufacturer": "makeR",
+ "author": "Maker",
+ "manufacturer": "Maker",
"file_formats": "text/x-gcode",
"platform": "makeR_pegasus_platform.3mf",
"platform_offset": [-200, -10, 200],
diff --git a/resources/definitions/makeR_prusa_tairona_i3.def.json b/resources/definitions/makeR_prusa_tairona_i3.def.json
index d722a96410..f56dc314a2 100644
--- a/resources/definitions/makeR_prusa_tairona_i3.def.json
+++ b/resources/definitions/makeR_prusa_tairona_i3.def.json
@@ -1,11 +1,11 @@
{
"version": 2,
- "name": "makeR Prusa Tairona i3",
+ "name": "Maker Prusa Tairona i3",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "makeR",
- "manufacturer": "makeR",
+ "author": "Maker",
+ "manufacturer": "Maker",
"file_formats": "text/x-gcode",
"platform": "makeR_prusa_tairona_i3_platform.3mf",
"platform_offset": [-2, 0, 0],
diff --git a/resources/definitions/makeit_pro_l.def.json b/resources/definitions/makeit_pro_l.def.json
index 75479fd5cc..237a8ac09e 100644
--- a/resources/definitions/makeit_pro_l.def.json
+++ b/resources/definitions/makeit_pro_l.def.json
@@ -1,11 +1,11 @@
{
"version": 2,
- "name": "MAKEiT Pro-L",
+ "name": "Makeit Pro-L",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
"author": "unknown",
- "manufacturer": "MAKEiT 3D",
+ "manufacturer": "Makeit 3D",
"file_formats": "text/x-gcode",
"has_materials": false,
"machine_extruder_trains":
diff --git a/resources/definitions/makeit_pro_m.def.json b/resources/definitions/makeit_pro_m.def.json
index 812a4fe901..3eb0850555 100644
--- a/resources/definitions/makeit_pro_m.def.json
+++ b/resources/definitions/makeit_pro_m.def.json
@@ -1,11 +1,11 @@
{
"version": 2,
- "name": "MAKEiT Pro-M",
+ "name": "Makeit Pro-M",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
"author": "unknown",
- "manufacturer": "MAKEiT 3D",
+ "manufacturer": "Makeit 3D",
"file_formats": "text/x-gcode",
"has_materials": false,
"machine_extruder_trains":
diff --git a/resources/definitions/makeit_pro_mx.def.json b/resources/definitions/makeit_pro_mx.def.json
index 5f922dcd00..9322d2f510 100644
--- a/resources/definitions/makeit_pro_mx.def.json
+++ b/resources/definitions/makeit_pro_mx.def.json
@@ -1,11 +1,11 @@
{
"version": 2,
- "name": "MAKEiT Pro-MX",
+ "name": "Makeit Pro-MX",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
"author": "unknown",
- "manufacturer": "MAKEiT 3D",
+ "manufacturer": "Makeit 3D",
"file_formats": "text/x-gcode",
"has_materials": false,
"machine_extruder_trains":
diff --git a/resources/definitions/mingda_base.def.json b/resources/definitions/mingda_base.def.json
index 4fc1fd3bbb..5dd9eeed7a 100644
--- a/resources/definitions/mingda_base.def.json
+++ b/resources/definitions/mingda_base.def.json
@@ -1,11 +1,11 @@
{
- "name": "MINGDA Base Printer",
+ "name": "Mingda Base Printer",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
"visible": false,
- "author": "cataclism",
- "manufacturer": "MINGDA",
+ "author": "Cataclism",
+ "manufacturer": "Mingda",
"file_formats": "text/x-gcode",
"first_start_actions": ["MachineSettingsAction"],
diff --git a/resources/definitions/mingda_d2.def.json b/resources/definitions/mingda_d2.def.json
index a20ff53db1..d6278705ad 100644
--- a/resources/definitions/mingda_d2.def.json
+++ b/resources/definitions/mingda_d2.def.json
@@ -1,5 +1,5 @@
{
- "name": "MINGDA D2",
+ "name": "Mingda D2",
"version": 2,
"inherits": "mingda_base",
"overrides": {
diff --git a/resources/definitions/mingda_d3pro.def.json b/resources/definitions/mingda_d3pro.def.json
index 63c9061fa2..682cd88d88 100644
--- a/resources/definitions/mingda_d3pro.def.json
+++ b/resources/definitions/mingda_d3pro.def.json
@@ -1,5 +1,5 @@
{
- "name": "MINGDA D3/Pro",
+ "name": "Mingda D3/Pro",
"version": 2,
"inherits": "mingda_base",
"overrides": {
diff --git a/resources/definitions/mingda_d4pro.def.json b/resources/definitions/mingda_d4pro.def.json
index 0cff777d2d..00d316c925 100644
--- a/resources/definitions/mingda_d4pro.def.json
+++ b/resources/definitions/mingda_d4pro.def.json
@@ -1,5 +1,5 @@
{
- "name": "MINGDA D4 Pro",
+ "name": "Mingda D4 Pro",
"version": 2,
"inherits": "mingda_base",
"overrides": {
diff --git a/resources/definitions/mingda_rock3.def.json b/resources/definitions/mingda_rock3.def.json
index 70254490b2..c470d6e7e5 100644
--- a/resources/definitions/mingda_rock3.def.json
+++ b/resources/definitions/mingda_rock3.def.json
@@ -1,5 +1,5 @@
{
- "name": "MINGDA Rock3/Pro",
+ "name": "Mingda Rock3/Pro",
"version": 2,
"inherits": "mingda_base",
"overrides": {
diff --git a/resources/definitions/nwa3d_a31.def.json b/resources/definitions/nwa3d_a31.def.json
index 1cfd02fe7f..fef44ac16b 100644
--- a/resources/definitions/nwa3d_a31.def.json
+++ b/resources/definitions/nwa3d_a31.def.json
@@ -1,11 +1,11 @@
{
- "name": "NWA3D A31",
+ "name": "Nwa3D A31",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
"visible": true,
"author": "DragonJe",
- "manufacturer": "NWA 3D LLC",
+ "manufacturer": "Nwa 3D LLC",
"file_formats": "text/x-gcode",
"platform_offset": [0, 0, 0],
"has_materials": true,
diff --git a/resources/definitions/nwa3d_a5.def.json b/resources/definitions/nwa3d_a5.def.json
index 1631860d47..8c6b53b81e 100644
--- a/resources/definitions/nwa3d_a5.def.json
+++ b/resources/definitions/nwa3d_a5.def.json
@@ -1,11 +1,11 @@
{
- "name": "NWA3D A5",
+ "name": "Nwa3D A5",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
"visible": true,
"author": "DragonJe",
- "manufacturer": "NWA 3D LLC",
+ "manufacturer": "Nwa 3D LLC",
"file_formats": "text/x-gcode",
"platform_offset": [0, 0, 0],
"has_materials": true,
diff --git a/resources/definitions/skriware_2.def.json b/resources/definitions/skriware_2.def.json
index 88f4e3eecf..f46213dde7 100644
--- a/resources/definitions/skriware_2.def.json
+++ b/resources/definitions/skriware_2.def.json
@@ -1,717 +1,732 @@
{
- "name": "Skriware 2",
- "version": 2,
- "inherits": "fdmprinter",
- "metadata": {
- "visible": true,
- "author": "Skriware",
- "manufacturer": "Skriware",
- "file_formats": "text/x-gcode",
- "platform_offset": [
- 0,
- 0,
- 0
- ],
- "supports_usb_connection": false,
- "platform": "skriware_2_platform.3mf",
- "machine_extruder_trains": {
- "0": "skriware_2_extruder_0",
- "1": "skriware_2_extruder_1"
- }
- },
- "overrides": {
- "raft_interface_thickness": {
- "value": "0.2"
- },
- "wipe_retraction_prime_speed": {
- "value": "30"
- },
- "support_skip_zag_per_mm": {
- "default_value": 10
- },
- "material_bed_temperature": {
- "value": "50"
- },
- "raft_airgap": {
- "default_value": 0.2
- },
- "top_layers": {
- "value": "4"
- },
- "machine_extruder_count": {
- "default_value": 2
- },
- "raft_surface_acceleration": {
- "value": "400"
- },
- "meshfix_maximum_travel_resolution": {
- "value": "0.8"
- },
- "machine_end_gcode": {
- "default_value": "M59\nG92 E0\nG1 E-10 F300\nM104 T0 S0\nM104 T1 S0\nM140 S0\nG28 X0 Y0\nM84\nM106 S0\nM107"
- },
- "wall_material_flow": {
- "value": "99"
- },
- "raft_interface_jerk": {
- "value": "10"
- },
- "acceleration_topbottom": {
- "value": "400"
- },
- "prime_tower_size": {
- "default_value": 1
- },
- "max_skin_angle_for_expansion": {
- "default_value": 50
- },
- "raft_acceleration": {
- "value": "400"
- },
- "support_xy_distance": {
- "default_value": 0.6
- },
- "xy_offset_layer_0": {
- "value": "-0.16"
- },
- "raft_interface_fan_speed": {
- "value": "40"
- },
- "retraction_speed": {
- "default_value": 30
- },
- "speed_print": {
- "default_value": 20
- },
- "travel_avoid_supports": {
- "default_value": true
- },
- "infill_overlap_mm": {
- "value": "0.0"
- },
- "support_roof_height": {
- "value": "0.4"
- },
- "speed_travel_layer_0": {
- "value": "120"
- },
- "speed_wall_0": {
- "value": "20"
- },
- "acceleration_wall_x": {
- "value": "400"
- },
- "layer_0_z_overlap": {
- "value": "0.1"
- },
- "switch_extruder_retraction_speed": {
- "value": "30"
- },
- "raft_base_acceleration": {
- "value": "400"
- },
- "raft_base_speed": {
- "value": "60"
- },
- "wall_0_material_flow": {
- "value": "99"
- },
- "support_infill_rate": {
- "value": "20"
- },
- "raft_surface_layers": {
- "default_value": 1
- },
- "machine_height": {
- "default_value": 210
- },
- "retraction_prime_speed": {
- "value": "60"
- },
- "support_interface_material_flow": {
- "value": "99"
- },
- "raft_surface_fan_speed": {
- "value": "80"
- },
- "raft_base_line_width": {
- "value": "0.4"
- },
- "infill_line_distance": {
- "value": "5.33"
- },
- "default_material_print_temperature": {
- "default_value": 200
- },
- "speed_roofing": {
- "value": "20"
- },
- "skin_material_flow": {
- "value": "99"
- },
- "cool_fan_full_layer": {
- "value": "1"
- },
- "material_break_preparation_temperature": {
- "value": "195"
- },
- "support_roof_density": {
- "value": "70"
- },
- "support_infill_sparse_thickness": {
- "value": "0.2"
- },
- "retraction_retract_speed": {
- "value": "30"
- },
- "speed_slowdown_layers": {
- "default_value": 1
- },
- "support_line_distance": {
- "value": "2"
- },
- "cool_lift_head": {
- "default_value": true
- },
- "min_skin_width_for_expansion": {
- "value": "0.67"
- },
- "cool_min_speed": {
- "default_value": 5
- },
- "switch_extruder_retraction_speeds": {
- "default_value": 30
- },
- "raft_base_line_spacing": {
- "value": "0.8"
- },
- "speed_support": {
- "value": "50"
- },
- "skirt_brim_material_flow": {
- "value": "99"
- },
- "speed_infill": {
- "value": "80"
- },
- "support_initial_layer_line_distance": {
- "value": "2"
- },
- "support_use_towers": {
- "default_value": false
- },
- "skin_no_small_gaps_heuristic": {
- "default_value": true
- },
- "acceleration_roofing": {
- "value": "400"
- },
- "material_initial_print_temperature": {
- "value": "195"
- },
- "material_diameter": {
- "default_value": 1.75
- },
- "xy_offset": {
- "default_value": -0.16
- },
- "support_extruder_nr": {
- "value": "0"
- },
- "support_brim_line_count": {
- "value": "16"
- },
- "support_interface_extruder_nr": {
- "value": "0"
- },
- "support_roof_extruder_nr": {
- "value": "0"
- },
- "material_adhesion_tendency": {
- "default_value": 0
- },
- "material_standby_temperature": {
- "default_value": 195
- },
- "cool_fan_speed_0": {
- "default_value": 100
- },
- "brim_line_count": {
- "value": "17"
- },
- "adhesion_type": {
- "default_value": "raft"
- },
- "switch_extruder_retraction_amount": {
- "value": "16"
- },
- "retraction_amount": {
- "default_value": 3
- },
- "acceleration_travel": {
- "value": "400"
- },
- "jerk_print_layer_0": {
- "value": "10"
- },
- "raft_surface_thickness": {
- "value": "0.2"
- },
- "raft_base_jerk": {
- "value": "10"
- },
- "bottom_thickness": {
- "value": "0.8"
- },
- "roofing_material_flow": {
- "value": "99"
- },
- "top_skin_expand_distance": {
- "value": "0.8"
- },
- "speed_wall_x": {
- "value": "20"
- },
- "support_enable": {
- "default_value": true
- },
- "acceleration_print_layer_0": {
- "value": "400"
- },
- "jerk_prime_tower": {
- "value": "5"
- },
- "infill_before_walls": {
- "default_value": false
- },
- "raft_interface_line_spacing": {
- "value": "0.4"
- },
- "gantry_height": {
- "value": "210"
- },
- "material_print_temperature_layer_0": {
- "value": "195"
- },
- "raft_interface_line_width": {
- "value": "0.4"
- },
- "skirt_brim_line_width": {
- "value": "0.5"
- },
- "z_seam_y": {
- "value": "180"
- },
- "roofing_layer_count": {
- "value": "1"
- },
- "raft_margin": {
- "default_value": 4
- },
- "cool_fan_full_at_height": {
- "value": "0"
- },
- "acceleration_support_interface": {
- "value": "250"
- },
- "retraction_min_travel": {
- "value": "1"
- },
- "acceleration_layer_0": {
- "value": "400"
- },
- "support_z_distance": {
- "default_value": 0.2
- },
- "machine_heated_bed": {
- "default_value": true
- },
- "raft_jerk": {
- "value": "10"
- },
- "raft_surface_speed": {
- "value": "60"
- },
- "initial_layer_line_width_factor": {
- "default_value": 120
- },
- "machine_start_gcode": {
- "default_value": "G90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM420 S1 Z0.6 ;enable bed levelling\nG1 Z10 F250 ;move the platform down 10mm\nM107 ;fan off\nM42 P11 S255 ;turn on front fan\nM140 S{material_bed_temperature}\nM104 T0 S{material_print_temperature, 0}\nM104 T1 S{material_print_temperature, 1}\nG1 F2500 Y260 X0\nM190 S{material_bed_temperature}\nM109 T0 S{material_print_temperature, 0}\nM109 T1 S{material_print_temperature, 1}\nM60 ;enable E-FADE Algorithm\nM62 A ;filament sensor off\nG92 E0 ;zero the extruded length\nT1\nG92 E0;zero the extruded length\nG1 F300 Z0.3\nG1 F1200 X20\nG1 F1200 X180 E21 ;extrude 21 mm of feed stock\nG1 F1200 E15 ;retracting 6 mm\nG1 F2000 E21\nG1 F2000 E11\nG1 F300 Z1.5\nG92 E0 ;zero the extruded length again\nT0\nG92 E0 ;zero the extruded length\nG1 F1200 Y258\nG1 F300 Z0.3\nG1 F1200 X40 E21 ;extrude 21 mm of feed stock\nG1 F1200 E15 ;retracting 6 mm\nG1 F2000 E21\nG1 F2000 E11\nG1 Z1.5\nM61 A ;filament sensor reset\nM63 A ;filament sensor on\nG92 E0 ;zero the extruded length again\nM58 ;end of Start G-Code and signal retract management\nT{initial_extruder_nr}"
- },
- "bottom_skin_preshrink": {
- "value": "0.8"
- },
- "ironing_inset": {
- "value": "0.2 + (ironing_line_spacing - skin_line_width * (1.0 + ironing_flow / 100) / 2 if ironing_pattern == 'concentric' else skin_line_width * (1.0 - ironing_flow / 100) / 2)"
- },
- "jerk_travel": {
- "value": "10"
- },
- "machine_depth": {
- "default_value": 260
- },
- "jerk_skirt_brim": {
- "value": "5"
- },
- "infill_wipe_dist": {
- "value": "0"
- },
- "raft_interface_acceleration": {
- "value": "400"
- },
- "z_seam_x": {
- "value": "115"
- },
- "material_print_temperature": {
- "value": "195"
- },
- "material_bed_temperature_layer_0": {
- "value": "50"
- },
- "wipe_retraction_retract_speed": {
- "value": "30"
- },
- "jerk_travel_layer_0": {
- "value": "10"
- },
- "infill_overlap": {
- "value": "0"
- },
- "acceleration_support_infill": {
- "value": "400"
- },
- "support_bottom_material_flow": {
- "value": "99"
- },
- "jerk_support_roof": {
- "value": "5"
- },
- "wall_x_material_flow": {
- "value": "99"
- },
- "speed_support_interface": {
- "value": "33.33"
- },
- "jerk_layer_0": {
- "value": "10"
- },
- "support_angle": {
- "default_value": 60
- },
- "infill_sparse_thickness": {
- "value": "0.2"
- },
- "prime_tower_position_y": {
- "value": "1"
- },
- "retraction_combing": {
- "default_value": "infill"
- },
- "acceleration_prime_tower": {
- "value": "250"
- },
- "acceleration_print": {
- "default_value": 400
- },
- "acceleration_infill": {
- "value": "500"
- },
- "bridge_wall_speed": {
- "value": "10.0"
- },
- "acceleration_wall_0": {
- "value": "400"
- },
- "support_offset": {
- "default_value": 0.2
- },
- "build_volume_temperature": {
- "default_value": 28
- },
- "switch_extruder_prime_speed": {
- "value": "60"
- },
- "speed_prime_tower": {
- "value": "20"
- },
- "top_skin_preshrink": {
- "value": "0.8"
- },
- "jerk_ironing": {
- "value": "5"
- },
- "skin_outline_count": {
- "value": 0
- },
- "skirt_brim_speed": {
- "value": "10.0"
- },
- "raft_base_thickness": {
- "value": "0.2"
- },
- "infill_sparse_density": {
- "default_value": 15
- },
- "support_bottom_extruder_nr": {
- "value": "0"
- },
- "support_material_flow": {
- "value": "98"
- },
- "min_infill_area": {
- "default_value": 1
- },
- "jerk_support": {
- "value": "10"
- },
- "bottom_skin_expand_distance": {
- "value": "0.8"
- },
- "retract_at_layer_change": {
- "default_value": true
- },
- "jerk_support_interface": {
- "value": "5"
- },
- "jerk_support_bottom": {
- "value": "5"
- },
- "optimize_wall_printing_order": {
- "default_value": true
- },
- "skirt_brim_minimal_length": {
- "default_value": 50
- },
- "jerk_support_infill": {
- "value": "10"
- },
- "initial_bottom_layers": {
- "value": "3"
- },
- "prime_tower_position_x": {
- "value": "1"
- },
- "acceleration_support_bottom": {
- "value": "250"
- },
- "speed_support_roof": {
- "value": "33.33"
- },
- "speed_support_infill": {
- "value": "80"
- },
- "bridge_skin_speed_2": {
- "value": "15"
- },
- "raft_fan_speed": {
- "default_value": 100
- },
- "wipe_retraction_amount": {
- "value": "3"
- },
- "skin_edge_support_thickness": {
- "value": "0"
- },
- "bottom_layers": {
- "value": "3"
- },
- "retraction_extrusion_window": {
- "value": "3"
- },
- "acceleration_ironing": {
- "value": "250"
- },
- "support_top_distance": {
- "value": "0.2"
- },
- "travel_retract_before_outer_wall": {
- "default_value": true
- },
- "material_flow": {
- "default_value": 99
- },
- "support_bottom_distance": {
- "value": "0.2"
- },
- "expand_skins_expand_distance": {
- "value": "0.8"
- },
- "jerk_wall": {
- "value": "10"
- },
- "support_zag_skip_count": {
- "value": "8"
- },
- "connect_infill_polygons": {
- "value": "False"
- },
- "acceleration_skirt_brim": {
- "value": "250"
- },
- "z_seam_corner": {
- "default_value": "z_seam_corner_weighted"
- },
- "raft_surface_jerk": {
- "value": "10"
- },
- "cross_infill_pocket_size": {
- "value": "5.33"
- },
- "support_infill_extruder_nr": {
- "value": "0"
- },
- "acceleration_enabled": {
- "default_value": true
- },
- "jerk_wall_x": {
- "value": "10"
- },
- "skin_overlap": {
- "value": "15"
- },
- "infill_material_flow": {
- "value": "99"
- },
- "speed_equalize_flow_max": {
- "default_value": 40
- },
- "skin_preshrink": {
- "value": "0.8"
- },
- "speed_wall": {
- "value": "20"
- },
- "support_tree_collision_resolution": {
- "value": "0.2"
- },
- "meshfix_maximum_deviation": {
- "default_value": 0.003
- },
- "jerk_roofing": {
- "value": "10"
- },
- "fill_outline_gaps": {
- "default_value": true
- },
- "layer_height": {
- "default_value": 0.2
- },
- "remove_empty_first_layers": {
- "default_value": false
- },
- "prime_tower_flow": {
- "value": "99"
- },
- "support_roof_line_distance": {
- "value": "0.57"
- },
- "wipe_retraction_speed": {
- "value": "30"
- },
- "support_extruder_nr_layer_0": {
- "value": "0"
- },
- "layer_height_0": {
- "default_value": 0.2
- },
- "multiple_mesh_overlap": {
- "default_value": 0
- },
- "ooze_shield_dist": {
- "default_value": 4
- },
- "jerk_enabled": {
- "default_value": true
- },
- "acceleration_support": {
- "value": "400"
- },
- "adhesion_extruder_nr": {
- "value": "0"
- },
- "skirt_line_count": {
- "default_value": 2
- },
- "jerk_wall_0": {
- "value": "10"
- },
- "raft_speed": {
- "value": "60"
- },
- "speed_layer_0": {
- "value": "10.0"
- },
- "machine_width": {
- "default_value": 210
- },
- "acceleration_wall": {
- "value": "400"
- },
- "jerk_infill": {
- "value": "10"
- },
- "wipe_hop_enable": {
- "value": "False"
- },
- "acceleration_travel_layer_0": {
- "value": "400"
- },
- "raft_interface_speed": {
- "value": "60"
- },
- "skin_edge_support_layers": {
- "value": "0"
- },
- "support_xy_distance_overhang": {
- "value": "0.5"
- },
- "brim_width": {
- "default_value": 10
- },
- "coasting_enable": {
- "default_value": true
- },
- "jerk_print": {
- "default_value": 10
- },
- "acceleration_support_roof": {
- "value": "250"
- },
- "prime_tower_min_volume": {
- "default_value": 4
- },
- "support_roof_material_flow": {
- "value": "99"
- },
- "wall_0_wipe_dist": {
- "value": "0"
- },
- "jerk_topbottom": {
- "value": "10"
- },
- "retraction_count_max": {
- "default_value": 30
- },
- "skin_overlap_mm": {
- "value": "0.06"
- },
- "extruders_enabled_count": {
- "value": "2"
- },
- "speed_support_bottom": {
- "value": "33.33"
- },
- "support_skip_some_zags": {
- "default_value": true
- },
- "ooze_shield_angle": {
- "default_value": 50
- },
- "wall_thickness": {
- "value": "1.2"
- },
- "speed_print_layer_0": {
- "value": "10.0"
- }
+ "name": "Skriware 2",
+ "version": 2,
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": true,
+ "author": "Skriware",
+ "manufacturer": "Skriware",
+ "file_formats": "text/x-gcode",
+ "has_machine_quality": true,
+ "platform_offset": [
+ 0,
+ 0,
+ 0
+ ],
+ "supports_usb_connection": false,
+ "platform": "skriware_2_platform.3mf",
+ "machine_extruder_trains": {
+ "0": "skriware_2_extruder_0",
+ "1": "skriware_2_extruder_1"
}
-}
+ },
+ "overrides": {
+ "raft_interface_thickness": {
+ "value": "0.2"
+ },
+ "wipe_retraction_prime_speed": {
+ "value": "30"
+ },
+ "support_skip_zag_per_mm": {
+ "default_value": 10
+ },
+ "material_bed_temperature": {
+ "value": "50",
+ "minimum_value_warning": "30",
+ "resolve": "extruderValues('material_bed_temperature')[adhesion_extruder_nr] if resolveOrValue('adhesion_type') == 'raft' else max(extruderValues('material_bed_temperature'))"
+ },
+ "raft_airgap": {
+ "default_value": 0.2
+ },
+ "top_layers": {
+ "value": "4"
+ },
+ "machine_extruder_count": {
+ "default_value": 2
+ },
+ "raft_surface_acceleration": {
+ "value": "400"
+ },
+ "meshfix_maximum_travel_resolution": {
+ "value": "0.8"
+ },
+ "machine_end_gcode": {
+ "default_value": "M59\nG92 E0\nG1 E-10 F300\nM104 T0 S0\nM104 T1 S0\nM140 S0\nG28 X0 Y0\nM84\nM106 S0\nM107\nM220 S100"
+ },
+ "wall_material_flow": {
+ "value": "99"
+ },
+ "raft_interface_jerk": {
+ "value": "10"
+ },
+ "acceleration_topbottom": {
+ "value": "200"
+ },
+ "prime_tower_size": {
+ "default_value": 1
+ },
+ "max_skin_angle_for_expansion": {
+ "default_value": 50
+ },
+ "raft_acceleration": {
+ "value": "400"
+ },
+ "support_xy_distance": {
+ "default_value": 0.6
+ },
+ "xy_offset_layer_0": {
+ "value": "0.0"
+ },
+ "raft_interface_fan_speed": {
+ "value": "40"
+ },
+ "retraction_speed": {
+ "default_value": 30
+ },
+ "speed_print": {
+ "default_value": 20
+ },
+ "travel_avoid_supports": {
+ "default_value": true
+ },
+ "infill_overlap_mm": {
+ "value": "0.0"
+ },
+ "support_roof_height": {
+ "value": "0.4"
+ },
+ "speed_travel_layer_0": {
+ "value": "80"
+ },
+ "speed_wall_0": {
+ "value": "20"
+ },
+ "acceleration_wall_x": {
+ "value": "200"
+ },
+ "layer_0_z_overlap": {
+ "value": "0.1"
+ },
+ "switch_extruder_retraction_speed": {
+ "value": "30"
+ },
+ "travel_compensate_overlapping_walls_enabled": {
+ "default_value": false
+ },
+ "raft_base_acceleration": {
+ "value": "400"
+ },
+ "raft_base_speed": {
+ "value": "60"
+ },
+ "wall_0_material_flow": {
+ "value": "99"
+ },
+ "support_infill_rate": {
+ "value": "20"
+ },
+ "raft_surface_layers": {
+ "default_value": 1
+ },
+ "machine_height": {
+ "default_value": 210
+ },
+ "retraction_prime_speed": {
+ "value": "60"
+ },
+ "support_interface_material_flow": {
+ "value": "99"
+ },
+ "raft_surface_fan_speed": {
+ "value": "80"
+ },
+ "raft_base_line_width": {
+ "value": "0.4"
+ },
+ "infill_line_distance": {
+ "value": "0 if infill_sparse_density == 0 else (infill_line_width * 100) / infill_sparse_density * (2 if infill_pattern == 'grid' else (3 if infill_pattern == 'triangles' or infill_pattern == 'trihexagon' or infill_pattern == 'cubic' or infill_pattern == 'cubicsubdiv' else (2 if infill_pattern == 'tetrahedral' or infill_pattern == 'quarter_cubic' else (1 if infill_pattern == 'cross' or infill_pattern == 'cross_3d' else 1))))"
+ },
+ "default_material_print_temperature": {
+ "default_value": 200
+ },
+ "speed_roofing": {
+ "value": "20"
+ },
+ "skin_material_flow": {
+ "value": "99"
+ },
+ "cool_fan_full_layer": {
+ "value": "1"
+ },
+ "material_break_preparation_temperature": {
+ "value": "195"
+ },
+ "support_roof_density": {
+ "value": "70"
+ },
+ "support_infill_sparse_thickness": {
+ "value": "0.2"
+ },
+ "retraction_retract_speed": {
+ "value": "30"
+ },
+ "speed_slowdown_layers": {
+ "default_value": 1
+ },
+ "support_line_distance": {
+ "value":"0 if support_infill_rate == 0 else (support_line_width * 100) / support_infill_rate * (2 if support_pattern == 'grid' else (3 if support_pattern == 'triangles' else 1))"
+ },
+ "cool_lift_head": {
+ "default_value": true
+ },
+ "min_skin_width_for_expansion": {
+ "value": "0.67"
+ },
+ "cool_min_speed": {
+ "default_value": 5
+ },
+ "switch_extruder_retraction_speeds": {
+ "default_value": 30
+ },
+ "raft_base_line_spacing": {
+ "value": "0.8"
+ },
+ "speed_support": {
+ "value": "50"
+ },
+ "skirt_brim_material_flow": {
+ "value": "99"
+ },
+ "speed_infill": {
+ "value": "80"
+ },
+ "support_initial_layer_line_distance": {
+ "value": "2"
+ },
+ "support_use_towers": {
+ "default_value": false
+ },
+ "skin_no_small_gaps_heuristic": {
+ "default_value": true
+ },
+ "acceleration_roofing": {
+ "value": "400"
+ },
+ "material_initial_print_temperature": {
+ "value": "195"
+ },
+ "material_diameter": {
+ "default_value": 1.75
+ },
+ "xy_offset": {
+ "default_value": 0.0
+ },
+ "support_extruder_nr": {
+ "value": "0"
+ },
+ "support_brim_line_count": {
+ "value": "16"
+ },
+ "support_interface_extruder_nr": {
+ "value": "0"
+ },
+ "support_roof_extruder_nr": {
+ "value": "0"
+ },
+ "material_adhesion_tendency": {
+ "default_value": 0
+ },
+ "material_standby_temperature": {
+ "default_value": 195
+ },
+ "cool_fan_speed_0": {
+ "default_value": 0,
+ "value": "cool_fan_speed if resolveOrValue('adhesion_type') == 'raft' else 0"
+ },
+ "brim_line_count": {
+ "value": "17"
+ },
+ "adhesion_type": {
+ "default_value": "raft"
+ },
+ "switch_extruder_retraction_amount": {
+ "value": "20"
+ },
+ "retraction_amount": {
+ "default_value": 3
+ },
+ "acceleration_travel": {
+ "value": "400"
+ },
+ "jerk_print_layer_0": {
+ "value": "10"
+ },
+ "raft_surface_thickness": {
+ "value": "0.2"
+ },
+ "raft_base_jerk": {
+ "value": "10"
+ },
+ "bottom_thickness": {
+ "value": "0.8"
+ },
+ "roofing_material_flow": {
+ "value": "99"
+ },
+ "top_skin_expand_distance": {
+ "value": "0.8"
+ },
+ "speed_wall_x": {
+ "value": "20"
+ },
+ "support_enable": {
+ "default_value": true
+ },
+ "acceleration_print_layer_0": {
+ "value": "200"
+ },
+ "jerk_prime_tower": {
+ "value": "5"
+ },
+ "infill_before_walls": {
+ "default_value": false
+ },
+ "raft_interface_line_spacing": {
+ "value": "0.4"
+ },
+ "gantry_height": {
+ "value": "210"
+ },
+ "material_print_temperature_layer_0": {
+ "value": "195"
+ },
+ "raft_interface_line_width": {
+ "value": "0.4"
+ },
+ "skirt_brim_line_width": {
+ "value": "0.5"
+ },
+ "z_seam_y": {
+ "value": "180"
+ },
+ "roofing_layer_count": {
+ "value": "1"
+ },
+ "raft_margin": {
+ "default_value": 4
+ },
+ "cool_fan_full_at_height": {
+ "value": "0"
+ },
+ "acceleration_support_interface": {
+ "value": "250"
+ },
+ "retraction_min_travel": {
+ "value": "1"
+ },
+ "acceleration_layer_0": {
+ "value": "200"
+ },
+ "support_z_distance": {
+ "default_value": 0.2
+ },
+ "machine_heated_bed": {
+ "default_value": true
+ },
+ "raft_jerk": {
+ "value": "10"
+ },
+ "raft_surface_speed": {
+ "value": "60"
+ },
+ "initial_layer_line_width_factor": {
+ "default_value": 120
+ },
+ "machine_start_gcode": {
+ "default_value": "G90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM420 S1 Z0.7 ;enable bed levelling\nG1 Z10 F250 ;move the platform down 10mm\nM107 ;fan off\nM42 P11 S255 ;turn on front fan\nM140 S{material_bed_temperature}\nM104 T0 S{material_print_temperature, 0}\nM104 T1 S{material_print_temperature, 1}\nG1 F2500 Y260 X0\nM190 S{material_bed_temperature}\nM109 T0 S{material_print_temperature, 0}\nM109 T1 S{material_print_temperature, 1}\nM60 ;enable E-FADE Algorithm\nM62 A ;filament sensor off\nG92 E0 ;zero the extruded length\nT1\nG92 E0;zero the extruded length\nG1 F300 Z0.3\nG1 F1200 X20\nG1 F1200 X180 E21 ;extrude 21 mm of feed stock\nG1 F1200 E11\nG1 F300 Z1.5\nG92 E0 ;zero the extruded length again\nT0\nG92 E0 ;zero the extruded length\nG1 F1200 Y258\nG1 F300 Z0.3\nG1 F1200 X40 E21 ;extrude 21 mm of feed stock\nG1 F1200 E11 ;retracting 10 mm\nG1 F300 Z1.5\nM63 A ;filament sensor reset\nM61 A ;filament sensor on\nG92 E0 ;zero the extruded length again\nM58 ;end of Start G-Code and signal retract management\nT{initial_extruder_nr}"
+ },
+ "bottom_skin_preshrink": {
+ "value": "0.0"
+ },
+ "ironing_inset": {
+ "value": "0.2 + (ironing_line_spacing - skin_line_width * (1.0 + ironing_flow / 100) / 2 if ironing_pattern == 'concentric' else skin_line_width * (1.0 - ironing_flow / 100) / 2)"
+ },
+ "jerk_travel": {
+ "value": "10"
+ },
+ "machine_depth": {
+ "default_value": 260
+ },
+ "jerk_skirt_brim": {
+ "value": "5"
+ },
+ "infill_wipe_dist": {
+ "value": "0"
+ },
+ "raft_interface_acceleration": {
+ "value": "400"
+ },
+ "z_seam_x": {
+ "value": "115"
+ },
+ "material_print_temperature": {
+ "value": "195"
+ },
+ "material_bed_temperature_layer_0": {
+ "value": "50",
+ "minimum_value_warning": "30",
+ "resolve": "extruderValues('material_bed_temperature_layer_0')[adhesion_extruder_nr] if resolveOrValue('adhesion_type') == 'raft' else max(extruderValues('material_bed_temperature_layer_0'))"
+ },
+ "wipe_retraction_retract_speed": {
+ "value": "30"
+ },
+ "jerk_travel_layer_0": {
+ "value": "10"
+ },
+ "infill_overlap": {
+ "value": "0"
+ },
+ "acceleration_support_infill": {
+ "value": "400"
+ },
+ "travel_compensate_overlapping_walls_0_enabled": {
+ "value": "False"
+ },
+ "support_bottom_material_flow": {
+ "value": "99"
+ },
+ "jerk_support_roof": {
+ "value": "5"
+ },
+ "wall_x_material_flow": {
+ "value": "99"
+ },
+ "speed_support_interface": {
+ "value": "33.33"
+ },
+ "jerk_layer_0": {
+ "value": "5"
+ },
+ "support_angle": {
+ "default_value": 60
+ },
+ "infill_sparse_thickness": {
+ "value": "0.2"
+ },
+ "prime_tower_position_y": {
+ "value": "1"
+ },
+ "retraction_combing": {
+ "default_value": "infill"
+ },
+ "acceleration_prime_tower": {
+ "value": "250"
+ },
+ "acceleration_print": {
+ "default_value": 200
+ },
+ "acceleration_infill": {
+ "value": "400"
+ },
+ "bridge_wall_speed": {
+ "value": "10.0"
+ },
+ "acceleration_wall_0": {
+ "value": "200"
+ },
+ "support_offset": {
+ "default_value": 0.2
+ },
+ "build_volume_temperature": {
+ "default_value": 28
+ },
+ "switch_extruder_prime_speed": {
+ "value": "60"
+ },
+ "speed_prime_tower": {
+ "value": "20"
+ },
+ "top_skin_preshrink": {
+ "value": "0.0"
+ },
+ "jerk_ironing": {
+ "value": "5"
+ },
+ "skin_outline_count": {
+ "value": 0
+ },
+ "skirt_brim_speed": {
+ "value": "10.0"
+ },
+ "raft_base_thickness": {
+ "value": "0.2"
+ },
+ "infill_sparse_density": {
+ "default_value": 15
+ },
+ "support_bottom_extruder_nr": {
+ "value": "0"
+ },
+ "support_material_flow": {
+ "value": "98"
+ },
+ "min_infill_area": {
+ "default_value": 1
+ },
+ "jerk_support": {
+ "value": "10"
+ },
+ "bottom_skin_expand_distance": {
+ "value": "0.8"
+ },
+ "retract_at_layer_change": {
+ "default_value": true
+ },
+ "jerk_support_interface": {
+ "value": "5"
+ },
+ "jerk_support_bottom": {
+ "value": "5"
+ },
+ "optimize_wall_printing_order": {
+ "default_value": true
+ },
+ "skirt_brim_minimal_length": {
+ "default_value": 50
+ },
+ "jerk_support_infill": {
+ "value": "10"
+ },
+ "initial_bottom_layers": {
+ "value": "3"
+ },
+ "prime_tower_position_x": {
+ "value": "1"
+ },
+ "acceleration_support_bottom": {
+ "value": "250"
+ },
+ "speed_support_roof": {
+ "value": "33.33"
+ },
+ "speed_support_infill": {
+ "value": "80"
+ },
+ "bridge_skin_speed_2": {
+ "value": "15"
+ },
+ "raft_fan_speed": {
+ "default_value": 40
+ },
+ "wipe_retraction_amount": {
+ "value": "3"
+ },
+ "skin_edge_support_thickness": {
+ "value": "0"
+ },
+ "bottom_layers": {
+ "value": "3"
+ },
+ "retraction_extrusion_window": {
+ "value": "3"
+ },
+ "acceleration_ironing": {
+ "value": "250"
+ },
+ "support_top_distance": {
+ "value": "0.2"
+ },
+ "travel_retract_before_outer_wall": {
+ "default_value": true
+ },
+ "material_flow": {
+ "default_value": 99
+ },
+ "support_bottom_distance": {
+ "value": "0.2"
+ },
+ "expand_skins_expand_distance": {
+ "value": "0.8"
+ },
+ "jerk_wall": {
+ "value": "10"
+ },
+ "support_zag_skip_count": {
+ "value": "8"
+ },
+ "connect_infill_polygons": {
+ "value": "False"
+ },
+ "acceleration_skirt_brim": {
+ "value": "250"
+ },
+ "z_seam_corner": {
+ "default_value": "z_seam_corner_weighted"
+ },
+ "raft_surface_jerk": {
+ "value": "10"
+ },
+ "cross_infill_pocket_size": {
+ "value": "5.33"
+ },
+ "support_infill_extruder_nr": {
+ "value": "0"
+ },
+ "acceleration_enabled": {
+ "default_value": true
+ },
+ "jerk_wall_x": {
+ "value": "10"
+ },
+ "skin_overlap": {
+ "value": "15"
+ },
+ "infill_material_flow": {
+ "value": "99"
+ },
+ "speed_equalize_flow_max": {
+ "default_value": 40
+ },
+ "skin_preshrink": {
+ "value": "0.0"
+ },
+ "speed_wall": {
+ "value": "20"
+ },
+ "support_tree_collision_resolution": {
+ "value": "0.2"
+ },
+ "meshfix_maximum_deviation": {
+ "default_value": 0.003
+ },
+ "jerk_roofing": {
+ "value": "10"
+ },
+ "fill_outline_gaps": {
+ "default_value": true
+ },
+ "layer_height": {
+ "default_value": 0.2
+ },
+ "remove_empty_first_layers": {
+ "default_value": false
+ },
+ "prime_tower_flow": {
+ "value": "99"
+ },
+ "support_roof_line_distance": {
+ "value": "0.57"
+ },
+ "wipe_retraction_speed": {
+ "value": "30"
+ },
+ "support_extruder_nr_layer_0": {
+ "value": "0"
+ },
+ "layer_height_0": {
+ "default_value": 0.2
+ },
+ "multiple_mesh_overlap": {
+ "default_value": 0
+ },
+ "ooze_shield_dist": {
+ "default_value": 4
+ },
+ "jerk_enabled": {
+ "default_value": true
+ },
+ "acceleration_support": {
+ "value": "200"
+ },
+ "adhesion_extruder_nr": {
+ "value": "0"
+ },
+ "skirt_line_count": {
+ "default_value": 2
+ },
+ "travel_compensate_overlapping_walls_x_enabled": {
+ "value": "False"
+ },
+ "jerk_wall_0": {
+ "value": "5"
+ },
+ "raft_speed": {
+ "value": "60"
+ },
+ "speed_layer_0": {
+ "value": "20.0"
+ },
+ "machine_width": {
+ "default_value": 210
+ },
+ "acceleration_wall": {
+ "value": "200"
+ },
+ "jerk_infill": {
+ "value": "10"
+ },
+ "wipe_hop_enable": {
+ "value": "False"
+ },
+ "acceleration_travel_layer_0": {
+ "value": "400"
+ },
+ "raft_interface_speed": {
+ "value": "60"
+ },
+ "skin_edge_support_layers": {
+ "value": "0"
+ },
+ "support_xy_distance_overhang": {
+ "value": "0.5"
+ },
+ "brim_width": {
+ "default_value": 10
+ },
+ "coasting_enable": {
+ "default_value": true
+ },
+ "jerk_print": {
+ "default_value": 10
+ },
+ "acceleration_support_roof": {
+ "value": "250"
+ },
+ "prime_tower_min_volume": {
+ "default_value": 4
+ },
+ "support_roof_material_flow": {
+ "value": "99"
+ },
+ "wall_0_wipe_dist": {
+ "value": "0"
+ },
+ "jerk_topbottom": {
+ "value": "10"
+ },
+ "retraction_count_max": {
+ "default_value": 30
+ },
+ "skin_overlap_mm": {
+ "value": "0.06"
+ },
+ "extruders_enabled_count": {
+ "value": "2"
+ },
+ "speed_support_bottom": {
+ "value": "33.33"
+ },
+ "support_skip_some_zags": {
+ "default_value": true
+ },
+ "ooze_shield_angle": {
+ "default_value": 50
+ },
+ "wall_thickness": {
+ "value": "1.2"
+ },
+ "speed_print_layer_0": {
+ "value": "10.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/resources/definitions/stereotech_start.def.json b/resources/definitions/stereotech_start.def.json
index ca03937007..f6733d2ec7 100644
--- a/resources/definitions/stereotech_start.def.json
+++ b/resources/definitions/stereotech_start.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "Stereotech START",
+ "name": "Stereotech Start",
"inherits": "fdmprinter",
"metadata": {
"visible": true,
diff --git a/resources/definitions/stream20dual_mk2.def.json b/resources/definitions/stream20dual_mk2.def.json
new file mode 100644
index 0000000000..2bb491a906
--- /dev/null
+++ b/resources/definitions/stream20dual_mk2.def.json
@@ -0,0 +1,52 @@
+{
+ "version": 2,
+ "name": "Volumic Stream20Dual MK2",
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": true,
+ "author": "Volumic",
+ "manufacturer": "Volumic",
+ "file_formats": "text/x-gcode",
+ "icon": "volumic-icon",
+ "platform": "STREAM20PRO_platform.STL",
+ "machine_extruder_trains":{"0": "stream20dual_0","1": "stream20dual_1"},
+ "has_machine_quality": true,
+ "has_materials": true
+ },
+
+ "overrides": {
+ "machine_name": { "default_value": "VOLUMIC STREAM20DUAL MK2" },
+ "machine_heated_bed": { "default_value": true },
+ "machine_width": { "default_value": 165 },
+ "machine_height": { "default_value": 240 },
+ "machine_depth": { "default_value": 200 },
+ "machine_center_is_zero": { "default_value": false },
+ "material_diameter": { "default_value": 1.75 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "layer_height": { "default_value": 0.1 },
+ "layer_height_0": { "default_value": 0.1 },
+ "retraction_amount": { "default_value": 2 },
+ "retraction_speed": { "default_value": 25 },
+ "adhesion_type": { "default_value": "none" },
+ "infill_sparse_density": { "default_value": 25 },
+ "fill_outline_gaps": { "default_value": true },
+ "retract_at_layer_change": { "default_value": true },
+ "retraction_combing_max_distance": { "default_value": 200 },
+ "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] },
+ "machine_max_feedrate_z": { "default_value": 20 },
+ "machine_max_feedrate_e": { "default_value": 60 },
+ "machine_max_acceleration_z": { "default_value": 500 },
+ "machine_acceleration": { "default_value": 2000 },
+ "machine_max_jerk_xy": { "default_value": 10 },
+ "machine_max_jerk_z": { "default_value": 0.4 },
+ "machine_max_jerk_e": { "default_value": 5 },
+ "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
+ "machine_extruder_count": {"default_value": 2},
+ "machine_start_gcode": {
+ "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression"
+ },
+ "machine_end_gcode": {
+ "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300"
+ }
+ }
+}
diff --git a/resources/definitions/stream20pro_mk2.def.json b/resources/definitions/stream20pro_mk2.def.json
new file mode 100644
index 0000000000..1da3c01d1f
--- /dev/null
+++ b/resources/definitions/stream20pro_mk2.def.json
@@ -0,0 +1,51 @@
+{
+ "version": 2,
+ "name": "Volumic Stream20Pro MK2",
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": true,
+ "author": "Volumic",
+ "manufacturer": "Volumic",
+ "file_formats": "text/x-gcode",
+ "icon": "volumic-icon",
+ "platform": "STREAM20PRO_platform.STL",
+ "has_materials": true,
+ "has_machine_quality": true,
+ "machine_extruder_trains":{"0": "stream20_extruder"}
+ },
+
+ "overrides": {
+ "machine_name": { "default_value": "VOLUMIC STREAM20PRO MK2" },
+ "machine_heated_bed": { "default_value": true },
+ "machine_width": { "default_value": 200 },
+ "machine_height": { "default_value": 240 },
+ "machine_depth": { "default_value": 200 },
+ "machine_center_is_zero": { "default_value": false },
+ "material_diameter": { "default_value": 1.75 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "layer_height": { "default_value": 0.1 },
+ "layer_height_0": { "default_value": 0.1 },
+ "retraction_amount": { "default_value": 2 },
+ "retraction_speed": { "default_value": 25 },
+ "adhesion_type": { "default_value": "none" },
+ "infill_sparse_density": { "default_value": 25 },
+ "fill_outline_gaps": { "default_value": true },
+ "retract_at_layer_change": { "default_value": true },
+ "retraction_combing_max_distance": { "default_value": 200 },
+ "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] },
+ "machine_max_feedrate_z": { "default_value": 50 },
+ "machine_max_feedrate_e": { "default_value": 60 },
+ "machine_max_acceleration_z": { "default_value": 500 },
+ "machine_acceleration": { "default_value": 2000 },
+ "machine_max_jerk_xy": { "default_value": 10 },
+ "machine_max_jerk_z": { "default_value": 0.4 },
+ "machine_max_jerk_e": { "default_value": 5 },
+ "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
+ "machine_start_gcode": {
+ "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression"
+ },
+ "machine_end_gcode": {
+ "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300"
+ }
+ }
+}
diff --git a/resources/definitions/stream30dual_mk2.def.json b/resources/definitions/stream30dual_mk2.def.json
new file mode 100644
index 0000000000..4d16c978a9
--- /dev/null
+++ b/resources/definitions/stream30dual_mk2.def.json
@@ -0,0 +1,52 @@
+{
+ "version": 2,
+ "name": "Volumic Stream30Dual MK2",
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": true,
+ "author": "Volumic",
+ "manufacturer": "Volumic",
+ "file_formats": "text/x-gcode",
+ "icon": "volumic-icon",
+ "platform": "STREAM30PRO_platform.STL",
+ "machine_extruder_trains":{"0": "stream30dual_0","1": "stream30dual_1"},
+ "has_machine_quality": true,
+ "has_materials": true
+ },
+
+ "overrides": {
+ "machine_name": { "default_value": "VOLUMIC STREAM30DUAL MK2" },
+ "machine_heated_bed": { "default_value": true },
+ "machine_width": { "default_value": 265 },
+ "machine_height": { "default_value": 300 },
+ "machine_depth": { "default_value": 200 },
+ "machine_center_is_zero": { "default_value": false },
+ "material_diameter": { "default_value": 1.75 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "layer_height": { "default_value": 0.1 },
+ "layer_height_0": { "default_value": 0.1 },
+ "retraction_amount": { "default_value": 2 },
+ "retraction_speed": { "default_value": 25 },
+ "adhesion_type": { "default_value": "none" },
+ "infill_sparse_density": { "default_value": 25 },
+ "fill_outline_gaps": { "default_value": true },
+ "retract_at_layer_change": { "default_value": true },
+ "retraction_combing_max_distance": { "default_value": 200 },
+ "machine_head_with_fans_polygon": { "default_value": [[0,0],[0,0],[0,0],[0,0]] },
+ "machine_max_feedrate_z": { "default_value": 50 },
+ "machine_max_feedrate_e": { "default_value": 60 },
+ "machine_max_acceleration_z": { "default_value": 500 },
+ "machine_acceleration": { "default_value": 2000 },
+ "machine_max_jerk_xy": { "default_value": 10 },
+ "machine_max_jerk_z": { "default_value": 0.4 },
+ "machine_max_jerk_e": { "default_value": 5 },
+ "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
+ "machine_extruder_count": {"default_value": 2},
+ "machine_start_gcode": {
+ "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression"
+ },
+ "machine_end_gcode": {
+ "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300"
+ }
+ }
+}
diff --git a/resources/definitions/stream30pro_mk2.def.json b/resources/definitions/stream30pro_mk2.def.json
new file mode 100644
index 0000000000..b313704dac
--- /dev/null
+++ b/resources/definitions/stream30pro_mk2.def.json
@@ -0,0 +1,51 @@
+{
+ "version": 2,
+ "name": "Volumic Stream30Pro MK2",
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": true,
+ "author": "Volumic",
+ "manufacturer": "Volumic",
+ "file_formats": "text/x-gcode",
+ "icon": "volumic-icon",
+ "platform": "STREAM30PRO_platform.STL",
+ "has_materials": true,
+ "has_machine_quality": true,
+ "machine_extruder_trains":{"0": "stream30_extruder"}
+ },
+
+ "overrides": {
+ "machine_name": { "default_value": "VOLUMIC STREAM30PRO MK2" },
+ "machine_heated_bed": { "default_value": true },
+ "machine_width": { "default_value": 300 },
+ "machine_height": { "default_value": 300 },
+ "machine_depth": { "default_value": 200 },
+ "machine_center_is_zero": { "default_value": false },
+ "material_diameter": { "default_value": 1.75 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "layer_height": { "default_value": 0.1 },
+ "layer_height_0": { "default_value": 0.1 },
+ "retraction_amount": { "default_value": 2 },
+ "retraction_speed": { "default_value": 25 },
+ "adhesion_type": { "default_value": "none" },
+ "infill_sparse_density": { "default_value": 25 },
+ "fill_outline_gaps": { "default_value": true },
+ "retract_at_layer_change": { "default_value": true },
+ "retraction_combing_max_distance": { "default_value": 200 },
+ "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] },
+ "machine_max_feedrate_z": { "default_value": 50 },
+ "machine_max_feedrate_e": { "default_value": 60 },
+ "machine_max_acceleration_z": { "default_value": 500 },
+ "machine_acceleration": { "default_value": 2000 },
+ "machine_max_jerk_xy": { "default_value": 10 },
+ "machine_max_jerk_z": { "default_value": 0.4 },
+ "machine_max_jerk_e": { "default_value": 5 },
+ "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
+ "machine_start_gcode": {
+ "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression"
+ },
+ "machine_end_gcode": {
+ "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300"
+ }
+ }
+}
diff --git a/resources/definitions/stream30ultra.def.json b/resources/definitions/stream30ultra.def.json
new file mode 100644
index 0000000000..731e213447
--- /dev/null
+++ b/resources/definitions/stream30ultra.def.json
@@ -0,0 +1,51 @@
+{
+ "version": 2,
+ "name": "Volumic Stream30Ultra",
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": true,
+ "author": "Volumic",
+ "manufacturer": "Volumic",
+ "file_formats": "text/x-gcode",
+ "icon": "volumic-icon",
+ "platform": "STREAM30ULTRA_platform.STL",
+ "has_materials": true,
+ "has_machine_quality": true,
+ "machine_extruder_trains":{"0": "stream30ultra_extruder"}
+ },
+
+ "overrides": {
+ "machine_name": { "default_value": "VOLUMIC STREAM30ULTRA" },
+ "machine_heated_bed": { "default_value": true },
+ "machine_width": { "default_value": 290 },
+ "machine_height": { "default_value": 300 },
+ "machine_depth": { "default_value": 200 },
+ "machine_center_is_zero": { "default_value": false },
+ "material_diameter": { "default_value": 1.75 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "layer_height": { "default_value": 0.1 },
+ "layer_height_0": { "default_value": 0.1 },
+ "retraction_amount": { "default_value": 2 },
+ "retraction_speed": { "default_value": 25 },
+ "adhesion_type": { "default_value": "none" },
+ "infill_sparse_density": { "default_value": 25 },
+ "fill_outline_gaps": { "default_value": true },
+ "retract_at_layer_change": { "default_value": true },
+ "retraction_combing_max_distance": { "default_value": 200 },
+ "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] },
+ "machine_max_feedrate_z": { "default_value": 30 },
+ "machine_max_feedrate_e": { "default_value": 60 },
+ "machine_max_acceleration_z": { "default_value": 500 },
+ "machine_acceleration": { "default_value": 2000 },
+ "machine_max_jerk_xy": { "default_value": 10 },
+ "machine_max_jerk_z": { "default_value": 0.4 },
+ "machine_max_jerk_e": { "default_value": 5 },
+ "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
+ "machine_start_gcode": {
+ "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression"
+ },
+ "machine_end_gcode": {
+ "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300"
+ }
+ }
+}
diff --git a/resources/definitions/stream30ultrasc.def.json b/resources/definitions/stream30ultrasc.def.json
new file mode 100644
index 0000000000..2f645a057b
--- /dev/null
+++ b/resources/definitions/stream30ultrasc.def.json
@@ -0,0 +1,51 @@
+{
+ "version": 2,
+ "name": "Volumic Stream30Ultra SC",
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": true,
+ "author": "Volumic",
+ "manufacturer": "Volumic",
+ "file_formats": "text/x-gcode",
+ "icon": "volumic-icon",
+ "platform": "STREAM30ULTRA_platform.STL",
+ "has_materials": true,
+ "has_machine_quality": true,
+ "machine_extruder_trains":{"0": "stream30ultrasc_extruder"}
+ },
+
+ "overrides": {
+ "machine_name": { "default_value": "VOLUMIC STREAM30ULTRA SC" },
+ "machine_heated_bed": { "default_value": true },
+ "machine_width": { "default_value": 300 },
+ "machine_height": { "default_value": 310 },
+ "machine_depth": { "default_value": 200 },
+ "machine_center_is_zero": { "default_value": false },
+ "material_diameter": { "default_value": 1.75 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "layer_height": { "default_value": 0.1 },
+ "layer_height_0": { "default_value": 0.1 },
+ "retraction_amount": { "default_value": 2.40 },
+ "retraction_speed": { "default_value": 30 },
+ "adhesion_type": { "default_value": "none" },
+ "infill_sparse_density": { "default_value": 25 },
+ "fill_outline_gaps": { "default_value": true },
+ "retract_at_layer_change": { "default_value": true },
+ "retraction_combing_max_distance": { "default_value": 200 },
+ "machine_head_with_fans_polygon": { "default_value": [[-38,30],[38,30],[38,-40],[-38,-40]] },
+ "machine_max_feedrate_z": { "default_value": 30 },
+ "machine_max_feedrate_e": { "default_value": 60 },
+ "machine_max_acceleration_z": { "default_value": 500 },
+ "machine_acceleration": { "default_value": 2000 },
+ "machine_max_jerk_xy": { "default_value": 10 },
+ "machine_max_jerk_z": { "default_value": 0.4 },
+ "machine_max_jerk_e": { "default_value": 5 },
+ "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
+ "machine_start_gcode": {
+ "default_value": "M117 Demarrage\nM106 S0\nM140 S{material_bed_temperature_layer_0}\nM104 T0 S{material_print_temperature_layer_0}\nG28\nG90\nM82\nG92 E0\nG1 Z3 F600\n;M190 S{material_bed_temperature_layer_0}\nM109 T0 S{material_print_temperature_layer_0}\nM300 P350\nM117 Purge\nG1 Z0.15 F600\nG1 E10 F400\nG92 E0\nM117 Impression"
+ },
+ "machine_end_gcode": {
+ "default_value": "M107\nG91\nT0\nG1 E-1\nM104 T0 S0\nG90\nG0 X1 Y190 F5000\nG92 E0\nM140 S0\nM84\nM300"
+ }
+ }
+}
diff --git a/resources/definitions/syndaveraxi.def.json b/resources/definitions/syndaveraxi.def.json
index 887bfca6ee..186b89212f 100644
--- a/resources/definitions/syndaveraxi.def.json
+++ b/resources/definitions/syndaveraxi.def.json
@@ -1,6 +1,6 @@
{
"version": 2,
- "name": "SyndaverAXI",
+ "name": "SyndaverAxi",
"inherits": "fdmprinter",
"metadata":
{
@@ -33,11 +33,11 @@
[ 0, 0 ]
]
},
- "gantry_height": { "value": "286" },
+ "gantry_height": { "value": "30" },
"machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
"machine_start_gcode": {
- "default_value": ";This G-Code has been generated specifically for Syndaver AXI with Hemera toolhead\nM73 P0 ; clear LCD progress bar\nM75 ; Start LCD Print Timer\nM107 ; disable fans\nM420 S0 ; disable leveling matrix\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S{material_bed_temperature_layer_0} ; start bed heating up\nM104 S170 ; start nozzle heating up\nG28 ; home all axes\nM117 AXI Heating Up...\nG1 X-17.5 Y100 Z10 F3000 ; move to wipe position\nG29 L1 ; load leveling matrix slot 1\nG29 A ; ensure mesh is enabled\nM109 R170 ; wait for nozzle to reach wiping temp\nG1 E-3 ; retract material before wipe\nM117 AXI Wiping Nozzle...\nG1 Z-3 ; lower nozzle\nG1 Y90 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y80 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y55 F1000 ; slow wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Z10 ; raise nozzle\nM117 Heating...\nM190 R{material_bed_temperature_layer_0} ; wait for bed to reach printing temp\nM104 S{material_print_temperature_layer_0} ; set extruder to reach initial printing temp, held back for ooze reasons\nM117 Probe Z at Temp\nG28 Z ; re-probe Z0 to account for any thermal expansion in the bed\nG1 X-17.5 Y80 Z10 F3000 ; move back to wiper\nM117 Heating...\nM109 R{material_print_temperature_layer_0} ; wait for extruder to reach initial printing temp\nM117 AXI Wiping Nozzle...\nG1 E0 ; prime material in nozzle\nG1 Z-3 ; final ooze wipe\nG1 Y60 F2000 ; final ooze wipe\nG1 Y20 F2000 ; final ooze wipe\nM117 AXI Starting Print\nG1 Z2 ; move nozzle back up to not run into things on print start\nM400 ; wait for moves to finish\nM117 AXI Printing"
+ "default_value": ";This G-Code has been generated specifically for Syndaver AXI with Hemera toolhead\nM73 P0 ; clear LCD progress bar\nM75 ; Start LCD Print Timer\nM107 ; disable fans\nM420 S0 ; disable leveling matrix\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S{material_bed_temperature_layer_0} ; start bed heating up\nM104 S170 ; start nozzle heating up\nG28 ; home all axes\nM117 AXI Heating Up...\nG1 X-17.5 Y100 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nG29 L1 ; load leveling matrix slot 1\nG29 A ; ensure mesh is enabled\nM109 R170 ; wait for nozzle to reach wiping temp\nG1 E-3 ; retract material before wipe\nM117 AXI Wiping Nozzle...\nG1 Z-3 ; lower nozzle\nG1 Y90 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y80 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y55 F1000 ; slow wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Z10 ; raise nozzle\nM117 Heating...\nM190 R{material_bed_temperature_layer_0} ; wait for bed to reach printing temp\nM104 S{material_print_temperature_layer_0} ; set extruder to reach initial printing temp, held back for ooze reasons\nM117 Probe Z at Temp\nG28 Z ; re-probe Z0 to account for any thermal expansion in the bed\nG1 X-17.5 Y80 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nM117 Heating...\nM109 R{material_print_temperature_layer_0} ; wait for extruder to reach initial printing temp\nM117 AXI Wiping Nozzle...\nG1 E0 ; prime material in nozzle\nG1 Z-3 ; final ooze wipe\nG1 Y60 F2000 ; final ooze wipe\nG1 Y20 F2000 ; final ooze wipe\nM117 AXI Starting Print\nG1 Z2 ; move nozzle back up to not run into things on print start\nM400 ; wait for moves to finish\nM117 AXI Printing"
},
"machine_end_gcode": {
"default_value": "M400 ; wait for moves to finish\nM140 S50 ; start bed cooling\nM104 S0 ; disable hotend\nM107 ; disable fans\nM117 Cooling please wait\nG91 ; relative positioning\nG1 Z5 F3000 ; move Z up 5mm so it wont drag on the print\nG90 ; absolute positioning\nG1 X5 Y5 F3000 ; move to cooling position\nM190 R50 ; wait for bed to cool down to removal temp\nG1 X145 Y260 F1000 ; present finished print\nM140 S0 ; cool down bed\nM77 ; End LCD Print Timer\nM18 X Y E ; turn off x y and e axis\nM117 Print Complete."
diff --git a/resources/definitions/syndaveraxi2.def.json b/resources/definitions/syndaveraxi2.def.json
new file mode 100644
index 0000000000..8ab0003e09
--- /dev/null
+++ b/resources/definitions/syndaveraxi2.def.json
@@ -0,0 +1,46 @@
+{
+ "version": 2,
+ "name": "SyndaverAxi2",
+ "inherits": "fdmprinter",
+ "metadata":
+{
+ "type": "machine",
+ "visible": true,
+ "author": "Syndaver3D",
+ "manufacturer": "Syndaver3D",
+ "file_formats": "text/x-gcode",
+ "supports_usb_connection": true,
+ "preferred_quality_type": "draft",
+ "machine_extruder_trains":
+ {
+ "0": "syndaveraxi2_extruder_0"
+ }
+ },
+
+ "overrides": {
+ "machine_name": { "default_value": "AXI2" },
+ "machine_shape": { "default_value": "rectangular"},
+ "machine_heated_bed": { "default_value": true },
+ "machine_width": { "default_value": 280 },
+ "machine_depth": { "default_value": 280 },
+ "machine_height": { "default_value": 280 },
+ "machine_center_is_zero": { "default_value": false },
+ "machine_head_with_fans_polygon": {
+ "default_value": [
+ [ 0, 0 ],
+ [ 0, 0 ],
+ [ 0, 0 ],
+ [ 0, 0 ]
+ ]
+ },
+ "gantry_height": { "value": "60" },
+ "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" },
+
+ "machine_start_gcode": {
+ "default_value": ";This G-Code has been generated specifically for Syndaver AXI 2 with Hemera toolhead\nM73 P0 ; clear LCD progress bar\nM75 ; Start LCD Print Timer\nM107 ; disable fans\nM420 S0 ; disable leveling matrix\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S{material_bed_temperature_layer_0} ; start bed heating up\nM104 S170 ; start nozzle heating up\nG28 ; home all axes\nM117 AXI Heating Up...\nG1 X-17.5 Y100 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nG29 L1 ; load leveling matrix slot 1\nG29 A ; ensure mesh is enabled\nM109 R170 ; wait for nozzle to reach wiping temp\nG1 E-3 ; retract material before wipe\nM117 AXI Wiping Nozzle...\nG1 Z-3 ; lower nozzle\nG1 Y90 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y80 F1000 ; slow wipe\nG1 Y65 F1000 ; slow wipe\nG1 Y55 F1000 ; slow wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Y30 F3000 ; fast wipe\nG1 Y55 F3000 ; fast wipe\nG1 Z10 ; raise nozzle\nM117 Heating...\nM190 R{material_bed_temperature_layer_0} ; wait for bed to reach printing temp\nM104 S{material_print_temperature_layer_0} ; set extruder to reach initial printing temp, held back for ooze reasons\nM117 Probe Z at Temp\nG28 Z ; re-probe Z0 to account for any thermal expansion in the bed\nG1 X-17.5 Y80 F3000 ; move to wiper pad\nG1 Z10 F5000 ; move to wiper pad\nM117 Heating...\nM109 R{material_print_temperature_layer_0} ; wait for extruder to reach initial printing temp\nM117 AXI Wiping Nozzle...\nG1 E0 ; prime material in nozzle\nG1 Z-3 ; final ooze wipe\nG1 Y60 F2000 ; final ooze wipe\nG1 Y20 F2000 ; final ooze wipe\nM117 AXI Starting Print\nG1 Z2 ; move nozzle back up to not run into things on print start\nM400 ; wait for moves to finish\nM117 AXI Printing"
+ },
+ "machine_end_gcode": {
+ "default_value": "M400 ; wait for moves to finish\nM140 S50 ; start bed cooling\nM104 S0 ; disable hotend\nM107 ; disable fans\nM117 Cooling please wait\nG91 ; relative positioning\nG1 Z5 F3000 ; move Z up 5mm so it wont drag on the print\nG90 ; absolute positioning\nG1 X5 Y5 F3000 ; move to cooling position\nM190 R50 ; wait for bed to cool down to removal temp\nG1 X145 Y260 F1000 ; present finished print\nM140 S0 ; cool down bed\nM77 ; End LCD Print Timer\nM18 X Y E ; turn off x y and e axis\nM117 Print Complete."
+ }
+ }
+}
\ No newline at end of file
diff --git a/resources/definitions/tam.def.json b/resources/definitions/tam.def.json
index 2378cc0ae3..080a3125db 100644
--- a/resources/definitions/tam.def.json
+++ b/resources/definitions/tam.def.json
@@ -4,8 +4,8 @@
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "typeamachines",
- "manufacturer": "typeamachines",
+ "author": "TypeAMachines",
+ "manufacturer": "TypeAMachines",
"file_formats": "text/x-gcode",
"platform": "tam_series1.3mf",
"platform_offset": [-580.0, -6.23, 253.5],
diff --git a/resources/definitions/tizyx_evy.def.json b/resources/definitions/tizyx_evy.def.json
index 8ed9a5aeff..7776007f41 100644
--- a/resources/definitions/tizyx_evy.def.json
+++ b/resources/definitions/tizyx_evy.def.json
@@ -1,11 +1,11 @@
{
- "name": "TiZYX EVY",
+ "name": "Tizyx Evy",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "TiZYX",
- "manufacturer": "TiZYX",
+ "author": "Tizyx",
+ "manufacturer": "Tizyx",
"file_formats": "text/x-gcode",
"has_machine_quality": true,
diff --git a/resources/definitions/tizyx_evy_dual.def.json b/resources/definitions/tizyx_evy_dual.def.json
index 25ff2a3af8..3b6892682a 100644
--- a/resources/definitions/tizyx_evy_dual.def.json
+++ b/resources/definitions/tizyx_evy_dual.def.json
@@ -1,11 +1,11 @@
{
- "name": "TiZYX EVY Dual",
+ "name": "Tizyx Evy Dual",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
"visible": true,
- "author": "TiZYX",
- "manufacturer": "TiZYX",
+ "author": "Tizyx",
+ "manufacturer": "Tizyx",
"file_formats": "text/x-gcode",
"has_machine_quality": true,
diff --git a/resources/definitions/tizyx_k25.def.json b/resources/definitions/tizyx_k25.def.json
index 5723fa514e..ccaa6fff0b 100644
--- a/resources/definitions/tizyx_k25.def.json
+++ b/resources/definitions/tizyx_k25.def.json
@@ -1,12 +1,12 @@
{
"version": 2,
- "name": "TiZYX K25",
+ "name": "Tizyx K25",
"inherits": "fdmprinter",
"metadata":
{
"visible": true,
- "author": "TiZYX",
- "manufacturer": "TiZYX",
+ "author": "Tizyx",
+ "manufacturer": "Tizyx",
"file_formats": "text/x-gcode",
"platform": "tizyx_k25_platform.3mf",
"platform_offset": [0, -4, 0],
diff --git a/resources/definitions/two_trees_base.def.json b/resources/definitions/two_trees_base.def.json
new file mode 100644
index 0000000000..faeb4950b2
--- /dev/null
+++ b/resources/definitions/two_trees_base.def.json
@@ -0,0 +1,126 @@
+{
+ "name": "Two Trees Base Printer",
+ "version": 2,
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": false,
+ "author": "3DGadgets.my",
+ "manufacturer": "Two Trees",
+ "file_formats": "text/x-gcode",
+ "first_start_actions": ["MachineSettingsAction"],
+
+ "machine_extruder_trains": {
+ "0": "two_trees_base_extruder_0"
+ },
+
+ "has_materials": true,
+ "has_variants": true,
+ "has_machine_quality": true,
+ "variants_name": "Nozzle Size",
+
+ "preferred_variant_name": "0.4mm Nozzle",
+ "preferred_quality_type": "standard",
+ "preferred_material": "generic_pla"
+
+ },
+ "overrides": {
+ "machine_name": { "default_value": "Two Trees Base Printer" },
+ "machine_start_gcode": { "default_value": "G28 ;Home\nM420 S1 ;Enable ABL using saved Mesh and Fade Height\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move bed down\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Bed up" },
+ "machine_end_gcode": { "default_value": "G91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positionning\n\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\n\nM84 X Y E ;Disable all steppers but Z\n" },
+
+ "machine_heated_bed": { "default_value": true },
+
+ "material_diameter": { "default_value": 1.75 },
+
+
+ "speed_print": { "value": 50.0 } ,
+ "speed_infill": { "value": "speed_print" },
+ "speed_wall": { "value": "speed_print / 2" },
+ "speed_wall_0": { "value": "speed_wall" },
+ "speed_wall_x": { "value": "speed_print / 1.5" },
+ "speed_topbottom": { "value": "speed_print / 2" },
+ "speed_roofing": { "value": "speed_topbottom" },
+ "speed_layer_0": { "value": 20.0 },
+ "speed_print_layer_0": { "value": "speed_layer_0" },
+ "speed_prime_tower": { "value": "speed_topbottom" },
+ "speed_support": { "value": "speed_wall_0" },
+ "speed_support_interface": { "value": "speed_topbottom" },
+ "speed_z_hop": { "value": 5 },
+
+ "skirt_brim_speed": { "value": "speed_layer_0" },
+
+ "line_width": { "value": "machine_nozzle_size" },
+
+ "optimize_wall_printing_order": { "value": "True" },
+
+ "z_seam_type": { "value": "'sharpest_corner'" },
+ "z_seam_corner": { "value": "'z_seam_corner_inner'" },
+
+ "infill_sparse_density": { "value": "20" },
+ "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" },
+ "infill_before_walls": { "value": false },
+ "infill_overlap": { "value": 30.0 },
+ "skin_overlap": { "value": 10.0 },
+ "infill_wipe_dist": { "value": 0.0 },
+ "wall_0_wipe_dist": { "value": 0.0 },
+
+ "fill_perimeter_gaps": { "value": "'everywhere'" },
+ "fill_outline_gaps": { "value": false },
+ "filter_out_tiny_gaps": { "value": false },
+
+
+ "retraction_hop_enabled": { "value": "False" },
+ "retraction_hop": { "value": 0.2 },
+ "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" },
+ "retraction_combing_max_distance": { "value": 30 },
+ "travel_avoid_other_parts": { "value": true },
+ "travel_avoid_supports": { "value": true },
+ "travel_retract_before_outer_wall": { "value": true },
+
+ "retraction_enable": { "value": true },
+ "retraction_speed": { "default_value" : 40 },
+ "retraction_amount": { "default_value" : 7 },
+ "retraction_count_max": { "value": 100 },
+ "retraction_extrusion_window": { "value": 10 },
+ "retraction_min_travel": { "value": 1.5 },
+
+
+ "cool_fan_full_layer": { "value": "2" },
+ "cool_fan_enabled": { "value": true },
+ "cool_min_layer_time": { "value": 10 },
+
+ "adhesion_type": { "value": "'skirt'" },
+ "brim_replaces_support": { "value": false },
+ "skirt_gap": { "value": 10.0 },
+ "skirt_line_count": { "value": 3 },
+
+ "adaptive_layer_height_variation": { "value": 0.04 },
+ "adaptive_layer_height_variation_step": { "value": 0.04 },
+
+ "meshfix_maximum_resolution": { "value": "0.25" },
+ "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" },
+
+ "support_angle": { "value": 50 },
+ "support_pattern": { "value": "'zigzag'" },
+ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 25" },
+ "support_use_towers": { "value": false },
+ "support_xy_distance": { "value": "wall_line_width_0 * 2" },
+ "support_xy_distance_overhang": { "value": "wall_line_width_0" },
+ "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
+ "support_xy_overrides_z": { "value": "'xy_overrides_z'" },
+ "support_wall_count": { "value": 0 },
+ "support_brim_enable": { "value": true },
+ "support_brim_width": { "value": 5 },
+
+ "support_interface_enable": { "value": false },
+ "support_interface_height": { "value": "layer_height * 4" },
+ "support_interface_density": { "value": 33.333 },
+ "support_interface_pattern": { "value": "'grid'" },
+ "support_interface_skip_height": { "value": 0.2 },
+ "minimum_support_area": { "value": 2 },
+ "minimum_interface_area": { "value": 10 },
+ "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" },
+ "wall_thickness": {"value": "line_width * 2" }
+
+ }
+}
diff --git a/resources/definitions/two_trees_bluer.def.json b/resources/definitions/two_trees_bluer.def.json
new file mode 100644
index 0000000000..67e903f74d
--- /dev/null
+++ b/resources/definitions/two_trees_bluer.def.json
@@ -0,0 +1,37 @@
+{
+ "name": "Two Trees Bluer",
+ "version": 2,
+ "inherits": "two_trees_base",
+ "overrides": {
+ "machine_start_gcode": { "default_value": "G28 ;Home\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move bed down\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Bed up" },
+ "machine_name": { "default_value": "Two Trees Bluer" },
+ "machine_width": { "default_value": 230 },
+ "machine_depth": { "default_value": 230 },
+ "machine_height": { "default_value": 280 },
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-47, 37],
+ [-47, -23],
+ [47, -23],
+ [47, 37]
+ ]
+ },
+
+ "gantry_height": { "value": 28 },
+ "speed_print": { "value": 50.0 },
+ "speed_travel": { "value": 180 },
+ "speed_travel_layer_0": { "value": 100 },
+ "retraction_speed": { "default_value" : 50 },
+ "retraction_amount": { "default_value" : 8 },
+
+ "material_flow": { "value": 90 },
+ "infill_material_flow": { "value": 100 },
+
+ "infill_overlap": { "value": 30 },
+ "skin_overlap": { "value": 20 }
+ },
+ "metadata": {
+ "quality_definition": "two_trees_base",
+ "visible": true,
+ "platform": "twotrees235x235_generic.stl"
+ }
+}
diff --git a/resources/definitions/two_trees_bluerplus.def.json b/resources/definitions/two_trees_bluerplus.def.json
new file mode 100644
index 0000000000..1e1dcd20c3
--- /dev/null
+++ b/resources/definitions/two_trees_bluerplus.def.json
@@ -0,0 +1,36 @@
+{
+ "name": "Two Trees Bluer Plus",
+ "version": 2,
+ "inherits": "two_trees_base",
+ "overrides": {
+ "machine_name": { "default_value": "Two Trees Bluer Plus" },
+ "machine_width": { "default_value": 300 },
+ "machine_depth": { "default_value": 300 },
+ "machine_height": { "default_value": 400 },
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-47, 37],
+ [-47, -23],
+ [47, -23],
+ [47, 37]
+ ]
+ },
+
+ "gantry_height": { "value": 28 },
+ "speed_print": { "value": 50.0 },
+ "speed_travel": { "value": 180 },
+ "speed_travel_layer_0": { "value": 100 },
+ "retraction_speed": { "default_value" : 50 },
+ "retraction_amount": { "default_value" : 8 },
+
+ "material_flow": { "value": 90 },
+ "infill_material_flow": { "value": 100 },
+
+ "infill_overlap": { "value": 30 },
+ "skin_overlap": { "value": 20 }
+ },
+ "metadata": {
+ "quality_definition": "two_trees_base",
+ "visible": true,
+ "platform": "twotrees300x300_generic.stl"
+ }
+}
diff --git a/resources/definitions/two_trees_sapphireplus.def.json b/resources/definitions/two_trees_sapphireplus.def.json
new file mode 100644
index 0000000000..8dae455a28
--- /dev/null
+++ b/resources/definitions/two_trees_sapphireplus.def.json
@@ -0,0 +1,38 @@
+{
+ "name": "Two Trees Sapphire Plus",
+ "version": 2,
+ "inherits": "two_trees_base",
+ "overrides": {
+ "machine_name": { "default_value": "Two Trees Sapphire Plus" },
+ "machine_width": { "default_value": 300 },
+ "machine_depth": { "default_value": 300 },
+ "machine_height": { "default_value": 350 },
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-30,19],
+ [30,19],
+ [30,-49],
+ [-30,-49]
+ ]
+ },
+
+ "gantry_height": { "value": 65 },
+
+ "speed_print": { "value": 60.0 },
+ "speed_travel": { "value": 180 },
+ "speed_travel_layer_0": { "value": 100 },
+ "retraction_speed": { "default_value" : 40 },
+ "retraction_amount": { "default_value" : 7 },
+
+ "material_flow": { "value": 90 },
+ "infill_material_flow": { "value": 100 },
+
+ "infill_overlap": { "value": 30 },
+ "skin_overlap": { "value": 20 }
+ },
+ "metadata": {
+ "quality_definition": "two_trees_base",
+ "visible": true,
+ "platform": "sapphireplus_platform.stl"
+
+ }
+}
diff --git a/resources/definitions/two_trees_sapphirepro.def.json b/resources/definitions/two_trees_sapphirepro.def.json
new file mode 100644
index 0000000000..0a66a5e232
--- /dev/null
+++ b/resources/definitions/two_trees_sapphirepro.def.json
@@ -0,0 +1,39 @@
+{
+ "name": "Two Trees Sapphire Pro",
+ "version": 2,
+ "inherits": "two_trees_base",
+ "overrides": {
+ "machine_start_gcode": { "default_value": "G28 ;Home\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move bed down\nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z2.0 F3000 ;Move Bed up" },
+ "machine_name": { "default_value": "Two Trees Sapphire Pro" },
+ "machine_width": { "default_value": 220 },
+ "machine_depth": { "default_value": 220 },
+ "machine_height": { "default_value": 220 },
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-30,19],
+ [30,19],
+ [30,-49],
+ [-30,-49]
+ ]
+ },
+
+ "gantry_height": { "value": 65 },
+
+ "speed_print": { "value": 60.0 },
+ "speed_travel": { "value": 180 },
+ "speed_travel_layer_0": { "value": 100 },
+ "retraction_speed": { "default_value" : 40 },
+ "retraction_amount": { "default_value" : 7 },
+
+ "material_flow": { "value": 90 },
+ "infill_material_flow": { "value": 100 },
+
+ "infill_overlap": { "value": 30 },
+ "skin_overlap": { "value": 20 }
+ },
+ "metadata": {
+ "quality_definition": "two_trees_base",
+ "visible": true,
+ "platform": "sapphirepro_platform.stl"
+
+ }
+}
diff --git a/resources/definitions/twotrees_bluer.def.json b/resources/definitions/twotrees_bluer.def.json
deleted file mode 100644
index 8cf7d804cf..0000000000
--- a/resources/definitions/twotrees_bluer.def.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
- "version": 2,
- "name": "TwoTrees Bluer",
- "inherits": "fdmprinter",
- "metadata":
- {
- "visible": true,
- "author": "Washington C. Correa Jr.",
- "manufacturer": "TwoTrees",
- "file_formats": "text/x-gcode",
- "platform": "twotrees_platform.stl",
- "machine_extruder_trains":
- {
- "0": "twotrees_bluer_extruder_0",
- "1": "twotrees_bluer_extruder_1"
- }
- },
- "overrides":
- {
- "machine_name": { "default_value": "Two Trees Bluer" },
- "machine_heated_bed": { "default_value": true },
- "machine_width": { "default_value": 235 },
- "machine_depth": { "default_value": 235 },
- "machine_height": { "default_value": 280 },
- "machine_head_with_fans_polygon": { "default_value": [
- [-26, 34],
- [-26, -32],
- [32, -32],
- [32, 34]
- ]
- },
- "machine_start_gcode": { "default_value": "; Two Trees Bluer Custom Start G-code\nG28 ;Home\nG92 E0 ;Reset Extruder\nG1 Z4.0 F3000 ;Move Z Axis up\nG1 E10 F1500 ;Purge a bit\nG1 X10.1 Y20 Z0.2 F5000.0 ;Move to start position\nG1 X10.1 Y200.0 Z0.2 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.2 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.2 F1500.0 E20 ;Draw the second line\nG92 E0 ;Reset Extruder\nG1 Z3.0 X20 Y20 F3000 ;Move Z Axis up\nG1 E3 F2700 ;Purge a bit" },
- "machine_end_gcode": { "default_value": "; Two Trees Bluer Custom End G-code\nG91 ;Relative positioning\nG1 E-2 F2700 ;Retract a bit\nG1 E-2 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Wipe out\nG1 Z10 ;Raise Z more\nG90 ;Absolute positioning\nG1 X0 Y{machine_depth} ;Present print\nM106 S0 ;Turn-off fan\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM84 X Y E ;Disable all steppers but Z" },
- "gantry_height": { "value": 25 }
- }
-}
diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json
index ff9a75c40c..47a60fe51c 100644
--- a/resources/definitions/ultimaker.def.json
+++ b/resources/definitions/ultimaker.def.json
@@ -6,7 +6,7 @@
"author": "Ultimaker",
"manufacturer": "Ultimaker B.V.",
"visible": false,
- "exclude_materials": [ "generic_hips", "generic_petg", "structur3d_dap100silicone" ]
+ "exclude_materials": [ "generic_hips", "structur3d_dap100silicone" ]
},
"overrides": {
"machine_max_feedrate_e": {
diff --git a/resources/definitions/ultimaker2.def.json b/resources/definitions/ultimaker2.def.json
index 3980baba31..c028363239 100644
--- a/resources/definitions/ultimaker2.def.json
+++ b/resources/definitions/ultimaker2.def.json
@@ -18,7 +18,8 @@
{
"0": "ultimaker2_extruder_0"
},
- "firmware_file": "MarlinUltimaker2.hex"
+ "firmware_file": "MarlinUltimaker2.hex",
+ "exclude_materials": [ "generic_hips", "generic_petg", "structur3d_dap100silicone", "ultimaker_petg_red", "ultimaker_petg_blue", "ultimaker_petg_grey", "ultimaker_petg_black", "ultimaker_petg_green", "ultimaker_petg_white", "ultimaker_petg_orange", "ultimaker_petg_silver", "ultimaker_petg_yellow", "ultimaker_petg_transparent", "ultimaker_petg_red_translucent", "ultimaker_petg_blue_translucent", "ultimaker_petg_green_translucent", "ultimaker_petg_yellow_fluorescent"]
},
"overrides": {
"machine_name": { "default_value": "Ultimaker 2" },
diff --git a/resources/definitions/ultimaker2_plus.def.json b/resources/definitions/ultimaker2_plus.def.json
index 7b9c0781f7..8250e70104 100644
--- a/resources/definitions/ultimaker2_plus.def.json
+++ b/resources/definitions/ultimaker2_plus.def.json
@@ -13,7 +13,7 @@
"has_variants": true,
"has_materials": true,
"has_machine_quality": true,
- "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone" ],
+ "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone", "ultimaker_petg_red", "ultimaker_petg_blue", "ultimaker_petg_grey", "ultimaker_petg_black", "ultimaker_petg_green", "ultimaker_petg_white", "ultimaker_petg_orange", "ultimaker_petg_silver", "ultimaker_petg_yellow", "ultimaker_petg_transparent", "ultimaker_petg_red_translucent", "ultimaker_petg_blue_translucent", "ultimaker_petg_green_translucent", "ultimaker_petg_yellow_fluorescent"],
"first_start_actions": [],
"supported_actions": [],
"machine_extruder_trains":
diff --git a/resources/definitions/ultimaker2_plus_connect.def.json b/resources/definitions/ultimaker2_plus_connect.def.json
index c0ddcf813f..46c615a262 100644
--- a/resources/definitions/ultimaker2_plus_connect.def.json
+++ b/resources/definitions/ultimaker2_plus_connect.def.json
@@ -22,7 +22,8 @@
"0": "ultimaker2_plus_connect_extruder_0"
},
"supports_usb_connection": false,
- "supports_network_connection": true
+ "supports_network_connection": true,
+ "supports_material_export": true
},
"overrides": {
diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json
index d831221852..2e49dda806 100644
--- a/resources/definitions/ultimaker3.def.json
+++ b/resources/definitions/ultimaker3.def.json
@@ -13,7 +13,7 @@
"has_machine_quality": true,
"has_materials": true,
"has_variants": true,
- "exclude_materials": [ "generic_hips", "generic_petg", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone" ],
+ "exclude_materials": [ "generic_hips", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone" ],
"preferred_variant_name": "AA 0.4",
"preferred_quality_type": "normal",
"variants_name": "Print core",
diff --git a/resources/definitions/ultimaker_original.def.json b/resources/definitions/ultimaker_original.def.json
index 34d22934d6..d209c28a07 100644
--- a/resources/definitions/ultimaker_original.def.json
+++ b/resources/definitions/ultimaker_original.def.json
@@ -11,7 +11,7 @@
"platform": "ultimaker_platform.3mf",
"has_materials": true,
"has_machine_quality": true,
- "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone" ],
+ "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone", "ultimaker_petg_blue", "ultimaker_petg_grey", "ultimaker_petg_black", "ultimaker_petg_green", "ultimaker_petg_white", "ultimaker_petg_orange", "ultimaker_petg_silver", "ultimaker_petg_yellow", "ultimaker_petg_transparent", "ultimaker_petg_red_translucent", "ultimaker_petg_blue_translucent", "ultimaker_petg_green_translucent", "ultimaker_petg_yellow_fluorescent", "ultimaker_petg_red" ],
"first_start_actions": ["UMOUpgradeSelection", "BedLevel"],
"supported_actions": ["UMOUpgradeSelection", "BedLevel"],
"machine_extruder_trains":
diff --git a/resources/definitions/ultimaker_original_dual.def.json b/resources/definitions/ultimaker_original_dual.def.json
index 887a84c4fa..bda8a0ce12 100644
--- a/resources/definitions/ultimaker_original_dual.def.json
+++ b/resources/definitions/ultimaker_original_dual.def.json
@@ -12,7 +12,7 @@
"has_materials": true,
"has_machine_quality": true,
"quality_definition": "ultimaker_original",
- "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone" ],
+ "exclude_materials": ["generic_hips", "generic_petg", "generic_bam", "ultimaker_bam", "generic_pva", "ultimaker_pva", "generic_tough_pla", "ultimaker_tough_pla_black", "ultimaker_tough_pla_green", "ultimaker_tough_pla_red", "ultimaker_tough_pla_white", "generic_cffcpe", "generic_cffpa", "generic_gffcpe", "generic_gffpa", "structur3d_dap100silicone", "ultimaker_petg_blue", "ultimaker_petg_grey", "ultimaker_petg_black", "ultimaker_petg_green", "ultimaker_petg_white", "ultimaker_petg_orange", "ultimaker_petg_silver", "ultimaker_petg_yellow", "ultimaker_petg_transparent", "ultimaker_petg_red_translucent", "ultimaker_petg_blue_translucent", "ultimaker_petg_green_translucent", "ultimaker_petg_yellow_fluorescent", "ultimaker_petg_red" ],
"machine_extruder_trains":
{
"0": "ultimaker_original_dual_1st",
diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json
index 962bff3fa0..43f32a96dc 100644
--- a/resources/definitions/ultimaker_s3.def.json
+++ b/resources/definitions/ultimaker_s3.def.json
@@ -27,6 +27,7 @@
"first_start_actions": [ "DiscoverUM3Action" ],
"supported_actions": [ "DiscoverUM3Action" ],
"supports_usb_connection": false,
+ "supports_material_export": true,
"weight": -1,
"firmware_update_info": {
"id": 213482,
diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json
index 8a9880c31a..71de826953 100644
--- a/resources/definitions/ultimaker_s5.def.json
+++ b/resources/definitions/ultimaker_s5.def.json
@@ -28,6 +28,7 @@
"supported_actions": [ "DiscoverUM3Action" ],
"supports_usb_connection": false,
"supports_network_connection": true,
+ "supports_material_export": true,
"weight": -2,
"firmware_update_info": {
"id": 9051,
diff --git a/resources/definitions/uni_200.def.json b/resources/definitions/uni_200.def.json
index 9fdb008213..f425a3d89f 100644
--- a/resources/definitions/uni_200.def.json
+++ b/resources/definitions/uni_200.def.json
@@ -1,5 +1,5 @@
{
- "name": "UNI 200",
+ "name": "Uni 200",
"version": 2,
"inherits": "uni_base",
"metadata": {
diff --git a/resources/definitions/uni_250.def.json b/resources/definitions/uni_250.def.json
index 65ceddf8c7..c6a5642439 100644
--- a/resources/definitions/uni_250.def.json
+++ b/resources/definitions/uni_250.def.json
@@ -1,5 +1,5 @@
{
- "name": "UNI 250",
+ "name": "Uni 250",
"version": 2,
"inherits": "uni_base",
"metadata": {
diff --git a/resources/definitions/uni_300.def.json b/resources/definitions/uni_300.def.json
index 11d1ed0591..52cfc769cf 100644
--- a/resources/definitions/uni_300.def.json
+++ b/resources/definitions/uni_300.def.json
@@ -1,5 +1,5 @@
{
- "name": "UNI 300",
+ "name": "Uni 300",
"version": 2,
"inherits": "uni_base",
"metadata": {
diff --git a/resources/definitions/uni_base.def.json b/resources/definitions/uni_base.def.json
index 6cdbc198a5..06ba86de2d 100644
--- a/resources/definitions/uni_base.def.json
+++ b/resources/definitions/uni_base.def.json
@@ -1,11 +1,11 @@
{
- "name": "UNI Base Printer",
+ "name": "Uni Base Printer",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
"visible": false,
"author": "Nail` Gimadeev (C)",
- "manufacturer": "UNI 3D",
+ "manufacturer": "Uni 3D",
"file_formats": "text/x-gcode",
"first_start_actions": ["MachineSettingsAction"],
"machine_extruder_trains": {
diff --git a/resources/definitions/uni_mini.def.json b/resources/definitions/uni_mini.def.json
index c2b67039ea..4da67907f9 100644
--- a/resources/definitions/uni_mini.def.json
+++ b/resources/definitions/uni_mini.def.json
@@ -1,5 +1,5 @@
{
- "name": "UNI MINI",
+ "name": "Uni Mini",
"version": 2,
"inherits": "uni_base",
"metadata": {
diff --git a/resources/definitions/uni_print_3d.def.json b/resources/definitions/uni_print_3d.def.json
index 0ad937e594..7d71d73540 100644
--- a/resources/definitions/uni_print_3d.def.json
+++ b/resources/definitions/uni_print_3d.def.json
@@ -1,5 +1,5 @@
{
- "name": "UNI-PRINT-3D",
+ "name": "Uni-Print-3D",
"version": 2,
"inherits": "fdmprinter",
"metadata":
diff --git a/resources/definitions/voron2_250.def.json b/resources/definitions/voron2_250.def.json
index 269bbfe459..a479576458 100644
--- a/resources/definitions/voron2_250.def.json
+++ b/resources/definitions/voron2_250.def.json
@@ -1,5 +1,5 @@
{
- "name": "VORON2 250",
+ "name": "Voron2 250",
"version": 2,
"inherits": "voron2_base",
"metadata":
diff --git a/resources/definitions/voron2_300.def.json b/resources/definitions/voron2_300.def.json
index 20698d54ff..943b841c4d 100644
--- a/resources/definitions/voron2_300.def.json
+++ b/resources/definitions/voron2_300.def.json
@@ -1,5 +1,5 @@
{
- "name": "VORON2 300",
+ "name": "Voron2 300",
"version": 2,
"inherits": "voron2_base",
"metadata":
diff --git a/resources/definitions/voron2_350.def.json b/resources/definitions/voron2_350.def.json
index 6af41118c4..36e5e9339c 100644
--- a/resources/definitions/voron2_350.def.json
+++ b/resources/definitions/voron2_350.def.json
@@ -1,5 +1,5 @@
{
- "name": "VORON2 350",
+ "name": "Voron2 350",
"version": 2,
"inherits": "voron2_base",
"metadata":
diff --git a/resources/definitions/voron2_base.def.json b/resources/definitions/voron2_base.def.json
index e7e81685b7..cc48833136 100644
--- a/resources/definitions/voron2_base.def.json
+++ b/resources/definitions/voron2_base.def.json
@@ -1,12 +1,12 @@
{
- "name": "VORON2 Base",
+ "name": "Voron2 Base",
"version": 2,
"inherits": "fdmprinter",
"metadata":
{
"visible": false,
"author": "Fulg, Maglin, pizzle_Dizzle",
- "manufacturer": "VORONDesign",
+ "manufacturer": "VoronDesign",
"file_formats": "text/x-gcode",
"first_start_actions": ["MachineSettingsAction"],
"preferred_quality_type": "fast",
diff --git a/resources/definitions/voron2_custom.def.json b/resources/definitions/voron2_custom.def.json
index 2fc5c2305d..45612e0cba 100644
--- a/resources/definitions/voron2_custom.def.json
+++ b/resources/definitions/voron2_custom.def.json
@@ -1,5 +1,5 @@
{
- "name": "VORON2 Custom",
+ "name": "Voron2 Custom",
"version": 2,
"inherits": "voron2_base",
"metadata":
diff --git a/resources/definitions/zav_base.def.json b/resources/definitions/zav_base.def.json
index 9167d5574f..1ef9398987 100644
--- a/resources/definitions/zav_base.def.json
+++ b/resources/definitions/zav_base.def.json
@@ -1,11 +1,11 @@
{
- "name": "ZAV Base Printer",
+ "name": "Zav Base Printer",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
"visible": false,
"author": "Kirill Nikolaev, Kim Evgeniy (C)",
- "manufacturer": "ZAV Co., Ltd.",
+ "manufacturer": "Zav Co., Ltd.",
"file_formats": "text/x-gcode",
"first_start_actions": ["MachineSettingsAction"],
"machine_extruder_trains": {
diff --git a/resources/definitions/zav_big.def.json b/resources/definitions/zav_big.def.json
index dc68e1ad11..56d6f77111 100644
--- a/resources/definitions/zav_big.def.json
+++ b/resources/definitions/zav_big.def.json
@@ -1,5 +1,5 @@
{
- "name": "ZAV BIG",
+ "name": "Zav Big",
"version": 2,
"inherits": "zav_base",
"metadata": {
diff --git a/resources/definitions/zav_bigplus.def.json b/resources/definitions/zav_bigplus.def.json
index bbdf9ee264..a8b24ae323 100644
--- a/resources/definitions/zav_bigplus.def.json
+++ b/resources/definitions/zav_bigplus.def.json
@@ -1,5 +1,5 @@
{
- "name": "ZAV Big+",
+ "name": "Zav Big+",
"version": 2,
"inherits": "zav_base",
"metadata": {
diff --git a/resources/definitions/zav_l.def.json b/resources/definitions/zav_l.def.json
index 7da88aef85..604cb49ddb 100644
--- a/resources/definitions/zav_l.def.json
+++ b/resources/definitions/zav_l.def.json
@@ -1,5 +1,5 @@
{
- "name": "ZAV L family printer",
+ "name": "Zav L Family Printer",
"version": 2,
"inherits": "zav_base",
"metadata": {
diff --git a/resources/definitions/zav_max.def.json b/resources/definitions/zav_max.def.json
index f67266b0a5..3e5e987cc7 100644
--- a/resources/definitions/zav_max.def.json
+++ b/resources/definitions/zav_max.def.json
@@ -1,5 +1,5 @@
{
- "name": "ZAV MAX",
+ "name": "Zav Max",
"version": 2,
"inherits": "zav_base",
"metadata": {
diff --git a/resources/definitions/zav_maxpro.def.json b/resources/definitions/zav_maxpro.def.json
index 81cd43835f..97f8806f45 100644
--- a/resources/definitions/zav_maxpro.def.json
+++ b/resources/definitions/zav_maxpro.def.json
@@ -1,5 +1,5 @@
{
- "name": "ZAV PRO",
+ "name": "Zav Pro",
"version": 2,
"inherits": "zav_base",
"metadata": {
diff --git a/resources/definitions/zav_mini.def.json b/resources/definitions/zav_mini.def.json
index 2ceccddfda..8491ddd01c 100644
--- a/resources/definitions/zav_mini.def.json
+++ b/resources/definitions/zav_mini.def.json
@@ -1,5 +1,5 @@
{
- "name": "ZAV mini",
+ "name": "Zav Mini",
"version": 2,
"inherits": "zav_base",
"metadata": {
diff --git a/resources/definitions/zyyx_agile.def.json b/resources/definitions/zyyx_agile.def.json
index 2e4e086208..7294a1b10e 100644
--- a/resources/definitions/zyyx_agile.def.json
+++ b/resources/definitions/zyyx_agile.def.json
@@ -1,5 +1,5 @@
{
- "name": "ZYYX Agile",
+ "name": "Zyyx Agile",
"version": 2,
"inherits": "fdmprinter",
"metadata": {
diff --git a/resources/extruders/twotrees_bluer_extruder_0.def.json b/resources/extruders/SV03_extruder_0.def.json
similarity index 52%
rename from resources/extruders/twotrees_bluer_extruder_0.def.json
rename to resources/extruders/SV03_extruder_0.def.json
index fb85e76647..9ceb468d64 100644
--- a/resources/extruders/twotrees_bluer_extruder_0.def.json
+++ b/resources/extruders/SV03_extruder_0.def.json
@@ -3,16 +3,13 @@
"name": "Extruder 1",
"inherits": "fdmextruder",
"metadata": {
- "machine": "twotrees_bluer",
+ "machine": "SV03",
"position": "0"
},
"overrides": {
- "extruder_nr": {
- "default_value": 0,
- "maximum_value": "1"
- },
- "machine_nozzle_size": { "default_value": 0.4 },
+ "extruder_nr": { "default_value": 0 },
+ "machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 }
}
}
diff --git a/resources/extruders/anycubic_i3_mega_s_extruder_0.def.json b/resources/extruders/anycubic_i3_mega_s_extruder_0.def.json
new file mode 100644
index 0000000000..d59384f3e4
--- /dev/null
+++ b/resources/extruders/anycubic_i3_mega_s_extruder_0.def.json
@@ -0,0 +1,15 @@
+{
+ "version": 2,
+ "name": "Extruder 1",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "anycubic_i3_mega_s",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": { "default_value": 0 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "material_diameter": { "default_value": 1.75 }
+ }
+}
diff --git a/resources/extruders/deltacomb_base_extruder_0.def.json b/resources/extruders/deltacomb_base_extruder_0.def.json
old mode 100755
new mode 100644
diff --git a/resources/extruders/deltacomb_base_extruder_1.def.json b/resources/extruders/deltacomb_base_extruder_1.def.json
old mode 100755
new mode 100644
diff --git a/resources/extruders/deltacomb_base_extruder_2.def.json b/resources/extruders/deltacomb_base_extruder_2.def.json
old mode 100755
new mode 100644
diff --git a/resources/extruders/deltacomb_base_extruder_3.def.json b/resources/extruders/deltacomb_base_extruder_3.def.json
old mode 100755
new mode 100644
diff --git a/resources/extruders/deltacomb_dc20dual_extruder_0.def.json b/resources/extruders/deltacomb_dc20dual_extruder_0.def.json
old mode 100755
new mode 100644
index 510f8a3562..f01a416224
--- a/resources/extruders/deltacomb_dc20dual_extruder_0.def.json
+++ b/resources/extruders/deltacomb_dc20dual_extruder_0.def.json
@@ -11,7 +11,7 @@
"extruder_nr": { "default_value": 0 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 },
- "machine_nozzle_offset_x": { "default_value": 0.0 },
+ "machine_nozzle_offset_x": { "default_value": -8.0 },
"machine_nozzle_offset_y": { "default_value": 0.0 },
"machine_extruder_start_code": { "default_value": ";DC20 Dual Extruder 1\n;Put your custom code here"},
"machine_extruder_end_code": { "default_value": ";DC20 Dual Extruder 1\n;Put your custom code here"}
diff --git a/resources/extruders/deltacomb_dc20dual_extruder_1.def.json b/resources/extruders/deltacomb_dc20dual_extruder_1.def.json
old mode 100755
new mode 100644
index 1421a7d3db..2749254242
--- a/resources/extruders/deltacomb_dc20dual_extruder_1.def.json
+++ b/resources/extruders/deltacomb_dc20dual_extruder_1.def.json
@@ -11,8 +11,8 @@
"extruder_nr": { "default_value": 1 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 },
- "machine_nozzle_offset_x": { "default_value": 19 },
- "machine_nozzle_offset_y": { "default_value": 0 },
+ "machine_nozzle_offset_x": { "default_value": -8.0 },
+ "machine_nozzle_offset_y": { "default_value": 0.0 },
"machine_extruder_start_code": { "default_value": ";DC20 Dual Extruder 2\n;Put your custom code here"},
"machine_extruder_end_code": { "default_value": ";DC20 Dual Extruder 2\n;Put your custom code here"}
}
diff --git a/resources/extruders/deltacomb_dc20flux_extruder_0.def.json b/resources/extruders/deltacomb_dc20flux_extruder_0.def.json
old mode 100755
new mode 100644
index 96617a9465..b36879898c
--- a/resources/extruders/deltacomb_dc20flux_extruder_0.def.json
+++ b/resources/extruders/deltacomb_dc20flux_extruder_0.def.json
@@ -7,14 +7,13 @@
"position": "0"
},
-
"overrides": {
"extruder_nr": { "default_value": 0 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 },
"machine_nozzle_offset_x": { "default_value": 0.0 },
"machine_nozzle_offset_y": { "default_value": 0.0 },
- "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 1 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"},
- "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 1 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}
+ "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 1 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 1 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}
}
}
diff --git a/resources/extruders/deltacomb_dc20flux_extruder_1.def.json b/resources/extruders/deltacomb_dc20flux_extruder_1.def.json
old mode 100755
new mode 100644
index 309f857fe0..d1232c24a8
--- a/resources/extruders/deltacomb_dc20flux_extruder_1.def.json
+++ b/resources/extruders/deltacomb_dc20flux_extruder_1.def.json
@@ -7,15 +7,14 @@
"position": "1"
},
-
"overrides": {
"extruder_nr": { "default_value": 1 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 },
"machine_nozzle_offset_x": { "default_value": 0.0 },
"machine_nozzle_offset_y": { "default_value": 0.0 },
- "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 2 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"},
- "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 2 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 2 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 2 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
"prime_tower_flow": { "value": "200" }
}
}
diff --git a/resources/extruders/deltacomb_dc20flux_extruder_2.def.json b/resources/extruders/deltacomb_dc20flux_extruder_2.def.json
old mode 100755
new mode 100644
index 1283e3dbf5..d64a0d8b66
--- a/resources/extruders/deltacomb_dc20flux_extruder_2.def.json
+++ b/resources/extruders/deltacomb_dc20flux_extruder_2.def.json
@@ -7,15 +7,14 @@
"position": "2"
},
-
"overrides": {
"extruder_nr": { "default_value": 2 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 },
"machine_nozzle_offset_x": { "default_value": 0.0 },
"machine_nozzle_offset_y": { "default_value": 0.0 },
- "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 3 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"},
- "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 3 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 3 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 3 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
"prime_tower_flow": { "value": "200" }
}
}
diff --git a/resources/extruders/deltacomb_dc20flux_extruder_3.def.json b/resources/extruders/deltacomb_dc20flux_extruder_3.def.json
old mode 100755
new mode 100644
index 1965f615f6..061de645df
--- a/resources/extruders/deltacomb_dc20flux_extruder_3.def.json
+++ b/resources/extruders/deltacomb_dc20flux_extruder_3.def.json
@@ -7,15 +7,18 @@
"position": "3"
},
-
"overrides": {
"extruder_nr": { "default_value": 3 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 },
"machine_nozzle_offset_x": { "default_value": 0.0 },
"machine_nozzle_offset_y": { "default_value": 0.0 },
- "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 4 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"},
- "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC20 Flux Extruder 4 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 4 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC2x Flux Extruder 4 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
"prime_tower_flow": { "value": "200" }
}
}
+
+
+
+
diff --git a/resources/extruders/deltacomb_dc30dual_extruder_0.def.json b/resources/extruders/deltacomb_dc30dual_extruder_0.def.json
old mode 100755
new mode 100644
index d404e488bc..45cd65ea8a
--- a/resources/extruders/deltacomb_dc30dual_extruder_0.def.json
+++ b/resources/extruders/deltacomb_dc30dual_extruder_0.def.json
@@ -11,7 +11,7 @@
"extruder_nr": { "default_value": 0 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 },
- "machine_nozzle_offset_x": { "default_value": 0.0 },
+ "machine_nozzle_offset_x": { "default_value": -8.0 },
"machine_nozzle_offset_y": { "default_value": 0.0 },
"machine_extruder_start_code": { "default_value": ";DC30 Dual Extruder 1\n;Put your custom code here"},
"machine_extruder_end_code": { "default_value": ";DC30 Dual Extruder 1\n;Put your custom code here"}
diff --git a/resources/extruders/deltacomb_dc30dual_extruder_1.def.json b/resources/extruders/deltacomb_dc30dual_extruder_1.def.json
old mode 100755
new mode 100644
index c1ce8dec33..74d2b3d39d
--- a/resources/extruders/deltacomb_dc30dual_extruder_1.def.json
+++ b/resources/extruders/deltacomb_dc30dual_extruder_1.def.json
@@ -11,8 +11,8 @@
"extruder_nr": { "default_value": 1 },
"machine_nozzle_size": { "default_value": 0.4 },
"material_diameter": { "default_value": 1.75 },
- "machine_nozzle_offset_x": { "default_value": 19 },
- "machine_nozzle_offset_y": { "default_value": 0 },
+ "machine_nozzle_offset_x": { "default_value": -8.0 },
+ "machine_nozzle_offset_y": { "default_value": 0.0 },
"machine_extruder_start_code": { "default_value": ";DC30 Dual Extruder 2\n;Put your custom code here"},
"machine_extruder_end_code": { "default_value": ";DC30 Dual Extruder 2\n;Put your custom code here"}
}
diff --git a/resources/extruders/deltacomb_dc30flux_extruder_0.def.json b/resources/extruders/deltacomb_dc30flux_extruder_0.def.json
old mode 100755
new mode 100644
index 1f401c3657..604affe3f2
--- a/resources/extruders/deltacomb_dc30flux_extruder_0.def.json
+++ b/resources/extruders/deltacomb_dc30flux_extruder_0.def.json
@@ -13,7 +13,7 @@
"material_diameter": { "default_value": 1.75 },
"machine_nozzle_offset_x": { "default_value": 0.0 },
"machine_nozzle_offset_y": { "default_value": 0.0 },
- "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 1 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"},
- "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 1 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}
+ "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 1 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 1 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"}
}
}
diff --git a/resources/extruders/deltacomb_dc30flux_extruder_1.def.json b/resources/extruders/deltacomb_dc30flux_extruder_1.def.json
old mode 100755
new mode 100644
index 909d87feeb..e0b0e1711f
--- a/resources/extruders/deltacomb_dc30flux_extruder_1.def.json
+++ b/resources/extruders/deltacomb_dc30flux_extruder_1.def.json
@@ -13,8 +13,8 @@
"material_diameter": { "default_value": 1.75 },
"machine_nozzle_offset_x": { "default_value": 0.0 },
"machine_nozzle_offset_y": { "default_value": 0.0 },
- "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 2 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"},
- "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 2 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 2 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 2 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
"prime_tower_flow": { "value": "200" }
}
}
diff --git a/resources/extruders/deltacomb_dc30flux_extruder_2.def.json b/resources/extruders/deltacomb_dc30flux_extruder_2.def.json
old mode 100755
new mode 100644
index f1df8ab154..048499988d
--- a/resources/extruders/deltacomb_dc30flux_extruder_2.def.json
+++ b/resources/extruders/deltacomb_dc30flux_extruder_2.def.json
@@ -13,8 +13,8 @@
"material_diameter": { "default_value": 1.75 },
"machine_nozzle_offset_x": { "default_value": 0.0 },
"machine_nozzle_offset_y": { "default_value": 0.0 },
- "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 3 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"},
- "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 3 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 3 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 3 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
"prime_tower_flow": { "value": "200" }
}
}
diff --git a/resources/extruders/deltacomb_dc30flux_extruder_3.def.json b/resources/extruders/deltacomb_dc30flux_extruder_3.def.json
old mode 100755
new mode 100644
index dbc23f96b6..a18f2f1288
--- a/resources/extruders/deltacomb_dc30flux_extruder_3.def.json
+++ b/resources/extruders/deltacomb_dc30flux_extruder_3.def.json
@@ -13,8 +13,8 @@
"material_diameter": { "default_value": 1.75 },
"machine_nozzle_offset_x": { "default_value": 0.0 },
"machine_nozzle_offset_y": { "default_value": 0.0 },
- "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 4 Start\n;---------------------------------------\nG92 E0 ;zero the extruded length\nG91 ;use relative coordinates\nG1 E68 F10000 ; fast insert\nG92 E0 ;zero the extruded length\nG90 ;absolute positioning\n;---------------------------------------\n;---------------------------------------"},
- "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC30 Flux Extruder 4 End\n;---------------------------------------\nG91 ;use relative coordinates\nG0 E-15 F10000\nG1 Z2 ;lift head\nG4 P3000\nG0 E14.7 F10000\nG1 E-69.7 F10000\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_start_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 4 Start\n;---------------------------------------\nG91 ;relative positioning\nG1 E57 F5000 ;fast insert\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
+ "machine_extruder_end_code": { "default_value": ";---------------------------------------\n;DC3x Flux Extruder 4 End\n;---------------------------------------\nG91 ;relative positioning\nG1 E-10 F6000 ;filament shaping\nG0 Z2\nG1 E9\nG1 E-9\nG1 E8\nG1 E-8\nG1 E-10 F110\nG1 E-40 F5000 ; move to park position\nG90 ;absolute positioning\nG92 E0 ;zero the extruded length\n;---------------------------------------\n;---------------------------------------"},
"prime_tower_flow": { "value": "200" }
}
}
diff --git a/resources/extruders/longer_base_extruder_0.def.json b/resources/extruders/longer_base_extruder_0.def.json
new file mode 100644
index 0000000000..f4b144ec87
--- /dev/null
+++ b/resources/extruders/longer_base_extruder_0.def.json
@@ -0,0 +1,16 @@
+{
+ "version": 2,
+ "name": "Extruder 1",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "longer_base",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": { "default_value": 0 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "material_diameter": { "default_value": 1.75 }
+
+ }
+}
diff --git a/resources/extruders/stream20_extruder.def.json b/resources/extruders/stream20_extruder.def.json
new file mode 100644
index 0000000000..f7186c704f
--- /dev/null
+++ b/resources/extruders/stream20_extruder.def.json
@@ -0,0 +1,21 @@
+{
+ "version": 2,
+ "name": "STREAM20MK2 Extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "stream20pro_mk2",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 0
+ },
+ "machine_nozzle_size": {
+ "default_value": 0.4
+ },
+ "material_diameter": {
+ "default_value": 1.75
+ }
+ }
+}
diff --git a/resources/extruders/stream20dual_0.def.json b/resources/extruders/stream20dual_0.def.json
new file mode 100644
index 0000000000..9138d5df63
--- /dev/null
+++ b/resources/extruders/stream20dual_0.def.json
@@ -0,0 +1,31 @@
+{
+ "version": 2,
+ "name": "Left extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "stream20dual_mk2",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 0,
+ "maximum_value": "1"
+ },
+ "machine_nozzle_size": {
+ "default_value": 0.4
+ },
+ "material_diameter": {
+ "default_value": 1.75
+ },
+ "machine_nozzle_offset_x": { "default_value": 0 },
+ "machine_nozzle_offset_y": { "default_value": 0 },
+
+ "machine_extruder_start_pos_abs": { "default_value": true },
+ "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" },
+ "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" },
+ "machine_extruder_end_pos_abs": { "default_value": true },
+ "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" },
+ "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }
+ }
+}
diff --git a/resources/extruders/stream20dual_1.def.json b/resources/extruders/stream20dual_1.def.json
new file mode 100644
index 0000000000..d52ab86111
--- /dev/null
+++ b/resources/extruders/stream20dual_1.def.json
@@ -0,0 +1,33 @@
+{
+ "version": 2,
+ "name": "Right extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "stream20dual_mk2",
+ "position": "1"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 1,
+ "maximum_value": "1"
+ },
+ "machine_nozzle_size": {
+ "default_value": 0.4
+ },
+ "material_diameter": {
+ "default_value": 1.75
+ },
+ "machine_nozzle_offset_x": { "default_value": 35 },
+ "machine_nozzle_offset_y": { "default_value": 0 },
+
+ "machine_extruder_start_pos_abs": { "default_value": true },
+ "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" },
+ "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" },
+ "machine_extruder_end_pos_abs": { "default_value": true },
+ "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" },
+ "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }
+ }
+}
+
+
diff --git a/resources/extruders/stream30_extruder.def.json b/resources/extruders/stream30_extruder.def.json
new file mode 100644
index 0000000000..182ef9b481
--- /dev/null
+++ b/resources/extruders/stream30_extruder.def.json
@@ -0,0 +1,21 @@
+{
+ "version": 2,
+ "name": "STREAM30MK2 Extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "stream30pro_mk2",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 0
+ },
+ "machine_nozzle_size": {
+ "default_value": 0.4
+ },
+ "material_diameter": {
+ "default_value": 1.75
+ }
+ }
+}
diff --git a/resources/extruders/stream30dual_0.def.json b/resources/extruders/stream30dual_0.def.json
new file mode 100644
index 0000000000..3955219154
--- /dev/null
+++ b/resources/extruders/stream30dual_0.def.json
@@ -0,0 +1,31 @@
+{
+ "version": 2,
+ "name": "Left extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "stream30dual_mk2",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 0,
+ "maximum_value": "1"
+ },
+ "machine_nozzle_size": {
+ "default_value": 0.4
+ },
+ "material_diameter": {
+ "default_value": 1.75
+ },
+ "machine_nozzle_offset_x": { "default_value": 0 },
+ "machine_nozzle_offset_y": { "default_value": 0 },
+
+ "machine_extruder_start_pos_abs": { "default_value": true },
+ "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" },
+ "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" },
+ "machine_extruder_end_pos_abs": { "default_value": true },
+ "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" },
+ "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }
+ }
+}
diff --git a/resources/extruders/stream30dual_1.def.json b/resources/extruders/stream30dual_1.def.json
new file mode 100644
index 0000000000..8db42ecdc7
--- /dev/null
+++ b/resources/extruders/stream30dual_1.def.json
@@ -0,0 +1,33 @@
+{
+ "version": 2,
+ "name": "Right extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "stream30dual_mk2",
+ "position": "1"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 1,
+ "maximum_value": "1"
+ },
+ "machine_nozzle_size": {
+ "default_value": 0.4
+ },
+ "material_diameter": {
+ "default_value": 1.75
+ },
+ "machine_nozzle_offset_x": { "default_value": 35 },
+ "machine_nozzle_offset_y": { "default_value": 0 },
+
+ "machine_extruder_start_pos_abs": { "default_value": true },
+ "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" },
+ "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" },
+ "machine_extruder_end_pos_abs": { "default_value": true },
+ "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" },
+ "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }
+ }
+}
+
+
diff --git a/resources/extruders/stream30ultra_extruder.def.json b/resources/extruders/stream30ultra_extruder.def.json
new file mode 100644
index 0000000000..a2564677ec
--- /dev/null
+++ b/resources/extruders/stream30ultra_extruder.def.json
@@ -0,0 +1,21 @@
+{
+ "version": 2,
+ "name": "Extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "stream30ultra",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 0
+ },
+ "machine_nozzle_size": {
+ "default_value": 0.4
+ },
+ "material_diameter": {
+ "default_value": 1.75
+ }
+ }
+}
diff --git a/resources/extruders/stream30ultrasc_extruder.def.json b/resources/extruders/stream30ultrasc_extruder.def.json
new file mode 100644
index 0000000000..1f76837e87
--- /dev/null
+++ b/resources/extruders/stream30ultrasc_extruder.def.json
@@ -0,0 +1,21 @@
+{
+ "version": 2,
+ "name": "Extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "stream30ultrasc",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 0
+ },
+ "machine_nozzle_size": {
+ "default_value": 0.4
+ },
+ "material_diameter": {
+ "default_value": 1.75
+ }
+ }
+}
diff --git a/resources/extruders/syndaveraxi2_extruder_0.def.json b/resources/extruders/syndaveraxi2_extruder_0.def.json
new file mode 100644
index 0000000000..62357f3227
--- /dev/null
+++ b/resources/extruders/syndaveraxi2_extruder_0.def.json
@@ -0,0 +1,16 @@
+{
+ "version": 2,
+ "name": "Hemera 1",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "syndaveraxi2",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": { "default_value": 0 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "material_diameter": { "default_value": 1.75 },
+ "machine_steps_per_mm_e": { "default_value": 400 }
+ }
+}
\ No newline at end of file
diff --git a/resources/extruders/two_trees_base_extruder_0.def.json b/resources/extruders/two_trees_base_extruder_0.def.json
new file mode 100644
index 0000000000..d8a810dedc
--- /dev/null
+++ b/resources/extruders/two_trees_base_extruder_0.def.json
@@ -0,0 +1,16 @@
+{
+ "version": 2,
+ "name": "Extruder 1",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "two_trees_base",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": { "default_value": 0 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "material_diameter": { "default_value": 1.75 }
+
+ }
+}
diff --git a/resources/extruders/twotrees_bluer_extruder_1.def.json b/resources/extruders/twotrees_bluer_extruder_1.def.json
deleted file mode 100644
index fc70c5b65d..0000000000
--- a/resources/extruders/twotrees_bluer_extruder_1.def.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "version": 2,
- "name": "Extruder 2",
- "inherits": "fdmextruder",
- "metadata": {
- "machine": "twotrees_bluer",
- "position": "1"
- },
-
- "overrides": {
- "extruder_nr": {
- "default_value": 1,
- "maximum_value": "1"
- },
- "machine_nozzle_size": { "default_value": 0.4 },
- "material_diameter": { "default_value": 1.75 }
- }
-}
diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po
index 4096d8c93f..b5b5e8379b 100644
--- a/resources/i18n/cs_CZ/cura.po
+++ b/resources/i18n/cs_CZ/cura.po
@@ -5,9 +5,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:10+0200\n"
+"POT-Creation-Date: 2021-06-10 17:35+0200\n"
"PO-Revision-Date: 2021-04-04 15:31+0200\n"
"Last-Translator: Miroslav Šustek \n"
"Language-Team: DenyCZ \n"
@@ -18,188 +18,180 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n"
"X-Generator: Poedit 2.4.2\n"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
-msgctxt "@info:progress"
-msgid "Loading machines..."
-msgstr "Načítám zařízení..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+msgctxt "@label"
+msgid "Unknown"
+msgstr "Neznámý"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
-msgctxt "@info:progress"
-msgid "Setting up preferences..."
-msgstr "Nastavuji preference..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
+msgctxt "@label"
+msgid "The printer(s) below cannot be connected because they are part of a group"
+msgstr "Níže uvedené tiskárny nelze připojit, protože jsou součástí skupiny"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
-msgctxt "@info:progress"
-msgid "Initializing Active Machine..."
-msgstr "Inicializuji aktivní zařízení..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
+msgctxt "@label"
+msgid "Available networked printers"
+msgstr "Dostupné síťové tiskárny"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
-msgctxt "@info:progress"
-msgid "Initializing machine manager..."
-msgstr "Inicializuji správce zařízení..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211
+msgctxt "@menuitem"
+msgid "Not overridden"
+msgstr "Nepřepsáno"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
-msgctxt "@info:progress"
-msgid "Initializing build volume..."
-msgstr "Inicializuji prostor podložky..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
-msgctxt "@info:progress"
-msgid "Setting up scene..."
-msgstr "Připravuji scénu..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
-msgctxt "@info:progress"
-msgid "Loading interface..."
-msgstr "Načítám rozhraní..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
-msgctxt "@info:progress"
-msgid "Initializing engine..."
-msgstr "Inicializuji engine..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
-#, 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"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
-msgstr "Současně lze načíst pouze jeden soubor G-kódu. Přeskočen import {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
-msgctxt "@info:title"
-msgid "Warning"
-msgstr "Varování"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
-msgstr "Nelze otevřít žádný jiný soubor, když se načítá G kód. Přeskočen import {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
-msgctxt "@info:title"
-msgid "Error"
-msgstr "Chyba"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
#, python-brace-format
msgctxt "@label {0} is the name of a printer that's about to be deleted."
msgid "Are you sure you wish to remove {0}? This cannot be undone!"
msgstr "Doopravdy chcete odstranit {0}? Toto nelze vrátit zpět!"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
-msgctxt "@label"
-msgid "Custom Material"
-msgstr "Vlastní materiál"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
-msgctxt "@label"
-msgid "Custom"
-msgstr "Vlastní"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
msgctxt "@label"
msgid "Default"
msgstr "Výchozí"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
msgctxt "@label"
-msgid "Unknown"
-msgstr "Neznámý"
+msgid "Visual"
+msgstr "Vizuální"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
+msgctxt "@text"
+msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
+msgstr "Vizuální profil je navržen pro tisk vizuálních prototypů a modelů s cílem vysoké vizuální a povrchové kvality."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
+msgctxt "@label"
+msgid "Engineering"
+msgstr "Technika"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
+msgctxt "@text"
+msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
+msgstr "Inženýrský profil je navržen pro tisk funkčních prototypů a koncových částí s cílem lepší přesnosti a bližších tolerancí."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
+msgctxt "@label"
+msgid "Draft"
+msgstr "Návrh"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
+msgctxt "@text"
+msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
+msgstr "Návrhový profil je navržen pro tisk počátečních prototypů a ověření koncepce s cílem podstatného zkrácení doby tisku."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234
+msgctxt "@label"
+msgid "Custom Material"
+msgstr "Vlastní materiál"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
+msgctxt "@label"
+msgid "Custom"
+msgstr "Vlastní"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
msgctxt "@label"
msgid "Custom profiles"
msgstr "Vlastní profily"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
#, python-brace-format
msgctxt "@item:inlistbox"
msgid "All Supported Types ({0})"
msgstr "Všechny podporované typy ({0})"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
msgctxt "@item:inlistbox"
msgid "All Files (*)"
msgstr "Všechny soubory (*)"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
-msgctxt "@label"
-msgid "Visual"
-msgstr "Vizuální"
+#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181
+msgctxt "@info:title"
+msgid "Login failed"
+msgstr "Přihlášení selhalo"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
-msgctxt "@text"
-msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
-msgstr "Vizuální profil je navržen pro tisk vizuálních prototypů a modelů s cílem vysoké vizuální a povrchové kvality."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
+msgctxt "@info:status"
+msgid "Finding new location for objects"
+msgstr "Hledám nové umístění pro objekt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
-msgctxt "@label"
-msgid "Engineering"
-msgstr "Technika"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Finding Location"
+msgstr "Hledám umístění"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
-msgctxt "@text"
-msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
-msgstr "Inženýrský profil je navržen pro tisk funkčních prototypů a koncových částí s cílem lepší přesnosti a bližších tolerancí."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76
+msgctxt "@info:status"
+msgid "Unable to find a location within the build volume for all objects"
+msgstr "Nemohu najít lokaci na podložce pro všechny objekty"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
-msgctxt "@label"
-msgid "Draft"
-msgstr "Návrh"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+msgctxt "@info:title"
+msgid "Can't Find Location"
+msgstr "Nemohu najít umístění"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
-msgctxt "@text"
-msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
-msgstr "Návrhový profil je navržen pro tisk počátečních prototypů a ověření koncepce s cílem podstatného zkrácení doby tisku."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116
+msgctxt "@info:backup_failed"
+msgid "Could not create archive from user data directory: {}"
+msgstr "Nelze vytvořit archiv ze složky s uživatelskými daty: {}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
-msgctxt "@label"
-msgid "The printer(s) below cannot be connected because they are part of a group"
-msgstr "Níže uvedené tiskárny nelze připojit, protože jsou součástí skupiny"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
+msgctxt "@info:title"
+msgid "Backup"
+msgstr "Záloha"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
-msgctxt "@label"
-msgid "Available networked printers"
-msgstr "Dostupné síťové tiskárny"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup without having proper data or meta data."
+msgstr "Pokusil se obnovit zálohu Cura bez nutnosti správných dat nebo metadat."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
-msgctxt "@menuitem"
-msgid "Not overridden"
-msgstr "Nepřepsáno"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup that is higher than the current version."
+msgstr "Pokusil se obnovit zálohu Cura, která je vyšší než aktuální verze."
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157
+msgctxt "@info:backup_failed"
+msgid "The following error occurred while trying to restore a Cura backup:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
+msgctxt "@info:status"
+msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
+msgstr "Výška podložky byla snížena kvůli hodnotě nastavení „Sekvence tisku“, aby se zabránilo kolizi rámu s tištěnými modely."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100
+msgctxt "@info:title"
+msgid "Build Volume"
+msgstr "Podložka"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
msgctxt "@title:window"
msgid "Cura can't start"
msgstr "Cura nelze spustit"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
msgctxt "@label crash message"
msgid ""
"Oops, Ultimaker Cura has encountered something that doesn't seem right.
\n"
@@ -214,32 +206,32 @@ msgstr ""
" Za účelem vyřešení problému nám prosím pošlete tento záznam pádu.
\n"
" "
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
msgctxt "@action:button"
msgid "Send crash report to Ultimaker"
msgstr "Poslat záznam o pádu do Ultimakeru"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
msgctxt "@action:button"
msgid "Show detailed crash report"
msgstr "Zobrazit podrobný záznam pádu"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
msgctxt "@action:button"
msgid "Show configuration folder"
msgstr "Zobrazit složku s konfigurací"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
msgctxt "@action:button"
msgid "Backup and Reset Configuration"
msgstr "Zálohovat a resetovat konfiguraci"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
msgctxt "@title:window"
msgid "Crash Report"
msgstr "Záznam pádu"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
msgctxt "@label crash message"
msgid ""
"A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem
\n"
@@ -250,697 +242,676 @@ msgstr ""
" Použijte tlačítko „Odeslat zprávu“ k automatickému odeslání hlášení o chybě na naše servery
\n"
" "
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
msgctxt "@title:groupbox"
msgid "System information"
msgstr "Systémové informace"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
msgctxt "@label unknown version of Cura"
msgid "Unknown"
msgstr "Neznámý"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
msgctxt "@label Cura version number"
msgid "Cura version"
msgstr "Verze Cura"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
msgctxt "@label"
msgid "Cura language"
msgstr "Jazyk Cura"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
msgctxt "@label"
msgid "OS language"
msgstr "Jazyk operačního systému"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
msgctxt "@label Type of platform"
msgid "Platform"
msgstr "Platforma"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
msgctxt "@label"
msgid "Qt version"
msgstr "Verze Qt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
msgctxt "@label"
msgid "PyQt version"
msgstr "Verze PyQt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
msgctxt "@label OpenGL version"
msgid "OpenGL"
msgstr "OpenGL"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
msgctxt "@label"
msgid "Not yet initialized
"
msgstr "Neinicializováno
"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
#, python-brace-format
msgctxt "@label OpenGL version"
msgid "OpenGL Version: {version}"
msgstr "Verze OpenGL: {version}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
#, python-brace-format
msgctxt "@label OpenGL vendor"
msgid "OpenGL Vendor: {vendor}"
msgstr "OpenGL Vendor: {vendor}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
#, python-brace-format
msgctxt "@label OpenGL renderer"
msgid "OpenGL Renderer: {renderer}"
msgstr "OpenGL Renderer: {renderer}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
msgctxt "@title:groupbox"
msgid "Error traceback"
msgstr "Stopování chyby"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
msgctxt "@title:groupbox"
msgid "Logs"
msgstr "Protokoly"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
msgctxt "@action:button"
msgid "Send report"
msgstr "Odeslat záznam"
-#: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
-msgctxt "@info:title"
-msgid "Login failed"
-msgstr "Přihlášení selhalo"
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527
+msgctxt "@info:progress"
+msgid "Loading machines..."
+msgstr "Načítám zařízení..."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534
+msgctxt "@info:progress"
+msgid "Setting up preferences..."
+msgstr "Nastavuji preference..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672
+msgctxt "@info:progress"
+msgid "Initializing Active Machine..."
+msgstr "Inicializuji aktivní zařízení..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803
+msgctxt "@info:progress"
+msgid "Initializing machine manager..."
+msgstr "Inicializuji správce zařízení..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817
+msgctxt "@info:progress"
+msgid "Initializing build volume..."
+msgstr "Inicializuji prostor podložky..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888
+msgctxt "@info:progress"
+msgid "Setting up scene..."
+msgstr "Připravuji scénu..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924
+msgctxt "@info:progress"
+msgid "Loading interface..."
+msgstr "Načítám rozhraní..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929
+msgctxt "@info:progress"
+msgid "Initializing engine..."
+msgstr "Inicializuji engine..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246
+#, python-format
+msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
+msgid "%(width).1f x %(depth).1f x %(height).1f mm"
+msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
+msgstr "Současně lze načíst pouze jeden soubor G-kódu. Přeskočen import {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+msgctxt "@info:title"
+msgid "Warning"
+msgstr "Varování"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
+msgstr "Nelze otevřít žádný jiný soubor, když se načítá G kód. Přeskočen import {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
+msgctxt "@info:title"
+msgid "Error"
+msgstr "Chyba"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26
+msgctxt "@info:status"
+msgid "Multiplying and placing objects"
+msgstr "Násobím a rozmisťuji objekty"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Placing Objects"
+msgstr "Umisťuji objekty"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77
+msgctxt "@info:title"
+msgid "Placing Object"
+msgstr "Umisťuji objekt"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92
msgctxt "@message"
msgid "Could not read response."
msgstr "Nelze přečíst odpověď."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
-msgctxt "@info"
-msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
-msgstr "Nepodařilo se mi spustit nový proces přihlášení. Zkontrolujte, zda nějaký jiný již neběží."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
-msgctxt "@info"
-msgid "Unable to reach the Ultimaker account server."
-msgstr "Nelze se dostat na server účtu Ultimaker."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
msgctxt "@message"
msgid "The provided state is not correct."
msgstr "Poskytnutý stav není správný."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
msgctxt "@message"
msgid "Please give the required permissions when authorizing this application."
msgstr "Při autorizaci této aplikace zadejte požadovaná oprávnění."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
msgctxt "@message"
msgid "Something unexpected happened when trying to log in, please try again."
msgstr "Při pokusu o přihlášení se stalo něco neočekávaného, zkuste to znovu."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189
+msgctxt "@info"
+msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
+msgstr "Nepodařilo se mi spustit nový proces přihlášení. Zkontrolujte, zda nějaký jiný již neběží."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+msgctxt "@info"
+msgid "Unable to reach the Ultimaker account server."
+msgstr "Nelze se dostat na server účtu Ultimaker."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132
msgctxt "@title:window"
msgid "File Already Exists"
msgstr "Soubor již existuje"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
#, python-brace-format
msgctxt "@label Don't translate the XML tag !"
msgid "The file {0} already exists. Are you sure you want to overwrite it?"
msgstr "Soubor {0} již existuje. Opravdu jej chcete přepsat?"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460
msgctxt "@info:status"
msgid "Invalid file URL:"
msgstr "Špatná cesta k souboru:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
-msgctxt "@label"
-msgid "Nozzle"
-msgstr "Tryska"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
-msgctxt "@info:message Followed by a list of settings."
-msgid "Settings have been changed to match the current availability of extruders:"
-msgstr "Nastavení byla změněna, aby odpovídala aktuální dostupnosti extruderů:"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
-msgctxt "@info:title"
-msgid "Settings updated"
-msgstr "Nastavení aktualizováno"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
-msgctxt "@info:title"
-msgid "Extruder(s) Disabled"
-msgstr "Extruder(y) zakázány"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags or !"
msgid "Failed to export profile to {0}: {1}"
msgstr "Nepodařilo se exportovat profil do {0}: {1}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Failed to export profile to {0}: Writer plugin reported failure."
msgstr "Export profilu do {0} se nezdařil: Zapisovací zásuvný modul ohlásil chybu."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Exported profile to {0}"
msgstr "Exportován profil do {0}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157
msgctxt "@info:title"
msgid "Export succeeded"
msgstr "Export úspěšný"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "Failed to import profile from {0}: {1}"
msgstr "Nepodařilo se importovat profil z {0}: {1}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "Can't import profile from {0} before a printer is added."
msgstr "Nemohu přidat profil z {0} před tím, než je přidána tiskárna."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "No custom profile to import in file {0}"
msgstr "V souboru {0} není k dispozici žádný vlastní profil"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "Failed to import profile from {0}:"
msgstr "Import profilu z {0} se nezdařil:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "This profile {0} contains incorrect data, could not import it."
msgstr "Tento profil {0} obsahuje nesprávná data, nemohl je importovat."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Failed to import profile from {0}:"
msgstr "Import profilu z {0} se nezdařil:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342
#, python-brace-format
msgctxt "@info:status"
msgid "Successfully imported profile {0}."
msgstr "Úspěšně importován profil {0}."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349
#, python-brace-format
msgctxt "@info:status"
msgid "File {0} does not contain any valid profile."
msgstr "Soubor {0} neobsahuje žádný platný profil."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352
#, python-brace-format
msgctxt "@info:status"
msgid "Profile {0} has an unknown file type or is corrupted."
msgstr "Profil {0} má neznámý typ souboru nebo je poškozen."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426
msgctxt "@label"
msgid "Custom profile"
msgstr "Vlastní profil"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442
msgctxt "@info:status"
msgid "Profile is missing a quality type."
msgstr "V profilu chybí typ kvality."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446
msgctxt "@info:status"
msgid "There is no active printer yet."
msgstr "Zatím neexistuje aktivní tiskárna."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452
msgctxt "@info:status"
msgid "Unable to add the profile."
msgstr "Nepovedlo se přidat profil."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466
#, python-brace-format
msgctxt "@info:status"
msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
msgstr "Typ kvality '{0}' není kompatibilní s definicí '{1}' aktivního zařízení."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471
#, python-brace-format
msgctxt "@info:status"
msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
msgstr "Varování: Profil není viditelný, protože typ kvality '{0}' není dostupný pro aktuální konfiguraci. Přepněte na kombinaci materiálu a trysky, která může být použita s tímto typem kvality."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
msgctxt "@info:not supported profile"
msgid "Not supported"
msgstr "Nepodporovaný"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
msgctxt "@info:No intent profile selected"
msgid "Default"
msgstr "Výchozí"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
-msgctxt "@info:status"
-msgid "Finding new location for objects"
-msgstr "Hledám nové umístění pro objekt"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
+msgctxt "@label"
+msgid "Nozzle"
+msgstr "Tryska"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856
+msgctxt "@info:message Followed by a list of settings."
+msgid "Settings have been changed to match the current availability of extruders:"
+msgstr "Nastavení byla změněna, aby odpovídala aktuální dostupnosti extruderů:"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858
msgctxt "@info:title"
-msgid "Finding Location"
-msgstr "Hledám umístění"
+msgid "Settings updated"
+msgstr "Nastavení aktualizováno"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
-msgctxt "@info:status"
-msgid "Unable to find a location within the build volume for all objects"
-msgstr "Nemohu najít lokaci na podložce pro všechny objekty"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478
msgctxt "@info:title"
-msgid "Can't Find Location"
-msgstr "Nemohu najít umístění"
+msgid "Extruder(s) Disabled"
+msgstr "Extruder(y) zakázány"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
+msgctxt "@action:button"
+msgid "Add"
+msgstr "Přidat"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272
+msgctxt "@action:button"
+msgid "Finish"
+msgstr "Dokončit"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+msgctxt "@action:button"
+msgid "Cancel"
+msgstr "Zrušit"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
#, python-brace-format
msgctxt "@label"
msgid "Group #{group_nr}"
msgstr "Skupina #{group_nr}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
-msgctxt "@action:button"
-msgid "Skip"
-msgstr "Přeskočit"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
-msgctxt "@action:button"
-msgid "Close"
-msgstr "Zavřít"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
-msgctxt "@action:button"
-msgid "Next"
-msgstr "Další"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
-msgctxt "@action:button"
-msgid "Finish"
-msgstr "Dokončit"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82
msgctxt "@tooltip"
msgid "Outer Wall"
msgstr "Vnější stěna"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
msgctxt "@tooltip"
msgid "Inner Walls"
msgstr "Vnitřní stěna"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
msgctxt "@tooltip"
msgid "Skin"
msgstr "Skin"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
msgctxt "@tooltip"
msgid "Infill"
msgstr "Výplň"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
msgctxt "@tooltip"
msgid "Support Infill"
msgstr "Výplň podpor"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
msgctxt "@tooltip"
msgid "Support Interface"
msgstr "Rozhraní podpor"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
msgctxt "@tooltip"
msgid "Support"
msgstr "Podpora"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
msgctxt "@tooltip"
msgid "Skirt"
msgstr "Límec"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
msgctxt "@tooltip"
msgid "Prime Tower"
msgstr "Hlavní věž"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
msgctxt "@tooltip"
msgid "Travel"
msgstr "Pohyb"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
msgctxt "@tooltip"
msgid "Retractions"
msgstr "Retrakce"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
msgctxt "@tooltip"
msgid "Other"
msgstr "Jiné"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259
msgctxt "@action:button"
-msgid "Add"
-msgstr "Přidat"
+msgid "Next"
+msgstr "Další"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55
msgctxt "@action:button"
-msgid "Cancel"
-msgstr "Zrušit"
+msgid "Skip"
+msgstr "Přeskočit"
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
-msgctxt "@info:status"
-msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
-msgstr "Výška podložky byla snížena kvůli hodnotě nastavení „Sekvence tisku“, aby se zabránilo kolizi rámu s tištěnými modely."
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
+msgctxt "@action:button"
+msgid "Close"
+msgstr "Zavřít"
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
msgctxt "@info:title"
-msgid "Build Volume"
-msgstr "Podložka"
+msgid "3D Model Assistant"
+msgstr "Asistent 3D modelu"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
-msgctxt "@info:backup_failed"
-msgid "Could not create archive from user data directory: {}"
-msgstr "Nelze vytvořit archiv ze složky s uživatelskými daty: {}"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
-msgctxt "@info:title"
-msgid "Backup"
-msgstr "Záloha"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup without having proper data or meta data."
-msgstr "Pokusil se obnovit zálohu Cura bez nutnosti správných dat nebo metadat."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup that is higher than the current version."
-msgstr "Pokusil se obnovit zálohu Cura, která je vyšší než aktuální verze."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
-msgctxt "@info:status"
-msgid "Multiplying and placing objects"
-msgstr "Násobím a rozmisťuji objekty"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
-msgctxt "@info:title"
-msgid "Placing Objects"
-msgstr "Umisťuji objekty"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
-msgctxt "@info:title"
-msgid "Placing Object"
-msgstr "Umisťuji objekt"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Save to Removable Drive"
-msgstr "Uložit na vyměnitelný disk"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96
#, python-brace-format
-msgctxt "@item:inlistbox"
-msgid "Save to Removable Drive {0}"
-msgstr "Uložit na vyměnitelný disk {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
msgctxt "@info:status"
-msgid "There are no file formats available to write with!"
-msgstr "Nejsou k dispozici žádné formáty souborů pro zápis!"
+msgid ""
+"One or more 3D models may not print optimally due to the model size and material configuration:
\n"
+"{model_names}
\n"
+"Find out how to ensure the best possible print quality and reliability.
\n"
+"View print quality guide
"
+msgstr ""
+" Jeden nebo více 3D modelů se nemusí tisknout optimálně kvůli velikosti modelu a konfiguraci materiálu:
\n"
+" {model_names}
\n"
+" Zjistěte, jak zajistit nejlepší možnou kvalitu a spolehlivost tisku.
\n"
+" Zobrazit průvodce kvalitou tisku
"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-#, python-brace-format
-msgctxt "@info:progress Don't translate the XML tags !"
-msgid "Saving to Removable Drive {0}"
-msgstr "Ukládám na vyměnitelný disk {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-msgctxt "@info:title"
-msgid "Saving"
-msgstr "Ukládám"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags or !"
-msgid "Could not save to {0}: {1}"
-msgstr "Nemohu uložit na {0}: {1}"
+msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead."
+msgstr "Projektový soubor {0} obsahuje neznámý typ zařízení {1}. Nelze importovat zařízení. Místo toho budou importovány modely."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
-#, python-brace-format
-msgctxt "@info:status Don't translate the tag {device}!"
-msgid "Could not find a file name when trying to write to {device}."
-msgstr "Při pokusu o zápis do zařízení {device} nebyl nalezen název souboru."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Could not save to removable drive {0}: {1}"
-msgstr "Nelze uložit na vyměnitelnou jednotku {0}: {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Saved to Removable Drive {0} as {1}"
-msgstr "Ukládám na vyměnitelnou jednotku {0} jako {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543
msgctxt "@info:title"
-msgid "File Saved"
-msgstr "Soubor uložen"
+msgid "Open Project File"
+msgstr "Otevřít soubor s projektem"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
-msgctxt "@action:button"
-msgid "Eject"
-msgstr "Vysunout"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639
#, python-brace-format
-msgctxt "@action"
-msgid "Eject removable device {0}"
-msgstr "Vysunout vyměnitelnou jednotku {0}"
+msgctxt "@info:error Don't translate the XML tags or !"
+msgid "Project file {0} is suddenly inaccessible: {1}."
+msgstr "Soubor projektu {0} je neočekávaně nedostupný: {1}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Ejected {0}. You can now safely remove the drive."
-msgstr "Vysunuto {0}. Nyní můžete bezpečně vyjmout jednotku."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647
msgctxt "@info:title"
-msgid "Safely Remove Hardware"
-msgstr "Bezpečně vysunout hardware"
+msgid "Can't Open Project File"
+msgstr "Nepovedlo se otevřít soubor projektu"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646
#, python-brace-format
-msgctxt "@info:status"
-msgid "Failed to eject {0}. Another program may be using the drive."
-msgstr "Nepodařilo se vysunout {0}. Jednotku může používat jiný program."
+msgctxt "@info:error Don't translate the XML tags or !"
+msgid "Project file {0} is corrupt: {1}."
+msgstr "Soubor projektu {0} je poškozený: {1}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
-msgctxt "@item:intext"
-msgid "Removable Drive"
-msgstr "Vyměnitelná jednotka"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698
+#, python-brace-format
+msgctxt "@info:error Don't translate the XML tag !"
+msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura."
+msgstr "Soubor projektu {0} je vytvořený profily, které jsou této verzi Ultimaker Cura neznámé."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203
+msgctxt "@title:tab"
+msgid "Recommended"
+msgstr "Doporučeno"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205
+msgctxt "@title:tab"
+msgid "Custom"
+msgstr "Vlastní"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
+msgctxt "@item:inlistbox"
+msgid "3MF File"
+msgstr "Soubor 3MF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
+msgctxt "@error:zip"
+msgid "3MF Writer plug-in is corrupt."
+msgstr "Plugin 3MF Writer je poškozen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
+msgctxt "@error:zip"
+msgid "No permission to write the workspace here."
+msgstr "Nemáte oprávnění zapisovat do tohoto pracovního prostoru."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
+msgctxt "@error:zip"
+msgid "The operating system does not allow saving a project file to this location or with this file name."
+msgstr "Operační systém nepovoluje uložit soubor s projektem do tohoto umístění nebo pod tímto názvem."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
+msgctxt "@error:zip"
+msgid "Error writing 3mf file."
+msgstr "Chyba při zápisu 3mf file."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "3MF file"
+msgstr "Soubor 3MF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
+msgctxt "@item:inlistbox"
+msgid "Cura Project 3MF file"
+msgstr "Soubor Cura Project 3MF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
msgctxt "@item:inlistbox"
msgid "AMF File"
msgstr "Soubor AMF"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
-msgctxt "@item:inlistbox"
-msgid "G-code File"
-msgstr "Soubor G-kódu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
-msgctxt "@action"
-msgid "Update Firmware"
-msgstr "Aktualizovat firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
-msgctxt "@item:inlistbox"
-msgid "X3D File"
-msgstr "Soubor X3D"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
-msgctxt "@button"
-msgid "Decline"
-msgstr "Odmítnout"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
-msgctxt "@button"
-msgid "Agree"
-msgstr "Přijmout"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
-msgctxt "@title:window"
-msgid "Plugin License Agreement"
-msgstr "Licenční ujednání zásuvného modulu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
-msgctxt "@button"
-msgid "Decline and remove from account"
-msgstr "Odmítnout a odstranit z účtu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
-msgctxt "@info:generic"
-msgid "{} plugins failed to download"
-msgstr "Nepovedlo se stáhnout {} zásuvných modulů"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
-msgctxt "@info:generic"
-msgid "Syncing..."
-msgstr "Synchronizuji..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
msgctxt "@info:title"
-msgid "Changes detected from your Ultimaker account"
-msgstr "Zjištěny změny z vašeho účtu Ultimaker"
+msgid "Backups"
+msgstr "Zálohy"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
-msgctxt "@info:generic"
-msgid "You need to quit and restart {} before changes have effect."
-msgstr "Než se změny projeví, musíte ukončit a restartovat {}."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
+msgctxt "@info:backup_status"
+msgid "There was an error while uploading your backup."
+msgstr "Nastala chyba při nahrávání vaší zálohy."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
-msgctxt "@info:generic"
-msgid "Do you want to sync material and software packages with your account?"
-msgstr "Chcete synchronizovat materiál a softwarové balíčky s vaším účtem?"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
+msgctxt "@info:backup_status"
+msgid "Creating your backup..."
+msgstr "Vytvářím zálohu..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
-msgctxt "@action:button"
-msgid "Sync"
-msgstr "Synchronizovat"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
+msgctxt "@info:backup_status"
+msgid "There was an error while creating your backup."
+msgstr "Nastala chyba při vytváření zálohy."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
-msgctxt "@label"
-msgid "Per Model Settings"
-msgstr "Nastavení pro každý model"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
+msgctxt "@info:backup_status"
+msgid "Uploading your backup..."
+msgstr "Nahrávám vaši zálohu..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
-msgctxt "@info:tooltip"
-msgid "Configure Per Model Settings"
-msgstr "Konfigurovat nastavení pro každý model"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
+msgctxt "@info:backup_status"
+msgid "Your backup has finished uploading."
+msgstr "Vaše záloha byla úspěšně nahrána."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
+msgctxt "@error:file_size"
+msgid "The backup exceeds the maximum file size."
+msgstr "Záloha překračuje maximální povolenou velikost soubor."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
+msgctxt "@info:backup_status"
+msgid "There was an error trying to restore your backup."
+msgstr "Nastala chyba při pokusu obnovit vaši zálohu."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
msgctxt "@item:inmenu"
-msgid "Post Processing"
-msgstr "Post Processing"
+msgid "Manage backups"
+msgstr "Spravovat zálohy"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
-msgctxt "@item:inmenu"
-msgid "Modify G-Code"
-msgstr "Modifikovat G kód"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
msgctxt "@info:status"
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
msgstr "Nelze slicovat s aktuálním materiálem, protože je nekompatibilní s vybraným strojem nebo konfigurací."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
msgctxt "@info:title"
msgid "Unable to slice"
msgstr "Nelze slicovat"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
msgstr "S aktuálním nastavením nelze slicovat. Následující nastavení obsahuje chyby: {0}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
msgstr "Nelze slicovat kvůli některým nastavení jednotlivých modelů. Následující nastavení obsahuje chyby na jednom nebo více modelech: {error_labels}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
msgctxt "@info:status"
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
msgstr "Nelze slicovat, protože hlavní věž nebo primární pozice jsou neplatné."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
#, python-format
msgctxt "@info:status"
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
msgstr "Nelze slicovat, protože jsou zde objekty asociované k zakázanému extruder %s."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
msgctxt "@info:status"
msgid ""
"Please review settings and check if your models:\n"
@@ -953,64 +924,452 @@ msgstr ""
"- Jsou přiřazeny k povolenému extruderu\n"
"- Nejsou nastavené jako modifikační sítě"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:status"
msgid "Processing Layers"
msgstr "Zpracovávám vrstvy"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:title"
msgid "Information"
msgstr "Informace"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
-msgctxt "@item:inmenu"
-msgid "USB printing"
-msgstr "USB tisk"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Print via USB"
-msgstr "Tisk přes USB"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
-msgctxt "@info:tooltip"
-msgid "Print via USB"
-msgstr "Tisk přes USB"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
-msgctxt "@info:status"
-msgid "Connected via USB"
-msgstr "Připojeno přes USB"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
-msgctxt "@label"
-msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
-msgstr "Probíhá tisk přes USB, uzavření Cura tento tisk zastaví. Jsi si jistá?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
-msgstr "Tisk stále probíhá. Cura nemůže spustit další tisk přes USB, dokud není předchozí tisk dokončen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "Print in Progress"
-msgstr "Probíhá tisk"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
msgctxt "@item:inlistbox"
msgid "Cura Profile"
msgstr "Cura profil"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
-msgctxt "@action"
-msgid "Connect via Network"
-msgstr "Připojit přes síť"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
+msgctxt "@info"
+msgid "Could not access update information."
+msgstr "Nemohu načíst informace o aktualizaci."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
+#, python-brace-format
+msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
+msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
+msgstr "Pro vaše {machine_name} mohou být k dispozici nové funkce nebo opravy chyb! Pokud ještě není v nejnovější verzi, doporučuje se aktualizovat firmware v tiskárně na verzi {latest_version}."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
+#, python-format
+msgctxt "@info:title The %s gets replaced with the printer name."
+msgid "New %s firmware available"
+msgstr "Nový %s firmware je dostupný"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
+msgctxt "@action:button"
+msgid "How to update"
+msgstr "Jak aktualizovat"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
+msgctxt "@action"
+msgid "Update Firmware"
+msgstr "Aktualizovat firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
+msgctxt "@item:inlistbox"
+msgid "Compressed G-code File"
+msgstr "Kompresovaný soubor G kódu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
+msgctxt "@error:not supported"
+msgid "GCodeGzWriter does not support text mode."
+msgstr "GCodeGzWriter nepodporuje textový mód."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
+msgctxt "@item:inlistbox"
+msgid "G-code File"
+msgstr "Soubor G-kódu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347
+msgctxt "@info:status"
+msgid "Parsing G-code"
+msgstr "Zpracovávám G kód"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503
+msgctxt "@info:title"
+msgid "G-code Details"
+msgstr "Podrobnosti G kódu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501
+msgctxt "@info:generic"
+msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
+msgstr "Před odesláním souboru se ujistěte, že je g-kód vhodný pro vaši tiskárnu a konfiguraci tiskárny. Reprezentace g-kódu nemusí být přesná."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "G File"
+msgstr "G soubor"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74
+msgctxt "@error:not supported"
+msgid "GCodeWriter does not support non-text mode."
+msgstr "GCodeWriter nepodporuje netextový mód."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96
+msgctxt "@warning:status"
+msgid "Please prepare G-code before exporting."
+msgstr "Před exportem prosím připravte G-kód."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "JPG Image"
+msgstr "Obrázek JPG"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "JPEG Image"
+msgstr "Obrázek JPEG"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
+msgctxt "@item:inlistbox"
+msgid "PNG Image"
+msgstr "Obrázek PNG"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "BMP Image"
+msgstr "Obrázek BMP"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
+msgctxt "@item:inlistbox"
+msgid "GIF Image"
+msgstr "Obrázek GIF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "Cura 15.04 profiles"
+msgstr "Profily Cura 15.04"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
+msgctxt "@action"
+msgid "Machine Settings"
+msgstr "Nastavení zařízení"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
+msgctxt "@item:inmenu"
+msgid "Monitor"
+msgstr "Monitorování"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
+msgctxt "@label"
+msgid "Per Model Settings"
+msgstr "Nastavení pro každý model"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
+msgctxt "@info:tooltip"
+msgid "Configure Per Model Settings"
+msgstr "Konfigurovat nastavení pro každý model"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+msgctxt "@item:inmenu"
+msgid "Post Processing"
+msgstr "Post Processing"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
+msgctxt "@item:inmenu"
+msgid "Modify G-Code"
+msgstr "Modifikovat G kód"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Prepare"
+msgstr "Příprava"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
+msgctxt "@item:inmenu"
+msgid "Preview"
+msgstr "Náhled"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Save to Removable Drive"
+msgstr "Uložit na vyměnitelný disk"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
+#, python-brace-format
+msgctxt "@item:inlistbox"
+msgid "Save to Removable Drive {0}"
+msgstr "Uložit na vyměnitelný disk {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
+msgctxt "@info:status"
+msgid "There are no file formats available to write with!"
+msgstr "Nejsou k dispozici žádné formáty souborů pro zápis!"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+#, python-brace-format
+msgctxt "@info:progress Don't translate the XML tags !"
+msgid "Saving to Removable Drive {0}"
+msgstr "Ukládám na vyměnitelný disk {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+msgctxt "@info:title"
+msgid "Saving"
+msgstr "Ukládám"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#, python-brace-format
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid "Could not save to {0}: {1}"
+msgstr "Nemohu uložit na {0}: {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
+#, python-brace-format
+msgctxt "@info:status Don't translate the tag {device}!"
+msgid "Could not find a file name when trying to write to {device}."
+msgstr "Při pokusu o zápis do zařízení {device} nebyl nalezen název souboru."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Could not save to removable drive {0}: {1}"
+msgstr "Nelze uložit na vyměnitelnou jednotku {0}: {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Saved to Removable Drive {0} as {1}"
+msgstr "Ukládám na vyměnitelnou jednotku {0} jako {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+msgctxt "@info:title"
+msgid "File Saved"
+msgstr "Soubor uložen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+msgctxt "@action:button"
+msgid "Eject"
+msgstr "Vysunout"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#, python-brace-format
+msgctxt "@action"
+msgid "Eject removable device {0}"
+msgstr "Vysunout vyměnitelnou jednotku {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Ejected {0}. You can now safely remove the drive."
+msgstr "Vysunuto {0}. Nyní můžete bezpečně vyjmout jednotku."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+msgctxt "@info:title"
+msgid "Safely Remove Hardware"
+msgstr "Bezpečně vysunout hardware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Failed to eject {0}. Another program may be using the drive."
+msgstr "Nepodařilo se vysunout {0}. Jednotku může používat jiný program."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
+msgctxt "@item:intext"
+msgid "Removable Drive"
+msgstr "Vyměnitelná jednotka"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128
+msgctxt "@info:status"
+msgid "Cura does not accurately display layers when Wire Printing is enabled."
+msgstr "Když je aktivován síťový tisk, Cura přesně nezobrazuje vrstvy."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129
+msgctxt "@info:title"
+msgid "Simulation View"
+msgstr "Pohled simulace"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:status"
+msgid "Nothing is shown because you need to slice first."
+msgstr "Nic není zobrazeno, nejdříve musíte slicovat."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:title"
+msgid "No layers to show"
+msgstr "Žádné vrstvy k zobrazení"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74
+msgctxt "@info:option_text"
+msgid "Do not show this message again"
+msgstr "Znovu nezobrazovat tuto zprávu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
+msgctxt "@item:inlistbox"
+msgid "Layer view"
+msgstr "Pohled vrstev"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71
+msgctxt "@info:status"
+msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
+msgstr "Zvýrazněné oblasti označují chybějící nebo vedlejší povrchy. Opravte váš model a otevřete jej znovu."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73
+msgctxt "@info:title"
+msgid "Model Errors"
+msgstr "Chyby modelu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79
+msgctxt "@action:button"
+msgid "Learn more"
+msgstr "Zjistit více"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Solid view"
+msgstr "Pevný pohled"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
+msgctxt "@label"
+msgid "Support Blocker"
+msgstr "Blokovač podpor"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
+msgctxt "@info:tooltip"
+msgid "Create a volume in which supports are not printed."
+msgstr "Vytvořit prostor ve kterém nejsou tištěny podpory."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
+msgctxt "@info:generic"
+msgid "Do you want to sync material and software packages with your account?"
+msgstr "Chcete synchronizovat materiál a softwarové balíčky s vaším účtem?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
+msgctxt "@info:title"
+msgid "Changes detected from your Ultimaker account"
+msgstr "Zjištěny změny z vašeho účtu Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
+msgctxt "@action:button"
+msgid "Sync"
+msgstr "Synchronizovat"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
+msgctxt "@info:generic"
+msgid "Syncing..."
+msgstr "Synchronizuji..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
+msgctxt "@button"
+msgid "Decline"
+msgstr "Odmítnout"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
+msgctxt "@button"
+msgid "Agree"
+msgstr "Přijmout"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
+msgctxt "@title:window"
+msgid "Plugin License Agreement"
+msgstr "Licenční ujednání zásuvného modulu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
+msgctxt "@button"
+msgid "Decline and remove from account"
+msgstr "Odmítnout a odstranit z účtu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
+msgctxt "@info:generic"
+msgid "You need to quit and restart {} before changes have effect."
+msgstr "Než se změny projeví, musíte ukončit a restartovat {}."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
+msgctxt "@info:generic"
+msgid "{} plugins failed to download"
+msgstr "Nepovedlo se stáhnout {} zásuvných modulů"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
+msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
+msgid "Open Compressed Triangle Mesh"
+msgstr "Open Compressed Triangle Mesh"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
+msgctxt "@item:inlistbox"
+msgid "COLLADA Digital Asset Exchange"
+msgstr "COLLADA Digital Asset Exchange"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
+msgctxt "@item:inlistbox"
+msgid "glTF Binary"
+msgstr "gITF binární soubor"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
+msgctxt "@item:inlistbox"
+msgid "glTF Embedded JSON"
+msgstr "gITF Embedded JSON"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
+msgctxt "@item:inlistbox"
+msgid "Stanford Triangle Format"
+msgstr "Stanford Triangle Format"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
+msgctxt "@item:inlistbox"
+msgid "Compressed COLLADA Digital Asset Exchange"
+msgstr "Kompresovaný COLLADA Digital Asset Exchenge"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
+msgctxt "@item:inlistbox"
+msgid "Ultimaker Format Package"
+msgstr "Balíček ve formátu Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159
+msgctxt "@info:error"
+msgid "Can't write to UFP file:"
+msgstr "Nemohu zapsat do UFP souboru:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
+msgctxt "@action"
+msgid "Level build plate"
+msgstr "Vyrovnat podložku"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+msgctxt "@action"
+msgid "Select upgrades"
+msgstr "Vybrat vylepšení"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
+msgctxt "@action:button"
+msgid "Print via cloud"
+msgstr "Tisknout přes cloud"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
+msgctxt "@properties:tooltip"
+msgid "Print via cloud"
+msgstr "Tisknout přes cloud"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
+msgctxt "@info:status"
+msgid "Connected via cloud"
+msgstr "Připojen přes cloud"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270
+#, python-brace-format
+msgctxt "@error:send"
+msgid "Unknown error code when uploading print job: {0}"
+msgstr "Při nahrávání tiskové úlohy došlo k chybě s neznámým kódem: {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
msgctxt "info:status"
msgid "New printer detected from your Ultimaker account"
msgid_plural "New printers detected from your Ultimaker account"
@@ -1018,13 +1377,13 @@ msgstr[0] "Z vašeho Ultimaker účtu byla detekována nová tiskárna"
msgstr[1] "Z vašeho Ultimaker účtu byly detekovány nové tiskárny"
msgstr[2] "Z vašeho Ultimaker účtu byly detekovány nové tiskárny"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
#, python-brace-format
msgctxt "info:status Filled in with printer name and printer model."
msgid "Adding printer {name} ({model}) from your account"
msgstr "Přidávám tiskárnu {name} ({model}) z vašeho účtu"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
#, python-brace-format
msgctxt "info:{0} gets replaced by a number of printers"
msgid "... and {0} other"
@@ -1033,12 +1392,12 @@ msgstr[0] "... a {0} další"
msgstr[1] "... a {0} další"
msgstr[2] "... a {0} dalších"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
msgctxt "info:status"
msgid "Printers added from Digital Factory:"
msgstr "Tiskárny přidané z Digital Factory:"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
msgctxt "info:status"
msgid "A cloud connection is not available for a printer"
msgid_plural "A cloud connection is not available for some printers"
@@ -1046,7 +1405,7 @@ msgstr[0] "Pro tuto tiskárnu není připojení přes cloud dostupné"
msgstr[1] "Pro tyto tiskárny není připojení přes cloud dostupné"
msgstr[2] "Pro tyto tiskárny není připojení přes cloud dostupné"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
msgctxt "info:status"
msgid "This printer is not linked to the Digital Factory:"
msgid_plural "These printers are not linked to the Digital Factory:"
@@ -1054,52 +1413,52 @@ msgstr[0] "Tato tiskárna není napojena na Digital Factory:"
msgstr[1] "Tyto tiskárny nejsou napojeny na Digital Factory:"
msgstr[2] "Tyto tiskárny nejsou napojeny na Digital Factory:"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
msgctxt "info:name"
msgid "Ultimaker Digital Factory"
msgstr "Ultimaker Digital Factory"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
#, python-brace-format
msgctxt "info:status"
msgid "To establish a connection, please visit the {website_link}"
msgstr "Chcete-li navázat spojení, navštivte {website_link}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
msgctxt "@action:button"
msgid "Keep printer configurations"
msgstr "Zachovat konfiguraci tiskárny"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
msgctxt "@action:button"
msgid "Remove printers"
msgstr "Odstranit tiskárnu"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "{printer_name} will be removed until the next account sync."
msgstr "Tiskárna {printer_name} bude odebrána až do další synchronizace účtu."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
msgstr "Chcete-li tiskárnu {printer_name} trvale odebrat, navštivte {digital_factory_link}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "Are you sure you want to remove {printer_name} temporarily?"
msgstr "Opravdu chcete tiskárnu {printer_name} dočasně odebrat?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
msgctxt "@title:window"
msgid "Remove printers?"
msgstr "Odstranit tiskárny?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
#, python-brace-format
msgctxt "@label"
msgid ""
@@ -1118,7 +1477,7 @@ msgstr[2] ""
"Chystáte se odebrat {0} tiskáren z Cury. Tuto akci nelze vrátit zpět.\n"
"Doopravdy chcete pokračovat?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
msgctxt "@label"
msgid ""
"You are about to remove all printers from Cura. This action cannot be undone.\n"
@@ -1127,1523 +1486,265 @@ msgstr ""
"Chystáte se odebrat všechny tiskárny z Cury. Tuto akci nelze vrátit zpět.\n"
"Doopravdy chcete pokračovat?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
-msgctxt "@action:button"
-msgid "Print via cloud"
-msgstr "Tisknout přes cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
-msgctxt "@properties:tooltip"
-msgid "Print via cloud"
-msgstr "Tisknout přes cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
-msgctxt "@info:status"
-msgid "Connected via cloud"
-msgstr "Připojen přes cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
-#, python-brace-format
-msgctxt "@error:send"
-msgid "Unknown error code when uploading print job: {0}"
-msgstr "Při nahrávání tiskové úlohy došlo k chybě s neznámým kódem: {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
-msgctxt "@info:status"
-msgid "tomorrow"
-msgstr "zítra"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
-msgctxt "@info:status"
-msgid "today"
-msgstr "dnes"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
-msgctxt "@info:status"
-msgid "Sending Print Job"
-msgstr "Odesílám tiskovou úlohu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
-msgctxt "@info:status"
-msgid "Uploading print job to printer."
-msgstr "Nahrávám tiskovou úlohu do tiskárny."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
-#, python-brace-format
-msgctxt "@info:status"
-msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
-msgstr "Pokoušíte se připojit k {0}, ale není hostitelem skupiny. Webovou stránku můžete navštívit a nakonfigurovat ji jako skupinového hostitele."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
-msgctxt "@info:title"
-msgid "Not a group host"
-msgstr "Není hostem skupiny"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
-msgctxt "@action"
-msgid "Configure group"
-msgstr "Konfigurovat skupinu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
msgctxt "@info:status"
msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
msgstr "Odesílejte a sledujte tiskové úlohy odkudkoli pomocí účtu Ultimaker."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
msgctxt "@info:status Ultimaker Cloud should not be translated."
msgid "Connect to Ultimaker Digital Factory"
msgstr "Připojit se k Ultimaker Digital Factory"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
msgctxt "@action"
msgid "Get started"
msgstr "Začínáme"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
msgctxt "@info:status"
-msgid "Please wait until the current job has been sent."
-msgstr "Počkejte, až bude odeslána aktuální úloha."
+msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
+msgstr "Pokoušíte se připojit k tiskárně, na které není spuštěna aplikace Ultimaker Connect. Aktualizujte tiskárnu na nejnovější firmware."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
msgctxt "@info:title"
-msgid "Print error"
-msgstr "Chyba tisku"
+msgid "Update your printer"
+msgstr "Aktualizujte vaší tiskárnu"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
-msgctxt "@info:text"
-msgid "Could not upload the data to the printer."
-msgstr "Nemohu nahrát data do tiskárny."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
-msgctxt "@info:title"
-msgid "Network error"
-msgstr "Chyba sítě"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
#, python-brace-format
msgctxt "@info:status"
msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
msgstr "Cura zjistil materiálové profily, které ještě nebyly nainstalovány na hostitelské tiskárně skupiny {0}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
msgctxt "@info:title"
msgid "Sending materials to printer"
msgstr "Odesílání materiálů do tiskárny"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
+#, python-brace-format
+msgctxt "@info:status"
+msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
+msgstr "Pokoušíte se připojit k {0}, ale není hostitelem skupiny. Webovou stránku můžete navštívit a nakonfigurovat ji jako skupinového hostitele."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
+msgctxt "@info:title"
+msgid "Not a group host"
+msgstr "Není hostem skupiny"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
+msgctxt "@action"
+msgid "Configure group"
+msgstr "Konfigurovat skupinu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+msgctxt "@info:status"
+msgid "Please wait until the current job has been sent."
+msgstr "Počkejte, až bude odeslána aktuální úloha."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+msgctxt "@info:title"
+msgid "Print error"
+msgstr "Chyba tisku"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
+msgctxt "@info:text"
+msgid "Could not upload the data to the printer."
+msgstr "Nemohu nahrát data do tiskárny."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
+msgctxt "@info:title"
+msgid "Network error"
+msgstr "Chyba sítě"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
+msgctxt "@info:status"
+msgid "Sending Print Job"
+msgstr "Odesílám tiskovou úlohu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
+msgctxt "@info:status"
+msgid "Uploading print job to printer."
+msgstr "Nahrávám tiskovou úlohu do tiskárny."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
msgctxt "@info:status"
msgid "Print job queue is full. The printer can't accept a new job."
msgstr "Fronta tiskových úloh je plná. Tiskárna nemůže přijmout další úlohu."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
msgctxt "@info:title"
msgid "Queue Full"
msgstr "Fronta je plná"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
msgctxt "@info:status"
msgid "Print job was successfully sent to the printer."
msgstr "Tisková úloha byla úspěšně odeslána do tiskárny."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
msgctxt "@info:title"
msgid "Data Sent"
msgstr "Data poslána"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
-msgctxt "@info:status"
-msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
-msgstr "Pokoušíte se připojit k tiskárně, na které není spuštěna aplikace Ultimaker Connect. Aktualizujte tiskárnu na nejnovější firmware."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
-msgctxt "@info:title"
-msgid "Update your printer"
-msgstr "Aktualizujte vaší tiskárnu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
msgctxt "@action:button Preceded by 'Ready to'."
msgid "Print over network"
msgstr "Tisk přes síť"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr "Tisk přes síť"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
msgctxt "@info:status"
msgid "Connected over the network"
msgstr "Připojeno přes síť"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
msgctxt "@action"
-msgid "Select upgrades"
-msgstr "Vybrat vylepšení"
+msgid "Connect via Network"
+msgstr "Připojit přes síť"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
-msgctxt "@action"
-msgid "Level build plate"
-msgstr "Vyrovnat podložku"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
-msgctxt "@title:tab"
-msgid "Recommended"
-msgstr "Doporučeno"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
-msgctxt "@title:tab"
-msgid "Custom"
-msgstr "Vlastní"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
-#, python-brace-format
-msgctxt "@info:status Don't translate the XML tags or !"
-msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead."
-msgstr "Projektový soubor {0} obsahuje neznámý typ zařízení {1}. Nelze importovat zařízení. Místo toho budou importovány modely."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
-msgctxt "@info:title"
-msgid "Open Project File"
-msgstr "Otevřít soubor s projektem"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
-#, python-brace-format
-msgctxt "@info:error Don't translate the XML tags or !"
-msgid "Project file {0} is suddenly inaccessible: {1}."
-msgstr "Soubor projektu {0} je neočekávaně nedostupný: {1}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
-msgctxt "@info:title"
-msgid "Can't Open Project File"
-msgstr "Nepovedlo se otevřít soubor projektu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
-#, python-brace-format
-msgctxt "@info:error Don't translate the XML tags or !"
-msgid "Project file {0} is corrupt: {1}."
-msgstr "Soubor projektu {0} je poškozený: {1}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:693
-#, python-brace-format
-msgctxt "@info:error Don't translate the XML tag !"
-msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura."
-msgstr "Soubor projektu {0} je vytvořený profily, které jsou této verzi Ultimaker Cura neznámé."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:27
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:33
-msgctxt "@item:inlistbox"
-msgid "3MF File"
-msgstr "Soubor 3MF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/__init__.py:17
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzReader/__init__.py:17
-msgctxt "@item:inlistbox"
-msgid "Compressed G-code File"
-msgstr "Kompresovaný soubor G kódu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
-msgctxt "@error:not supported"
-msgid "GCodeGzWriter does not support text mode."
-msgstr "GCodeGzWriter nepodporuje textový mód."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:31
-msgctxt "@info:title"
-msgid "3D Model Assistant"
-msgstr "Asistent 3D modelu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:96
-#, python-brace-format
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
msgctxt "@info:status"
-msgid ""
-"One or more 3D models may not print optimally due to the model size and material configuration:
\n"
-"{model_names}
\n"
-"Find out how to ensure the best possible print quality and reliability.
\n"
-"View print quality guide
"
-msgstr ""
-" Jeden nebo více 3D modelů se nemusí tisknout optimálně kvůli velikosti modelu a konfiguraci materiálu:
\n"
-" {model_names}
\n"
-" Zjistěte, jak zajistit nejlepší možnou kvalitu a spolehlivost tisku.
\n"
-" Zobrazit průvodce kvalitou tisku
"
+msgid "tomorrow"
+msgstr "zítra"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
-msgctxt "@info"
-msgid "Could not access update information."
-msgstr "Nemohu načíst informace o aktualizaci."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
-#, python-brace-format
-msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
-msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
-msgstr "Pro vaše {machine_name} mohou být k dispozici nové funkce nebo opravy chyb! Pokud ještě není v nejnovější verzi, doporučuje se aktualizovat firmware v tiskárně na verzi {latest_version}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
-#, python-format
-msgctxt "@info:title The %s gets replaced with the printer name."
-msgid "New %s firmware available"
-msgstr "Nový %s firmware je dostupný"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
-msgctxt "@action:button"
-msgid "How to update"
-msgstr "Jak aktualizovat"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "G File"
-msgstr "G soubor"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:347
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
msgctxt "@info:status"
-msgid "Parsing G-code"
-msgstr "Zpracovávám G kód"
+msgid "today"
+msgstr "dnes"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:349
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:503
-msgctxt "@info:title"
-msgid "G-code Details"
-msgstr "Podrobnosti G kódu"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
+msgctxt "@item:inmenu"
+msgid "USB printing"
+msgstr "USB tisk"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:501
-msgctxt "@info:generic"
-msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
-msgstr "Před odesláním souboru se ujistěte, že je g-kód vhodný pro vaši tiskárnu a konfiguraci tiskárny. Reprezentace g-kódu nemusí být přesná."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Print via USB"
+msgstr "Tisk přes USB"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:12
-msgctxt "@label"
-msgid "Support Blocker"
-msgstr "Blokovač podpor"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:13
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
msgctxt "@info:tooltip"
-msgid "Create a volume in which supports are not printed."
-msgstr "Vytvořit prostor ve kterém nejsou tištěny podpory."
+msgid "Print via USB"
+msgstr "Tisk přes USB"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:15
-msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
-msgid "Open Compressed Triangle Mesh"
-msgstr "Open Compressed Triangle Mesh"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
+msgctxt "@info:status"
+msgid "Connected via USB"
+msgstr "Připojeno přes USB"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
+msgctxt "@label"
+msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
+msgstr "Probíhá tisk přes USB, uzavření Cura tento tisk zastaví. Jsi si jistá?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
+msgstr "Tisk stále probíhá. Cura nemůže spustit další tisk přes USB, dokud není předchozí tisk dokončen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid "Print in Progress"
+msgstr "Probíhá tisk"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
msgctxt "@item:inlistbox"
-msgid "COLLADA Digital Asset Exchange"
-msgstr "COLLADA Digital Asset Exchange"
+msgid "X3D File"
+msgstr "Soubor X3D"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:23
-msgctxt "@item:inlistbox"
-msgid "glTF Binary"
-msgstr "gITF binární soubor"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:27
-msgctxt "@item:inlistbox"
-msgid "glTF Embedded JSON"
-msgstr "gITF Embedded JSON"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:36
-msgctxt "@item:inlistbox"
-msgid "Stanford Triangle Format"
-msgstr "Stanford Triangle Format"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:40
-msgctxt "@item:inlistbox"
-msgid "Compressed COLLADA Digital Asset Exchange"
-msgstr "Kompresovaný COLLADA Digital Asset Exchenge"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPReader/__init__.py:22
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/__init__.py:28
-msgctxt "@item:inlistbox"
-msgid "Ultimaker Format Package"
-msgstr "Balíček ve formátu Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/LegacyProfileReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "Cura 15.04 profiles"
-msgstr "Profily Cura 15.04"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PrepareStage/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Prepare"
-msgstr "Příprava"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/__init__.py:14
-msgctxt "@item:inmenu"
-msgid "Monitor"
-msgstr "Monitorování"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/XRayView/__init__.py:12
+#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
msgctxt "@item:inlistbox"
msgid "X-Ray view"
msgstr "Rentgenový pohled"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
-msgctxt "@error:zip"
-msgid "Error writing 3mf file."
-msgstr "Chyba při zápisu 3mf file."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "3MF file"
-msgstr "Soubor 3MF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:34
-msgctxt "@item:inlistbox"
-msgid "Cura Project 3MF file"
-msgstr "Soubor Cura Project 3MF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
-msgctxt "@error:zip"
-msgid "3MF Writer plug-in is corrupt."
-msgstr "Plugin 3MF Writer je poškozen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
-msgctxt "@error:zip"
-msgid "No permission to write the workspace here."
-msgstr "Nemáte oprávnění zapisovat do tohoto pracovního prostoru."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
-msgctxt "@error:zip"
-msgid "The operating system does not allow saving a project file to this location or with this file name."
-msgstr "Operační systém nepovoluje uložit soubor s projektem do tohoto umístění nebo pod tímto názvem."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PreviewStage/__init__.py:13
-msgctxt "@item:inmenu"
-msgid "Preview"
-msgstr "Náhled"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/__init__.py:15
-msgctxt "@item:inlistbox"
-msgid "Layer view"
-msgstr "Pohled vrstev"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:124
-msgctxt "@info:status"
-msgid "Cura does not accurately display layers when Wire Printing is enabled."
-msgstr "Když je aktivován síťový tisk, Cura přesně nezobrazuje vrstvy."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:125
-msgctxt "@info:title"
-msgid "Simulation View"
-msgstr "Pohled simulace"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:status"
-msgid "Nothing is shown because you need to slice first."
-msgstr "Nic není zobrazeno, nejdříve musíte slicovat."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:title"
-msgid "No layers to show"
-msgstr "Žádné vrstvy k zobrazení"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:127
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:74
-msgctxt "@info:option_text"
-msgid "Do not show this message again"
-msgstr "Znovu nezobrazovat tuto zprávu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
-msgctxt "@action"
-msgid "Machine Settings"
-msgstr "Nastavení zařízení"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Solid view"
-msgstr "Pevný pohled"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:71
-msgctxt "@info:status"
-msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
-msgstr "Zvýrazněné oblasti označují chybějící nebo vedlejší povrchy. Opravte váš model a otevřete jej znovu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:73
-msgctxt "@info:title"
-msgid "Model Errors"
-msgstr "Chyby modelu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:79
-msgctxt "@action:button"
-msgid "Learn more"
-msgstr "Zjistit více"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/UFPWriter.py:134
-msgctxt "@info:error"
-msgid "Can't write to UFP file:"
-msgstr "Nemohu zapsat do UFP souboru:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:74
-msgctxt "@error:not supported"
-msgid "GCodeWriter does not support non-text mode."
-msgstr "GCodeWriter nepodporuje netextový mód."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:80
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:96
-msgctxt "@warning:status"
-msgid "Please prepare G-code before exporting."
-msgstr "Před exportem prosím připravte G-kód."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "JPG Image"
-msgstr "Obrázek JPG"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "JPEG Image"
-msgstr "Obrázek JPEG"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:22
-msgctxt "@item:inlistbox"
-msgid "PNG Image"
-msgstr "Obrázek PNG"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "BMP Image"
-msgstr "Obrázek BMP"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:30
-msgctxt "@item:inlistbox"
-msgid "GIF Image"
-msgstr "Obrázek GIF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DriveApiService.py:86
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
-msgctxt "@info:backup_status"
-msgid "There was an error trying to restore your backup."
-msgstr "Nastala chyba při pokusu obnovit vaši zálohu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
-msgctxt "@info:title"
-msgid "Backups"
-msgstr "Zálohy"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
-msgctxt "@info:backup_status"
-msgid "There was an error while uploading your backup."
-msgstr "Nastala chyba při nahrávání vaší zálohy."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
-msgctxt "@info:backup_status"
-msgid "Creating your backup..."
-msgstr "Vytvářím zálohu..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
-msgctxt "@info:backup_status"
-msgid "There was an error while creating your backup."
-msgstr "Nastala chyba při vytváření zálohy."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
-msgctxt "@info:backup_status"
-msgid "Uploading your backup..."
-msgstr "Nahrávám vaši zálohu..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
-msgctxt "@info:backup_status"
-msgid "Your backup has finished uploading."
-msgstr "Vaše záloha byla úspěšně nahrána."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
-msgctxt "@error:file_size"
-msgid "The backup exceeds the maximum file size."
-msgstr "Záloha překračuje maximální povolenou velikost soubor."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
-msgctxt "@item:inmenu"
-msgid "Manage backups"
-msgstr "Spravovat zálohy"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
-msgctxt "@title"
-msgid "Update Firmware"
-msgstr "Aktualizovat firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
-msgctxt "@label"
-msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
-msgstr "Firmware je software běžící přímo na vaší 3D tiskárně. Tento firmware řídí krokové motory, reguluje teplotu a v konečném důsledku zajišťuje vaši práci tiskárny."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
-msgctxt "@label"
-msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
-msgstr "Dodávání firmwaru s novými tiskárnami funguje, ale nové verze mají obvykle více funkcí a vylepšení."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
-msgctxt "@action:button"
-msgid "Automatically upgrade Firmware"
-msgstr "Automaticky aktualizovat firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
-msgctxt "@action:button"
-msgid "Upload custom Firmware"
-msgstr "Nahrát vlastní firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
-msgctxt "@label"
-msgid "Firmware can not be updated because there is no connection with the printer."
-msgstr "Firmware nelze aktualizovat, protože není spojeno s tiskárnou."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
-msgctxt "@label"
-msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
-msgstr "Firmware nelze aktualizovat, protože připojení k tiskárně nepodporuje aktualizaci firmwaru."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
-msgctxt "@title:window"
-msgid "Select custom firmware"
-msgstr "Vybrat vlastní firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
-msgctxt "@title:window"
-msgid "Firmware Update"
-msgstr "Aktualizace firmwaru"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
-msgctxt "@label"
-msgid "Updating firmware."
-msgstr "Aktualizuji firmware."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
-msgctxt "@label"
-msgid "Firmware update completed."
-msgstr "Aktualizace firmwaru kompletní."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
-msgctxt "@label"
-msgid "Firmware update failed due to an unknown error."
-msgstr "Aktualizace firmwaru selhala kvůli neznámému problému."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
-msgctxt "@label"
-msgid "Firmware update failed due to an communication error."
-msgstr "Aktualizace firmwaru selhala kvůli chybě v komunikaci."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
-msgctxt "@label"
-msgid "Firmware update failed due to an input/output error."
-msgstr "Aktualizace firmwaru selhala kvůli chybě vstupu / výstupu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
-msgctxt "@label"
-msgid "Firmware update failed due to missing firmware."
-msgstr "Aktualizace firmwaru selhala kvůli chybějícímu firmwaru."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
-msgctxt "@title"
-msgid "Marketplace"
-msgstr "Obchod"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
-msgctxt "@label"
-msgid "You need to accept the license to install the package"
-msgstr "Pro instalaci balíčku musíte přijmout licenční ujednání"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
-msgctxt "@title"
-msgid "Changes from your account"
-msgstr "Změny z vašeho účtu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
-msgctxt "@button"
-msgid "Dismiss"
-msgstr "Schovat"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:182
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
-msgctxt "@button"
-msgid "Next"
-msgstr "Další"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
-msgctxt "@label"
-msgid "The following packages will be added:"
-msgstr "Následující balíčky byly přidány:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
-msgctxt "@label"
-msgid "The following packages can not be installed because of an incompatible Cura version:"
-msgstr "Následující balíčky nelze nainstalovat z důvodu nekompatibilní verze Cura:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
-msgctxt "@title:window"
-msgid "Confirm uninstall"
-msgstr "Potvrdit odinstalaci"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
-msgctxt "@text:window"
-msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
-msgstr "Odinstalujete materiály a / nebo profily, které se stále používají. Potvrzením resetujete následující materiály / profily na výchozí hodnoty."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
-msgctxt "@text:window"
-msgid "Materials"
-msgstr "Materiály"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
-msgctxt "@text:window"
-msgid "Profiles"
-msgstr "Profily"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
-msgctxt "@action:button"
-msgid "Confirm"
-msgstr "Potvrdit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
-msgctxt "@info"
-msgid "Could not connect to the Cura Package database. Please check your connection."
-msgstr "Nelze se připojit k databázi balíčku Cura. Zkontrolujte připojení."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Contributions"
-msgstr "Soubory od komunity"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Plugins"
-msgstr "Komunitní zásuvné moduly"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
-msgctxt "@label"
-msgid "Generic Materials"
-msgstr "Obecné materiály"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
-msgctxt "@label"
-msgid "Version"
-msgstr "Verze"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
-msgctxt "@label"
-msgid "Last updated"
-msgstr "Naposledy aktualizování"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
-msgctxt "@label"
-msgid "Brand"
-msgstr "Značka"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
-msgctxt "@label"
-msgid "Downloads"
-msgstr "Ke stažení"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
-msgctxt "@title:tab"
-msgid "Installed plugins"
-msgstr "Nainstalovaná rozšíření"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
-msgctxt "@info"
-msgid "No plugin has been installed."
-msgstr "Žádné rozšíření nebylo nainstalováno."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
-msgctxt "@title:tab"
-msgid "Installed materials"
-msgstr "Nainstalované materiály"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
-msgctxt "@info"
-msgid "No material has been installed."
-msgstr "Žádný materiál nebyl nainstalován."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
-msgctxt "@title:tab"
-msgid "Bundled plugins"
-msgstr "Zabalená rozšíření"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
-msgctxt "@title:tab"
-msgid "Bundled materials"
-msgstr "Zabalené materiály"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
-msgctxt "@label"
-msgid "Website"
-msgstr "Webová stránka"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
-msgctxt "@label"
-msgid "Email"
-msgstr "Email"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
-msgctxt "@description"
-msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
-msgstr "Přihlaste se, abyste získali ověřené pluginy a materiály pro Ultimaker Cura Enterprise"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:199
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:53
-msgctxt "@button"
-msgid "Sign in"
-msgstr "Přihlásit se"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
-msgctxt "@info"
-msgid "Fetching packages..."
-msgstr "Načítám balíčky..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
-msgctxt "@label"
-msgid "Compatibility"
-msgstr "Kompatibilita"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
-msgctxt "@label:table_header"
-msgid "Machine"
-msgstr "Zařízení"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
-msgctxt "@label:table_header"
-msgid "Build Plate"
-msgstr "Podložka"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
-msgctxt "@label:table_header"
-msgid "Support"
-msgstr "Podpora"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
-msgctxt "@label:table_header"
-msgid "Quality"
-msgstr "Kvalita"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
-msgctxt "@action:label"
-msgid "Technical Data Sheet"
-msgstr "Technický datasheet"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
-msgctxt "@action:label"
-msgid "Safety Data Sheet"
-msgstr "Datasheet bezpečnosti"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
-msgctxt "@action:label"
-msgid "Printing Guidelines"
-msgstr "Zásady tisku"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
-msgctxt "@action:label"
-msgid "Website"
-msgstr "Webová stránka"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
-msgctxt "@title:tab"
-msgid "Plugins"
-msgstr "Zásuvné moduly"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:457
-msgctxt "@title:tab"
-msgid "Materials"
-msgstr "Materiály"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
-msgctxt "@title:tab"
-msgid "Installed"
-msgstr "Nainstalování"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
msgctxt "@info:tooltip"
-msgid "Go to Web Marketplace"
-msgstr "Přejít na webový obchod"
+msgid "Some things could be problematic in this print. Click to see tips for adjustment."
+msgstr "Některé věci mohou být v tomto tisku problematické. Kliknutím zobrazíte tipy pro úpravy."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
-msgctxt "@label"
-msgid "Will install upon restarting"
-msgstr "Nainstaluje se po restartu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
-msgctxt "@action:button"
-msgid "Update"
-msgstr "Aktualizace"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
-msgctxt "@action:button"
-msgid "Updating"
-msgstr "Aktualizuji"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
-msgctxt "@action:button"
-msgid "Updated"
-msgstr "Aktualizování"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to update"
-msgstr "Pro aktualizace je potřeba se přihlásit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Downgrade"
-msgstr "Downgrade"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Uninstall"
-msgstr "Odinstalace"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
-msgctxt "@action:button"
-msgid "Installed"
-msgstr "Nainstalováno"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to install or update"
-msgstr "K instalaci nebo aktualizaci je vyžadováno přihlášení"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Buy material spools"
-msgstr "Koupit cívky materiálu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
-msgctxt "@label"
-msgid "Premium"
-msgstr "Premium"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
-msgctxt "@label"
-msgid "Search materials"
-msgstr "Hledat materiály"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
-msgctxt "@info"
-msgid "You will need to restart Cura before changes in packages have effect."
-msgstr "Než se změny v balíčcích projeví, budete muset restartovat Curu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
-msgctxt "@info:button, %1 is the application name"
-msgid "Quit %1"
-msgstr "Ukončit %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
-msgctxt "@action:button"
-msgid "Back"
-msgstr "Zpět"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
-msgctxt "@action:button"
-msgid "Install"
-msgstr "Nainstalovat"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
-msgctxt "@label"
-msgid "Mesh Type"
-msgstr "Typ síťového modelu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
-msgctxt "@label"
-msgid "Normal model"
-msgstr "Normální model"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
-msgctxt "@label"
-msgid "Print as support"
-msgstr "Tisknout jako podporu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
-msgctxt "@label"
-msgid "Modify settings for overlaps"
-msgstr "Upravte nastavení překrývání"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
-msgctxt "@label"
-msgid "Don't support overlaps"
-msgstr "Nepodporovat překrývání"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
-msgctxt "@item:inlistbox"
-msgid "Infill mesh only"
-msgstr "Pouze síť výplně"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
-msgctxt "@item:inlistbox"
-msgid "Cutting mesh"
-msgstr "Síť řezu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
-msgctxt "@action:button"
-msgid "Select settings"
-msgstr "Vybrat nastavení"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
-msgctxt "@title:window"
-msgid "Select Settings to Customize for this model"
-msgstr "Vybrat nastavení k přizpůsobení pro tento model"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
-msgctxt "@label:textbox"
-msgid "Filter..."
-msgstr "Filtrovat..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
-msgctxt "@label:checkbox"
-msgid "Show all"
-msgstr "Zobrazit vše"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
-msgctxt "@title:window"
-msgid "Post Processing Plugin"
-msgstr "Zásuvný balíček Post Processing"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
-msgctxt "@label"
-msgid "Post Processing Scripts"
-msgstr "Skripty Post Processingu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
-msgctxt "@action"
-msgid "Add a script"
-msgstr "Přidat skript"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
-msgctxt "@label"
-msgid "Settings"
-msgstr "Nastavení"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
-msgctxt "@info:tooltip"
-msgid "Change active post-processing scripts."
-msgstr "Změnít aktivní post-processing skripty."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
-msgctxt "@info:tooltip"
-msgid "The following script is active:"
-msgid_plural "The following scripts are active:"
-msgstr[0] "Následují skript je aktivní:"
-msgstr[1] "Následují skripty jsou aktivní:"
-msgstr[2] "Následují skripty jsou aktivní:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
-msgctxt "@label"
-msgid "Queued"
-msgstr "Zařazeno do fronty"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
-msgctxt "@label link to connect manager"
-msgid "Manage in browser"
-msgstr "Spravovat v prohlížeči"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
-msgctxt "@label"
-msgid "There are no print jobs in the queue. Slice and send a job to add one."
-msgstr "Ve frontě nejsou žádné tiskové úlohy. Slicujte a odesláním úlohy jednu přidejte."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
-msgctxt "@label"
-msgid "Print jobs"
-msgstr "Tiskové úlohy"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
-msgctxt "@label"
-msgid "Total print time"
-msgstr "Celkový čas tisknutí"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
-msgctxt "@label"
-msgid "Waiting for"
-msgstr "Čekám na"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
-msgctxt "@title:window"
-msgid "Configuration Changes"
-msgstr "Změny konfigurace"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
-msgctxt "@action:button"
-msgid "Override"
-msgstr "Override"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
-msgctxt "@label"
-msgid "The assigned printer, %1, requires the following configuration change:"
-msgid_plural "The assigned printer, %1, requires the following configuration changes:"
-msgstr[0] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:"
-msgstr[1] "Přiřazená tiskárna %1 vyžaduje následující změny akonfigurace:"
-msgstr[2] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
-msgctxt "@label"
-msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
-msgstr "Tiskárna %1 je přiřazena, ale úloha obsahuje neznámou konfiguraci materiálu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
-msgctxt "@label"
-msgid "Change material %1 from %2 to %3."
-msgstr "Změnit materiál %1 z %2 na %3."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
-msgctxt "@label"
-msgid "Load %3 as material %1 (This cannot be overridden)."
-msgstr "Načíst %3 jako materiál %1 (Toho nemůže být přepsáno)."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
-msgctxt "@label"
-msgid "Change print core %1 from %2 to %3."
-msgstr "Změnit jádro tisku %1 z %2 na %3."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
-msgctxt "@label"
-msgid "Change build plate to %1 (This cannot be overridden)."
-msgstr "Změnit podložku na %1 (Toto nemůže být přepsáno)."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
-msgctxt "@label"
-msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
-msgstr "Přepsání použije zadaná nastavení s existující konfigurací tiskárny. To může vést k selhání tisku."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
-msgctxt "@label"
-msgid "Glass"
-msgstr "Sklo"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
-msgctxt "@label"
-msgid "Aluminum"
-msgstr "Hliník"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
-msgctxt "@label"
-msgid "Unavailable printer"
-msgstr "Nedostupná tiskárna"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
-msgctxt "@label"
-msgid "First available"
-msgstr "První dostupný"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
-msgctxt "@info"
-msgid "Please update your printer's firmware to manage the queue remotely."
-msgstr "Aktualizujte firmware tiskárny a spravujte frontu vzdáleně."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
-msgctxt "@title:window"
-msgid "Connect to Networked Printer"
-msgstr "Připojte se k síťové tiskárně"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
-msgctxt "@label"
-msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
-msgstr "Chcete-li tisknout přímo na tiskárně prostřednictvím sítě, zkontrolujte, zda je tiskárna připojena k síti pomocí síťového kabelu nebo připojením tiskárny k síti WIFI. Pokud nepřipojíte Curu k tiskárně, můžete stále používat jednotku USB k přenosu souborů g-kódu do vaší tiskárny."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
-msgctxt "@label"
-msgid "Select your printer from the list below:"
-msgstr "Vyberte svou tiskárnu z nabídky níže:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
-msgctxt "@action:button"
-msgid "Edit"
-msgstr "Upravit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:55
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:138
-msgctxt "@action:button"
-msgid "Remove"
-msgstr "Odstranit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
-msgctxt "@action:button"
-msgid "Refresh"
-msgstr "Aktualizovat"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
-msgctxt "@label"
-msgid "If your printer is not listed, read the network printing troubleshooting guide"
-msgstr "Pokud vaše tiskárna není uvedena, přečtěte si průvodce řešením problémů se síťovým tiskem "
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
-msgctxt "@label"
-msgid "Type"
-msgstr "Typ"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
-msgctxt "@label"
-msgid "Firmware version"
-msgstr "Verze firmwaru"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
-msgctxt "@label"
-msgid "Address"
-msgstr "Adresa"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
-msgctxt "@label"
-msgid "This printer is not set up to host a group of printers."
-msgstr "Tato tiskárna není nastavena tak, aby hostovala skupinu tiskáren."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
-msgctxt "@label"
-msgid "This printer is the host for a group of %1 printers."
-msgstr "Tato tiskárna je hostitelem skupiny tiskáren %1."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
-msgctxt "@label"
-msgid "The printer at this address has not yet responded."
-msgstr "Tiskárna na této adrese dosud neodpověděla."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
-msgctxt "@action:button"
-msgid "Connect"
-msgstr "Připojit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
-msgctxt "@title:window"
-msgid "Invalid IP address"
-msgstr "Špatná IP adresa"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
-msgctxt "@text"
-msgid "Please enter a valid IP address."
-msgstr "Prosím zadejte validní IP adresu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
-msgctxt "@title:window"
-msgid "Printer Address"
-msgstr "Adresa tiskárny"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
-msgctxt "@label"
-msgid "Enter the IP address of your printer on the network."
-msgstr "Vložte IP adresu vaší tiskárny na síti."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:227
-msgctxt "@action:button"
-msgid "OK"
-msgstr "OK"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
-msgctxt "@title:window"
-msgid "Print over network"
-msgstr "Tisk přes síť"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
-msgctxt "@action:button"
-msgid "Print"
-msgstr "Tisk"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
-msgctxt "@label"
-msgid "Printer selection"
-msgstr "Výběr tiskárny"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
-msgctxt "@label"
-msgid "Move to top"
-msgstr "Přesunout nahoru"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
-msgctxt "@label"
-msgid "Delete"
-msgstr "Odstranit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:290
-msgctxt "@label"
-msgid "Resume"
-msgstr "Obnovit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
-msgctxt "@label"
-msgid "Pausing..."
-msgstr "Pozastavuji..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
-msgctxt "@label"
-msgid "Resuming..."
-msgstr "Obnovuji..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:285
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:294
-msgctxt "@label"
-msgid "Pause"
-msgstr "Pozastavit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
-msgctxt "@label"
-msgid "Aborting..."
-msgstr "Ruším..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
-msgctxt "@label"
-msgid "Abort"
-msgstr "Zrušit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to move %1 to the top of the queue?"
-msgstr "Doopravdy chcete posunout %1 na začátek fronty?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
-msgctxt "@window:title"
-msgid "Move print job to top"
-msgstr "Přesunout tiskovou úlohu nahoru"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to delete %1?"
-msgstr "Doopravdy chcete odstranit %1?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
-msgctxt "@window:title"
-msgid "Delete print job"
-msgstr "Odstranit tiskovou úlohu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to abort %1?"
-msgstr "Doopravdy chcete zrušit %1?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:336
-msgctxt "@window:title"
-msgid "Abort print"
-msgstr "Zrušit tisk"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
-msgctxt "@label:status"
-msgid "Aborted"
-msgstr "Zrušeno"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
-msgctxt "@label:status"
-msgid "Finished"
-msgstr "Dokončeno"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
-msgctxt "@label:status"
-msgid "Preparing..."
-msgstr "Připravuji..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
-msgctxt "@label:status"
-msgid "Aborting..."
-msgstr "Ruším..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
-msgctxt "@label:status"
-msgid "Pausing..."
-msgstr "Pozastavuji..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
-msgctxt "@label:status"
-msgid "Paused"
-msgstr "Pozastaveno"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
-msgctxt "@label:status"
-msgid "Resuming..."
-msgstr "Obnovuji..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
-msgctxt "@label:status"
-msgid "Action required"
-msgstr "Akce vyžadována"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
-msgctxt "@label:status"
-msgid "Finishes %1 at %2"
-msgstr "Dokončuji %1 z %2"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
-msgctxt "@label link to Connect and Cloud interfaces"
-msgid "Manage printer"
-msgstr "Spravovat tiskárnu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
-msgctxt "@label:status"
-msgid "Loading..."
-msgstr "Načítám..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
-msgctxt "@label:status"
-msgid "Unavailable"
-msgstr "Nedostupný"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
-msgctxt "@label:status"
-msgid "Unreachable"
-msgstr "Nedostupný"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
-msgctxt "@label:status"
-msgid "Idle"
-msgstr "Čekám"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
-msgctxt "@label:status"
-msgid "Printing"
-msgstr "Tisknu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
-msgctxt "@label"
-msgid "Untitled"
-msgstr "Bez názvu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
-msgctxt "@label"
-msgid "Anonymous"
-msgstr "Anonymní"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
-msgctxt "@label:status"
-msgid "Requires configuration changes"
-msgstr "Jsou nutné změny v nastavení"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
-msgctxt "@action:button"
-msgid "Details"
-msgstr "Podrobnosti"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
-msgctxt "@label"
-msgid "Please select any upgrades made to this Ultimaker Original"
-msgstr "Vyberte prosím všechny upgrady provedené v tomto originálu Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
-msgctxt "@label"
-msgid "Heated Build Plate (official kit or self-built)"
-msgstr "Vyhřívaná podložka (Oficiální kit, nebo vytvořená)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
-msgctxt "@title"
-msgid "Build Plate Leveling"
-msgstr "Vyrovnávání podložky"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
-msgctxt "@label"
-msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
-msgstr "Chcete-li se ujistit, že vaše výtisky vyjdou skvěle, můžete nyní sestavení své podložku. Když kliknete na „Přesunout na další pozici“, tryska se přesune do různých poloh, které lze upravit."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
-msgctxt "@label"
-msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
-msgstr "Pro každou pozici; vložte kousek papíru pod trysku a upravte výšku tiskové desky. Výška desky pro sestavení tisku je správná, když je papír lehce uchopen špičkou trysky."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
-msgctxt "@action:button"
-msgid "Start Build Plate Leveling"
-msgstr "Spustit vyrovnání položky"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
-msgctxt "@action:button"
-msgid "Move to Next Position"
-msgstr "Přesunout na další pozici"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
msgctxt "@title:window"
msgid "Open Project"
msgstr "Otevřit projekt"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
msgctxt "@action:ComboBox Update/override existing profile"
msgid "Update existing"
msgstr "Aktualizovat existující"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
msgctxt "@action:ComboBox Save settings in a new profile"
msgid "Create new"
msgstr "Vytvořit nový"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
msgctxt "@action:title"
msgid "Summary - Cura Project"
msgstr "Souhrn - Projekt Cura"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
msgctxt "@action:label"
msgid "Printer settings"
msgstr "Nastavení tiskárny"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
msgctxt "@info:tooltip"
msgid "How should the conflict in the machine be resolved?"
msgstr "Jak by měl být problém v zařízení vyřešen?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
msgctxt "@action:label"
msgid "Type"
msgstr "Typ"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
msgctxt "@action:label"
msgid "Printer Group"
msgstr "Skupina tiskárny"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
msgctxt "@action:label"
msgid "Profile settings"
msgstr "Nastavení profilu"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
msgctxt "@info:tooltip"
msgid "How should the conflict in the profile be resolved?"
msgstr "Jak by měl být problém v profilu vyřešen?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
msgctxt "@action:label"
msgid "Name"
msgstr "Název"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
msgctxt "@action:label"
msgid "Intent"
msgstr "Záměr"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
msgctxt "@action:label"
msgid "Not in profile"
msgstr "Není v profilu"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
msgctxt "@action:label"
msgid "%1 override"
msgid_plural "%1 overrides"
@@ -2651,12 +1752,12 @@ msgstr[0] "%1 přepsání"
msgstr[1] "%1 přepsání"
msgstr[2] "%1 přepsání"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
msgctxt "@action:label"
msgid "Derivative from"
msgstr "Derivát z"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
msgctxt "@action:label"
msgid "%1, %2 override"
msgid_plural "%1, %2 overrides"
@@ -2664,52 +1765,484 @@ msgstr[0] "%1, %2 override"
msgstr[1] "%1, %2 overrides"
msgstr[2] "%1, %2 overrides"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
msgctxt "@action:label"
msgid "Material settings"
msgstr "Nastavení materiálu"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
msgctxt "@info:tooltip"
msgid "How should the conflict in the material be resolved?"
msgstr "Jak by měl být problém v materiálu vyřešen?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
msgctxt "@action:label"
msgid "Setting visibility"
msgstr "Nastavení zobrazení"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
msgctxt "@action:label"
msgid "Mode"
msgstr "Mód"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
msgctxt "@action:label"
msgid "Visible settings:"
msgstr "Viditelná zařízení:"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
msgctxt "@action:label"
msgid "%1 out of %2"
msgstr "%1 z %2"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
msgctxt "@action:warning"
msgid "Loading a project will clear all models on the build plate."
msgstr "Nahrání projektu vymaže všechny modely na podložce."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
msgctxt "@action:button"
msgid "Open"
msgstr "Otevřít"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.qml:22
-msgctxt "@info:tooltip"
-msgid "Some things could be problematic in this print. Click to see tips for adjustment."
-msgstr "Některé věci mohou být v tomto tisku problematické. Kliknutím zobrazíte tipy pro úpravy."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
+msgctxt "@button"
+msgid "Want more?"
+msgstr "Chcete více?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:100
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
+msgctxt "@button"
+msgid "Backup Now"
+msgstr "Zálohovat nyní"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
+msgctxt "@checkbox:description"
+msgid "Auto Backup"
+msgstr "Automatické zálohy"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
+msgctxt "@checkbox:description"
+msgid "Automatically create a backup each day that Cura is started."
+msgstr "Automaticky vytvořte zálohu každý den, kdy je spuštěna Cura."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
+msgctxt "@button"
+msgid "Restore"
+msgstr "Obnovit"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
+msgctxt "@dialog:title"
+msgid "Delete Backup"
+msgstr "Odstranit zálohu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
+msgctxt "@dialog:info"
+msgid "Are you sure you want to delete this backup? This cannot be undone."
+msgstr "Opravdu chcete tuto zálohu smazat? To nelze vrátit zpět."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
+msgctxt "@dialog:title"
+msgid "Restore Backup"
+msgstr "Obnovit zálohu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
+msgctxt "@dialog:info"
+msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
+msgstr "Před obnovením zálohy budete muset restartovat Curu. Chcete nyní Curu zavřít?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
+msgctxt "@backuplist:label"
+msgid "Cura Version"
+msgstr "Cura verze"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
+msgctxt "@backuplist:label"
+msgid "Machines"
+msgstr "Zařízení"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
+msgctxt "@backuplist:label"
+msgid "Materials"
+msgstr "Materiály"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
+msgctxt "@backuplist:label"
+msgid "Profiles"
+msgstr "Profily"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
+msgctxt "@backuplist:label"
+msgid "Plugins"
+msgstr "Zásuvné moduly"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
+msgctxt "@title:window"
+msgid "Cura Backups"
+msgstr "Cura zálohy"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
+msgctxt "@title"
+msgid "My Backups"
+msgstr "Moje zálohy"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
+msgctxt "@empty_state"
+msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
+msgstr "Momentálně nemáte žádné zálohy. Pomocí tlačítka 'Zálohovat nyní' vytvořte."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
+msgctxt "@backup_limit_info"
+msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
+msgstr "Během fáze náhledu budete omezeni na 5 viditelných záloh. Chcete-li zobrazit starší, odstraňte zálohu."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
+msgctxt "@description"
+msgid "Backup and synchronize your Cura settings."
+msgstr "Zálohovat a synchronizovat vaše nastavení Cura."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199
+msgctxt "@button"
+msgid "Sign in"
+msgstr "Přihlásit se"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
+msgctxt "@title"
+msgid "Update Firmware"
+msgstr "Aktualizovat firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
+msgctxt "@label"
+msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
+msgstr "Firmware je software běžící přímo na vaší 3D tiskárně. Tento firmware řídí krokové motory, reguluje teplotu a v konečném důsledku zajišťuje vaši práci tiskárny."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
+msgctxt "@label"
+msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
+msgstr "Dodávání firmwaru s novými tiskárnami funguje, ale nové verze mají obvykle více funkcí a vylepšení."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
+msgctxt "@action:button"
+msgid "Automatically upgrade Firmware"
+msgstr "Automaticky aktualizovat firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
+msgctxt "@action:button"
+msgid "Upload custom Firmware"
+msgstr "Nahrát vlastní firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
+msgctxt "@label"
+msgid "Firmware can not be updated because there is no connection with the printer."
+msgstr "Firmware nelze aktualizovat, protože není spojeno s tiskárnou."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
+msgctxt "@label"
+msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
+msgstr "Firmware nelze aktualizovat, protože připojení k tiskárně nepodporuje aktualizaci firmwaru."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
+msgctxt "@title:window"
+msgid "Select custom firmware"
+msgstr "Vybrat vlastní firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
+msgctxt "@title:window"
+msgid "Firmware Update"
+msgstr "Aktualizace firmwaru"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
+msgctxt "@label"
+msgid "Updating firmware."
+msgstr "Aktualizuji firmware."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
+msgctxt "@label"
+msgid "Firmware update completed."
+msgstr "Aktualizace firmwaru kompletní."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
+msgctxt "@label"
+msgid "Firmware update failed due to an unknown error."
+msgstr "Aktualizace firmwaru selhala kvůli neznámému problému."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
+msgctxt "@label"
+msgid "Firmware update failed due to an communication error."
+msgstr "Aktualizace firmwaru selhala kvůli chybě v komunikaci."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
+msgctxt "@label"
+msgid "Firmware update failed due to an input/output error."
+msgstr "Aktualizace firmwaru selhala kvůli chybě vstupu / výstupu."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
+msgctxt "@label"
+msgid "Firmware update failed due to missing firmware."
+msgstr "Aktualizace firmwaru selhala kvůli chybějícímu firmwaru."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
+msgctxt "@title:window"
+msgid "Convert Image..."
+msgstr "Konvertovat obrázek.."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
+msgctxt "@info:tooltip"
+msgid "The maximum distance of each pixel from \"Base.\""
+msgstr "Maximální vzdálenost každého pixelu od „základny“."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
+msgctxt "@action:label"
+msgid "Height (mm)"
+msgstr "Výška (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
+msgctxt "@info:tooltip"
+msgid "The base height from the build plate in millimeters."
+msgstr "Výška základny od podložky v milimetrech."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
+msgctxt "@action:label"
+msgid "Base (mm)"
+msgstr "Základna (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
+msgctxt "@info:tooltip"
+msgid "The width in millimeters on the build plate."
+msgstr "Šířka podložky v milimetrech."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
+msgctxt "@action:label"
+msgid "Width (mm)"
+msgstr "Šířka (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
+msgctxt "@info:tooltip"
+msgid "The depth in millimeters on the build plate"
+msgstr "Hloubka podložky v milimetrech"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
+msgctxt "@action:label"
+msgid "Depth (mm)"
+msgstr "Hloubka (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
+msgctxt "@info:tooltip"
+msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
+msgstr "U litofanů by tmavé pixely měly odpovídat silnějším místům, aby blokovaly více světla procházejícího. Pro výškové mapy znamenají světlejší pixely vyšší terén, takže světlejší pixely by měly odpovídat silnějším umístěním v generovaném 3D modelu."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Darker is higher"
+msgstr "Tmavější je vyšší"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Lighter is higher"
+msgstr "Světlejší je vyšší"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
+msgctxt "@info:tooltip"
+msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
+msgstr "Pro litofany je k dispozici jednoduchý logaritmický model pro průsvitnost. U výškových map odpovídají hodnoty pixelů lineárně výškám."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+msgctxt "@item:inlistbox"
+msgid "Linear"
+msgstr "Lineární"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
+msgctxt "@item:inlistbox"
+msgid "Translucency"
+msgstr "Průsvitnost"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
+msgctxt "@info:tooltip"
+msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
+msgstr "Procento světla pronikajícího do tisku o tloušťce 1 milimetr. Snížení této hodnoty zvyšuje kontrast v tmavých oblastech a snižuje kontrast ve světlých oblastech obrazu."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
+msgctxt "@action:label"
+msgid "1mm Transmittance (%)"
+msgstr "1mm propustnost (%)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
+msgctxt "@info:tooltip"
+msgid "The amount of smoothing to apply to the image."
+msgstr "Množství vyhlazení, které se použije na obrázek."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
+msgctxt "@action:label"
+msgid "Smoothing"
+msgstr "Vyhlazování"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
+msgctxt "@action:button"
+msgid "OK"
+msgstr "OK"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
+msgctxt "@title:tab"
+msgid "Printer"
+msgstr "Tiskárna"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
+msgctxt "@title:label"
+msgid "Nozzle Settings"
+msgstr "Nastavení trysky"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
+msgctxt "@label"
+msgid "Nozzle size"
+msgstr "Velikost trysky"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
+msgctxt "@label"
+msgid "mm"
+msgstr "mm"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
+msgctxt "@label"
+msgid "Compatible material diameter"
+msgstr "Kompatibilní průměr materiálu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
+msgctxt "@label"
+msgid "Nozzle offset X"
+msgstr "X offset trysky"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
+msgctxt "@label"
+msgid "Nozzle offset Y"
+msgstr "Y offset trysky"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
+msgctxt "@label"
+msgid "Cooling Fan Number"
+msgstr "Číslo chladícího větráku"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
+msgctxt "@title:label"
+msgid "Extruder Start G-code"
+msgstr "Počáteční G-kód extuderu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
+msgctxt "@title:label"
+msgid "Extruder End G-code"
+msgstr "Ukončující G-kód extuderu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
+msgctxt "@title:label"
+msgid "Printer Settings"
+msgstr "Nastavení tiskárny"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
+msgctxt "@label"
+msgid "X (Width)"
+msgstr "X (Šířka)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
+msgctxt "@label"
+msgid "Y (Depth)"
+msgstr "Y (Hloubka)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
+msgctxt "@label"
+msgid "Z (Height)"
+msgstr "Z (Výška)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
+msgctxt "@label"
+msgid "Build plate shape"
+msgstr "Tvar tiskové podložky"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
+msgctxt "@label"
+msgid "Origin at center"
+msgstr "Počátek ve středu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
+msgctxt "@label"
+msgid "Heated bed"
+msgstr "Topná podložka"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
+msgctxt "@label"
+msgid "Heated build volume"
+msgstr "Vyhřívaný objem sestavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
+msgctxt "@label"
+msgid "G-code flavor"
+msgstr "Varianta G kódu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
+msgctxt "@title:label"
+msgid "Printhead Settings"
+msgstr "Nastavení tiskové hlavy"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
+msgctxt "@label"
+msgid "X min"
+msgstr "X min"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
+msgctxt "@label"
+msgid "Y min"
+msgstr "Y min"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
+msgctxt "@label"
+msgid "X max"
+msgstr "X max"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
+msgctxt "@label"
+msgid "Y max"
+msgstr "Y max"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
+msgctxt "@label"
+msgid "Gantry Height"
+msgstr "Výška rámu tiskárny"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
+msgctxt "@label"
+msgid "Number of Extruders"
+msgstr "Počet extrůderů"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
+msgctxt "@label"
+msgid "Apply Extruder offsets to GCode"
+msgstr "Aplikovat offsety extruderu do G kódu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
+msgctxt "@title:label"
+msgid "Start G-code"
+msgstr "Počáteční G kód"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
+msgctxt "@title:label"
+msgid "End G-code"
+msgstr "Ukončující G kód"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
msgctxt "@info"
msgid ""
"Please make sure your printer has a connection:\n"
@@ -2722,1387 +2255,973 @@ msgstr ""
"- Zkontrolujte, zda je tiskárna připojena k síti.\n"
"- Zkontrolujte, zda jste přihlášeni k objevování tiskáren připojených k cloudu."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
msgctxt "@info"
msgid "Please connect your printer to the network."
msgstr "Připojte tiskárnu k síti."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:155
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155
msgctxt "@label link to technical assistance"
msgid "View user manuals online"
msgstr "Zobrazit online manuály"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172
+msgctxt "@info"
+msgid "In order to monitor your print from Cura, please connect the printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
+msgctxt "@label"
+msgid "Mesh Type"
+msgstr "Typ síťového modelu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
+msgctxt "@label"
+msgid "Normal model"
+msgstr "Normální model"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
+msgctxt "@label"
+msgid "Print as support"
+msgstr "Tisknout jako podporu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
+msgctxt "@label"
+msgid "Modify settings for overlaps"
+msgstr "Upravte nastavení překrývání"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
+msgctxt "@label"
+msgid "Don't support overlaps"
+msgstr "Nepodporovat překrývání"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
+msgctxt "@item:inlistbox"
+msgid "Infill mesh only"
+msgstr "Pouze síť výplně"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
+msgctxt "@item:inlistbox"
+msgid "Cutting mesh"
+msgstr "Síť řezu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
+msgctxt "@action:button"
+msgid "Select settings"
+msgstr "Vybrat nastavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
msgctxt "@title:window"
-msgid "More information on anonymous data collection"
-msgstr "Další informace o anonymním shromažďování údajů"
+msgid "Select Settings to Customize for this model"
+msgstr "Vybrat nastavení k přizpůsobení pro tento model"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
-msgctxt "@text:window"
-msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
-msgstr "Ultimaker Cura shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu. Níže uvádíme příklad všech sdílených dat:"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96
+msgctxt "@label:textbox"
+msgid "Filter..."
+msgstr "Filtrovat..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
-msgctxt "@text:window"
-msgid "I don't want to send anonymous data"
-msgstr "Nechci posílat anonymní data"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
+msgctxt "@label:checkbox"
+msgid "Show all"
+msgstr "Zobrazit vše"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
-msgctxt "@text:window"
-msgid "Allow sending anonymous data"
-msgstr "Povolit zasílání anonymních dat"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20
+msgctxt "@title:window"
+msgid "Post Processing Plugin"
+msgstr "Zásuvný balíček Post Processing"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59
+msgctxt "@label"
+msgid "Post Processing Scripts"
+msgstr "Skripty Post Processingu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235
+msgctxt "@action"
+msgid "Add a script"
+msgstr "Přidat skript"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282
+msgctxt "@label"
+msgid "Settings"
+msgstr "Nastavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502
+msgctxt "@info:tooltip"
+msgid "Change active post-processing scripts."
+msgstr "Změnít aktivní post-processing skripty."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506
+msgctxt "@info:tooltip"
+msgid "The following script is active:"
+msgid_plural "The following scripts are active:"
+msgstr[0] "Následují skript je aktivní:"
+msgstr[1] "Následují skripty jsou aktivní:"
+msgstr[2] "Následují skripty jsou aktivní:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
msgctxt "@label"
msgid "Color scheme"
msgstr "Barevné schéma"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110
msgctxt "@label:listbox"
msgid "Material Color"
msgstr "Barva materiálu"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114
msgctxt "@label:listbox"
msgid "Line Type"
msgstr "Typ úsečky"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118
msgctxt "@label:listbox"
msgid "Speed"
msgstr "Rychlost"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122
msgctxt "@label:listbox"
msgid "Layer Thickness"
msgstr "Tloušťka vrstvy"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126
msgctxt "@label:listbox"
msgid "Line Width"
msgstr "Šířka čáry"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130
+msgctxt "@label:listbox"
+msgid "Flow"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171
msgctxt "@label"
msgid "Compatibility Mode"
msgstr "Mód kompatibility"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245
msgctxt "@label"
msgid "Travels"
msgstr "Cesty"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251
msgctxt "@label"
msgid "Helpers"
msgstr "Pomocníci"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
msgctxt "@label"
msgid "Shell"
msgstr "Shell"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:255
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
msgctxt "@label"
msgid "Infill"
msgstr "Výplň"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271
msgctxt "@label"
msgid "Starts"
msgstr "Začátky"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:314
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
msgctxt "@label"
msgid "Only Show Top Layers"
msgstr "Zobrazit jen vrchní vrstvy"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:324
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332
msgctxt "@label"
msgid "Show 5 Detailed Layers On Top"
msgstr "Zobrazit 5 podrobných vrstev nahoře"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:338
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346
msgctxt "@label"
msgid "Top / Bottom"
msgstr "Nahoře / Dole"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:342
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350
msgctxt "@label"
msgid "Inner Wall"
msgstr "Vnitřní stěna"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:405
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419
msgctxt "@label"
msgid "min"
msgstr "min"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:464
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488
msgctxt "@label"
msgid "max"
msgstr "max"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
-msgctxt "@title:label"
-msgid "Nozzle Settings"
-msgstr "Nastavení trysky"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
-msgctxt "@label"
-msgid "Nozzle size"
-msgstr "Velikost trysky"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
-msgctxt "@label"
-msgid "mm"
-msgstr "mm"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
-msgctxt "@label"
-msgid "Compatible material diameter"
-msgstr "Kompatibilní průměr materiálu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
-msgctxt "@label"
-msgid "Nozzle offset X"
-msgstr "X offset trysky"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
-msgctxt "@label"
-msgid "Nozzle offset Y"
-msgstr "Y offset trysky"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
-msgctxt "@label"
-msgid "Cooling Fan Number"
-msgstr "Číslo chladícího větráku"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
-msgctxt "@title:label"
-msgid "Extruder Start G-code"
-msgstr "Počáteční G-kód extuderu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
-msgctxt "@title:label"
-msgid "Extruder End G-code"
-msgstr "Ukončující G-kód extuderu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
-msgctxt "@title:tab"
-msgid "Printer"
-msgstr "Tiskárna"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
-msgctxt "@title:label"
-msgid "Printer Settings"
-msgstr "Nastavení tiskárny"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
-msgctxt "@label"
-msgid "X (Width)"
-msgstr "X (Šířka)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
-msgctxt "@label"
-msgid "Y (Depth)"
-msgstr "Y (Hloubka)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
-msgctxt "@label"
-msgid "Z (Height)"
-msgstr "Z (Výška)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
-msgctxt "@label"
-msgid "Build plate shape"
-msgstr "Tvar tiskové podložky"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
-msgctxt "@label"
-msgid "Origin at center"
-msgstr "Počátek ve středu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
-msgctxt "@label"
-msgid "Heated bed"
-msgstr "Topná podložka"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
-msgctxt "@label"
-msgid "Heated build volume"
-msgstr "Vyhřívaný objem sestavení"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
-msgctxt "@label"
-msgid "G-code flavor"
-msgstr "Varianta G kódu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
-msgctxt "@title:label"
-msgid "Printhead Settings"
-msgstr "Nastavení tiskové hlavy"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
-msgctxt "@label"
-msgid "X min"
-msgstr "X min"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
-msgctxt "@label"
-msgid "Y min"
-msgstr "Y min"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
-msgctxt "@label"
-msgid "X max"
-msgstr "X max"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
-msgctxt "@label"
-msgid "Y max"
-msgstr "Y max"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
-msgctxt "@label"
-msgid "Gantry Height"
-msgstr "Výška rámu tiskárny"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
-msgctxt "@label"
-msgid "Number of Extruders"
-msgstr "Počet extrůderů"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
-msgctxt "@label"
-msgid "Apply Extruder offsets to GCode"
-msgstr "Aplikovat offsety extruderu do G kódu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
-msgctxt "@title:label"
-msgid "Start G-code"
-msgstr "Počáteční G kód"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
-msgctxt "@title:label"
-msgid "End G-code"
-msgstr "Ukončující G kód"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
msgctxt "@title:window"
-msgid "Convert Image..."
-msgstr "Konvertovat obrázek.."
+msgid "More information on anonymous data collection"
+msgstr "Další informace o anonymním shromažďování údajů"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:33
-msgctxt "@info:tooltip"
-msgid "The maximum distance of each pixel from \"Base.\""
-msgstr "Maximální vzdálenost každého pixelu od „základny“."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:38
-msgctxt "@action:label"
-msgid "Height (mm)"
-msgstr "Výška (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:56
-msgctxt "@info:tooltip"
-msgid "The base height from the build plate in millimeters."
-msgstr "Výška základny od podložky v milimetrech."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:61
-msgctxt "@action:label"
-msgid "Base (mm)"
-msgstr "Základna (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:79
-msgctxt "@info:tooltip"
-msgid "The width in millimeters on the build plate."
-msgstr "Šířka podložky v milimetrech."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:84
-msgctxt "@action:label"
-msgid "Width (mm)"
-msgstr "Šířka (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:103
-msgctxt "@info:tooltip"
-msgid "The depth in millimeters on the build plate"
-msgstr "Hloubka podložky v milimetrech"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:108
-msgctxt "@action:label"
-msgid "Depth (mm)"
-msgstr "Hloubka (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:126
-msgctxt "@info:tooltip"
-msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
-msgstr "U litofanů by tmavé pixely měly odpovídat silnějším místům, aby blokovaly více světla procházejícího. Pro výškové mapy znamenají světlejší pixely vyšší terén, takže světlejší pixely by měly odpovídat silnějším umístěním v generovaném 3D modelu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Darker is higher"
-msgstr "Tmavější je vyšší"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Lighter is higher"
-msgstr "Světlejší je vyšší"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:149
-msgctxt "@info:tooltip"
-msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
-msgstr "Pro litofany je k dispozici jednoduchý logaritmický model pro průsvitnost. U výškových map odpovídají hodnoty pixelů lineárně výškám."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
-msgctxt "@item:inlistbox"
-msgid "Linear"
-msgstr "Lineární"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:172
-msgctxt "@item:inlistbox"
-msgid "Translucency"
-msgstr "Průsvitnost"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:171
-msgctxt "@info:tooltip"
-msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
-msgstr "Procento světla pronikajícího do tisku o tloušťce 1 milimetr. Snížení této hodnoty zvyšuje kontrast v tmavých oblastech a snižuje kontrast ve světlých oblastech obrazu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:177
-msgctxt "@action:label"
-msgid "1mm Transmittance (%)"
-msgstr "1mm propustnost (%)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:195
-msgctxt "@info:tooltip"
-msgid "The amount of smoothing to apply to the image."
-msgstr "Množství vyhlazení, které se použije na obrázek."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:200
-msgctxt "@action:label"
-msgid "Smoothing"
-msgstr "Vyhlazování"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
-msgctxt "@title"
-msgid "My Backups"
-msgstr "Moje zálohy"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
-msgctxt "@empty_state"
-msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
-msgstr "Momentálně nemáte žádné zálohy. Pomocí tlačítka 'Zálohovat nyní' vytvořte."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
-msgctxt "@backup_limit_info"
-msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
-msgstr "Během fáze náhledu budete omezeni na 5 viditelných záloh. Chcete-li zobrazit starší, odstraňte zálohu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
-msgctxt "@description"
-msgid "Backup and synchronize your Cura settings."
-msgstr "Zálohovat a synchronizovat vaše nastavení Cura."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
-msgctxt "@button"
-msgid "Want more?"
-msgstr "Chcete více?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
-msgctxt "@button"
-msgid "Backup Now"
-msgstr "Zálohovat nyní"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
-msgctxt "@checkbox:description"
-msgid "Auto Backup"
-msgstr "Automatické zálohy"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
-msgctxt "@checkbox:description"
-msgid "Automatically create a backup each day that Cura is started."
-msgstr "Automaticky vytvořte zálohu každý den, kdy je spuštěna Cura."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
-msgctxt "@backuplist:label"
-msgid "Cura Version"
-msgstr "Cura verze"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
-msgctxt "@backuplist:label"
-msgid "Machines"
-msgstr "Zařízení"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
-msgctxt "@backuplist:label"
-msgid "Materials"
-msgstr "Materiály"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
-msgctxt "@backuplist:label"
-msgid "Profiles"
-msgstr "Profily"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
-msgctxt "@backuplist:label"
-msgid "Plugins"
-msgstr "Zásuvné moduly"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
-msgctxt "@button"
-msgid "Restore"
-msgstr "Obnovit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
-msgctxt "@dialog:title"
-msgid "Delete Backup"
-msgstr "Odstranit zálohu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
-msgctxt "@dialog:info"
-msgid "Are you sure you want to delete this backup? This cannot be undone."
-msgstr "Opravdu chcete tuto zálohu smazat? To nelze vrátit zpět."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
-msgctxt "@dialog:title"
-msgid "Restore Backup"
-msgstr "Obnovit zálohu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
-msgctxt "@dialog:info"
-msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
-msgstr "Před obnovením zálohy budete muset restartovat Curu. Chcete nyní Curu zavřít?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/main.qml:25
-msgctxt "@title:window"
-msgid "Cura Backups"
-msgstr "Cura zálohy"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:13
-msgctxt "@label:category menu label"
-msgid "Material"
-msgstr "Materiál"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:54
-msgctxt "@label:category menu label"
-msgid "Favorites"
-msgstr "Oblíbené"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:79
-msgctxt "@label:category menu label"
-msgid "Generic"
-msgstr "Obecné"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:13
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
-msgctxt "@title:menu menubar:toplevel"
-msgid "&File"
-msgstr "&Soubor"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:41
-msgctxt "@title:menu menubar:file"
-msgid "&Save Project..."
-msgstr "&Uložit projekt..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:74
-msgctxt "@title:menu menubar:file"
-msgid "&Export..."
-msgstr "&Exportovat..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:85
-msgctxt "@action:inmenu menubar:file"
-msgid "Export Selection..."
-msgstr "Výběr exportu..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Open &Recent"
-msgstr "Otevřít &Poslední"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
-msgctxt "@label"
-msgid "Select configuration"
-msgstr "Vybrat konfiguraci"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
-msgctxt "@label"
-msgid "Configurations"
-msgstr "Konfigurace"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
-msgctxt "@header"
-msgid "Configurations"
-msgstr "Konfigurace"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
-msgctxt "@header"
-msgid "Custom"
-msgstr "Vlastní"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
-msgctxt "@label"
-msgid "Printer"
-msgstr "Tiskárna"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
-msgctxt "@label"
-msgid "Enabled"
-msgstr "Povoleno"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
-msgctxt "@label"
-msgid "Material"
-msgstr "Materiál"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
-msgctxt "@label"
-msgid "Use glue for better adhesion with this material combination."
-msgstr "S touto kombinací materiálu pro lepší adhezi použijte lepidlo."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
-msgctxt "@label"
-msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
-msgstr "Tato konfigurace není k dispozici, protože %1 nebyl rozpoznán. Navštivte prosím %2 a stáhněte si správný materiálový profil."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
-msgctxt "@label"
-msgid "Marketplace"
-msgstr "Obchod"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
-msgctxt "@label"
-msgid "Loading available configurations from the printer..."
-msgstr "Načítání dostupných konfigurací z tiskárny ..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
-msgctxt "@label"
-msgid "The configurations are not available because the printer is disconnected."
-msgstr "Konfigurace nejsou k dispozici, protože je tiskárna odpojena."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:12
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
-msgctxt "@title:menu menubar:toplevel"
-msgid "&View"
-msgstr "Po&hled"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:19
-msgctxt "@action:inmenu menubar:view"
-msgid "&Camera position"
-msgstr "Pozice &kamery"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:44
-msgctxt "@action:inmenu menubar:view"
-msgid "Camera view"
-msgstr "Pohled kamery"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:47
-msgctxt "@action:inmenu menubar:view"
-msgid "Perspective"
-msgstr "Perspektiva"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:59
-msgctxt "@action:inmenu menubar:view"
-msgid "Orthographic"
-msgstr "Ortografický"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:80
-msgctxt "@action:inmenu menubar:view"
-msgid "&Build plate"
-msgstr "Pod&ložka"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:25
-msgctxt "@label:category menu label"
-msgid "Network enabled printers"
-msgstr "Tiskárny s povolenou sítí"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:42
-msgctxt "@label:category menu label"
-msgid "Local printers"
-msgstr "Lokální tiskárny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
-msgctxt "@action:inmenu"
-msgid "Visible Settings"
-msgstr "Viditelná nastavení"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
-msgctxt "@action:inmenu"
-msgid "Collapse All Categories"
-msgstr "Sbalit všechny kategorie"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
-msgctxt "@action:inmenu"
-msgid "Manage Setting Visibility..."
-msgstr "Spravovat nastavení viditelnosti ..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:13
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Settings"
-msgstr "Nasta&vení"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:15
-msgctxt "@title:menu menubar:settings"
-msgid "&Printer"
-msgstr "&Tiskárna"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:29
-msgctxt "@title:menu"
-msgid "&Material"
-msgstr "&Materiál"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:44
-msgctxt "@action:inmenu"
-msgid "Set as Active Extruder"
-msgstr "Nastavit jako aktivní extruder"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:50
-msgctxt "@action:inmenu"
-msgid "Enable Extruder"
-msgstr "Povolit extuder"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:57
-msgctxt "@action:inmenu"
-msgid "Disable Extruder"
-msgstr "Zakázat Extruder"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Save Project..."
-msgstr "Uložit projekt..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:27
-msgctxt "@label"
-msgid "Print Selected Model With:"
-msgid_plural "Print Selected Models With:"
-msgstr[0] "Tisknout vybraný model pomocí:"
-msgstr[1] "Tisknout vybrané modely pomocí:"
-msgstr[2] "Tisknout vybrané modely pomocí:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:116
-msgctxt "@title:window"
-msgid "Multiply Selected Model"
-msgid_plural "Multiply Selected Models"
-msgstr[0] "Násobit vybraný model"
-msgstr[1] "Násobit vybrané modele"
-msgstr[2] "Násobit vybrané modele"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:141
-msgctxt "@label"
-msgid "Number of Copies"
-msgstr "Počet kopií"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Open File(s)..."
-msgstr "Otevřít soubor(y)..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
-msgctxt "@label:header"
-msgid "Custom profiles"
-msgstr "Vlastní profily"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:564
-msgctxt "@action:button"
-msgid "Discard current changes"
-msgstr "Zrušit aktuální změny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
-msgctxt "@label"
-msgid "Profile"
-msgstr "Profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
-msgctxt "@tooltip"
-msgid ""
-"Some setting/override values are different from the values stored in the profile.\n"
-"\n"
-"Click to open the profile manager."
-msgstr ""
-"Některé hodnoty nastavení / přepsání se liší od hodnot uložených v profilu.\n"
-"\n"
-"Klepnutím otevřete správce profilů."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
-msgctxt "@label:Should be short"
-msgid "On"
-msgstr "Zap"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
-msgctxt "@label:Should be short"
-msgid "Off"
-msgstr "Vyp"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
-msgctxt "@label"
-msgid "Experimental"
-msgstr "Experimentální"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
-msgctxt "@button"
-msgid "Recommended"
-msgstr "Doporučeno"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
-msgctxt "@button"
-msgid "Custom"
-msgstr "Vlastní"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
-msgctxt "@label"
-msgid "Print settings"
-msgstr "Nastavení tisku"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
-msgctxt "@label shown when we load a Gcode file"
-msgid "Print setup disabled. G-code file can not be modified."
-msgstr "Nastavení tisku zakázáno. Soubor G-kódu nelze změnit."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
-msgctxt "@label"
-msgid "Gradual infill"
-msgstr "Postupná výplň"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
-msgctxt "@label"
-msgid "Gradual infill will gradually increase the amount of infill towards the top."
-msgstr "Postupná výplň postupně zvyšuje množství výplně směrem nahoru."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:728
-msgctxt "@label"
-msgid "Profiles"
-msgstr "Profily"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
-msgctxt "@tooltip"
-msgid "You have modified some profile settings. If you want to change these go to custom mode."
-msgstr "Upravili jste některá nastavení profilu. Pokud je chcete změnit, přejděte do uživatelského režimu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
-msgctxt "@label"
-msgid "Support"
-msgstr "Podpora"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
-msgctxt "@label"
-msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
-msgstr "Vytvořte struktury pro podporu částí modelu, které mají přesahy. Bez těchto struktur by se takové části během tisku zhroutily."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
-msgctxt "@label"
-msgid "Adhesion"
-msgstr "Adheze"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
-msgctxt "@label"
-msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
-msgstr "Umožňuje tisk okraje nebo voru. Tímto způsobem se kolem nebo pod objekt přidá plochá oblast, kterou lze snadno odříznout."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
-msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
-msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
-msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
-msgstr[0] "Neexistuje žádný profil %1 pro konfiguraci v extruderu %2. Místo toho bude použit výchozí záměr"
-msgstr[1] "Neexistuje žádný profil %1 pro konfigurace v extruderu %2. Místo toho bude použit výchozí záměr"
-msgstr[2] "Neexistuje žádný profil %1 pro konfigurace v extruderu %2. Místo toho bude použit výchozí záměr"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Widgets/ComboBox.qml:24
-msgctxt "@label"
-msgid "No items to select from"
-msgstr "Není z čeho vybírat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:140
-msgctxt "@label"
-msgid "Active print"
-msgstr "Aktivní tisk"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:148
-msgctxt "@label"
-msgid "Job Name"
-msgstr "Název úlohy"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:156
-msgctxt "@label"
-msgid "Printing Time"
-msgstr "Čas tisku"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:164
-msgctxt "@label"
-msgid "Estimated time left"
-msgstr "Předpokládaný zbývající čas"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
-msgctxt "@title:window"
-msgid "Discard or Keep changes"
-msgstr "Smazat nebo nechat změny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
-msgctxt "@text:window, %1 is a profile name"
-msgid ""
-"You have customized some profile settings.\n"
-"Would you like to Keep these changed settings after switching profiles?\n"
-"Alternatively, you can discard the changes to load the defaults from '%1'."
-msgstr ""
-"Upravili jste některá nastavení profilu.\n"
-"Chcete tato změněná nastavení zachovat i po přepnutí profilů?\n"
-"V opačném případě můžete změny smazat a načíst výchozí hodnoty z '%1'."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
-msgctxt "@title:column"
-msgid "Profile settings"
-msgstr "Nastavení profilu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
-msgctxt "@title:column"
-msgid "Current changes"
-msgstr "Aktuální změny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:747
-msgctxt "@option:discardOrKeep"
-msgid "Always ask me this"
-msgstr "Vždy se zeptat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
-msgctxt "@option:discardOrKeep"
-msgid "Discard and never ask again"
-msgstr "Smazat a už se nikdy neptat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
-msgctxt "@option:discardOrKeep"
-msgid "Keep and never ask again"
-msgstr "Nechat a už se nikdy neptat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
-msgctxt "@action:button"
-msgid "Discard changes"
-msgstr "Smazat změny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
-msgctxt "@action:button"
-msgid "Keep changes"
-msgstr "Zanechat změny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:15
-msgctxt "@title:window The argument is the application name."
-msgid "About %1"
-msgstr "O %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:57
-msgctxt "@label"
-msgid "version: %1"
-msgstr "verze: %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:72
-msgctxt "@label"
-msgid "End-to-end solution for fused filament 3D printing."
-msgstr "Komplexní řešení pro 3D tisk z taveného filamentu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:85
-msgctxt "@info:credit"
-msgid ""
-"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
-"Cura proudly uses the following open source projects:"
-msgstr ""
-"Cura vyvíjí Ultimaker B.V. ve spolupráci s komunitou.\n"
-"Cura hrdě používá následující open source projekty:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:135
-msgctxt "@label"
-msgid "Graphical user interface"
-msgstr "Grafické uživatelské prostředí"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:136
-msgctxt "@label"
-msgid "Application framework"
-msgstr "Aplikační framework"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:137
-msgctxt "@label"
-msgid "G-code generator"
-msgstr "Generátor G kódu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:138
-msgctxt "@label"
-msgid "Interprocess communication library"
-msgstr "Meziprocesní komunikační knihovna"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:140
-msgctxt "@label"
-msgid "Programming language"
-msgstr "Programovací jazyk"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:141
-msgctxt "@label"
-msgid "GUI framework"
-msgstr "GUI framework"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:142
-msgctxt "@label"
-msgid "GUI framework bindings"
-msgstr "Propojení GUI frameworku"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:143
-msgctxt "@label"
-msgid "C/C++ Binding library"
-msgstr "Binding knihovna C/C++"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:144
-msgctxt "@label"
-msgid "Data interchange format"
-msgstr "Formát výměny dat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:145
-msgctxt "@label"
-msgid "Support library for scientific computing"
-msgstr "Podpůrná knihovna pro vědecké výpočty"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:146
-msgctxt "@label"
-msgid "Support library for faster math"
-msgstr "Podpůrný knihovna pro rychlejší matematické výpočty"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:147
-msgctxt "@label"
-msgid "Support library for handling STL files"
-msgstr "Podpůrná knihovna pro práci se soubory STL"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:148
-msgctxt "@label"
-msgid "Support library for handling planar objects"
-msgstr "Podpůrná knihovna pro manipulaci s planárními objekty"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:149
-msgctxt "@label"
-msgid "Support library for handling triangular meshes"
-msgstr "Podpůrná knihovna pro manipulaci s trojúhelníkovými sítěmi"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:150
-msgctxt "@label"
-msgid "Support library for handling 3MF files"
-msgstr "Podpůrná knihovna pro manipulaci s 3MF soubory"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:151
-msgctxt "@label"
-msgid "Support library for file metadata and streaming"
-msgstr "Podpůrná knihovna pro metadata souborů a streaming"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:152
-msgctxt "@label"
-msgid "Serial communication library"
-msgstr "Knihovna pro sériovou komunikaci"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:153
-msgctxt "@label"
-msgid "ZeroConf discovery library"
-msgstr "Knihovna ZeroConf discovery"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:154
-msgctxt "@label"
-msgid "Polygon clipping library"
-msgstr "Knihovna pro výstřižky z mnohoúhelníků"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:155
-msgctxt "@Label"
-msgid "Static type checker for Python"
-msgstr "Kontrola statických typů pro Python"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:156
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:157
-msgctxt "@Label"
-msgid "Root Certificates for validating SSL trustworthiness"
-msgstr "Základní certifikáty pro validaci důvěryhodnosti SSL"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:158
-msgctxt "@Label"
-msgid "Python Error tracking library"
-msgstr "Chyba v Python trackovací knihovně"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:159
-msgctxt "@label"
-msgid "Polygon packing library, developed by Prusa Research"
-msgstr "Knihovna pro plošnou optimalizaci vyvinutá Prusa Research"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:160
-msgctxt "@label"
-msgid "Python bindings for libnest2d"
-msgstr "Propojení libnest2d s jazykem Python"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:161
-msgctxt "@label"
-msgid "Support library for system keyring access"
-msgstr "Podpůrná knihovna pro přístup k systémové klíčence"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:162
-msgctxt "@label"
-msgid "Python extensions for Microsoft Windows"
-msgstr "Python rozšíření pro Microsoft Windows"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:163
-msgctxt "@label"
-msgid "Font"
-msgstr "Font"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:164
-msgctxt "@label"
-msgid "SVG icons"
-msgstr "Ikony SVG"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:165
-msgctxt "@label"
-msgid "Linux cross-distribution application deployment"
-msgstr "Linux cross-distribution application deployment"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:627
-msgctxt "@title:window"
-msgid "Open file(s)"
-msgstr "Otevřít soubor(y)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
msgctxt "@text:window"
-msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
-msgstr "Ve vybraných souborech jsme našli jeden nebo více projektových souborů. Naraz můžete otevřít pouze jeden soubor projektu. Doporučujeme importovat pouze modely z těchto souborů. Chtěli byste pokračovat?"
+msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
+msgstr "Ultimaker Cura shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu. Níže uvádíme příklad všech sdílených dat:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
-msgctxt "@action:button"
-msgid "Import all as models"
-msgstr "Importovat vše jako modely"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
-msgctxt "@title:window"
-msgid "Save Project"
-msgstr "Uložit projekt"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
-msgctxt "@action:label"
-msgid "Extruder %1"
-msgstr "Extruder %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
-msgctxt "@action:label"
-msgid "%1 & material"
-msgstr "%1 & materiál"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
-msgctxt "@action:label"
-msgid "Material"
-msgstr "Materiál"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
-msgctxt "@action:label"
-msgid "Don't show project summary on save again"
-msgstr "Nezobrazovat souhrn projektu při uložení znovu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
-msgctxt "@action:button"
-msgid "Save"
-msgstr "Uložit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
-msgctxt "@title:window"
-msgid "Open project file"
-msgstr "Otevřít soubor s projektem"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
msgctxt "@text:window"
-msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
-msgstr "Toto je soubor projektu Cura. Chcete jej otevřít jako projekt nebo importovat z něj modely?"
+msgid "I don't want to send anonymous data"
+msgstr "Nechci posílat anonymní data"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
msgctxt "@text:window"
-msgid "Remember my choice"
-msgstr "Pamatuj si moji volbu"
+msgid "Allow sending anonymous data"
+msgstr "Povolit zasílání anonymních dat"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
msgctxt "@action:button"
-msgid "Open as project"
-msgstr "Otevřít jako projekt"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
-msgctxt "@action:button"
-msgid "Import models"
-msgstr "Importovat modely"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/JobSpecs.qml:99
-msgctxt "@text Print job name"
-msgid "Untitled"
-msgstr "Bez názvu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
-msgctxt "@label"
-msgid "Welcome to Ultimaker Cura"
-msgstr "Vítejte v Ultimaker Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
-msgctxt "@text"
-msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
-msgstr "Při nastavování postupujte podle těchto pokynů Ultimaker Cura. Bude to trvat jen několik okamžiků."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
-msgctxt "@button"
-msgid "Get started"
-msgstr "Začínáme"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
-msgctxt "@label"
-msgid "Empty"
-msgstr "Prázdné"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
-msgctxt "@label"
-msgid "Help us to improve Ultimaker Cura"
-msgstr "Pomožte nám zlepšovat Ultimaker Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
-msgctxt "@text"
-msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
-msgstr "Ultimaker Cura shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu, včetně:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
-msgctxt "@text"
-msgid "Machine types"
-msgstr "Typy zařízení"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
-msgctxt "@text"
-msgid "Material usage"
-msgstr "Použití materiálu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
-msgctxt "@text"
-msgid "Number of slices"
-msgstr "Počet sliců"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
-msgctxt "@text"
-msgid "Print settings"
-msgstr "Nastavení tisku"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
-msgctxt "@text"
-msgid "Data collected by Ultimaker Cura will not contain any personal information."
-msgstr "Data shromážděná společností Ultimaker Cura nebudou obsahovat žádné osobní údaje."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
-msgctxt "@text"
-msgid "More information"
-msgstr "Více informací"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
-msgctxt "@label"
-msgid "Add printer by IP address"
-msgstr "Přidat tiskárnu podle IP adresy"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
-msgctxt "@text"
-msgid "Enter your printer's IP address."
-msgstr "Zadejte IP adresu vaší tiskárny."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
-msgctxt "@button"
-msgid "Add"
-msgstr "Přidat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
-msgctxt "@label"
-msgid "Could not connect to device."
-msgstr "Nelze se připojit k zařízení."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
-msgctxt "@label"
-msgid "Can't connect to your Ultimaker printer?"
-msgstr "Nemůžete se připojit k Vaší tiskárně Ultimaker?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
-msgctxt "@label"
-msgid "The printer at this address has not responded yet."
-msgstr "Tiskárna na této adrese dosud neodpověděla."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
-msgctxt "@label"
-msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
-msgstr "Tuto tiskárnu nelze přidat, protože se jedná o neznámou tiskárnu nebo není hostitelem skupiny."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
-msgctxt "@button"
msgid "Back"
msgstr "Zpět"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
+msgctxt "@label"
+msgid "Compatibility"
+msgstr "Kompatibilita"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
+msgctxt "@label:table_header"
+msgid "Machine"
+msgstr "Zařízení"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
+msgctxt "@label:table_header"
+msgid "Build Plate"
+msgstr "Podložka"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
+msgctxt "@label:table_header"
+msgid "Support"
+msgstr "Podpora"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
+msgctxt "@label:table_header"
+msgid "Quality"
+msgstr "Kvalita"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
+msgctxt "@action:label"
+msgid "Technical Data Sheet"
+msgstr "Technický datasheet"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
+msgctxt "@action:label"
+msgid "Safety Data Sheet"
+msgstr "Datasheet bezpečnosti"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
+msgctxt "@action:label"
+msgid "Printing Guidelines"
+msgstr "Zásady tisku"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
+msgctxt "@action:label"
+msgid "Website"
+msgstr "Webová stránka"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
+msgctxt "@action:button"
+msgid "Installed"
+msgstr "Nainstalováno"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to install or update"
+msgstr "K instalaci nebo aktualizaci je vyžadováno přihlášení"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Buy material spools"
+msgstr "Koupit cívky materiálu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
+msgctxt "@action:button"
+msgid "Update"
+msgstr "Aktualizace"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
+msgctxt "@action:button"
+msgid "Updating"
+msgstr "Aktualizuji"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
+msgctxt "@action:button"
+msgid "Updated"
+msgstr "Aktualizování"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
+msgctxt "@label"
+msgid "Premium"
+msgstr "Premium"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
+msgctxt "@info:tooltip"
+msgid "Go to Web Marketplace"
+msgstr "Přejít na webový obchod"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
+msgctxt "@label"
+msgid "Search materials"
+msgstr "Hledat materiály"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
+msgctxt "@info"
+msgid "You will need to restart Cura before changes in packages have effect."
+msgstr "Než se změny v balíčcích projeví, budete muset restartovat Curu."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
+msgctxt "@info:button, %1 is the application name"
+msgid "Quit %1"
+msgstr "Ukončit %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
+msgctxt "@title:tab"
+msgid "Plugins"
+msgstr "Zásuvné moduly"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
+msgctxt "@title:tab"
+msgid "Materials"
+msgstr "Materiály"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
+msgctxt "@title:tab"
+msgid "Installed"
+msgstr "Nainstalování"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
+msgctxt "@label"
+msgid "Will install upon restarting"
+msgstr "Nainstaluje se po restartu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to update"
+msgstr "Pro aktualizace je potřeba se přihlásit"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Downgrade"
+msgstr "Downgrade"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Uninstall"
+msgstr "Odinstalace"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
+msgctxt "@action:button"
+msgid "Install"
+msgstr "Nainstalovat"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
+msgctxt "@title"
+msgid "Changes from your account"
+msgstr "Změny z vašeho účtu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
msgctxt "@button"
+msgid "Dismiss"
+msgstr "Schovat"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178
+msgctxt "@button"
+msgid "Next"
+msgstr "Další"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
+msgctxt "@label"
+msgid "The following packages will be added:"
+msgstr "Následující balíčky byly přidány:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
+msgctxt "@label"
+msgid "The following packages can not be installed because of an incompatible Cura version:"
+msgstr "Následující balíčky nelze nainstalovat z důvodu nekompatibilní verze Cura:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
+msgctxt "@title:window"
+msgid "Confirm uninstall"
+msgstr "Potvrdit odinstalaci"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
+msgctxt "@text:window"
+msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
+msgstr "Odinstalujete materiály a / nebo profily, které se stále používají. Potvrzením resetujete následující materiály / profily na výchozí hodnoty."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
+msgctxt "@text:window"
+msgid "Materials"
+msgstr "Materiály"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
+msgctxt "@text:window"
+msgid "Profiles"
+msgstr "Profily"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
+msgctxt "@action:button"
+msgid "Confirm"
+msgstr "Potvrdit"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
+msgctxt "@label"
+msgid "You need to accept the license to install the package"
+msgstr "Pro instalaci balíčku musíte přijmout licenční ujednání"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
+msgctxt "@label"
+msgid "Website"
+msgstr "Webová stránka"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
+msgctxt "@label"
+msgid "Email"
+msgstr "Email"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
+msgctxt "@label"
+msgid "Version"
+msgstr "Verze"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
+msgctxt "@label"
+msgid "Last updated"
+msgstr "Naposledy aktualizování"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
+msgctxt "@label"
+msgid "Brand"
+msgstr "Značka"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
+msgctxt "@label"
+msgid "Downloads"
+msgstr "Ke stažení"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Contributions"
+msgstr "Soubory od komunity"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Plugins"
+msgstr "Komunitní zásuvné moduly"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
+msgctxt "@label"
+msgid "Generic Materials"
+msgstr "Obecné materiály"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
+msgctxt "@info"
+msgid "Could not connect to the Cura Package database. Please check your connection."
+msgstr "Nelze se připojit k databázi balíčku Cura. Zkontrolujte připojení."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
+msgctxt "@title:tab"
+msgid "Installed plugins"
+msgstr "Nainstalovaná rozšíření"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
+msgctxt "@info"
+msgid "No plugin has been installed."
+msgstr "Žádné rozšíření nebylo nainstalováno."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
+msgctxt "@title:tab"
+msgid "Installed materials"
+msgstr "Nainstalované materiály"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
+msgctxt "@info"
+msgid "No material has been installed."
+msgstr "Žádný materiál nebyl nainstalován."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
+msgctxt "@title:tab"
+msgid "Bundled plugins"
+msgstr "Zabalená rozšíření"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
+msgctxt "@title:tab"
+msgid "Bundled materials"
+msgstr "Zabalené materiály"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
+msgctxt "@info"
+msgid "Fetching packages..."
+msgstr "Načítám balíčky..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
+msgctxt "@description"
+msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
+msgstr "Přihlaste se, abyste získali ověřené pluginy a materiály pro Ultimaker Cura Enterprise"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
+msgctxt "@title"
+msgid "Marketplace"
+msgstr "Obchod"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
+msgctxt "@title"
+msgid "Build Plate Leveling"
+msgstr "Vyrovnávání podložky"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
+msgctxt "@label"
+msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
+msgstr "Chcete-li se ujistit, že vaše výtisky vyjdou skvěle, můžete nyní sestavení své podložku. Když kliknete na „Přesunout na další pozici“, tryska se přesune do různých poloh, které lze upravit."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
+msgctxt "@label"
+msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
+msgstr "Pro každou pozici; vložte kousek papíru pod trysku a upravte výšku tiskové desky. Výška desky pro sestavení tisku je správná, když je papír lehce uchopen špičkou trysky."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
+msgctxt "@action:button"
+msgid "Start Build Plate Leveling"
+msgstr "Spustit vyrovnání položky"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
+msgctxt "@action:button"
+msgid "Move to Next Position"
+msgstr "Přesunout na další pozici"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
+msgctxt "@label"
+msgid "Please select any upgrades made to this Ultimaker Original"
+msgstr "Vyberte prosím všechny upgrady provedené v tomto originálu Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
+msgctxt "@label"
+msgid "Heated Build Plate (official kit or self-built)"
+msgstr "Vyhřívaná podložka (Oficiální kit, nebo vytvořená)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
+msgctxt "@title:window"
+msgid "Connect to Networked Printer"
+msgstr "Připojte se k síťové tiskárně"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+msgctxt "@label"
+msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
+msgstr "Chcete-li tisknout přímo na tiskárně prostřednictvím sítě, zkontrolujte, zda je tiskárna připojena k síti pomocí síťového kabelu nebo připojením tiskárny k síti WIFI. Pokud nepřipojíte Curu k tiskárně, můžete stále používat jednotku USB k přenosu souborů g-kódu do vaší tiskárny."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+msgctxt "@label"
+msgid "Select your printer from the list below:"
+msgstr "Vyberte svou tiskárnu z nabídky níže:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
+msgctxt "@action:button"
+msgid "Edit"
+msgstr "Upravit"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
+msgctxt "@action:button"
+msgid "Remove"
+msgstr "Odstranit"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
+msgctxt "@action:button"
+msgid "Refresh"
+msgstr "Aktualizovat"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
+msgctxt "@label"
+msgid "If your printer is not listed, read the network printing troubleshooting guide"
+msgstr "Pokud vaše tiskárna není uvedena, přečtěte si průvodce řešením problémů se síťovým tiskem "
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
+msgctxt "@label"
+msgid "Type"
+msgstr "Typ"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
+msgctxt "@label"
+msgid "Firmware version"
+msgstr "Verze firmwaru"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
+msgctxt "@label"
+msgid "Address"
+msgstr "Adresa"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
+msgctxt "@label"
+msgid "This printer is not set up to host a group of printers."
+msgstr "Tato tiskárna není nastavena tak, aby hostovala skupinu tiskáren."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
+msgctxt "@label"
+msgid "This printer is the host for a group of %1 printers."
+msgstr "Tato tiskárna je hostitelem skupiny tiskáren %1."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
+msgctxt "@label"
+msgid "The printer at this address has not yet responded."
+msgstr "Tiskárna na této adrese dosud neodpověděla."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
+msgctxt "@action:button"
msgid "Connect"
msgstr "Připojit"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
+msgctxt "@title:window"
+msgid "Invalid IP address"
+msgstr "Špatná IP adresa"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
+msgctxt "@text"
+msgid "Please enter a valid IP address."
+msgstr "Prosím zadejte validní IP adresu."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
+msgctxt "@title:window"
+msgid "Printer Address"
+msgstr "Adresa tiskárny"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
msgctxt "@label"
-msgid "Add a printer"
-msgstr "Přidat tiskárnu"
+msgid "Enter the IP address of your printer on the network."
+msgstr "Vložte IP adresu vaší tiskárny na síti."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
+msgctxt "@title:window"
+msgid "Configuration Changes"
+msgstr "Změny konfigurace"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
+msgctxt "@action:button"
+msgid "Override"
+msgstr "Override"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
msgctxt "@label"
-msgid "Add a networked printer"
-msgstr "Přidat síťovou tiskárnu"
+msgid "The assigned printer, %1, requires the following configuration change:"
+msgid_plural "The assigned printer, %1, requires the following configuration changes:"
+msgstr[0] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:"
+msgstr[1] "Přiřazená tiskárna %1 vyžaduje následující změny akonfigurace:"
+msgstr[2] "Přiřazená tiskárna %1 vyžaduje následující změnu konfigurace:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
msgctxt "@label"
-msgid "Add a non-networked printer"
-msgstr "Přidat ne-síťovou tiskárnu"
+msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
+msgstr "Tiskárna %1 je přiřazena, ale úloha obsahuje neznámou konfiguraci materiálu."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
msgctxt "@label"
-msgid "What's New"
-msgstr "Co je nového"
+msgid "Change material %1 from %2 to %3."
+msgstr "Změnit materiál %1 z %2 na %3."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
msgctxt "@label"
-msgid "Add a Cloud printer"
-msgstr "Přidat Cloudovou tiskárnu"
+msgid "Load %3 as material %1 (This cannot be overridden)."
+msgstr "Načíst %3 jako materiál %1 (Toho nemůže být přepsáno)."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
msgctxt "@label"
-msgid "Waiting for Cloud response"
-msgstr "Čekám na odpověď od Cloudu"
+msgid "Change print core %1 from %2 to %3."
+msgstr "Změnit jádro tisku %1 z %2 na %3."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
msgctxt "@label"
-msgid "No printers found in your account?"
-msgstr "Žádné tiskárny nenalezeny ve vašem účtě?"
+msgid "Change build plate to %1 (This cannot be overridden)."
+msgstr "Změnit podložku na %1 (Toto nemůže být přepsáno)."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
msgctxt "@label"
-msgid "The following printers in your account have been added in Cura:"
-msgstr "Následující tiskárny ve vašem účtě byla přidány do Cury:"
+msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
+msgstr "Přepsání použije zadaná nastavení s existující konfigurací tiskárny. To může vést k selhání tisku."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
-msgctxt "@button"
-msgid "Add printer manually"
-msgstr "Přidat tiskárnu manuálně"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
+msgctxt "@label"
+msgid "Glass"
+msgstr "Sklo"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:64
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
+msgctxt "@label"
+msgid "Aluminum"
+msgstr "Hliník"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
+msgctxt "@label"
+msgid "Move to top"
+msgstr "Přesunout nahoru"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
+msgctxt "@label"
+msgid "Delete"
+msgstr "Odstranit"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290
+msgctxt "@label"
+msgid "Resume"
+msgstr "Obnovit"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
+msgctxt "@label"
+msgid "Pausing..."
+msgstr "Pozastavuji..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
+msgctxt "@label"
+msgid "Resuming..."
+msgstr "Obnovuji..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294
+msgctxt "@label"
+msgid "Pause"
+msgstr "Pozastavit"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+msgctxt "@label"
+msgid "Aborting..."
+msgstr "Ruším..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+msgctxt "@label"
+msgid "Abort"
+msgstr "Zrušit"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to move %1 to the top of the queue?"
+msgstr "Doopravdy chcete posunout %1 na začátek fronty?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
+msgctxt "@window:title"
+msgid "Move print job to top"
+msgstr "Přesunout tiskovou úlohu nahoru"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to delete %1?"
+msgstr "Doopravdy chcete odstranit %1?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
+msgctxt "@window:title"
+msgid "Delete print job"
+msgstr "Odstranit tiskovou úlohu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to abort %1?"
+msgstr "Doopravdy chcete zrušit %1?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336
+msgctxt "@window:title"
+msgid "Abort print"
+msgstr "Zrušit tisk"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
+msgctxt "@label link to Connect and Cloud interfaces"
+msgid "Manage printer"
+msgstr "Spravovat tiskárnu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
+msgctxt "@info"
+msgid "Please update your printer's firmware to manage the queue remotely."
+msgstr "Aktualizujte firmware tiskárny a spravujte frontu vzdáleně."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
+msgctxt "@label:status"
+msgid "Loading..."
+msgstr "Načítám..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
+msgctxt "@label:status"
+msgid "Unavailable"
+msgstr "Nedostupný"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
+msgctxt "@label:status"
+msgid "Unreachable"
+msgstr "Nedostupný"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
+msgctxt "@label:status"
+msgid "Idle"
+msgstr "Čekám"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
+msgctxt "@label:status"
+msgid "Preparing..."
+msgstr "Připravuji..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
+msgctxt "@label:status"
+msgid "Printing"
+msgstr "Tisknu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
+msgctxt "@label"
+msgid "Untitled"
+msgstr "Bez názvu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
+msgctxt "@label"
+msgid "Anonymous"
+msgstr "Anonymní"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
+msgctxt "@label:status"
+msgid "Requires configuration changes"
+msgstr "Jsou nutné změny v nastavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
+msgctxt "@action:button"
+msgid "Details"
+msgstr "Podrobnosti"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
+msgctxt "@label"
+msgid "Unavailable printer"
+msgstr "Nedostupná tiskárna"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
+msgctxt "@label"
+msgid "First available"
+msgstr "První dostupný"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
+msgctxt "@label:status"
+msgid "Aborted"
+msgstr "Zrušeno"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
+msgctxt "@label:status"
+msgid "Finished"
+msgstr "Dokončeno"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
+msgctxt "@label:status"
+msgid "Aborting..."
+msgstr "Ruším..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
+msgctxt "@label:status"
+msgid "Pausing..."
+msgstr "Pozastavuji..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
+msgctxt "@label:status"
+msgid "Paused"
+msgstr "Pozastaveno"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
+msgctxt "@label:status"
+msgid "Resuming..."
+msgstr "Obnovuji..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
+msgctxt "@label:status"
+msgid "Action required"
+msgstr "Akce vyžadována"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
+msgctxt "@label:status"
+msgid "Finishes %1 at %2"
+msgstr "Dokončuji %1 z %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
+msgctxt "@label"
+msgid "Queued"
+msgstr "Zařazeno do fronty"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
+msgctxt "@label link to connect manager"
+msgid "Manage in browser"
+msgstr "Spravovat v prohlížeči"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
+msgctxt "@label"
+msgid "There are no print jobs in the queue. Slice and send a job to add one."
+msgstr "Ve frontě nejsou žádné tiskové úlohy. Slicujte a odesláním úlohy jednu přidejte."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
+msgctxt "@label"
+msgid "Print jobs"
+msgstr "Tiskové úlohy"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
+msgctxt "@label"
+msgid "Total print time"
+msgstr "Celkový čas tisknutí"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
+msgctxt "@label"
+msgid "Waiting for"
+msgstr "Čekám na"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
+msgctxt "@title:window"
+msgid "Print over network"
+msgstr "Tisk přes síť"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
+msgctxt "@action:button"
+msgid "Print"
+msgstr "Tisk"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
+msgctxt "@label"
+msgid "Printer selection"
+msgstr "Výběr tiskárny"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
+msgctxt "@action:button"
+msgid "Sign in"
+msgstr "Přihlásit se"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64
msgctxt "@label"
msgid "Sign in to the Ultimaker platform"
msgstr "Přihlásit se do platformy Ultimaker"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:124
-msgctxt "@text"
-msgid "Add material settings and plugins from the Marketplace"
-msgstr "Přidat nastavení materiálů a moduly z Obchodu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:154
-msgctxt "@text"
-msgid "Backup and sync your material settings and plugins"
-msgstr "Zálohovat a synchronizovat nastavení materiálů a moduly"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:184
-msgctxt "@text"
-msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
-msgstr "Sdílejte nápady a získejte pomoc od více než 48 0000 uživatelů v Ultimaker komunitě"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:217
-msgctxt "@text"
-msgid "Create a free Ultimaker Account"
-msgstr "Vytvořit účet Ultimaker zdarma"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:230
-msgctxt "@button"
-msgid "Skip"
-msgstr "Přeskočit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
-msgctxt "@label"
-msgid "User Agreement"
-msgstr "Uživatelská dohoda"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
-msgctxt "@button"
-msgid "Decline and close"
-msgstr "Odmítnout a zavřít"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
-msgctxt "@label"
-msgid "Release Notes"
-msgstr "Poznámky k vydání"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
-msgctxt "@label"
-msgid "There is no printer found over your network."
-msgstr "Přes síť nebyla nalezena žádná tiskárna."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
-msgctxt "@label"
-msgid "Refresh"
-msgstr "Obnovit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
-msgctxt "@label"
-msgid "Add printer by IP"
-msgstr "Přidat tiskárnu podle IP"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
-msgctxt "@label"
-msgid "Add cloud printer"
-msgstr "Přidat cloudovou tiskárnu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
-msgctxt "@label"
-msgid "Troubleshooting"
-msgstr "Podpora při problémech"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
-msgctxt "@label"
-msgid "Manufacturer"
-msgstr "Výrobce"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
-msgctxt "@label"
-msgid "Profile author"
-msgstr "Autor profilu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
-msgctxt "@label"
-msgid "Printer name"
-msgstr "Název tiskárny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
-msgctxt "@text"
-msgid "Please name your printer"
-msgstr "Pojmenujte prosím svou tiskárnu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:81
-msgctxt "@label The argument is a timestamp"
-msgid "Last update: %1"
-msgstr "Poslední aktualizace: %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:109
-msgctxt "@button"
-msgid "Ultimaker Account"
-msgstr "Ultimaker Account"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:125
-msgctxt "@button"
-msgid "Sign Out"
-msgstr "Odhlásit se"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42
msgctxt "@text"
msgid ""
"- Add material profiles and plug-ins from the Marketplace\n"
@@ -4113,948 +3232,1926 @@ msgstr ""
"- Zálohujte a synchronizujte vaše materiálové profily and moduly\n"
"- Sdílejte nápady a získejte pomoc od více než 48 000 uživatelů v Ultimaker komunitě"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:62
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62
msgctxt "@button"
msgid "Create a free Ultimaker account"
msgstr "Vytvořit účet Ultimaker zdarma"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/AccountWidget.qml:24
-msgctxt "@action:button"
-msgid "Sign in"
-msgstr "Přihlásit se"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:28
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28
msgctxt "@label"
msgid "Checking..."
msgstr "Kontroluji..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:35
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35
msgctxt "@label"
msgid "Account synced"
msgstr "Účet byl synchronizován"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42
msgctxt "@label"
msgid "Something went wrong..."
msgstr "Nastala chyba..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:96
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96
msgctxt "@button"
msgid "Install pending updates"
msgstr "Nainstalujte čekající aktualizace"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:118
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118
msgctxt "@button"
msgid "Check for account updates"
msgstr "Zkontrolovat aktualizace pro účet"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectSelector.qml:59
-msgctxt "@label"
-msgid "Object list"
-msgstr "Seznam objektů"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81
+msgctxt "@label The argument is a timestamp"
+msgid "Last update: %1"
+msgstr "Poslední aktualizace: %1"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:82
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109
+msgctxt "@button"
+msgid "Ultimaker Account"
+msgstr "Ultimaker Account"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125
+msgctxt "@button"
+msgid "Sign Out"
+msgstr "Odhlásit se"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
+msgctxt "@label"
+msgid "No time estimation available"
+msgstr "Žádný odhad času není dostupný"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
+msgctxt "@label"
+msgid "No cost estimation available"
+msgstr "Žádná cena není dostupná"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
+msgctxt "@button"
+msgid "Preview"
+msgstr "Náhled"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
+msgctxt "@label"
+msgid "Time estimation"
+msgstr "Odhad času"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
+msgctxt "@label"
+msgid "Material estimation"
+msgstr "Odhad materiálu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
+msgctxt "@label m for meter"
+msgid "%1m"
+msgstr "%1m"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
+msgctxt "@label g for grams"
+msgid "%1g"
+msgstr "%1g"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
+msgctxt "@label:PrintjobStatus"
+msgid "Slicing..."
+msgstr "Slicuji..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
+msgctxt "@label:PrintjobStatus"
+msgid "Unable to slice"
+msgstr "Nelze slicovat"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Processing"
+msgstr "Zpracovává se"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Slice"
+msgstr "Slicovat"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
+msgctxt "@label"
+msgid "Start the slicing process"
+msgstr "Začít proces slicování"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
+msgctxt "@button"
+msgid "Cancel"
+msgstr "Zrušit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83
msgctxt "@action:inmenu"
msgid "Show Online Troubleshooting Guide"
msgstr "Zobrazit online průvodce řešením problémů"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:89
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90
msgctxt "@action:inmenu"
msgid "Toggle Full Screen"
msgstr "Přepnout zobrazení na celou obrazovku"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98
msgctxt "@action:inmenu"
msgid "Exit Full Screen"
msgstr "Ukončit zobrazení na celou obrazovku"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:104
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105
msgctxt "@action:inmenu menubar:edit"
msgid "&Undo"
msgstr "&Vrátit"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:114
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115
msgctxt "@action:inmenu menubar:edit"
msgid "&Redo"
msgstr "&Znovu"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:124
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125
msgctxt "@action:inmenu menubar:file"
msgid "&Quit"
msgstr "&Ukončit"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:132
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133
msgctxt "@action:inmenu menubar:view"
msgid "3D View"
msgstr "3D Pohled"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:139
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140
msgctxt "@action:inmenu menubar:view"
msgid "Front View"
msgstr "Přední pohled"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:146
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147
msgctxt "@action:inmenu menubar:view"
msgid "Top View"
msgstr "Pohled ze shora"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:153
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154
+msgctxt "@action:inmenu menubar:view"
+msgid "Bottom View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161
msgctxt "@action:inmenu menubar:view"
msgid "Left Side View"
msgstr "Pohled z pravé strany"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:160
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168
msgctxt "@action:inmenu menubar:view"
msgid "Right Side View"
msgstr "Pohled z pravé strany"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:167
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175
msgctxt "@action:inmenu"
msgid "Configure Cura..."
msgstr "Konfigurovat Cura..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:174
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182
msgctxt "@action:inmenu menubar:printer"
msgid "&Add Printer..."
msgstr "Přidat t&iskárnu..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:180
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188
msgctxt "@action:inmenu menubar:printer"
msgid "Manage Pr&inters..."
msgstr "Spravovat &tiskárny..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:187
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195
msgctxt "@action:inmenu"
msgid "Manage Materials..."
msgstr "Spravovat materiály..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:195
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203
msgctxt "@action:inmenu"
msgid "Add more materials from Marketplace"
msgstr "Přidat více materiálů z obchodu"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:202
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
msgctxt "@action:inmenu menubar:profile"
msgid "&Update profile with current settings/overrides"
msgstr "&Aktualizovat profil s aktuálními nastaveními/přepsáními"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:210
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218
msgctxt "@action:inmenu menubar:profile"
msgid "&Discard current changes"
msgstr "Smazat aktuální &změny"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:222
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230
msgctxt "@action:inmenu menubar:profile"
msgid "&Create profile from current settings/overrides..."
msgstr "&Vytvořit profil z aktuálního nastavení/přepsání."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:228
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236
msgctxt "@action:inmenu menubar:profile"
msgid "Manage Profiles..."
msgstr "Spravovat profily..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:236
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244
msgctxt "@action:inmenu menubar:help"
msgid "Show Online &Documentation"
msgstr "Zobrazit online &dokumentaci"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:244
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252
msgctxt "@action:inmenu menubar:help"
msgid "Report a &Bug"
msgstr "Nahlásit &chybu"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:252
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260
msgctxt "@action:inmenu menubar:help"
msgid "What's New"
msgstr "Co je nového"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:258
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266
msgctxt "@action:inmenu menubar:help"
msgid "About..."
msgstr "Více..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:265
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273
msgctxt "@action:inmenu menubar:edit"
msgid "Delete Selected"
msgstr "Smazat vybrané"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:275
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283
msgctxt "@action:inmenu menubar:edit"
msgid "Center Selected"
msgstr "Centrovat vybrané"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:284
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292
msgctxt "@action:inmenu menubar:edit"
msgid "Multiply Selected"
msgstr "Násobit vybrané"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:293
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301
msgctxt "@action:inmenu"
msgid "Delete Model"
msgstr "Odstranit model"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:301
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309
msgctxt "@action:inmenu"
msgid "Ce&nter Model on Platform"
msgstr "&Centerovat model na podložce"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:307
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315
msgctxt "@action:inmenu menubar:edit"
msgid "&Group Models"
msgstr "Sesk&upit modely"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:327
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335
msgctxt "@action:inmenu menubar:edit"
msgid "Ungroup Models"
msgstr "Rozdělit modely"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:337
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345
msgctxt "@action:inmenu menubar:edit"
msgid "&Merge Models"
msgstr "Spo&jit modely"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:347
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355
msgctxt "@action:inmenu"
msgid "&Multiply Model..."
msgstr "Náso&bení modelu..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:354
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362
msgctxt "@action:inmenu menubar:edit"
msgid "Select All Models"
msgstr "Vybrat všechny modely"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:364
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372
msgctxt "@action:inmenu menubar:edit"
msgid "Clear Build Plate"
msgstr "Vyčistit podložku"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:374
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382
msgctxt "@action:inmenu menubar:file"
msgid "Reload All Models"
msgstr "Znovu načíst všechny modely"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:383
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391
msgctxt "@action:inmenu menubar:edit"
msgid "Arrange All Models To All Build Plates"
msgstr "Uspořádejte všechny modely do všechpodložek"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:390
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398
msgctxt "@action:inmenu menubar:edit"
msgid "Arrange All Models"
msgstr "Uspořádat všechny modely"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:398
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406
msgctxt "@action:inmenu menubar:edit"
msgid "Arrange Selection"
msgstr "Uspořádat selekci"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:405
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413
msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Model Positions"
msgstr "Resetovat všechny pozice modelů"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:412
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420
msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Model Transformations"
msgstr "Resetovat všechny transformace modelů"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:421
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429
msgctxt "@action:inmenu menubar:file"
msgid "&Open File(s)..."
msgstr "&Otevřít soubor(y)..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:431
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439
msgctxt "@action:inmenu menubar:file"
msgid "&New Project..."
msgstr "&Nový projekt..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:438
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446
msgctxt "@action:inmenu menubar:help"
msgid "Show Configuration Folder"
msgstr "Zobrazit složku s konfigurací"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:445
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:538
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550
msgctxt "@action:menu"
msgid "Configure setting visibility..."
msgstr "Konfigurovat viditelnost nastavení..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:452
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460
msgctxt "@action:menu"
msgid "&Marketplace"
msgstr "Mark&et"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:61
-msgctxt "@info:status"
-msgid "Calculated"
-msgstr "Vypočítáno"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:75
-msgctxt "@title:column"
-msgid "Setting"
-msgstr "Nastavení"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:82
-msgctxt "@title:column"
-msgid "Profile"
-msgstr "Profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:89
-msgctxt "@title:column"
-msgid "Current"
-msgstr "Aktuální"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:97
-msgctxt "@title:column"
-msgid "Unit"
-msgstr "Jednotka"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
-msgctxt "@title"
-msgid "Information"
-msgstr "Informace"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
-msgctxt "@title:window"
-msgid "Confirm Diameter Change"
-msgstr "Potvrdit změnu průměru"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
-msgctxt "@label (%1 is a number)"
-msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
-msgstr "Nový průměr vlákna je nastaven na %1 mm, což není kompatibilní s aktuálním extrudérem. Přejete si pokračovat?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257
msgctxt "@label"
-msgid "Display Name"
-msgstr "Jméno"
+msgid "This package will be installed after restarting."
+msgstr "Tento balíček bude nainstalován po restartování."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
-msgctxt "@label"
-msgid "Material Type"
-msgstr "Typ materiálu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
-msgctxt "@label"
-msgid "Color"
-msgstr "Barva"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
-msgctxt "@label"
-msgid "Properties"
-msgstr "Vlastnosti"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
-msgctxt "@label"
-msgid "Density"
-msgstr "Husttoa"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
-msgctxt "@label"
-msgid "Diameter"
-msgstr "Průměr"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
-msgctxt "@label"
-msgid "Filament Cost"
-msgstr "Cena filamentu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
-msgctxt "@label"
-msgid "Filament weight"
-msgstr "Váha filamentu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
-msgctxt "@label"
-msgid "Filament length"
-msgstr "Délka filamentu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
-msgctxt "@label"
-msgid "Cost per Meter"
-msgstr "Cena za metr"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
-msgctxt "@label"
-msgid "This material is linked to %1 and shares some of its properties."
-msgstr "Tento materiál je propojen s %1 a sdílí některé jeho vlastnosti."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
-msgctxt "@label"
-msgid "Unlink Material"
-msgstr "Zrušit propojení s materiálem"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
-msgctxt "@label"
-msgid "Description"
-msgstr "Popis"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
-msgctxt "@label"
-msgid "Adhesion Information"
-msgstr "Informace o adhezi"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:40
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:84
-msgctxt "@action:button"
-msgid "Activate"
-msgstr "Aktivovat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
-msgctxt "@action:button"
-msgid "Create"
-msgstr "Vytvořit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
-msgctxt "@action:button"
-msgid "Duplicate"
-msgstr "Duplikovat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:167
-msgctxt "@action:button"
-msgid "Import"
-msgstr "Import"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:179
-msgctxt "@action:button"
-msgid "Export"
-msgstr "Export"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
-msgctxt "@action:label"
-msgid "Printer"
-msgstr "Tiskárna"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:277
-msgctxt "@title:window"
-msgid "Confirm Remove"
-msgstr "Potvrdit odstranění"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:278
-msgctxt "@label (%1 is object name)"
-msgid "Are you sure you wish to remove %1? This cannot be undone!"
-msgstr "Doopravdy chcete odstranit %1? Toto nelze vrátit zpět!"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
-msgctxt "@title:window"
-msgid "Import Material"
-msgstr "Importovat materiál"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
-msgctxt "@info:status Don't translate the XML tags or !"
-msgid "Could not import material %1: %2"
-msgstr "Nelze importovat materiál %1: %2"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully imported material %1"
-msgstr "Úspěšně importován materiál %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
-msgctxt "@title:window"
-msgid "Export Material"
-msgstr "Exportovat materiál"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
-msgctxt "@info:status Don't translate the XML tags and !"
-msgid "Failed to export material to %1: %2"
-msgstr "Neúspěch při exportu materiálu do %1: %2"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully exported material to %1"
-msgstr "Úspěšné exportování materiálu do %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:16
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:455
-msgctxt "@title:tab"
-msgid "Printers"
-msgstr "Tiskárny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:63
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:152
-msgctxt "@action:button"
-msgid "Rename"
-msgstr "Přejmenovat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:34
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:459
-msgctxt "@title:tab"
-msgid "Profiles"
-msgstr "Profily"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:104
-msgctxt "@label"
-msgid "Create"
-msgstr "Vytvořit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:121
-msgctxt "@label"
-msgid "Duplicate"
-msgstr "Duplikovat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:202
-msgctxt "@title:window"
-msgid "Create Profile"
-msgstr "Vytvořit profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:204
-msgctxt "@info"
-msgid "Please provide a name for this profile."
-msgstr "Prosím uveďte jméno pro tento profil."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:263
-msgctxt "@title:window"
-msgid "Duplicate Profile"
-msgstr "Duplikovat profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:294
-msgctxt "@title:window"
-msgid "Rename Profile"
-msgstr "Přejmenovat profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:307
-msgctxt "@title:window"
-msgid "Import Profile"
-msgstr "Importovat profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:336
-msgctxt "@title:window"
-msgid "Export Profile"
-msgstr "Exportovat profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:399
-msgctxt "@label %1 is printer name"
-msgid "Printer: %1"
-msgstr "Tiskárna: %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:557
-msgctxt "@action:button"
-msgid "Update profile with current settings/overrides"
-msgstr "Aktualizovat profil s aktuálním nastavení/přepsánímy"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:583
-msgctxt "@action:label"
-msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
-msgstr "Tento profil používá výchozí nastavení zadaná tiskárnou, takže nemá žádná nastavení / přepíše v níže uvedeném seznamu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:591
-msgctxt "@action:label"
-msgid "Your current settings match the selected profile."
-msgstr "Vaše aktuální nastavení odpovídá vybranému profilu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:609
-msgctxt "@title:tab"
-msgid "Global Settings"
-msgstr "Globální nastavení"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
-msgctxt "@title:tab"
-msgid "Setting Visibility"
-msgstr "Nastavení zobrazení"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
-msgctxt "@label:textbox"
-msgid "Check all"
-msgstr "Zkontrolovat vše"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:15
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:450
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17
msgctxt "@title:tab"
msgid "General"
msgstr "Obecné"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:137
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453
+msgctxt "@title:tab"
+msgid "Settings"
+msgstr "Nastavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
+msgctxt "@title:tab"
+msgid "Printers"
+msgstr "Tiskárny"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
+msgctxt "@title:tab"
+msgid "Profiles"
+msgstr "Profily"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576
+msgctxt "@title:window %1 is the application name"
+msgid "Closing %1"
+msgstr "Zavírám %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589
+msgctxt "@label %1 is the application name"
+msgid "Are you sure you want to exit %1?"
+msgstr "Doopravdy chcete zavřít %1?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
+msgctxt "@title:window"
+msgid "Open file(s)"
+msgstr "Otevřít soubor(y)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737
+msgctxt "@window:title"
+msgid "Install Package"
+msgstr "Nainstalovat balíček"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745
+msgctxt "@title:window"
+msgid "Open File(s)"
+msgstr "Otevřít Soubor(y)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748
+msgctxt "@text:window"
+msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
+msgstr "Ve vybraných souborech jsme našli jeden nebo více souborů G-kódu. Naraz můžete otevřít pouze jeden soubor G-kódu. Pokud chcete otevřít soubor G-Code, vyberte pouze jeden."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857
+msgctxt "@title:window"
+msgid "Add Printer"
+msgstr "Přidat tiskárnu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865
+msgctxt "@title:window"
+msgid "What's New"
+msgstr "Co je nového"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
+msgctxt "@title:window The argument is the application name."
+msgid "About %1"
+msgstr "O %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
msgctxt "@label"
-msgid "Interface"
-msgstr "Rozhranní"
+msgid "version: %1"
+msgstr "verze: %1"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:216
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
msgctxt "@label"
-msgid "Currency:"
-msgstr "Měna:"
+msgid "End-to-end solution for fused filament 3D printing."
+msgstr "Komplexní řešení pro 3D tisk z taveného filamentu."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:229
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
+msgctxt "@info:credit"
+msgid ""
+"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
+"Cura proudly uses the following open source projects:"
+msgstr ""
+"Cura vyvíjí Ultimaker B.V. ve spolupráci s komunitou.\n"
+"Cura hrdě používá následující open source projekty:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
msgctxt "@label"
-msgid "Theme:"
-msgstr "Styl:"
+msgid "Graphical user interface"
+msgstr "Grafické uživatelské prostředí"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:285
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
msgctxt "@label"
-msgid "You will need to restart the application for these changes to have effect."
-msgstr "Aby se tyto změny projevily, budete muset aplikaci restartovat."
+msgid "Application framework"
+msgstr "Aplikační framework"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:302
-msgctxt "@info:tooltip"
-msgid "Slice automatically when changing settings."
-msgstr "Slicovat automaticky při změně nastavení."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:310
-msgctxt "@option:check"
-msgid "Slice automatically"
-msgstr "Slicovat automaticky"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:324
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
msgctxt "@label"
-msgid "Viewport behavior"
-msgstr "Chování výřezu"
+msgid "G-code generator"
+msgstr "Generátor G kódu"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:332
-msgctxt "@info:tooltip"
-msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
-msgstr "Zvýraznit červeně místa modelu bez podpor. Bez podpor tyto místa nebudou správně vytisknuta."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
+msgctxt "@label"
+msgid "Interprocess communication library"
+msgstr "Meziprocesní komunikační knihovna"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:341
-msgctxt "@option:check"
-msgid "Display overhang"
-msgstr "Zobrazit převis"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
+msgctxt "@label"
+msgid "Programming language"
+msgstr "Programovací jazyk"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:351
-msgctxt "@info:tooltip"
-msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
-msgstr "Zvýraznit chybějící nebo vedlejší povrchy modelu pomocí varovných značek. Dráhám nástrojů budou často chybět části zamýšlené geometrie."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
+msgctxt "@label"
+msgid "GUI framework"
+msgstr "GUI framework"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:360
-msgctxt "@option:check"
-msgid "Display model errors"
-msgstr "Zobrazovat chyby modelu"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
+msgctxt "@label"
+msgid "GUI framework bindings"
+msgstr "Propojení GUI frameworku"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:368
-msgctxt "@info:tooltip"
-msgid "Moves the camera so the model is in the center of the view when a model is selected"
-msgstr "Při výběru modelu pohybuje kamerou tak, aby byl model ve středu pohledu"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
+msgctxt "@label"
+msgid "C/C++ Binding library"
+msgstr "Binding knihovna C/C++"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:373
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
+msgctxt "@label"
+msgid "Data interchange format"
+msgstr "Formát výměny dat"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
+msgctxt "@label"
+msgid "Support library for scientific computing"
+msgstr "Podpůrná knihovna pro vědecké výpočty"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
+msgctxt "@label"
+msgid "Support library for faster math"
+msgstr "Podpůrný knihovna pro rychlejší matematické výpočty"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
+msgctxt "@label"
+msgid "Support library for handling STL files"
+msgstr "Podpůrná knihovna pro práci se soubory STL"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
+msgctxt "@label"
+msgid "Support library for handling planar objects"
+msgstr "Podpůrná knihovna pro manipulaci s planárními objekty"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
+msgctxt "@label"
+msgid "Support library for handling triangular meshes"
+msgstr "Podpůrná knihovna pro manipulaci s trojúhelníkovými sítěmi"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
+msgctxt "@label"
+msgid "Support library for handling 3MF files"
+msgstr "Podpůrná knihovna pro manipulaci s 3MF soubory"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
+msgctxt "@label"
+msgid "Support library for file metadata and streaming"
+msgstr "Podpůrná knihovna pro metadata souborů a streaming"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
+msgctxt "@label"
+msgid "Serial communication library"
+msgstr "Knihovna pro sériovou komunikaci"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
+msgctxt "@label"
+msgid "ZeroConf discovery library"
+msgstr "Knihovna ZeroConf discovery"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
+msgctxt "@label"
+msgid "Polygon clipping library"
+msgstr "Knihovna pro výstřižky z mnohoúhelníků"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
+msgctxt "@Label"
+msgid "Static type checker for Python"
+msgstr "Kontrola statických typů pro Python"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
+msgctxt "@Label"
+msgid "Root Certificates for validating SSL trustworthiness"
+msgstr "Základní certifikáty pro validaci důvěryhodnosti SSL"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
+msgctxt "@Label"
+msgid "Python Error tracking library"
+msgstr "Chyba v Python trackovací knihovně"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
+msgctxt "@label"
+msgid "Polygon packing library, developed by Prusa Research"
+msgstr "Knihovna pro plošnou optimalizaci vyvinutá Prusa Research"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
+msgctxt "@label"
+msgid "Python bindings for libnest2d"
+msgstr "Propojení libnest2d s jazykem Python"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161
+msgctxt "@label"
+msgid "Support library for system keyring access"
+msgstr "Podpůrná knihovna pro přístup k systémové klíčence"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162
+msgctxt "@label"
+msgid "Python extensions for Microsoft Windows"
+msgstr "Python rozšíření pro Microsoft Windows"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163
+msgctxt "@label"
+msgid "Font"
+msgstr "Font"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164
+msgctxt "@label"
+msgid "SVG icons"
+msgstr "Ikony SVG"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165
+msgctxt "@label"
+msgid "Linux cross-distribution application deployment"
+msgstr "Linux cross-distribution application deployment"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
+msgctxt "@title:window"
+msgid "Open project file"
+msgstr "Otevřít soubor s projektem"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
+msgctxt "@text:window"
+msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
+msgstr "Toto je soubor projektu Cura. Chcete jej otevřít jako projekt nebo importovat z něj modely?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
+msgctxt "@text:window"
+msgid "Remember my choice"
+msgstr "Pamatuj si moji volbu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
msgctxt "@action:button"
-msgid "Center camera when item is selected"
-msgstr "Vycentrovat kameru pokud je vybrána položka"
+msgid "Open as project"
+msgstr "Otevřít jako projekt"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:383
-msgctxt "@info:tooltip"
-msgid "Should the default zoom behavior of cura be inverted?"
-msgstr "Mělo by být výchozí chování přiblížení u cury invertováno?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:388
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
msgctxt "@action:button"
-msgid "Invert the direction of camera zoom."
-msgstr "Obrátit směr přibližování kamery."
+msgid "Import models"
+msgstr "Importovat modely"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid "Should zooming move in the direction of the mouse?"
-msgstr "Mělo by se přibližování pohybovat ve směru myši?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
+msgctxt "@title:window"
+msgid "Discard or Keep changes"
+msgstr "Smazat nebo nechat změny"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid "Zooming towards the mouse is not supported in the orthographic perspective."
-msgstr "V pravoúhlé perspektivě není podporováno přiblížení směrem k myši."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
+msgctxt "@text:window, %1 is a profile name"
+msgid ""
+"You have customized some profile settings.\n"
+"Would you like to Keep these changed settings after switching profiles?\n"
+"Alternatively, you can discard the changes to load the defaults from '%1'."
+msgstr ""
+"Upravili jste některá nastavení profilu.\n"
+"Chcete tato změněná nastavení zachovat i po přepnutí profilů?\n"
+"V opačném případě můžete změny smazat a načíst výchozí hodnoty z '%1'."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:409
-msgctxt "@action:button"
-msgid "Zoom toward mouse direction"
-msgstr "Přiblížit směrem k směru myši"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
+msgctxt "@title:column"
+msgid "Profile settings"
+msgstr "Nastavení profilu"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:435
-msgctxt "@info:tooltip"
-msgid "Should models on the platform be moved so that they no longer intersect?"
-msgstr "Měly by se modely na platformě pohybovat tak, aby se již neprotínaly?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
+msgctxt "@title:column"
+msgid "Current changes"
+msgstr "Aktuální změny"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:440
-msgctxt "@option:check"
-msgid "Ensure models are kept apart"
-msgstr "Zajistěte, aby modely byly odděleny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:449
-msgctxt "@info:tooltip"
-msgid "Should models on the platform be moved down to touch the build plate?"
-msgstr "Měly by být modely na platformě posunuty dolů tak, aby se dotýkaly podložky?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:454
-msgctxt "@option:check"
-msgid "Automatically drop models to the build plate"
-msgstr "Automaticky přetáhnout modely na podložku"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:466
-msgctxt "@info:tooltip"
-msgid "Show caution message in g-code reader."
-msgstr "Zobrazte v čtečce g-kódu varovnou zprávu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:475
-msgctxt "@option:check"
-msgid "Caution message in g-code reader"
-msgstr "Upozornění ve čtečce G-kódu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:483
-msgctxt "@info:tooltip"
-msgid "Should layer be forced into compatibility mode?"
-msgstr "Měla by být vrstva vynucena do režimu kompatibility?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:488
-msgctxt "@option:check"
-msgid "Force layer view compatibility mode (restart required)"
-msgstr "Vynutit režim kompatibility zobrazení vrstev (vyžaduje restart)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:498
-msgctxt "@info:tooltip"
-msgid "Should Cura open at the location it was closed?"
-msgstr "Měla by se Cura otevřít v místě, kde byla uzavřena?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:503
-msgctxt "@option:check"
-msgid "Restore window position on start"
-msgstr "Při zapnutí obnovit pozici okna"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:513
-msgctxt "@info:tooltip"
-msgid "What type of camera rendering should be used?"
-msgstr "Jaký typ kamery by se měl použít?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:520
-msgctxt "@window:text"
-msgid "Camera rendering:"
-msgstr "Vykreslování kamery:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:531
-msgid "Perspective"
-msgstr "Perspektiva"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:532
-msgid "Orthographic"
-msgstr "Ortografický"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:563
-msgctxt "@label"
-msgid "Opening and saving files"
-msgstr "Otevírám a ukládám soubory"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:570
-msgctxt "@info:tooltip"
-msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
-msgstr "Měli by se soubory z plochy, nebo externích aplikací otevírat ve stejné instanci Cury?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:575
-msgctxt "@option:check"
-msgid "Use a single instance of Cura"
-msgstr "Používat pouze jednu instanci programu Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:585
-msgctxt "@info:tooltip"
-msgid "Should models be scaled to the build volume if they are too large?"
-msgstr "Měly by být modely upraveny na velikost podložky, pokud jsou příliš velké?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:590
-msgctxt "@option:check"
-msgid "Scale large models"
-msgstr "Škálovat velké modely"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:600
-msgctxt "@info:tooltip"
-msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
-msgstr "Model se může jevit velmi malý, pokud je jeho jednotka například v metrech, nikoli v milimetrech. Měly by být tyto modely škálovány?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:605
-msgctxt "@option:check"
-msgid "Scale extremely small models"
-msgstr "Škálovat extrémně malé modely"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:615
-msgctxt "@info:tooltip"
-msgid "Should models be selected after they are loaded?"
-msgstr "Měly by být modely vybrány po načtení?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:620
-msgctxt "@option:check"
-msgid "Select models when loaded"
-msgstr "Vybrat modely po načtení"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:630
-msgctxt "@info:tooltip"
-msgid "Should a prefix based on the printer name be added to the print job name automatically?"
-msgstr "Je třeba k názvu tiskové úlohy přidat předponu založenou na názvu tiskárny automaticky?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:635
-msgctxt "@option:check"
-msgid "Add machine prefix to job name"
-msgstr "Přidat předponu zařízení před název úlohy"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:645
-msgctxt "@info:tooltip"
-msgid "Should a summary be shown when saving a project file?"
-msgstr "Mělo by se při ukládání souboru projektu zobrazit souhrn?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:649
-msgctxt "@option:check"
-msgid "Show summary dialog when saving project"
-msgstr "Zobrazit souhrnný dialog při ukládání projektu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:659
-msgctxt "@info:tooltip"
-msgid "Default behavior when opening a project file"
-msgstr "Výchozí chování při otevírání souboru"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:667
-msgctxt "@window:text"
-msgid "Default behavior when opening a project file: "
-msgstr "Výchozí chování při otevření souboru s projektem: "
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:681
-msgctxt "@option:openProject"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733
+msgctxt "@option:discardOrKeep"
msgid "Always ask me this"
msgstr "Vždy se zeptat"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:682
-msgctxt "@option:openProject"
-msgid "Always open as a project"
-msgstr "Vždy otevírat jako projekt"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:683
-msgctxt "@option:openProject"
-msgid "Always import models"
-msgstr "Vždy importovat modely"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:719
-msgctxt "@info:tooltip"
-msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
-msgstr "Pokud jste provedli změny v profilu a přepnuli na jiný, zobrazí se dialogové okno s dotazem, zda si přejete zachovat své modifikace nebo ne, nebo si můžete zvolit výchozí chování a už nikdy toto dialogové okno nezobrazovat."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:733
-msgctxt "@window:text"
-msgid "Default behavior for changed setting values when switching to a different profile: "
-msgstr "Výchozí chování pro změněné hodnoty nastavení při přepnutí na jiný profil: "
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:748
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
msgctxt "@option:discardOrKeep"
-msgid "Always discard changed settings"
-msgstr "Vždy smazat změněné nastavení"
+msgid "Discard and never ask again"
+msgstr "Smazat a už se nikdy neptat"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:749
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
msgctxt "@option:discardOrKeep"
-msgid "Always transfer changed settings to new profile"
-msgstr "Vždy přesunout nastavení do nového profilu"
+msgid "Keep and never ask again"
+msgstr "Nechat a už se nikdy neptat"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:783
-msgctxt "@label"
-msgid "Privacy"
-msgstr "Soukromí"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:790
-msgctxt "@info:tooltip"
-msgid "Should Cura check for updates when the program is started?"
-msgstr "Měla by Cura zkontrolovat aktualizace při spuštění programu?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:795
-msgctxt "@option:check"
-msgid "Check for updates on start"
-msgstr "Zkontrolovat aktualizace při zapnutí"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:805
-msgctxt "@info:tooltip"
-msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
-msgstr "Měla by být anonymní data o vašem tisku zaslána společnosti Ultimaker? Upozorňujeme, že nejsou odesílány ani ukládány žádné modely, adresy IP ani jiné osobní údaje."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:810
-msgctxt "@option:check"
-msgid "Send (anonymous) print information"
-msgstr "Posílat (anonymní) informace o tisku"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:819
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
msgctxt "@action:button"
-msgid "More information"
-msgstr "Více informací"
+msgid "Discard changes"
+msgstr "Smazat změny"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewsSelector.qml:50
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
+msgctxt "@action:button"
+msgid "Keep changes"
+msgstr "Zanechat změny"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
+msgctxt "@text:window"
+msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
+msgstr "Ve vybraných souborech jsme našli jeden nebo více projektových souborů. Naraz můžete otevřít pouze jeden soubor projektu. Doporučujeme importovat pouze modely z těchto souborů. Chtěli byste pokračovat?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
+msgctxt "@action:button"
+msgid "Import all as models"
+msgstr "Importovat vše jako modely"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
+msgctxt "@title:window"
+msgid "Save Project"
+msgstr "Uložit projekt"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
+msgctxt "@action:label"
+msgid "Extruder %1"
+msgstr "Extruder %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
+msgctxt "@action:label"
+msgid "%1 & material"
+msgstr "%1 & materiál"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
+msgctxt "@action:label"
+msgid "Material"
+msgstr "Materiál"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
+msgctxt "@action:label"
+msgid "Don't show project summary on save again"
+msgstr "Nezobrazovat souhrn projektu při uložení znovu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
+msgctxt "@action:button"
+msgid "Save"
+msgstr "Uložit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
+msgctxt "@label %1 is filled in with the name of an extruder"
+msgid "Print Selected Model with %1"
+msgid_plural "Print Selected Models with %1"
+msgstr[0] "Tisknout vybraný model pomocí %1"
+msgstr[1] "Tisknout vybraný model pomocí %1"
+msgstr[2] "Tisknout vybraný model pomocí %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
+msgctxt "@text Print job name"
+msgid "Untitled"
+msgstr "Bez názvu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
+msgctxt "@title:menu menubar:toplevel"
+msgid "&File"
+msgstr "&Soubor"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Edit"
+msgstr "Upr&avit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
+msgctxt "@title:menu menubar:toplevel"
+msgid "&View"
+msgstr "Po&hled"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Settings"
+msgstr "Nasta&vení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
+msgctxt "@title:menu menubar:toplevel"
+msgid "E&xtensions"
+msgstr "D&oplňky"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
+msgctxt "@title:menu menubar:toplevel"
+msgid "P&references"
+msgstr "P&reference"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Help"
+msgstr "Po&moc"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
+msgctxt "@title:window"
+msgid "New project"
+msgstr "Nový projekt"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
+msgctxt "@info:question"
+msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
+msgstr "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
+msgctxt "@action:button"
+msgid "Marketplace"
+msgstr "Obchod"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
+msgctxt "@header"
+msgid "Configurations"
+msgstr "Konfigurace"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
msgctxt "@label"
-msgid "View type"
-msgstr "Typ pohledu"
+msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
+msgstr "Tato konfigurace není k dispozici, protože %1 nebyl rozpoznán. Navštivte prosím %2 a stáhněte si správný materiálový profil."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:119
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
+msgctxt "@label"
+msgid "Marketplace"
+msgstr "Obchod"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
+msgctxt "@label"
+msgid "Loading available configurations from the printer..."
+msgstr "Načítání dostupných konfigurací z tiskárny ..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
+msgctxt "@label"
+msgid "The configurations are not available because the printer is disconnected."
+msgstr "Konfigurace nejsou k dispozici, protože je tiskárna odpojena."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
+msgctxt "@label"
+msgid "Select configuration"
+msgstr "Vybrat konfiguraci"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
+msgctxt "@label"
+msgid "Configurations"
+msgstr "Konfigurace"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
+msgctxt "@header"
+msgid "Custom"
+msgstr "Vlastní"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
+msgctxt "@label"
+msgid "Printer"
+msgstr "Tiskárna"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
+msgctxt "@label"
+msgid "Enabled"
+msgstr "Povoleno"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
+msgctxt "@label"
+msgid "Material"
+msgstr "Materiál"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407
+msgctxt "@label"
+msgid "Use glue for better adhesion with this material combination."
+msgstr "S touto kombinací materiálu pro lepší adhezi použijte lepidlo."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
+msgctxt "@label"
+msgid "Print Selected Model With:"
+msgid_plural "Print Selected Models With:"
+msgstr[0] "Tisknout vybraný model pomocí:"
+msgstr[1] "Tisknout vybrané modely pomocí:"
+msgstr[2] "Tisknout vybrané modely pomocí:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
+msgctxt "@title:window"
+msgid "Multiply Selected Model"
+msgid_plural "Multiply Selected Models"
+msgstr[0] "Násobit vybraný model"
+msgstr[1] "Násobit vybrané modele"
+msgstr[2] "Násobit vybrané modele"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
+msgctxt "@label"
+msgid "Number of Copies"
+msgstr "Počet kopií"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41
+msgctxt "@title:menu menubar:file"
+msgid "&Save Project..."
+msgstr "&Uložit projekt..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74
+msgctxt "@title:menu menubar:file"
+msgid "&Export..."
+msgstr "&Exportovat..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85
+msgctxt "@action:inmenu menubar:file"
+msgid "Export Selection..."
+msgstr "Výběr exportu..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
+msgctxt "@label:category menu label"
+msgid "Material"
+msgstr "Materiál"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
+msgctxt "@label:category menu label"
+msgid "Favorites"
+msgstr "Oblíbené"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
+msgctxt "@label:category menu label"
+msgid "Generic"
+msgstr "Obecné"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Open File(s)..."
+msgstr "Otevřít soubor(y)..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
+msgctxt "@label:category menu label"
+msgid "Network enabled printers"
+msgstr "Tiskárny s povolenou sítí"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
+msgctxt "@label:category menu label"
+msgid "Local printers"
+msgstr "Lokální tiskárny"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Open &Recent"
+msgstr "Otevřít &Poslední"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Save Project..."
+msgstr "Uložit projekt..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
+msgctxt "@title:menu menubar:settings"
+msgid "&Printer"
+msgstr "&Tiskárna"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29
+msgctxt "@title:menu"
+msgid "&Material"
+msgstr "&Materiál"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44
+msgctxt "@action:inmenu"
+msgid "Set as Active Extruder"
+msgstr "Nastavit jako aktivní extruder"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50
+msgctxt "@action:inmenu"
+msgid "Enable Extruder"
+msgstr "Povolit extuder"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57
+msgctxt "@action:inmenu"
+msgid "Disable Extruder"
+msgstr "Zakázat Extruder"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
+msgctxt "@action:inmenu"
+msgid "Visible Settings"
+msgstr "Viditelná nastavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
+msgctxt "@action:inmenu"
+msgid "Collapse All Categories"
+msgstr "Sbalit všechny kategorie"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
+msgctxt "@action:inmenu"
+msgid "Manage Setting Visibility..."
+msgstr "Spravovat nastavení viditelnosti ..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
+msgctxt "@action:inmenu menubar:view"
+msgid "&Camera position"
+msgstr "Pozice &kamery"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45
+msgctxt "@action:inmenu menubar:view"
+msgid "Camera view"
+msgstr "Pohled kamery"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48
+msgctxt "@action:inmenu menubar:view"
+msgid "Perspective"
+msgstr "Perspektiva"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60
+msgctxt "@action:inmenu menubar:view"
+msgid "Orthographic"
+msgstr "Ortografický"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81
+msgctxt "@action:inmenu menubar:view"
+msgid "&Build plate"
+msgstr "Pod&ložka"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
msgctxt "@label:MonitorStatus"
msgid "Not connected to a printer"
msgstr "Nepřipojen k tiskárně"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
msgctxt "@label:MonitorStatus"
msgid "Printer does not accept commands"
msgstr "Tiskárna nepřijímá příkazy"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:133
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
msgctxt "@label:MonitorStatus"
msgid "In maintenance. Please check the printer"
msgstr "V údržbě. Prosím zkontrolujte tiskíárnu"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:144
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
msgctxt "@label:MonitorStatus"
msgid "Lost connection with the printer"
msgstr "Ztráta spojení s tiskárnou"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:146
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
msgctxt "@label:MonitorStatus"
msgid "Printing..."
msgstr "Tisknu..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:149
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
msgctxt "@label:MonitorStatus"
msgid "Paused"
msgstr "Pozastaveno"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:152
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
msgctxt "@label:MonitorStatus"
msgid "Preparing..."
msgstr "Připravuji..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:154
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
msgctxt "@label:MonitorStatus"
msgid "Please remove the print"
msgstr "Prosím odstraňte výtisk"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:326
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326
msgctxt "@label"
msgid "Abort Print"
msgstr "Zrušit tisk"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:338
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338
msgctxt "@label"
msgid "Are you sure you want to abort the print?"
msgstr "Jste si jist, že chcete zrušit tisknutí?"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:68
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114
+msgctxt "@label"
+msgid "Is printed as support."
+msgstr "Je tisknuto jako podpora."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117
+msgctxt "@label"
+msgid "Other models overlapping with this model are modified."
+msgstr "Ostatní modely překrývající se s tímto modelem jsou upraveny."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120
+msgctxt "@label"
+msgid "Infill overlapping with this model is modified."
+msgstr "Výplň překrývající se s tímto modelem byla modifikována."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123
+msgctxt "@label"
+msgid "Overlaps with this model are not supported."
+msgstr "Přesahy na tomto modelu nejsou podporovány."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130
+msgctxt "@label %1 is the number of settings it overrides."
+msgid "Overrides %1 setting."
+msgid_plural "Overrides %1 settings."
+msgstr[0] "Přepíše %1 nastavení."
+msgstr[1] "Přepíše %1 nastavení."
+msgstr[2] "Přepíše %1 nastavení."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
+msgctxt "@label"
+msgid "Object list"
+msgstr "Seznam objektů"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137
+msgctxt "@label"
+msgid "Interface"
+msgstr "Rozhranní"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209
+msgctxt "@label"
+msgid "Currency:"
+msgstr "Měna:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222
+msgctxt "@label"
+msgid "Theme:"
+msgstr "Styl:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267
+msgctxt "@label"
+msgid "You will need to restart the application for these changes to have effect."
+msgstr "Aby se tyto změny projevily, budete muset aplikaci restartovat."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284
+msgctxt "@info:tooltip"
+msgid "Slice automatically when changing settings."
+msgstr "Slicovat automaticky při změně nastavení."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292
+msgctxt "@option:check"
+msgid "Slice automatically"
+msgstr "Slicovat automaticky"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306
+msgctxt "@label"
+msgid "Viewport behavior"
+msgstr "Chování výřezu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314
+msgctxt "@info:tooltip"
+msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
+msgstr "Zvýraznit červeně místa modelu bez podpor. Bez podpor tyto místa nebudou správně vytisknuta."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323
+msgctxt "@option:check"
+msgid "Display overhang"
+msgstr "Zobrazit převis"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333
+msgctxt "@info:tooltip"
+msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
+msgstr "Zvýraznit chybějící nebo vedlejší povrchy modelu pomocí varovných značek. Dráhám nástrojů budou často chybět části zamýšlené geometrie."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342
+msgctxt "@option:check"
+msgid "Display model errors"
+msgstr "Zobrazovat chyby modelu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350
+msgctxt "@info:tooltip"
+msgid "Moves the camera so the model is in the center of the view when a model is selected"
+msgstr "Při výběru modelu pohybuje kamerou tak, aby byl model ve středu pohledu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355
+msgctxt "@action:button"
+msgid "Center camera when item is selected"
+msgstr "Vycentrovat kameru pokud je vybrána položka"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365
+msgctxt "@info:tooltip"
+msgid "Should the default zoom behavior of cura be inverted?"
+msgstr "Mělo by být výchozí chování přiblížení u cury invertováno?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370
+msgctxt "@action:button"
+msgid "Invert the direction of camera zoom."
+msgstr "Obrátit směr přibližování kamery."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid "Should zooming move in the direction of the mouse?"
+msgstr "Mělo by se přibližování pohybovat ve směru myši?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid "Zooming towards the mouse is not supported in the orthographic perspective."
+msgstr "V pravoúhlé perspektivě není podporováno přiblížení směrem k myši."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391
+msgctxt "@action:button"
+msgid "Zoom toward mouse direction"
+msgstr "Přiblížit směrem k směru myši"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417
+msgctxt "@info:tooltip"
+msgid "Should models on the platform be moved so that they no longer intersect?"
+msgstr "Měly by se modely na platformě pohybovat tak, aby se již neprotínaly?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422
+msgctxt "@option:check"
+msgid "Ensure models are kept apart"
+msgstr "Zajistěte, aby modely byly odděleny"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431
+msgctxt "@info:tooltip"
+msgid "Should models on the platform be moved down to touch the build plate?"
+msgstr "Měly by být modely na platformě posunuty dolů tak, aby se dotýkaly podložky?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436
+msgctxt "@option:check"
+msgid "Automatically drop models to the build plate"
+msgstr "Automaticky přetáhnout modely na podložku"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448
+msgctxt "@info:tooltip"
+msgid "Show caution message in g-code reader."
+msgstr "Zobrazte v čtečce g-kódu varovnou zprávu."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457
+msgctxt "@option:check"
+msgid "Caution message in g-code reader"
+msgstr "Upozornění ve čtečce G-kódu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465
+msgctxt "@info:tooltip"
+msgid "Should layer be forced into compatibility mode?"
+msgstr "Měla by být vrstva vynucena do režimu kompatibility?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470
+msgctxt "@option:check"
+msgid "Force layer view compatibility mode (restart required)"
+msgstr "Vynutit režim kompatibility zobrazení vrstev (vyžaduje restart)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480
+msgctxt "@info:tooltip"
+msgid "Should Cura open at the location it was closed?"
+msgstr "Měla by se Cura otevřít v místě, kde byla uzavřena?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485
+msgctxt "@option:check"
+msgid "Restore window position on start"
+msgstr "Při zapnutí obnovit pozici okna"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495
+msgctxt "@info:tooltip"
+msgid "What type of camera rendering should be used?"
+msgstr "Jaký typ kamery by se měl použít?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502
+msgctxt "@window:text"
+msgid "Camera rendering:"
+msgstr "Vykreslování kamery:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509
+msgid "Perspective"
+msgstr "Perspektiva"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510
+msgid "Orthographic"
+msgstr "Ortografický"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548
+msgctxt "@label"
+msgid "Opening and saving files"
+msgstr "Otevírám a ukládám soubory"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555
+msgctxt "@info:tooltip"
+msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
+msgstr "Měli by se soubory z plochy, nebo externích aplikací otevírat ve stejné instanci Cury?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560
+msgctxt "@option:check"
+msgid "Use a single instance of Cura"
+msgstr "Používat pouze jednu instanci programu Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570
+msgctxt "@info:tooltip"
+msgid "Should models be scaled to the build volume if they are too large?"
+msgstr "Měly by být modely upraveny na velikost podložky, pokud jsou příliš velké?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
+msgctxt "@option:check"
+msgid "Scale large models"
+msgstr "Škálovat velké modely"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585
+msgctxt "@info:tooltip"
+msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
+msgstr "Model se může jevit velmi malý, pokud je jeho jednotka například v metrech, nikoli v milimetrech. Měly by být tyto modely škálovány?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
+msgctxt "@option:check"
+msgid "Scale extremely small models"
+msgstr "Škálovat extrémně malé modely"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600
+msgctxt "@info:tooltip"
+msgid "Should models be selected after they are loaded?"
+msgstr "Měly by být modely vybrány po načtení?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605
+msgctxt "@option:check"
+msgid "Select models when loaded"
+msgstr "Vybrat modely po načtení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615
+msgctxt "@info:tooltip"
+msgid "Should a prefix based on the printer name be added to the print job name automatically?"
+msgstr "Je třeba k názvu tiskové úlohy přidat předponu založenou na názvu tiskárny automaticky?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
+msgctxt "@option:check"
+msgid "Add machine prefix to job name"
+msgstr "Přidat předponu zařízení před název úlohy"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630
+msgctxt "@info:tooltip"
+msgid "Should a summary be shown when saving a project file?"
+msgstr "Mělo by se při ukládání souboru projektu zobrazit souhrn?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634
+msgctxt "@option:check"
+msgid "Show summary dialog when saving project"
+msgstr "Zobrazit souhrnný dialog při ukládání projektu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644
+msgctxt "@info:tooltip"
+msgid "Default behavior when opening a project file"
+msgstr "Výchozí chování při otevírání souboru"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652
+msgctxt "@window:text"
+msgid "Default behavior when opening a project file: "
+msgstr "Výchozí chování při otevření souboru s projektem: "
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666
+msgctxt "@option:openProject"
+msgid "Always ask me this"
+msgstr "Vždy se zeptat"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667
+msgctxt "@option:openProject"
+msgid "Always open as a project"
+msgstr "Vždy otevírat jako projekt"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668
+msgctxt "@option:openProject"
+msgid "Always import models"
+msgstr "Vždy importovat modely"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705
+msgctxt "@info:tooltip"
+msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
+msgstr "Pokud jste provedli změny v profilu a přepnuli na jiný, zobrazí se dialogové okno s dotazem, zda si přejete zachovat své modifikace nebo ne, nebo si můžete zvolit výchozí chování a už nikdy toto dialogové okno nezobrazovat."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
+msgctxt "@label"
+msgid "Profiles"
+msgstr "Profily"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719
+msgctxt "@window:text"
+msgid "Default behavior for changed setting values when switching to a different profile: "
+msgstr "Výchozí chování pro změněné hodnoty nastavení při přepnutí na jiný profil: "
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734
+msgctxt "@option:discardOrKeep"
+msgid "Always discard changed settings"
+msgstr "Vždy smazat změněné nastavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735
+msgctxt "@option:discardOrKeep"
+msgid "Always transfer changed settings to new profile"
+msgstr "Vždy přesunout nastavení do nového profilu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770
+msgctxt "@label"
+msgid "Privacy"
+msgstr "Soukromí"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777
+msgctxt "@info:tooltip"
+msgid "Should Cura check for updates when the program is started?"
+msgstr "Měla by Cura zkontrolovat aktualizace při spuštění programu?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782
+msgctxt "@option:check"
+msgid "Check for updates on start"
+msgstr "Zkontrolovat aktualizace při zapnutí"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792
+msgctxt "@info:tooltip"
+msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
+msgstr "Měla by být anonymní data o vašem tisku zaslána společnosti Ultimaker? Upozorňujeme, že nejsou odesílány ani ukládány žádné modely, adresy IP ani jiné osobní údaje."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797
+msgctxt "@option:check"
+msgid "Send (anonymous) print information"
+msgstr "Posílat (anonymní) informace o tisku"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806
+msgctxt "@action:button"
+msgid "More information"
+msgstr "Více informací"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
+msgctxt "@action:button"
+msgid "Activate"
+msgstr "Aktivovat"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
+msgctxt "@action:button"
+msgid "Rename"
+msgstr "Přejmenovat"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
+msgctxt "@action:button"
+msgid "Create"
+msgstr "Vytvořit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
+msgctxt "@action:button"
+msgid "Duplicate"
+msgstr "Duplikovat"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
+msgctxt "@action:button"
+msgid "Import"
+msgstr "Import"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
+msgctxt "@action:button"
+msgid "Export"
+msgstr "Export"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199
+msgctxt "@action:button Sending materials to printers"
+msgid "Sync with Printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248
+msgctxt "@action:label"
+msgid "Printer"
+msgstr "Tiskárna"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277
+msgctxt "@title:window"
+msgid "Confirm Remove"
+msgstr "Potvrdit odstranění"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278
+msgctxt "@label (%1 is object name)"
+msgid "Are you sure you wish to remove %1? This cannot be undone!"
+msgstr "Doopravdy chcete odstranit %1? Toto nelze vrátit zpět!"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337
+msgctxt "@title:window"
+msgid "Import Material"
+msgstr "Importovat materiál"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid "Could not import material %1: %2"
+msgstr "Nelze importovat materiál %1: %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully imported material %1"
+msgstr "Úspěšně importován materiál %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368
+msgctxt "@title:window"
+msgid "Export Material"
+msgstr "Exportovat materiál"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372
+msgctxt "@info:status Don't translate the XML tags and !"
+msgid "Failed to export material to %1: %2"
+msgstr "Neúspěch při exportu materiálu do %1: %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully exported material to %1"
+msgstr "Úspěšné exportování materiálu do %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388
+msgctxt "@title:window"
+msgid "Export All Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
+msgctxt "@title"
+msgid "Information"
+msgstr "Informace"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
+msgctxt "@title:window"
+msgid "Confirm Diameter Change"
+msgstr "Potvrdit změnu průměru"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
+msgctxt "@label (%1 is a number)"
+msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
+msgstr "Nový průměr vlákna je nastaven na %1 mm, což není kompatibilní s aktuálním extrudérem. Přejete si pokračovat?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
+msgctxt "@label"
+msgid "Display Name"
+msgstr "Jméno"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
+msgctxt "@label"
+msgid "Material Type"
+msgstr "Typ materiálu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
+msgctxt "@label"
+msgid "Color"
+msgstr "Barva"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
+msgctxt "@label"
+msgid "Properties"
+msgstr "Vlastnosti"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
+msgctxt "@label"
+msgid "Density"
+msgstr "Husttoa"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
+msgctxt "@label"
+msgid "Diameter"
+msgstr "Průměr"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
+msgctxt "@label"
+msgid "Filament Cost"
+msgstr "Cena filamentu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
+msgctxt "@label"
+msgid "Filament weight"
+msgstr "Váha filamentu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
+msgctxt "@label"
+msgid "Filament length"
+msgstr "Délka filamentu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
+msgctxt "@label"
+msgid "Cost per Meter"
+msgstr "Cena za metr"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
+msgctxt "@label"
+msgid "This material is linked to %1 and shares some of its properties."
+msgstr "Tento materiál je propojen s %1 a sdílí některé jeho vlastnosti."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
+msgctxt "@label"
+msgid "Unlink Material"
+msgstr "Zrušit propojení s materiálem"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
+msgctxt "@label"
+msgid "Description"
+msgstr "Popis"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
+msgctxt "@label"
+msgid "Adhesion Information"
+msgstr "Informace o adhezi"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
+msgctxt "@label"
+msgid "Print settings"
+msgstr "Nastavení tisku"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
+msgctxt "@label"
+msgid "Create"
+msgstr "Vytvořit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
+msgctxt "@label"
+msgid "Duplicate"
+msgstr "Duplikovat"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
+msgctxt "@title:window"
+msgid "Create Profile"
+msgstr "Vytvořit profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
+msgctxt "@info"
+msgid "Please provide a name for this profile."
+msgstr "Prosím uveďte jméno pro tento profil."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263
+msgctxt "@title:window"
+msgid "Duplicate Profile"
+msgstr "Duplikovat profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294
+msgctxt "@title:window"
+msgid "Rename Profile"
+msgstr "Přejmenovat profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307
+msgctxt "@title:window"
+msgid "Import Profile"
+msgstr "Importovat profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336
+msgctxt "@title:window"
+msgid "Export Profile"
+msgstr "Exportovat profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399
+msgctxt "@label %1 is printer name"
+msgid "Printer: %1"
+msgstr "Tiskárna: %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557
+msgctxt "@action:button"
+msgid "Update profile with current settings/overrides"
+msgstr "Aktualizovat profil s aktuálním nastavení/přepsánímy"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
+msgctxt "@action:button"
+msgid "Discard current changes"
+msgstr "Zrušit aktuální změny"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583
+msgctxt "@action:label"
+msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
+msgstr "Tento profil používá výchozí nastavení zadaná tiskárnou, takže nemá žádná nastavení / přepíše v níže uvedeném seznamu."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591
+msgctxt "@action:label"
+msgid "Your current settings match the selected profile."
+msgstr "Vaše aktuální nastavení odpovídá vybranému profilu."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609
+msgctxt "@title:tab"
+msgid "Global Settings"
+msgstr "Globální nastavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
+msgctxt "@info:status"
+msgid "Calculated"
+msgstr "Vypočítáno"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
+msgctxt "@title:column"
+msgid "Setting"
+msgstr "Nastavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
+msgctxt "@title:column"
+msgid "Profile"
+msgstr "Profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
+msgctxt "@title:column"
+msgid "Current"
+msgstr "Aktuální"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
+msgctxt "@title:column"
+msgid "Unit"
+msgstr "Jednotka"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16
+msgctxt "@title:tab"
+msgid "Setting Visibility"
+msgstr "Nastavení zobrazení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48
msgctxt "@label:textbox"
-msgid "Search settings"
-msgstr "Prohledat nastavení"
+msgid "Check all"
+msgstr "Zkontrolovat vše"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:456
-msgctxt "@action:menu"
-msgid "Copy value to all extruders"
-msgstr "Kopírovat hodnotu na všechny extrudery"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+msgctxt "@label"
+msgid "Extruder"
+msgstr "Extuder"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:465
-msgctxt "@action:menu"
-msgid "Copy all changed values to all extruders"
-msgstr "Kopírovat všechny změněné hodnoty na všechny extrudery"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
+msgctxt "@tooltip"
+msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
+msgstr "Cílová teplota hotendu. Hotend se ohřeje nebo ochladí na tuto teplotu. Pokud je 0, ohřev teplé vody je vypnutý."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:502
-msgctxt "@action:menu"
-msgid "Hide this setting"
-msgstr "Schovat toto nastavení"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
+msgctxt "@tooltip"
+msgid "The current temperature of this hotend."
+msgstr "Aktuální teplota tohoto hotendu."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:515
-msgctxt "@action:menu"
-msgid "Don't show this setting"
-msgstr "Neukazovat toto nastavení"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the hotend to."
+msgstr "Teplota pro předehřátí hotendu."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:519
-msgctxt "@action:menu"
-msgid "Keep this setting visible"
-msgstr "Nechat toto nastavení viditelné"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
+msgctxt "@button Cancel pre-heating"
+msgid "Cancel"
+msgstr "Zrušit"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingCategory.qml:200
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+msgctxt "@button"
+msgid "Pre-heat"
+msgstr "Předehřání"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
+msgctxt "@tooltip of pre-heat"
+msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
+msgstr "Před tiskem zahřejte hotend předem. Můžete pokračovat v úpravách tisku, zatímco se zahřívá, a nemusíte čekat na zahřátí hotendu, až budete připraveni k tisku."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
+msgctxt "@tooltip"
+msgid "The colour of the material in this extruder."
+msgstr "Barva materiálu v tomto extruderu."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
+msgctxt "@tooltip"
+msgid "The material in this extruder."
+msgstr "Materiál v tomto extruderu."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
+msgctxt "@tooltip"
+msgid "The nozzle inserted in this extruder."
+msgstr "Vložená trysky v tomto extruderu."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+msgctxt "@label"
+msgid "Build plate"
+msgstr "Podložka"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
+msgctxt "@tooltip"
+msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
+msgstr "Cílová teplota vyhřívací podložky. Podložka se zahřeje, nebo schladí směrem k této teplotě. Pokud je 0, tak je vyhřívání podložky vypnuto."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
+msgctxt "@tooltip"
+msgid "The current temperature of the heated bed."
+msgstr "Aktuální teplota vyhřívané podložky."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the bed to."
+msgstr "Teplota pro předehřátí podložky."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
+msgctxt "@tooltip of pre-heat"
+msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
+msgstr "Před tiskem zahřejte postel předem. Můžete pokračovat v úpravě tisku, zatímco se zahřívá, a nemusíte čekat, až se postel zahřeje, až budete připraveni k tisku."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+msgctxt "@label"
+msgid "Printer control"
+msgstr "Ovládání tiskárny"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+msgctxt "@label"
+msgid "Jog Position"
+msgstr "Pozice hlavy"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+msgctxt "@label"
+msgid "X/Y"
+msgstr "X/Y"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
+msgctxt "@label"
+msgid "Z"
+msgstr "Z"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
+msgctxt "@label"
+msgid "Jog Distance"
+msgstr "Vzdálenost hlavy"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
+msgctxt "@label"
+msgid "Send G-code"
+msgstr "Poslat G kód"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
+msgctxt "@tooltip of G-code command input"
+msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
+msgstr "Na připojenou tiskárnu odešlete vlastní příkaz G-kódu. Stisknutím klávesy „Enter“ odešlete příkaz."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
+msgctxt "@info:status"
+msgid "The printer is not connected."
+msgstr "Tiskárna není připojena."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
+msgctxt "@status"
+msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
+msgstr "Cloudová tiskárna je offline. Prosím zkontrolujte, zda je tiskárna zapnutá a připojená k internetu."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
+msgctxt "@status"
+msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
+msgstr "Tiskárna není připojena k vašemu účtu. Prosím navštivte Ultimaker Digital Factory pro navázání spojení."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
+msgctxt "@status"
+msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
+msgstr "Připojení ke cloudu není nyní dostupné. Prosím přihlašte se k připojení ke cloudové tiskárně."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
+msgctxt "@status"
+msgid "The cloud connection is currently unavailable. Please check your internet connection."
+msgstr "Připojení ke cloudu není nyní dostupné. Prosím zkontrolujte si vaše internetové připojení."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
+msgctxt "@button"
+msgid "Add printer"
+msgstr "Přidat tiskárnu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
+msgctxt "@button"
+msgid "Manage printers"
+msgstr "Spravovat tiskárny"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Connected printers"
+msgstr "Připojené tiskárny"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Preset printers"
+msgstr "Přednastavené tiskárny"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
+msgctxt "@label"
+msgid "Active print"
+msgstr "Aktivní tisk"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
+msgctxt "@label"
+msgid "Job Name"
+msgstr "Název úlohy"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
+msgctxt "@label"
+msgid "Printing Time"
+msgstr "Čas tisku"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
+msgctxt "@label"
+msgid "Estimated time left"
+msgstr "Předpokládaný zbývající čas"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
+msgctxt "@label"
+msgid "Profile"
+msgstr "Profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
+msgctxt "@tooltip"
+msgid ""
+"Some setting/override values are different from the values stored in the profile.\n"
+"\n"
+"Click to open the profile manager."
+msgstr ""
+"Některé hodnoty nastavení / přepsání se liší od hodnot uložených v profilu.\n"
+"\n"
+"Klepnutím otevřete správce profilů."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
+msgctxt "@label:header"
+msgid "Custom profiles"
+msgstr "Vlastní profily"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
+msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
+msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
+msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
+msgstr[0] "Neexistuje žádný profil %1 pro konfiguraci v extruderu %2. Místo toho bude použit výchozí záměr"
+msgstr[1] "Neexistuje žádný profil %1 pro konfigurace v extruderu %2. Místo toho bude použit výchozí záměr"
+msgstr[2] "Neexistuje žádný profil %1 pro konfigurace v extruderu %2. Místo toho bude použit výchozí záměr"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
+msgctxt "@label shown when we load a Gcode file"
+msgid "Print setup disabled. G-code file can not be modified."
+msgstr "Nastavení tisku zakázáno. Soubor G-kódu nelze změnit."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
+msgctxt "@button"
+msgid "Recommended"
+msgstr "Doporučeno"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
+msgctxt "@button"
+msgid "Custom"
+msgstr "Vlastní"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
+msgctxt "@label:Should be short"
+msgid "On"
+msgstr "Zap"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
+msgctxt "@label:Should be short"
+msgid "Off"
+msgstr "Vyp"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
+msgctxt "@label"
+msgid "Experimental"
+msgstr "Experimentální"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
+msgctxt "@label"
+msgid "Adhesion"
+msgstr "Adheze"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
+msgctxt "@label"
+msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
+msgstr "Umožňuje tisk okraje nebo voru. Tímto způsobem se kolem nebo pod objekt přidá plochá oblast, kterou lze snadno odříznout."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
+msgctxt "@label"
+msgid "Gradual infill"
+msgstr "Postupná výplň"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
+msgctxt "@label"
+msgid "Gradual infill will gradually increase the amount of infill towards the top."
+msgstr "Postupná výplň postupně zvyšuje množství výplně směrem nahoru."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
+msgctxt "@tooltip"
+msgid "You have modified some profile settings. If you want to change these go to custom mode."
+msgstr "Upravili jste některá nastavení profilu. Pokud je chcete změnit, přejděte do uživatelského režimu."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
+msgctxt "@label"
+msgid "Support"
+msgstr "Podpora"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
+msgctxt "@label"
+msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
+msgstr "Vytvořte struktury pro podporu částí modelu, které mají přesahy. Bez těchto struktur by se takové části během tisku zhroutily."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200
msgctxt "@label"
msgid ""
"Some hidden settings use values different from their normal calculated value.\n"
@@ -5065,32 +5162,32 @@ msgstr ""
"\n"
"Klepnutím toto nastavení zviditelníte."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
msgctxt "@label"
msgid "This setting is not used because all the settings that it influences are overridden."
msgstr "Toto nastavení se nepoužívá, protože všechna nastavení, která ovlivňuje, jsou přepsána."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:86
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
msgctxt "@label Header for list of settings."
msgid "Affects"
msgstr "Ovlivňuje"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:91
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
msgctxt "@label Header for list of settings."
msgid "Affected By"
msgstr "Ovlivněno"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:187
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
msgctxt "@label"
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
msgstr "Toto nastavení je vždy sdíleno všemi extrudéry. Jeho změnou se změní hodnota všech extruderů."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
msgctxt "@label"
msgid "This setting is resolved from conflicting extruder-specific values:"
msgstr "Toto nastavení je vyřešeno z konfliktních hodnot specifického extruder:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:230
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
msgctxt "@label"
msgid ""
"This setting has a value that is different from the profile.\n"
@@ -5101,7 +5198,7 @@ msgstr ""
"\n"
"Klepnutím obnovíte hodnotu profilu."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
msgctxt "@label"
msgid ""
"This setting is normally calculated, but it currently has an absolute value set.\n"
@@ -5112,719 +5209,306 @@ msgstr ""
"\n"
"Klepnutím obnovíte vypočítanou hodnotu."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68
+msgctxt "@label:textbox"
+msgid "Search settings"
+msgstr "Prohledat nastavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468
+msgctxt "@action:menu"
+msgid "Copy value to all extruders"
+msgstr "Kopírovat hodnotu na všechny extrudery"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477
+msgctxt "@action:menu"
+msgid "Copy all changed values to all extruders"
+msgstr "Kopírovat všechny změněné hodnoty na všechny extrudery"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514
+msgctxt "@action:menu"
+msgid "Hide this setting"
+msgstr "Schovat toto nastavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527
+msgctxt "@action:menu"
+msgid "Don't show this setting"
+msgstr "Neukazovat toto nastavení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531
+msgctxt "@action:menu"
+msgid "Keep this setting visible"
+msgstr "Nechat toto nastavení viditelné"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
msgctxt "@info:tooltip"
msgid "3D View"
msgstr "3D Pohled"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
msgctxt "@info:tooltip"
msgid "Front View"
msgstr "Přední pohled"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
msgctxt "@info:tooltip"
msgid "Top View"
msgstr "Pohled ze shora"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:66
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
msgctxt "@info:tooltip"
msgid "Left View"
msgstr "Pohled zleva"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
msgctxt "@info:tooltip"
msgid "Right View"
msgstr "Pohled zprava"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
msgctxt "@label"
-msgid "Extruder"
-msgstr "Extuder"
+msgid "View type"
+msgstr "Typ pohledu"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
-msgctxt "@tooltip"
-msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
-msgstr "Cílová teplota hotendu. Hotend se ohřeje nebo ochladí na tuto teplotu. Pokud je 0, ohřev teplé vody je vypnutý."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
+msgctxt "@label"
+msgid "Add a Cloud printer"
+msgstr "Přidat Cloudovou tiskárnu"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
-msgctxt "@tooltip"
-msgid "The current temperature of this hotend."
-msgstr "Aktuální teplota tohoto hotendu."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
+msgctxt "@label"
+msgid "Waiting for Cloud response"
+msgstr "Čekám na odpověď od Cloudu"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the hotend to."
-msgstr "Teplota pro předehřátí hotendu."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
+msgctxt "@label"
+msgid "No printers found in your account?"
+msgstr "Žádné tiskárny nenalezeny ve vašem účtě?"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
-msgctxt "@button Cancel pre-heating"
-msgid "Cancel"
-msgstr "Zrušit"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
+msgctxt "@label"
+msgid "The following printers in your account have been added in Cura:"
+msgstr "Následující tiskárny ve vašem účtě byla přidány do Cury:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
msgctxt "@button"
-msgid "Pre-heat"
-msgstr "Předehřání"
+msgid "Add printer manually"
+msgstr "Přidat tiskárnu manuálně"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
-msgctxt "@tooltip of pre-heat"
-msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
-msgstr "Před tiskem zahřejte hotend předem. Můžete pokračovat v úpravách tisku, zatímco se zahřívá, a nemusíte čekat na zahřátí hotendu, až budete připraveni k tisku."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
-msgctxt "@tooltip"
-msgid "The colour of the material in this extruder."
-msgstr "Barva materiálu v tomto extruderu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
-msgctxt "@tooltip"
-msgid "The material in this extruder."
-msgstr "Materiál v tomto extruderu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
-msgctxt "@tooltip"
-msgid "The nozzle inserted in this extruder."
-msgstr "Vložená trysky v tomto extruderu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
msgctxt "@label"
-msgid "Build plate"
-msgstr "Podložka"
+msgid "Manufacturer"
+msgstr "Výrobce"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
-msgctxt "@tooltip"
-msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
-msgstr "Cílová teplota vyhřívací podložky. Podložka se zahřeje, nebo schladí směrem k této teplotě. Pokud je 0, tak je vyhřívání podložky vypnuto."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
-msgctxt "@tooltip"
-msgid "The current temperature of the heated bed."
-msgstr "Aktuální teplota vyhřívané podložky."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the bed to."
-msgstr "Teplota pro předehřátí podložky."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
-msgctxt "@tooltip of pre-heat"
-msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
-msgstr "Před tiskem zahřejte postel předem. Můžete pokračovat v úpravě tisku, zatímco se zahřívá, a nemusíte čekat, až se postel zahřeje, až budete připraveni k tisku."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
msgctxt "@label"
-msgid "Printer control"
-msgstr "Ovládání tiskárny"
+msgid "Profile author"
+msgstr "Autor profilu"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
msgctxt "@label"
-msgid "Jog Position"
-msgstr "Pozice hlavy"
+msgid "Printer name"
+msgstr "Název tiskárny"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
+msgctxt "@text"
+msgid "Please name your printer"
+msgstr "Pojmenujte prosím svou tiskárnu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
msgctxt "@label"
-msgid "X/Y"
-msgstr "X/Y"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
-msgctxt "@label"
-msgid "Z"
-msgstr "Z"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
-msgctxt "@label"
-msgid "Jog Distance"
-msgstr "Vzdálenost hlavy"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
-msgctxt "@label"
-msgid "Send G-code"
-msgstr "Poslat G kód"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
-msgctxt "@tooltip of G-code command input"
-msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
-msgstr "Na připojenou tiskárnu odešlete vlastní příkaz G-kódu. Stisknutím klávesy „Enter“ odešlete příkaz."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
-msgctxt "@info:status"
-msgid "The printer is not connected."
-msgstr "Tiskárna není připojena."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:114
-msgctxt "@label"
-msgid "Is printed as support."
-msgstr "Je tisknuto jako podpora."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:117
-msgctxt "@label"
-msgid "Other models overlapping with this model are modified."
-msgstr "Ostatní modely překrývající se s tímto modelem jsou upraveny."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:120
-msgctxt "@label"
-msgid "Infill overlapping with this model is modified."
-msgstr "Výplň překrývající se s tímto modelem byla modifikována."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:123
-msgctxt "@label"
-msgid "Overlaps with this model are not supported."
-msgstr "Přesahy na tomto modelu nejsou podporovány."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:130
-msgctxt "@label %1 is the number of settings it overrides."
-msgid "Overrides %1 setting."
-msgid_plural "Overrides %1 settings."
-msgstr[0] "Přepíše %1 nastavení."
-msgstr[1] "Přepíše %1 nastavení."
-msgstr[2] "Přepíše %1 nastavení."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
-msgctxt "@action:button"
-msgid "Marketplace"
-msgstr "Obchod"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Edit"
-msgstr "Upr&avit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
-msgctxt "@title:menu menubar:toplevel"
-msgid "E&xtensions"
-msgstr "D&oplňky"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
-msgctxt "@title:menu menubar:toplevel"
-msgid "P&references"
-msgstr "P&reference"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Help"
-msgstr "Po&moc"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
-msgctxt "@title:window"
-msgid "New project"
-msgstr "Nový projekt"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
-msgctxt "@info:question"
-msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
-msgstr "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:257
-msgctxt "@label"
-msgid "This package will be installed after restarting."
-msgstr "Tento balíček bude nainstalován po restartování."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:453
-msgctxt "@title:tab"
-msgid "Settings"
-msgstr "Nastavení"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:576
-msgctxt "@title:window %1 is the application name"
-msgid "Closing %1"
-msgstr "Zavírám %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:577
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:589
-msgctxt "@label %1 is the application name"
-msgid "Are you sure you want to exit %1?"
-msgstr "Doopravdy chcete zavřít %1?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:737
-msgctxt "@window:title"
-msgid "Install Package"
-msgstr "Nainstalovat balíček"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:745
-msgctxt "@title:window"
-msgid "Open File(s)"
-msgstr "Otevřít Soubor(y)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:748
-msgctxt "@text:window"
-msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
-msgstr "Ve vybraných souborech jsme našli jeden nebo více souborů G-kódu. Naraz můžete otevřít pouze jeden soubor G-kódu. Pokud chcete otevřít soubor G-Code, vyberte pouze jeden."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:857
-msgctxt "@title:window"
-msgid "Add Printer"
+msgid "Add a printer"
msgstr "Přidat tiskárnu"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:865
-msgctxt "@title:window"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
+msgctxt "@label"
+msgid "Add a networked printer"
+msgstr "Přidat síťovou tiskárnu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
+msgctxt "@label"
+msgid "Add a non-networked printer"
+msgstr "Přidat ne-síťovou tiskárnu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
+msgctxt "@label"
+msgid "There is no printer found over your network."
+msgstr "Přes síť nebyla nalezena žádná tiskárna."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
+msgctxt "@label"
+msgid "Refresh"
+msgstr "Obnovit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
+msgctxt "@label"
+msgid "Add printer by IP"
+msgstr "Přidat tiskárnu podle IP"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
+msgctxt "@label"
+msgid "Add cloud printer"
+msgstr "Přidat cloudovou tiskárnu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
+msgctxt "@label"
+msgid "Troubleshooting"
+msgstr "Podpora při problémech"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
+msgctxt "@label"
+msgid "Add printer by IP address"
+msgstr "Přidat tiskárnu podle IP adresy"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
+msgctxt "@text"
+msgid "Enter your printer's IP address."
+msgstr "Zadejte IP adresu vaší tiskárny."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
+msgctxt "@button"
+msgid "Add"
+msgstr "Přidat"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
+msgctxt "@label"
+msgid "Could not connect to device."
+msgstr "Nelze se připojit k zařízení."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
+msgctxt "@label"
+msgid "Can't connect to your Ultimaker printer?"
+msgstr "Nemůžete se připojit k Vaší tiskárně Ultimaker?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
+msgctxt "@label"
+msgid "The printer at this address has not responded yet."
+msgstr "Tiskárna na této adrese dosud neodpověděla."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
+msgctxt "@label"
+msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
+msgstr "Tuto tiskárnu nelze přidat, protože se jedná o neznámou tiskárnu nebo není hostitelem skupiny."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
+msgctxt "@button"
+msgid "Back"
+msgstr "Zpět"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
+msgctxt "@button"
+msgid "Connect"
+msgstr "Připojit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
+msgctxt "@label"
+msgid "Release Notes"
+msgstr "Poznámky k vydání"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124
+msgctxt "@text"
+msgid "Add material settings and plugins from the Marketplace"
+msgstr "Přidat nastavení materiálů a moduly z Obchodu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154
+msgctxt "@text"
+msgid "Backup and sync your material settings and plugins"
+msgstr "Zálohovat a synchronizovat nastavení materiálů a moduly"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184
+msgctxt "@text"
+msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
+msgstr "Sdílejte nápady a získejte pomoc od více než 48 0000 uživatelů v Ultimaker komunitě"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217
+msgctxt "@text"
+msgid "Create a free Ultimaker Account"
+msgstr "Vytvořit účet Ultimaker zdarma"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230
+msgctxt "@button"
+msgid "Skip"
+msgstr "Přeskočit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
+msgctxt "@label"
+msgid "Help us to improve Ultimaker Cura"
+msgstr "Pomožte nám zlepšovat Ultimaker Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
+msgctxt "@text"
+msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
+msgstr "Ultimaker Cura shromažďuje anonymní data za účelem zlepšení kvality tisku a uživatelského komfortu, včetně:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
+msgctxt "@text"
+msgid "Machine types"
+msgstr "Typy zařízení"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
+msgctxt "@text"
+msgid "Material usage"
+msgstr "Použití materiálu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
+msgctxt "@text"
+msgid "Number of slices"
+msgstr "Počet sliců"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
+msgctxt "@text"
+msgid "Print settings"
+msgstr "Nastavení tisku"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
+msgctxt "@text"
+msgid "Data collected by Ultimaker Cura will not contain any personal information."
+msgstr "Data shromážděná společností Ultimaker Cura nebudou obsahovat žádné osobní údaje."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
+msgctxt "@text"
+msgid "More information"
+msgstr "Více informací"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
+msgctxt "@label"
+msgid "Empty"
+msgstr "Prázdné"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
+msgctxt "@label"
+msgid "User Agreement"
+msgstr "Uživatelská dohoda"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
+msgctxt "@button"
+msgid "Decline and close"
+msgstr "Odmítnout a zavřít"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
+msgctxt "@label"
+msgid "Welcome to Ultimaker Cura"
+msgstr "Vítejte v Ultimaker Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
+msgctxt "@text"
+msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
+msgstr "Při nastavování postupujte podle těchto pokynů Ultimaker Cura. Bude to trvat jen několik okamžiků."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
+msgctxt "@button"
+msgid "Get started"
+msgstr "Začínáme"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
+msgctxt "@label"
msgid "What's New"
msgstr "Co je nového"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
-msgctxt "@status"
-msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
-msgstr "Cloudová tiskárna je offline. Prosím zkontrolujte, zda je tiskárna zapnutá a připojená k internetu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
-msgctxt "@status"
-msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
-msgstr "Tiskárna není připojena k vašemu účtu. Prosím navštivte Ultimaker Digital Factory pro navázání spojení."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
-msgctxt "@status"
-msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
-msgstr "Připojení ke cloudu není nyní dostupné. Prosím přihlašte se k připojení ke cloudové tiskárně."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
-msgctxt "@status"
-msgid "The cloud connection is currently unavailable. Please check your internet connection."
-msgstr "Připojení ke cloudu není nyní dostupné. Prosím zkontrolujte si vaše internetové připojení."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
-msgctxt "@button"
-msgid "Add printer"
-msgstr "Přidat tiskárnu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
-msgctxt "@button"
-msgid "Manage printers"
-msgstr "Spravovat tiskárny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24
msgctxt "@label"
-msgid "Connected printers"
-msgstr "Připojené tiskárny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
-msgctxt "@label"
-msgid "Preset printers"
-msgstr "Přednastavené tiskárny"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ExtruderButton.qml:16
-msgctxt "@label %1 is filled in with the name of an extruder"
-msgid "Print Selected Model with %1"
-msgid_plural "Print Selected Models with %1"
-msgstr[0] "Tisknout vybraný model pomocí %1"
-msgstr[1] "Tisknout vybraný model pomocí %1"
-msgstr[2] "Tisknout vybraný model pomocí %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
-msgctxt "@label"
-msgid "Time estimation"
-msgstr "Odhad času"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
-msgctxt "@label"
-msgid "Material estimation"
-msgstr "Odhad materiálu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
-msgctxt "@label m for meter"
-msgid "%1m"
-msgstr "%1m"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
-msgctxt "@label g for grams"
-msgid "%1g"
-msgstr "%1g"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
-msgctxt "@label:PrintjobStatus"
-msgid "Slicing..."
-msgstr "Slicuji..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
-msgctxt "@label:PrintjobStatus"
-msgid "Unable to slice"
-msgstr "Nelze slicovat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Processing"
-msgstr "Zpracovává se"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Slice"
-msgstr "Slicovat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
-msgctxt "@label"
-msgid "Start the slicing process"
-msgstr "Začít proces slicování"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
-msgctxt "@button"
-msgid "Cancel"
-msgstr "Zrušit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
-msgctxt "@label"
-msgid "No time estimation available"
-msgstr "Žádný odhad času není dostupný"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
-msgctxt "@label"
-msgid "No cost estimation available"
-msgstr "Žádná cena není dostupná"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
-msgctxt "@button"
-msgid "Preview"
-msgstr "Náhled"
-
-#: RemovableDriveOutputDevice/plugin.json
-msgctxt "description"
-msgid "Provides removable drive hotplugging and writing support."
-msgstr "Poskytuje vyměnitelnou jednotku za plného zapojení a podporu zápisu."
-
-#: RemovableDriveOutputDevice/plugin.json
-msgctxt "name"
-msgid "Removable Drive Output Device Plugin"
-msgstr "Vyměnitelný zásuvný modul pro výstupní zařízení"
-
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
-msgstr "Aktualizuje konfigurace z Cura 3.5 na Cura 4.0."
-
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.5 to 4.0"
-msgstr "Aktualizace verze 3.5 na 4.0"
-
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
-msgstr "Aktualizuje konfigurace z Cura 4.6.2 na Cura 4.7."
-
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.6.2 to 4.7"
-msgstr "Aktualizace verze 4.6.2 na 4.7"
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
-msgstr "Aktualizuje konfigurace z Cura 2.2 na Cura 2.4."
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.2 to 2.4"
-msgstr "Aktualizace verze 2.2 na 2.4"
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
-msgstr "Aktualizuje konfigurace z Cura 4.2 na Cura 4.3."
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.2 to 4.3"
-msgstr "Aktualizace verze 4.2 na 4.3"
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
-msgstr "Aktualizuje konfigurace z Cura 4.6.0 na Cura 4.6.2."
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.6.0 to 4.6.2"
-msgstr "Aktualizace verze 4.6.0 na 4.6.2"
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
-msgstr "Aktualizuje konfigurace z Cura 3.0 na Cura 3.1."
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.0 to 3.1"
-msgstr "Aktualizace verze 3.0 na 3.1"
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
-msgstr "Aktualizuje konfigurace z Cura 4.0 na Cura 4.1."
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.0 to 4.1"
-msgstr "Aktualizace verze 4.0 na 4.1"
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
-msgstr "Aktualizuje konfigurace z Cura 2.6 na Cura 2.7."
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.6 to 2.7"
-msgstr "Aktualizace verze 2.6 na 2.7"
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
-msgstr "Aktualizuje konfigurace z Cura 2.5 na Cura 2.6."
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.5 to 2.6"
-msgstr "Aktualizace verze 2.5 na 2.6"
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
-msgstr "Aktualizuje konfigurace z Cura 4.1 na Cura 4.2."
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.1 to 4.2"
-msgstr "Aktualizace verze 4.1 na 4.2"
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
-msgstr "Aktualizuje konfigurace z Cura 2.1 na Cura 2.2."
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.1 to 2.2"
-msgstr "Aktualizace verze 2.1 na 2.2"
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
-msgstr "Aktualizuje konfigurace z Cura 3.2 na Cura 3.3."
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.2 to 3.3"
-msgstr "Aktualizace verze 3.2 na 3.3"
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
-msgstr "Aktualizuje konfigurace z Cura 4.5 na Cura 4.6."
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.5 to 4.6"
-msgstr "Aktualizace verze 4.5 na 4.6"
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
-msgstr "Aktualizuje konfigurace z Cura 4.4 na Cura 4.5."
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.4 to 4.5"
-msgstr "Aktualizace verze 4.4 na 4.5"
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
-msgstr "Aktualizuje konfigurace z Cura 4.7 na Cura 4.8."
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.7 to 4.8"
-msgstr "Aktualizace verze 4.7 na 4.8"
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
-msgstr "Aktualizuje konfigurace z Cura 3.3 na Cura 3.4."
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.3 to 3.4"
-msgstr "Aktualizace verze 3.3 na 3.4"
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
-msgstr "Aktualizuje konfigurace z Cura 4.3 na Cura 4.4."
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.3 to 4.4"
-msgstr "Aktualizace verze 4.3 na 4.4"
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
-msgstr "Aktualizuje konfigurace z Cura 3.4 na Cura 3.5."
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.4 to 3.5"
-msgstr "Aktualizace verze 3.4 na 3.5"
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
-msgstr "Aktualizuje konfigurace z Cura 2.7 na Cura 3.0."
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.7 to 3.0"
-msgstr "Aktualizace verze 2.7 na 3.0"
-
-#: AMFReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading AMF files."
-msgstr "Poskytuje podporu pro čtení souborů AMF."
-
-#: AMFReader/plugin.json
-msgctxt "name"
-msgid "AMF Reader"
-msgstr "Čtečka AMF"
-
-#: GCodeProfileReader/plugin.json
-msgctxt "description"
-msgid "Provides support for importing profiles from g-code files."
-msgstr "Poskytuje podporu pro import profilů ze souborů g-kódu."
-
-#: GCodeProfileReader/plugin.json
-msgctxt "name"
-msgid "G-code Profile Reader"
-msgstr "Čtečka profilu G kódu"
-
-#: FirmwareUpdater/plugin.json
-msgctxt "description"
-msgid "Provides a machine actions for updating firmware."
-msgstr "Poskytuje akce počítače pro aktualizaci firmwaru."
-
-#: FirmwareUpdater/plugin.json
-msgctxt "name"
-msgid "Firmware Updater"
-msgstr "Firmware Updater"
-
-#: X3DReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading X3D files."
-msgstr "Poskytuje podporu pro čtení souborů X3D."
-
-#: X3DReader/plugin.json
-msgctxt "name"
-msgid "X3D Reader"
-msgstr "Čtečka X3D"
-
-#: Toolbox/plugin.json
-msgctxt "description"
-msgid "Find, manage and install new Cura packages."
-msgstr "Najděte, spravujte a nainstalujte nové balíčky Cura."
-
-#: Toolbox/plugin.json
-msgctxt "name"
-msgid "Toolbox"
-msgstr "Nástroje"
-
-#: PerObjectSettingsTool/plugin.json
-msgctxt "description"
-msgid "Provides the Per Model Settings."
-msgstr "Umožňuje nastavení pro každý model."
-
-#: PerObjectSettingsTool/plugin.json
-msgctxt "name"
-msgid "Per Model Settings Tool"
-msgstr "Nástroj pro nastavení pro každý model"
-
-#: PostProcessingPlugin/plugin.json
-msgctxt "description"
-msgid "Extension that allows for user created scripts for post processing"
-msgstr "Rozšíření, které umožňuje uživateli vytvořené skripty pro následné zpracování"
-
-#: PostProcessingPlugin/plugin.json
-msgctxt "name"
-msgid "Post Processing"
-msgstr "Post Processing"
-
-#: CuraEngineBackend/plugin.json
-msgctxt "description"
-msgid "Provides the link to the CuraEngine slicing backend."
-msgstr "Poskytuje odkaz na backend krájení CuraEngine."
-
-#: CuraEngineBackend/plugin.json
-msgctxt "name"
-msgid "CuraEngine Backend"
-msgstr "CuraEngine Backend"
-
-#: USBPrinting/plugin.json
-msgctxt "description"
-msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
-msgstr "Přijme G-kód a odešle je do tiskárny. Plugin může také aktualizovat firmware."
-
-#: USBPrinting/plugin.json
-msgctxt "name"
-msgid "USB printing"
-msgstr "USB tisk"
-
-#: CuraProfileWriter/plugin.json
-msgctxt "description"
-msgid "Provides support for exporting Cura profiles."
-msgstr "Poskytuje podporu pro export profilů Cura."
-
-#: CuraProfileWriter/plugin.json
-msgctxt "name"
-msgid "Cura Profile Writer"
-msgstr "Zapisovač Cura profilu"
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "description"
-msgid "Manages network connections to Ultimaker networked printers."
-msgstr "Spravuje síťová připojení k síťovým tiskárnám Ultimaker."
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "name"
-msgid "Ultimaker Network Connection"
-msgstr "Síťové připojení Ultimaker"
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "description"
-msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
-msgstr "Poskytuje akce strojů pro stroje Ultimaker (jako je průvodce vyrovnáváním postele, výběr upgradů atd.)."
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "name"
-msgid "Ultimaker machine actions"
-msgstr "Akce zařízení Ultimaker"
-
-#: 3MFReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading 3MF files."
-msgstr "Poskytuje podporu pro čtení souborů 3MF."
-
-#: 3MFReader/plugin.json
-msgctxt "name"
-msgid "3MF Reader"
-msgstr "Čtečka 3MF"
-
-#: GCodeGzWriter/plugin.json
-msgctxt "description"
-msgid "Writes g-code to a compressed archive."
-msgstr "Zapíše g-kód do komprimovaného archivu."
-
-#: GCodeGzWriter/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Writer"
-msgstr "Zapisova kompresovaného G kódu"
-
-#: GCodeGzReader/plugin.json
-msgctxt "description"
-msgid "Reads g-code from a compressed archive."
-msgstr "Čte g-kód z komprimovaného archivu."
-
-#: GCodeGzReader/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Reader"
-msgstr "Čtečka kompresovaného G kódu"
+msgid "No items to select from"
+msgstr "Není z čeho vybírat"
#: ModelChecker/plugin.json
msgctxt "description"
@@ -5836,105 +5520,15 @@ msgctxt "name"
msgid "Model Checker"
msgstr "Kontroler modelu"
-#: FirmwareUpdateChecker/plugin.json
+#: 3MFReader/plugin.json
msgctxt "description"
-msgid "Checks for firmware updates."
-msgstr "Zkontroluje dostupné aktualizace firmwaru."
+msgid "Provides support for reading 3MF files."
+msgstr "Poskytuje podporu pro čtení souborů 3MF."
-#: FirmwareUpdateChecker/plugin.json
+#: 3MFReader/plugin.json
msgctxt "name"
-msgid "Firmware Update Checker"
-msgstr "Kontroler aktualizace firmwaru"
-
-#: GCodeReader/plugin.json
-msgctxt "description"
-msgid "Allows loading and displaying G-code files."
-msgstr "Povoluje načítání a zobrazení souborů G kódu."
-
-#: GCodeReader/plugin.json
-msgctxt "name"
-msgid "G-code Reader"
-msgstr "Čtečka G kódu"
-
-#: SupportEraser/plugin.json
-msgctxt "description"
-msgid "Creates an eraser mesh to block the printing of support in certain places"
-msgstr "Vytvoří gumovou síť, která blokuje tisk podpory na určitých místech"
-
-#: SupportEraser/plugin.json
-msgctxt "name"
-msgid "Support Eraser"
-msgstr "Mazač podpor"
-
-#: TrimeshReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading model files."
-msgstr "Poskytuje podporu pro čtení souborů modelu."
-
-#: TrimeshReader/plugin.json
-msgctxt "name"
-msgid "Trimesh Reader"
-msgstr "Čtečka trimesh"
-
-#: SentryLogger/plugin.json
-msgctxt "description"
-msgid "Logs certain events so that they can be used by the crash reporter"
-msgstr "Protokolová určité události, aby je mohl použít reportér havárií"
-
-#: SentryLogger/plugin.json
-msgctxt "name"
-msgid "Sentry Logger"
-msgstr "Záznamník hlavy"
-
-#: UFPReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading Ultimaker Format Packages."
-msgstr "Poskytuje podporu pro čtení balíčků formátu Ultimaker."
-
-#: UFPReader/plugin.json
-msgctxt "name"
-msgid "UFP Reader"
-msgstr "Čtečka UFP"
-
-#: LegacyProfileReader/plugin.json
-msgctxt "description"
-msgid "Provides support for importing profiles from legacy Cura versions."
-msgstr "Poskytuje podporu pro import profilů ze starších verzí Cura."
-
-#: LegacyProfileReader/plugin.json
-msgctxt "name"
-msgid "Legacy Cura Profile Reader"
-msgstr "Čtečka legacy Cura profilu"
-
-#: PrepareStage/plugin.json
-msgctxt "description"
-msgid "Provides a prepare stage in Cura."
-msgstr "Poskytuje přípravnou fázi v Cuře."
-
-#: PrepareStage/plugin.json
-msgctxt "name"
-msgid "Prepare Stage"
-msgstr "Fáze přípravy"
-
-#: MonitorStage/plugin.json
-msgctxt "description"
-msgid "Provides a monitor stage in Cura."
-msgstr "Poskytuje monitorovací scénu v Cuře."
-
-#: MonitorStage/plugin.json
-msgctxt "name"
-msgid "Monitor Stage"
-msgstr "Fáze monitoringu"
-
-#: XRayView/plugin.json
-msgctxt "description"
-msgid "Provides the X-Ray view."
-msgstr "Poskytuje rentgenové zobrazení."
-
-#: XRayView/plugin.json
-msgctxt "name"
-msgid "X-Ray View"
-msgstr "Rentgenový pohled"
+msgid "3MF Reader"
+msgstr "Čtečka 3MF"
#: 3MFWriter/plugin.json
msgctxt "description"
@@ -5946,65 +5540,35 @@ msgctxt "name"
msgid "3MF Writer"
msgstr "Zapisovač 3MF"
-#: SliceInfoPlugin/plugin.json
+#: AMFReader/plugin.json
msgctxt "description"
-msgid "Submits anonymous slice info. Can be disabled through preferences."
-msgstr "Odešle anonymní informace o slicování. Lze deaktivovat pomocí preferencí."
+msgid "Provides support for reading AMF files."
+msgstr "Poskytuje podporu pro čtení souborů AMF."
-#: SliceInfoPlugin/plugin.json
+#: AMFReader/plugin.json
msgctxt "name"
-msgid "Slice info"
-msgstr "Informace o slicování"
+msgid "AMF Reader"
+msgstr "Čtečka AMF"
-#: PreviewStage/plugin.json
+#: CuraDrive/plugin.json
msgctxt "description"
-msgid "Provides a preview stage in Cura."
-msgstr "Poskytuje fázi náhledu v Cura."
+msgid "Backup and restore your configuration."
+msgstr "Zálohujte a obnovte konfiguraci."
-#: PreviewStage/plugin.json
+#: CuraDrive/plugin.json
msgctxt "name"
-msgid "Preview Stage"
-msgstr "Fáze náhledu"
+msgid "Cura Backups"
+msgstr "Cura zálohy"
-#: SimulationView/plugin.json
+#: CuraEngineBackend/plugin.json
msgctxt "description"
-msgid "Provides the Simulation view."
-msgstr "Poskytuje zobrazení simulace."
+msgid "Provides the link to the CuraEngine slicing backend."
+msgstr "Poskytuje odkaz na backend krájení CuraEngine."
-#: SimulationView/plugin.json
+#: CuraEngineBackend/plugin.json
msgctxt "name"
-msgid "Simulation View"
-msgstr "Pohled simulace"
-
-#: MachineSettingsAction/plugin.json
-msgctxt "description"
-msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
-msgstr "Poskytuje způsob, jak změnit nastavení zařízení (například objem sestavení, velikost trysek atd.)."
-
-#: MachineSettingsAction/plugin.json
-msgctxt "name"
-msgid "Machine Settings Action"
-msgstr "Akce nastavení zařízení"
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "description"
-msgid "Provides capabilities to read and write XML-based material profiles."
-msgstr "Poskytuje funkce pro čtení a zápis materiálových profilů založených na XML."
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "name"
-msgid "Material Profiles"
-msgstr "Materiálové profily"
-
-#: SolidView/plugin.json
-msgctxt "description"
-msgid "Provides a normal solid mesh view."
-msgstr "Poskytuje normální zobrazení pevné sítě."
-
-#: SolidView/plugin.json
-msgctxt "name"
-msgid "Solid View"
-msgstr "Solid View"
+msgid "CuraEngine Backend"
+msgstr "CuraEngine Backend"
#: CuraProfileReader/plugin.json
msgctxt "description"
@@ -6016,15 +5580,85 @@ msgctxt "name"
msgid "Cura Profile Reader"
msgstr "Čtečka Cura profilu"
-#: UFPWriter/plugin.json
+#: CuraProfileWriter/plugin.json
msgctxt "description"
-msgid "Provides support for writing Ultimaker Format Packages."
-msgstr "Poskytuje podporu pro psaní balíčků formátu Ultimaker."
+msgid "Provides support for exporting Cura profiles."
+msgstr "Poskytuje podporu pro export profilů Cura."
-#: UFPWriter/plugin.json
+#: CuraProfileWriter/plugin.json
msgctxt "name"
-msgid "UFP Writer"
-msgstr "Zapisovač UFP"
+msgid "Cura Profile Writer"
+msgstr "Zapisovač Cura profilu"
+
+#: DigitalLibrary/plugin.json
+msgctxt "description"
+msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
+msgstr ""
+
+#: DigitalLibrary/plugin.json
+msgctxt "name"
+msgid "Ultimaker Digital Library"
+msgstr ""
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "description"
+msgid "Checks for firmware updates."
+msgstr "Zkontroluje dostupné aktualizace firmwaru."
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "name"
+msgid "Firmware Update Checker"
+msgstr "Kontroler aktualizace firmwaru"
+
+#: FirmwareUpdater/plugin.json
+msgctxt "description"
+msgid "Provides a machine actions for updating firmware."
+msgstr "Poskytuje akce počítače pro aktualizaci firmwaru."
+
+#: FirmwareUpdater/plugin.json
+msgctxt "name"
+msgid "Firmware Updater"
+msgstr "Firmware Updater"
+
+#: GCodeGzReader/plugin.json
+msgctxt "description"
+msgid "Reads g-code from a compressed archive."
+msgstr "Čte g-kód z komprimovaného archivu."
+
+#: GCodeGzReader/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Reader"
+msgstr "Čtečka kompresovaného G kódu"
+
+#: GCodeGzWriter/plugin.json
+msgctxt "description"
+msgid "Writes g-code to a compressed archive."
+msgstr "Zapíše g-kód do komprimovaného archivu."
+
+#: GCodeGzWriter/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Writer"
+msgstr "Zapisova kompresovaného G kódu"
+
+#: GCodeProfileReader/plugin.json
+msgctxt "description"
+msgid "Provides support for importing profiles from g-code files."
+msgstr "Poskytuje podporu pro import profilů ze souborů g-kódu."
+
+#: GCodeProfileReader/plugin.json
+msgctxt "name"
+msgid "G-code Profile Reader"
+msgstr "Čtečka profilu G kódu"
+
+#: GCodeReader/plugin.json
+msgctxt "description"
+msgid "Allows loading and displaying G-code files."
+msgstr "Povoluje načítání a zobrazení souborů G kódu."
+
+#: GCodeReader/plugin.json
+msgctxt "name"
+msgid "G-code Reader"
+msgstr "Čtečka G kódu"
#: GCodeWriter/plugin.json
msgctxt "description"
@@ -6046,15 +5680,445 @@ msgctxt "name"
msgid "Image Reader"
msgstr "Čtečka obrázků"
-#: CuraDrive/plugin.json
+#: LegacyProfileReader/plugin.json
msgctxt "description"
-msgid "Backup and restore your configuration."
-msgstr "Zálohujte a obnovte konfiguraci."
+msgid "Provides support for importing profiles from legacy Cura versions."
+msgstr "Poskytuje podporu pro import profilů ze starších verzí Cura."
-#: CuraDrive/plugin.json
+#: LegacyProfileReader/plugin.json
msgctxt "name"
-msgid "Cura Backups"
-msgstr "Cura zálohy"
+msgid "Legacy Cura Profile Reader"
+msgstr "Čtečka legacy Cura profilu"
+
+#: MachineSettingsAction/plugin.json
+msgctxt "description"
+msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
+msgstr "Poskytuje způsob, jak změnit nastavení zařízení (například objem sestavení, velikost trysek atd.)."
+
+#: MachineSettingsAction/plugin.json
+msgctxt "name"
+msgid "Machine Settings Action"
+msgstr "Akce nastavení zařízení"
+
+#: MonitorStage/plugin.json
+msgctxt "description"
+msgid "Provides a monitor stage in Cura."
+msgstr "Poskytuje monitorovací scénu v Cuře."
+
+#: MonitorStage/plugin.json
+msgctxt "name"
+msgid "Monitor Stage"
+msgstr "Fáze monitoringu"
+
+#: PerObjectSettingsTool/plugin.json
+msgctxt "description"
+msgid "Provides the Per Model Settings."
+msgstr "Umožňuje nastavení pro každý model."
+
+#: PerObjectSettingsTool/plugin.json
+msgctxt "name"
+msgid "Per Model Settings Tool"
+msgstr "Nástroj pro nastavení pro každý model"
+
+#: PostProcessingPlugin/plugin.json
+msgctxt "description"
+msgid "Extension that allows for user created scripts for post processing"
+msgstr "Rozšíření, které umožňuje uživateli vytvořené skripty pro následné zpracování"
+
+#: PostProcessingPlugin/plugin.json
+msgctxt "name"
+msgid "Post Processing"
+msgstr "Post Processing"
+
+#: PrepareStage/plugin.json
+msgctxt "description"
+msgid "Provides a prepare stage in Cura."
+msgstr "Poskytuje přípravnou fázi v Cuře."
+
+#: PrepareStage/plugin.json
+msgctxt "name"
+msgid "Prepare Stage"
+msgstr "Fáze přípravy"
+
+#: PreviewStage/plugin.json
+msgctxt "description"
+msgid "Provides a preview stage in Cura."
+msgstr "Poskytuje fázi náhledu v Cura."
+
+#: PreviewStage/plugin.json
+msgctxt "name"
+msgid "Preview Stage"
+msgstr "Fáze náhledu"
+
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "description"
+msgid "Provides removable drive hotplugging and writing support."
+msgstr "Poskytuje vyměnitelnou jednotku za plného zapojení a podporu zápisu."
+
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "name"
+msgid "Removable Drive Output Device Plugin"
+msgstr "Vyměnitelný zásuvný modul pro výstupní zařízení"
+
+#: SentryLogger/plugin.json
+msgctxt "description"
+msgid "Logs certain events so that they can be used by the crash reporter"
+msgstr "Protokolová určité události, aby je mohl použít reportér havárií"
+
+#: SentryLogger/plugin.json
+msgctxt "name"
+msgid "Sentry Logger"
+msgstr "Záznamník hlavy"
+
+#: SimulationView/plugin.json
+msgctxt "description"
+msgid "Provides the Simulation view."
+msgstr "Poskytuje zobrazení simulace."
+
+#: SimulationView/plugin.json
+msgctxt "name"
+msgid "Simulation View"
+msgstr "Pohled simulace"
+
+#: SliceInfoPlugin/plugin.json
+msgctxt "description"
+msgid "Submits anonymous slice info. Can be disabled through preferences."
+msgstr "Odešle anonymní informace o slicování. Lze deaktivovat pomocí preferencí."
+
+#: SliceInfoPlugin/plugin.json
+msgctxt "name"
+msgid "Slice info"
+msgstr "Informace o slicování"
+
+#: SolidView/plugin.json
+msgctxt "description"
+msgid "Provides a normal solid mesh view."
+msgstr "Poskytuje normální zobrazení pevné sítě."
+
+#: SolidView/plugin.json
+msgctxt "name"
+msgid "Solid View"
+msgstr "Solid View"
+
+#: SupportEraser/plugin.json
+msgctxt "description"
+msgid "Creates an eraser mesh to block the printing of support in certain places"
+msgstr "Vytvoří gumovou síť, která blokuje tisk podpory na určitých místech"
+
+#: SupportEraser/plugin.json
+msgctxt "name"
+msgid "Support Eraser"
+msgstr "Mazač podpor"
+
+#: Toolbox/plugin.json
+msgctxt "description"
+msgid "Find, manage and install new Cura packages."
+msgstr "Najděte, spravujte a nainstalujte nové balíčky Cura."
+
+#: Toolbox/plugin.json
+msgctxt "name"
+msgid "Toolbox"
+msgstr "Nástroje"
+
+#: TrimeshReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading model files."
+msgstr "Poskytuje podporu pro čtení souborů modelu."
+
+#: TrimeshReader/plugin.json
+msgctxt "name"
+msgid "Trimesh Reader"
+msgstr "Čtečka trimesh"
+
+#: UFPReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading Ultimaker Format Packages."
+msgstr "Poskytuje podporu pro čtení balíčků formátu Ultimaker."
+
+#: UFPReader/plugin.json
+msgctxt "name"
+msgid "UFP Reader"
+msgstr "Čtečka UFP"
+
+#: UFPWriter/plugin.json
+msgctxt "description"
+msgid "Provides support for writing Ultimaker Format Packages."
+msgstr "Poskytuje podporu pro psaní balíčků formátu Ultimaker."
+
+#: UFPWriter/plugin.json
+msgctxt "name"
+msgid "UFP Writer"
+msgstr "Zapisovač UFP"
+
+#: UltimakerMachineActions/plugin.json
+msgctxt "description"
+msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
+msgstr "Poskytuje akce strojů pro stroje Ultimaker (jako je průvodce vyrovnáváním postele, výběr upgradů atd.)."
+
+#: UltimakerMachineActions/plugin.json
+msgctxt "name"
+msgid "Ultimaker machine actions"
+msgstr "Akce zařízení Ultimaker"
+
+#: UM3NetworkPrinting/plugin.json
+msgctxt "description"
+msgid "Manages network connections to Ultimaker networked printers."
+msgstr "Spravuje síťová připojení k síťovým tiskárnám Ultimaker."
+
+#: UM3NetworkPrinting/plugin.json
+msgctxt "name"
+msgid "Ultimaker Network Connection"
+msgstr "Síťové připojení Ultimaker"
+
+#: USBPrinting/plugin.json
+msgctxt "description"
+msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
+msgstr "Přijme G-kód a odešle je do tiskárny. Plugin může také aktualizovat firmware."
+
+#: USBPrinting/plugin.json
+msgctxt "name"
+msgid "USB printing"
+msgstr "USB tisk"
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
+msgstr "Aktualizuje konfigurace z Cura 2.1 na Cura 2.2."
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.1 to 2.2"
+msgstr "Aktualizace verze 2.1 na 2.2"
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
+msgstr "Aktualizuje konfigurace z Cura 2.2 na Cura 2.4."
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.2 to 2.4"
+msgstr "Aktualizace verze 2.2 na 2.4"
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
+msgstr "Aktualizuje konfigurace z Cura 2.5 na Cura 2.6."
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.5 to 2.6"
+msgstr "Aktualizace verze 2.5 na 2.6"
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
+msgstr "Aktualizuje konfigurace z Cura 2.6 na Cura 2.7."
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.6 to 2.7"
+msgstr "Aktualizace verze 2.6 na 2.7"
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
+msgstr "Aktualizuje konfigurace z Cura 2.7 na Cura 3.0."
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.7 to 3.0"
+msgstr "Aktualizace verze 2.7 na 3.0"
+
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
+msgstr "Aktualizuje konfigurace z Cura 3.0 na Cura 3.1."
+
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.0 to 3.1"
+msgstr "Aktualizace verze 3.0 na 3.1"
+
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
+msgstr "Aktualizuje konfigurace z Cura 3.2 na Cura 3.3."
+
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.2 to 3.3"
+msgstr "Aktualizace verze 3.2 na 3.3"
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
+msgstr "Aktualizuje konfigurace z Cura 3.3 na Cura 3.4."
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.3 to 3.4"
+msgstr "Aktualizace verze 3.3 na 3.4"
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
+msgstr "Aktualizuje konfigurace z Cura 3.4 na Cura 3.5."
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.4 to 3.5"
+msgstr "Aktualizace verze 3.4 na 3.5"
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
+msgstr "Aktualizuje konfigurace z Cura 3.5 na Cura 4.0."
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.5 to 4.0"
+msgstr "Aktualizace verze 3.5 na 4.0"
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
+msgstr "Aktualizuje konfigurace z Cura 4.0 na Cura 4.1."
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.0 to 4.1"
+msgstr "Aktualizace verze 4.0 na 4.1"
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
+msgstr "Aktualizuje konfigurace z Cura 4.1 na Cura 4.2."
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.1 to 4.2"
+msgstr "Aktualizace verze 4.1 na 4.2"
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
+msgstr "Aktualizuje konfigurace z Cura 4.2 na Cura 4.3."
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.2 to 4.3"
+msgstr "Aktualizace verze 4.2 na 4.3"
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
+msgstr "Aktualizuje konfigurace z Cura 4.3 na Cura 4.4."
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.3 to 4.4"
+msgstr "Aktualizace verze 4.3 na 4.4"
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
+msgstr "Aktualizuje konfigurace z Cura 4.4 na Cura 4.5."
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.4 to 4.5"
+msgstr "Aktualizace verze 4.4 na 4.5"
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
+msgstr "Aktualizuje konfigurace z Cura 4.5 na Cura 4.6."
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.5 to 4.6"
+msgstr "Aktualizace verze 4.5 na 4.6"
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
+msgstr "Aktualizuje konfigurace z Cura 4.6.0 na Cura 4.6.2."
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.0 to 4.6.2"
+msgstr "Aktualizace verze 4.6.0 na 4.6.2"
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
+msgstr "Aktualizuje konfigurace z Cura 4.6.2 na Cura 4.7."
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.2 to 4.7"
+msgstr "Aktualizace verze 4.6.2 na 4.7"
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
+msgstr "Aktualizuje konfigurace z Cura 4.7 na Cura 4.8."
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.7 to 4.8"
+msgstr "Aktualizace verze 4.7 na 4.8"
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.8 to 4.9"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.9 to 4.10"
+msgstr ""
+
+#: X3DReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading X3D files."
+msgstr "Poskytuje podporu pro čtení souborů X3D."
+
+#: X3DReader/plugin.json
+msgctxt "name"
+msgid "X3D Reader"
+msgstr "Čtečka X3D"
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "description"
+msgid "Provides capabilities to read and write XML-based material profiles."
+msgstr "Poskytuje funkce pro čtení a zápis materiálových profilů založených na XML."
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "name"
+msgid "Material Profiles"
+msgstr "Materiálové profily"
+
+#: XRayView/plugin.json
+msgctxt "description"
+msgid "Provides the X-Ray view."
+msgstr "Poskytuje rentgenové zobrazení."
+
+#: XRayView/plugin.json
+msgctxt "name"
+msgid "X-Ray View"
+msgstr "Rentgenový pohled"
#~ msgctxt "@info:status"
#~ msgid "Global stack is missing."
diff --git a/resources/i18n/cs_CZ/fdmextruder.def.json.po b/resources/i18n/cs_CZ/fdmextruder.def.json.po
index 07831057f6..e2833ba4c3 100644
--- a/resources/i18n/cs_CZ/fdmextruder.def.json.po
+++ b/resources/i18n/cs_CZ/fdmextruder.def.json.po
@@ -5,9 +5,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: 2020-02-20 17:30+0100\n"
"Last-Translator: DenyCZ \n"
"Language-Team: DenyCZ \n"
diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po
index 560164b796..8a120467be 100644
--- a/resources/i18n/cs_CZ/fdmprinter.def.json.po
+++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po
@@ -5,9 +5,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: 2021-04-04 19:37+0200\n"
"Last-Translator: Miroslav Šustek \n"
"Language-Team: DenyCZ \n"
@@ -3199,8 +3199,8 @@ msgstr "Maximální vzdálenost Combing-u bez retrakce"
#: fdmprinter.def.json
msgctxt "retraction_combing_max_distance description"
-msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
-msgstr "Pokud nenulové, pohyby combingového pohybu, které jsou delší než tato vzdálenost, použijí zatažení."
+msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
+msgstr ""
#: fdmprinter.def.json
msgctxt "travel_retract_before_outer_wall label"
@@ -6400,6 +6400,10 @@ msgctxt "mesh_rotation_matrix description"
msgid "Transformation matrix to be applied to the model when loading it from file."
msgstr "Transformační matice, která se použije na model při načítání ze souboru."
+#~ msgctxt "retraction_combing_max_distance description"
+#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
+#~ msgstr "Pokud nenulové, pohyby combingového pohybu, které jsou delší než tato vzdálenost, použijí zatažení."
+
#~ 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 lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
#~ msgstr "Určuje prioritu této sítě, když se překrývá více sítí výplně. U oblastí, kde se překrývá více sítí výplně, se nastavení přebírá ze sítě s nejnižším pořadím. Síť výplně s vyšším pořadím bude modifikovat výplň sítě výplně s nižším pořadím a běžné sítě."
diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot
index d70842b30f..07459f1da2 100644
--- a/resources/i18n/cura.pot
+++ b/resources/i18n/cura.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:10+0200\n"
+"POT-Creation-Date: 2021-06-10 17:35+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -18,197 +18,189 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
-msgctxt "@info:progress"
-msgid "Loading machines..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+msgctxt "@label"
+msgid "Unknown"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
-msgctxt "@info:progress"
-msgid "Setting up preferences..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
+msgctxt "@label"
+msgid ""
+"The printer(s) below cannot be connected because they are part of a group"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
-msgctxt "@info:progress"
-msgid "Initializing Active Machine..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
+msgctxt "@label"
+msgid "Available networked printers"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
-msgctxt "@info:progress"
-msgid "Initializing machine manager..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211
+msgctxt "@menuitem"
+msgid "Not overridden"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
-msgctxt "@info:progress"
-msgid "Initializing build volume..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
-msgctxt "@info:progress"
-msgid "Setting up scene..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
-msgctxt "@info:progress"
-msgid "Loading interface..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
-msgctxt "@info:progress"
-msgid "Initializing engine..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
-#, 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 ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
-msgctxt "@info:title"
-msgid "Warning"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
-msgctxt "@info:title"
-msgid "Error"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
#, python-brace-format
msgctxt "@label {0} is the name of a printer that's about to be deleted."
msgid "Are you sure you wish to remove {0}? This cannot be undone!"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
-msgctxt "@label"
-msgid "Custom Material"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
-msgctxt "@label"
-msgid "Custom"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
msgctxt "@label"
msgid "Default"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
-msgctxt "@label"
-msgid "Unknown"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
-msgctxt "@label"
-msgid "Custom profiles"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
-#, python-brace-format
-msgctxt "@item:inlistbox"
-msgid "All Supported Types ({0})"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
-msgctxt "@item:inlistbox"
-msgid "All Files (*)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
msgctxt "@label"
msgid "Visual"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
msgctxt "@text"
msgid ""
"The visual profile is designed to print visual prototypes and models with "
"the intent of high visual and surface quality."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
msgctxt "@label"
msgid "Engineering"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
msgctxt "@text"
msgid ""
"The engineering profile is designed to print functional prototypes and end-"
"use parts with the intent of better accuracy and for closer tolerances."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
msgctxt "@label"
msgid "Draft"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
msgctxt "@text"
msgid ""
"The draft profile is designed to print initial prototypes and concept "
"validation with the intent of significant print time reduction."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234
msgctxt "@label"
+msgid "Custom Material"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
+msgctxt "@label"
+msgid "Custom"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
+msgctxt "@label"
+msgid "Custom profiles"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
+#, python-brace-format
+msgctxt "@item:inlistbox"
+msgid "All Supported Types ({0})"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
+msgctxt "@item:inlistbox"
+msgid "All Files (*)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181
+msgctxt "@info:title"
+msgid "Login failed"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
+msgctxt "@info:status"
+msgid "Finding new location for objects"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Finding Location"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76
+msgctxt "@info:status"
+msgid "Unable to find a location within the build volume for all objects"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+msgctxt "@info:title"
+msgid "Can't Find Location"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116
+msgctxt "@info:backup_failed"
+msgid "Could not create archive from user data directory: {}"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
+msgctxt "@info:title"
+msgid "Backup"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup without having proper data or meta data."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup that is higher than the current version."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157
+msgctxt "@info:backup_failed"
+msgid "The following error occurred while trying to restore a Cura backup:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
+msgctxt "@info:status"
msgid ""
-"The printer(s) below cannot be connected because they are part of a group"
+"The build volume height has been reduced due to the value of the \"Print "
+"Sequence\" setting to prevent the gantry from colliding with printed models."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
-msgctxt "@label"
-msgid "Available networked printers"
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100
+msgctxt "@info:title"
+msgid "Build Volume"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
-msgctxt "@menuitem"
-msgid "Not overridden"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
msgctxt "@title:window"
msgid "Cura can't start"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
msgctxt "@label crash message"
msgid ""
"Oops, Ultimaker Cura has encountered something that doesn't seem right."
@@ -223,32 +215,32 @@ msgid ""
" "
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
msgctxt "@action:button"
msgid "Send crash report to Ultimaker"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
msgctxt "@action:button"
msgid "Show detailed crash report"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
msgctxt "@action:button"
msgid "Show configuration folder"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
msgctxt "@action:button"
msgid "Backup and Reset Configuration"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
msgctxt "@title:window"
msgid "Crash Report"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
msgctxt "@label crash message"
msgid ""
"
A fatal error has occurred in Cura. Please send us this Crash Report "
@@ -258,134 +250,221 @@ msgid ""
" "
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
msgctxt "@title:groupbox"
msgid "System information"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
msgctxt "@label unknown version of Cura"
msgid "Unknown"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
msgctxt "@label Cura version number"
msgid "Cura version"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
msgctxt "@label"
msgid "Cura language"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
msgctxt "@label"
msgid "OS language"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
msgctxt "@label Type of platform"
msgid "Platform"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
msgctxt "@label"
msgid "Qt version"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
msgctxt "@label"
msgid "PyQt version"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
msgctxt "@label OpenGL version"
msgid "OpenGL"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
msgctxt "@label"
msgid "Not yet initialized
"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
#, python-brace-format
msgctxt "@label OpenGL version"
msgid "OpenGL Version: {version}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
#, python-brace-format
msgctxt "@label OpenGL vendor"
msgid "OpenGL Vendor: {vendor}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
#, python-brace-format
msgctxt "@label OpenGL renderer"
msgid "OpenGL Renderer: {renderer}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
msgctxt "@title:groupbox"
msgid "Error traceback"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
msgctxt "@title:groupbox"
msgid "Logs"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
msgctxt "@action:button"
msgid "Send report"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
-msgctxt "@info:title"
-msgid "Login failed"
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527
+msgctxt "@info:progress"
+msgid "Loading machines..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534
+msgctxt "@info:progress"
+msgid "Setting up preferences..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672
+msgctxt "@info:progress"
+msgid "Initializing Active Machine..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803
+msgctxt "@info:progress"
+msgid "Initializing machine manager..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817
+msgctxt "@info:progress"
+msgid "Initializing build volume..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888
+msgctxt "@info:progress"
+msgid "Setting up scene..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924
+msgctxt "@info:progress"
+msgid "Loading interface..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929
+msgctxt "@info:progress"
+msgid "Initializing engine..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246
+#, python-format
+msgctxt ""
+"@info 'width', 'depth' and 'height' are variable names that must NOT be "
+"translated; just translate the format of ##x##x## mm."
+msgid "%(width).1f x %(depth).1f x %(height).1f mm"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+msgctxt "@info:title"
+msgid "Warning"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
+msgctxt "@info:title"
+msgid "Error"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26
+msgctxt "@info:status"
+msgid "Multiplying and placing objects"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Placing Objects"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77
+msgctxt "@info:title"
+msgid "Placing Object"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92
msgctxt "@message"
msgid "Could not read response."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
+msgctxt "@message"
+msgid "The provided state is not correct."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
+msgctxt "@message"
+msgid "Please give the required permissions when authorizing this application."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
+msgctxt "@message"
+msgid "Something unexpected happened when trying to log in, please try again."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189
msgctxt "@info"
msgid ""
"Unable to start a new sign in process. Check if another sign in attempt is "
"still active."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
msgctxt "@info"
msgid "Unable to reach the Ultimaker account server."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
-msgctxt "@message"
-msgid "The provided state is not correct."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
-msgctxt "@message"
-msgid "Please give the required permissions when authorizing this application."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
-msgctxt "@message"
-msgid "Something unexpected happened when trying to log in, please try again."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132
msgctxt "@title:window"
msgid "File Already Exists"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
#, python-brace-format
msgctxt "@label Don't translate the XML tag !"
msgid ""
@@ -393,42 +472,20 @@ msgid ""
"overwrite it?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460
msgctxt "@info:status"
msgid "Invalid file URL:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
-msgctxt "@label"
-msgid "Nozzle"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
-msgctxt "@info:message Followed by a list of settings."
-msgid ""
-"Settings have been changed to match the current availability of extruders:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
-msgctxt "@info:title"
-msgid "Settings updated"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
-msgctxt "@info:title"
-msgid "Extruder(s) Disabled"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags or !"
msgid ""
"Failed to export profile to {0}: {1}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid ""
@@ -436,44 +493,44 @@ msgid ""
"failure."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Exported profile to {0}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157
msgctxt "@info:title"
msgid "Export succeeded"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "Failed to import profile from {0}: {1}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192
#, 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 ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "No custom profile to import in file {0}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "Failed to import profile from {0}:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid ""
@@ -481,51 +538,51 @@ msgid ""
"import it."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Failed to import profile from {0}:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342
#, python-brace-format
msgctxt "@info:status"
msgid "Successfully imported profile {0}."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349
#, python-brace-format
msgctxt "@info:status"
msgid "File {0} does not contain any valid profile."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352
#, python-brace-format
msgctxt "@info:status"
msgid "Profile {0} has an unknown file type or is corrupted."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426
msgctxt "@label"
msgid "Custom profile"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442
msgctxt "@info:status"
msgid "Profile is missing a quality type."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446
msgctxt "@info:status"
msgid "There is no active printer yet."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452
msgctxt "@info:status"
msgid "Unable to add the profile."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466
#, python-brace-format
msgctxt "@info:status"
msgid ""
@@ -533,7 +590,7 @@ msgid ""
"definition '{1}'."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471
#, python-brace-format
msgctxt "@info:status"
msgid ""
@@ -542,410 +599,333 @@ msgid ""
"combination that can use this quality type."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
msgctxt "@info:not supported profile"
msgid "Not supported"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
msgctxt "@info:No intent profile selected"
msgid "Default"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
-msgctxt "@info:status"
-msgid "Finding new location for objects"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
+msgctxt "@label"
+msgid "Nozzle"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856
+msgctxt "@info:message Followed by a list of settings."
+msgid ""
+"Settings have been changed to match the current availability of extruders:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858
msgctxt "@info:title"
-msgid "Finding Location"
+msgid "Settings updated"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
-msgctxt "@info:status"
-msgid "Unable to find a location within the build volume for all objects"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478
msgctxt "@info:title"
-msgid "Can't Find Location"
+msgid "Extruder(s) Disabled"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
+msgctxt "@action:button"
+msgid "Add"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272
+msgctxt "@action:button"
+msgid "Finish"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+msgctxt "@action:button"
+msgid "Cancel"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
#, python-brace-format
msgctxt "@label"
msgid "Group #{group_nr}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
-msgctxt "@action:button"
-msgid "Skip"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
-msgctxt "@action:button"
-msgid "Close"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
-msgctxt "@action:button"
-msgid "Next"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
-msgctxt "@action:button"
-msgid "Finish"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82
msgctxt "@tooltip"
msgid "Outer Wall"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
msgctxt "@tooltip"
msgid "Inner Walls"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
msgctxt "@tooltip"
msgid "Skin"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
msgctxt "@tooltip"
msgid "Infill"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
msgctxt "@tooltip"
msgid "Support Infill"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
msgctxt "@tooltip"
msgid "Support Interface"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
msgctxt "@tooltip"
msgid "Support"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
msgctxt "@tooltip"
msgid "Skirt"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
msgctxt "@tooltip"
msgid "Prime Tower"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
msgctxt "@tooltip"
msgid "Travel"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
msgctxt "@tooltip"
msgid "Retractions"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
msgctxt "@tooltip"
msgid "Other"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259
msgctxt "@action:button"
-msgid "Add"
+msgid "Next"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55
msgctxt "@action:button"
-msgid "Cancel"
+msgid "Skip"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
+msgctxt "@action:button"
+msgid "Close"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
+msgctxt "@info:title"
+msgid "3D Model Assistant"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96
+#, python-brace-format
msgctxt "@info:status"
msgid ""
-"The build volume height has been reduced due to the value of the \"Print "
-"Sequence\" setting to prevent the gantry from colliding with printed models."
+"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."
+"p>\n"
+"
View print quality "
+"guide
"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
-msgctxt "@info:title"
-msgid "Build Volume"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
-msgctxt "@info:backup_failed"
-msgid "Could not create archive from user data directory: {}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
-msgctxt "@info:title"
-msgid "Backup"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup without having proper data or meta data."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup that is higher than the current version."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
-msgctxt "@info:status"
-msgid "Multiplying and placing objects"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
-msgctxt "@info:title"
-msgid "Placing Objects"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
-msgctxt "@info:title"
-msgid "Placing Object"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Save to Removable Drive"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
-#, python-brace-format
-msgctxt "@item:inlistbox"
-msgid "Save to Removable Drive {0}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
-msgctxt "@info:status"
-msgid "There are no file formats available to write with!"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-#, python-brace-format
-msgctxt "@info:progress Don't translate the XML tags !"
-msgid "Saving to Removable Drive {0}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-msgctxt "@info:title"
-msgid "Saving"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags or !"
-msgid "Could not save to {0}: {1}"
+msgid ""
+"Project file {0} contains an unknown machine type "
+"{1}. Cannot import the machine. Models will be imported "
+"instead."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
-#, python-brace-format
-msgctxt "@info:status Don't translate the tag {device}!"
-msgid "Could not find a file name when trying to write to {device}."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Could not save to removable drive {0}: {1}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Saved to Removable Drive {0} as {1}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543
msgctxt "@info:title"
-msgid "File Saved"
+msgid "Open Project File"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
-msgctxt "@action:button"
-msgid "Eject"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639
#, python-brace-format
-msgctxt "@action"
-msgid "Eject removable device {0}"
+msgctxt "@info:error Don't translate the XML tags or !"
+msgid ""
+"Project file {0} is suddenly inaccessible: {1}"
+"."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Ejected {0}. You can now safely remove the drive."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647
msgctxt "@info:title"
-msgid "Safely Remove Hardware"
+msgid "Can't Open Project File"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646
#, python-brace-format
-msgctxt "@info:status"
-msgid "Failed to eject {0}. Another program may be using the drive."
+msgctxt "@info:error Don't translate the XML tags or !"
+msgid ""
+"Project file {0} is corrupt: {1}."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
-msgctxt "@item:intext"
-msgid "Removable Drive"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698
+#, python-brace-format
+msgctxt "@info:error Don't translate the XML tag !"
+msgid ""
+"Project file {0} is made using profiles that are "
+"unknown to this version of Ultimaker Cura."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203
+msgctxt "@title:tab"
+msgid "Recommended"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205
+msgctxt "@title:tab"
+msgid "Custom"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
+msgctxt "@item:inlistbox"
+msgid "3MF File"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
+msgctxt "@error:zip"
+msgid "3MF Writer plug-in is corrupt."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
+msgctxt "@error:zip"
+msgid "No permission to write the workspace here."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
+msgctxt "@error:zip"
+msgid ""
+"The operating system does not allow saving a project file to this location "
+"or with this file name."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
+msgctxt "@error:zip"
+msgid "Error writing 3mf file."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "3MF file"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
+msgctxt "@item:inlistbox"
+msgid "Cura Project 3MF file"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
msgctxt "@item:inlistbox"
msgid "AMF File"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
-msgctxt "@item:inlistbox"
-msgid "G-code File"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
-msgctxt "@action"
-msgid "Update Firmware"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
-msgctxt "@item:inlistbox"
-msgid "X3D File"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
-msgctxt "@button"
-msgid "Decline"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
-msgctxt "@button"
-msgid "Agree"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
-msgctxt "@title:window"
-msgid "Plugin License Agreement"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
-msgctxt "@button"
-msgid "Decline and remove from account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
-msgctxt "@info:generic"
-msgid "{} plugins failed to download"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
-msgctxt "@info:generic"
-msgid "Syncing..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
msgctxt "@info:title"
-msgid "Changes detected from your Ultimaker account"
+msgid "Backups"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
-msgctxt "@info:generic"
-msgid "You need to quit and restart {} before changes have effect."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
+msgctxt "@info:backup_status"
+msgid "There was an error while uploading your backup."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
-msgctxt "@info:generic"
-msgid "Do you want to sync material and software packages with your account?"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
+msgctxt "@info:backup_status"
+msgid "Creating your backup..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
-msgctxt "@action:button"
-msgid "Sync"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
+msgctxt "@info:backup_status"
+msgid "There was an error while creating your backup."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
-msgctxt "@label"
-msgid "Per Model Settings"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
+msgctxt "@info:backup_status"
+msgid "Uploading your backup..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
-msgctxt "@info:tooltip"
-msgid "Configure Per Model Settings"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
+msgctxt "@info:backup_status"
+msgid "Your backup has finished uploading."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
+msgctxt "@error:file_size"
+msgid "The backup exceeds the maximum file size."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
+msgctxt "@info:backup_status"
+msgid "There was an error trying to restore your backup."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
msgctxt "@item:inmenu"
-msgid "Post Processing"
+msgid "Manage backups"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
-msgctxt "@item:inmenu"
-msgid "Modify G-Code"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
msgctxt "@info:status"
msgid ""
"Unable to slice with the current material as it is incompatible with the "
"selected machine or configuration."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
msgctxt "@info:title"
msgid "Unable to slice"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
#, python-brace-format
msgctxt "@info:status"
msgid ""
@@ -953,7 +933,7 @@ msgid ""
"errors: {0}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
#, python-brace-format
msgctxt "@info:status"
msgid ""
@@ -961,13 +941,13 @@ msgid ""
"errors on one or more models: {error_labels}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
msgctxt "@info:status"
msgid ""
"Unable to slice because the prime tower or prime position(s) are invalid."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
#, python-format
msgctxt "@info:status"
msgid ""
@@ -975,7 +955,7 @@ msgid ""
"%s."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
msgctxt "@info:status"
msgid ""
"Please review settings and check if your models:\n"
@@ -984,80 +964,474 @@ msgid ""
"- Are not all set as modifier meshes"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:status"
msgid "Processing Layers"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:title"
msgid "Information"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
-msgctxt "@item:inmenu"
-msgid "USB printing"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Print via USB"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
-msgctxt "@info:tooltip"
-msgid "Print via USB"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
-msgctxt "@info:status"
-msgid "Connected via USB"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
-msgctxt "@label"
-msgid ""
-"A USB print is in progress, closing Cura will stop this print. Are you sure?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid ""
-"A print is still in progress. Cura cannot start another print via USB until "
-"the previous print has completed."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "Print in Progress"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
msgctxt "@item:inlistbox"
msgid "Cura Profile"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
-msgctxt "@action"
-msgid "Connect via Network"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
+msgctxt "@info"
+msgid "Could not access update information."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
+#, python-brace-format
+msgctxt ""
+"@info Don't translate {machine_name}, since it gets replaced by a printer "
+"name!"
+msgid ""
+"New features or bug-fixes may be available for your {machine_name}! If not "
+"already at the latest version, it is recommended to update the firmware on "
+"your printer to version {latest_version}."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
+#, python-format
+msgctxt "@info:title The %s gets replaced with the printer name."
+msgid "New %s firmware available"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
+msgctxt "@action:button"
+msgid "How to update"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
+msgctxt "@action"
+msgid "Update Firmware"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
+msgctxt "@item:inlistbox"
+msgid "Compressed G-code File"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
+msgctxt "@error:not supported"
+msgid "GCodeGzWriter does not support text mode."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
+msgctxt "@item:inlistbox"
+msgid "G-code File"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347
+msgctxt "@info:status"
+msgid "Parsing G-code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503
+msgctxt "@info:title"
+msgid "G-code Details"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501
+msgctxt "@info:generic"
+msgid ""
+"Make sure the g-code is suitable for your printer and printer configuration "
+"before sending the file to it. The g-code representation may not be accurate."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "G File"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74
+msgctxt "@error:not supported"
+msgid "GCodeWriter does not support non-text mode."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96
+msgctxt "@warning:status"
+msgid "Please prepare G-code before exporting."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "JPG Image"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "JPEG Image"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
+msgctxt "@item:inlistbox"
+msgid "PNG Image"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "BMP Image"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
+msgctxt "@item:inlistbox"
+msgid "GIF Image"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "Cura 15.04 profiles"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
+msgctxt "@action"
+msgid "Machine Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
+msgctxt "@item:inmenu"
+msgid "Monitor"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
+msgctxt "@label"
+msgid "Per Model Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
+msgctxt "@info:tooltip"
+msgid "Configure Per Model Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+msgctxt "@item:inmenu"
+msgid "Post Processing"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
+msgctxt "@item:inmenu"
+msgid "Modify G-Code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Prepare"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
+msgctxt "@item:inmenu"
+msgid "Preview"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Save to Removable Drive"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
+#, python-brace-format
+msgctxt "@item:inlistbox"
+msgid "Save to Removable Drive {0}"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
+msgctxt "@info:status"
+msgid "There are no file formats available to write with!"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+#, python-brace-format
+msgctxt "@info:progress Don't translate the XML tags !"
+msgid "Saving to Removable Drive {0}"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+msgctxt "@info:title"
+msgid "Saving"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#, python-brace-format
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid "Could not save to {0}: {1}"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
+#, python-brace-format
+msgctxt "@info:status Don't translate the tag {device}!"
+msgid "Could not find a file name when trying to write to {device}."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Could not save to removable drive {0}: {1}"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Saved to Removable Drive {0} as {1}"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+msgctxt "@info:title"
+msgid "File Saved"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+msgctxt "@action:button"
+msgid "Eject"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#, python-brace-format
+msgctxt "@action"
+msgid "Eject removable device {0}"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Ejected {0}. You can now safely remove the drive."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+msgctxt "@info:title"
+msgid "Safely Remove Hardware"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Failed to eject {0}. Another program may be using the drive."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
+msgctxt "@item:intext"
+msgid "Removable Drive"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128
+msgctxt "@info:status"
+msgid "Cura does not accurately display layers when Wire Printing is enabled."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129
+msgctxt "@info:title"
+msgid "Simulation View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:status"
+msgid "Nothing is shown because you need to slice first."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:title"
+msgid "No layers to show"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74
+msgctxt "@info:option_text"
+msgid "Do not show this message again"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
+msgctxt "@item:inlistbox"
+msgid "Layer view"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71
+msgctxt "@info:status"
+msgid ""
+"The highlighted areas indicate either missing or extraneous surfaces. Fix "
+"your model and open it again into Cura."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73
+msgctxt "@info:title"
+msgid "Model Errors"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79
+msgctxt "@action:button"
+msgid "Learn more"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Solid view"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
+msgctxt "@label"
+msgid "Support Blocker"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
+msgctxt "@info:tooltip"
+msgid "Create a volume in which supports are not printed."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
+msgctxt "@info:generic"
+msgid "Do you want to sync material and software packages with your account?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
+msgctxt "@info:title"
+msgid "Changes detected from your Ultimaker account"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
+msgctxt "@action:button"
+msgid "Sync"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
+msgctxt "@info:generic"
+msgid "Syncing..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
+msgctxt "@button"
+msgid "Decline"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
+msgctxt "@button"
+msgid "Agree"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
+msgctxt "@title:window"
+msgid "Plugin License Agreement"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
+msgctxt "@button"
+msgid "Decline and remove from account"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
+msgctxt "@info:generic"
+msgid "You need to quit and restart {} before changes have effect."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
+msgctxt "@info:generic"
+msgid "{} plugins failed to download"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
+msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
+msgid "Open Compressed Triangle Mesh"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
+msgctxt "@item:inlistbox"
+msgid "COLLADA Digital Asset Exchange"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
+msgctxt "@item:inlistbox"
+msgid "glTF Binary"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
+msgctxt "@item:inlistbox"
+msgid "glTF Embedded JSON"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
+msgctxt "@item:inlistbox"
+msgid "Stanford Triangle Format"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
+msgctxt "@item:inlistbox"
+msgid "Compressed COLLADA Digital Asset Exchange"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
+msgctxt "@item:inlistbox"
+msgid "Ultimaker Format Package"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159
+msgctxt "@info:error"
+msgid "Can't write to UFP file:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
+msgctxt "@action"
+msgid "Level build plate"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+msgctxt "@action"
+msgid "Select upgrades"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
+msgctxt "@action:button"
+msgid "Print via cloud"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
+msgctxt "@properties:tooltip"
+msgid "Print via cloud"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
+msgctxt "@info:status"
+msgid "Connected via cloud"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270
+#, python-brace-format
+msgctxt "@error:send"
+msgid "Unknown error code when uploading print job: {0}"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
msgctxt "info:status"
msgid "New printer detected from your Ultimaker account"
msgid_plural "New printers detected from your Ultimaker account"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
#, python-brace-format
msgctxt "info:status Filled in with printer name and printer model."
msgid "Adding printer {name} ({model}) from your account"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
#, python-brace-format
msgctxt "info:{0} gets replaced by a number of printers"
msgid "... and {0} other"
@@ -1065,71 +1439,71 @@ msgid_plural "... and {0} others"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
msgctxt "info:status"
msgid "Printers added from Digital Factory:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
msgctxt "info:status"
msgid "A cloud connection is not available for a printer"
msgid_plural "A cloud connection is not available for some printers"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
msgctxt "info:status"
msgid "This printer is not linked to the Digital Factory:"
msgid_plural "These printers are not linked to the Digital Factory:"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
msgctxt "info:name"
msgid "Ultimaker Digital Factory"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
#, python-brace-format
msgctxt "info:status"
msgid "To establish a connection, please visit the {website_link}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
msgctxt "@action:button"
msgid "Keep printer configurations"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
msgctxt "@action:button"
msgid "Remove printers"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "{printer_name} will be removed until the next account sync."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "Are you sure you want to remove {printer_name} temporarily?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
msgctxt "@title:window"
msgid "Remove printers?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
#, python-brace-format
msgctxt "@label"
msgid ""
@@ -1143,7 +1517,7 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
msgctxt "@label"
msgid ""
"You are about to remove all printers from Cura. This action cannot be "
@@ -1151,101 +1525,34 @@ msgid ""
"Are you sure you want to continue?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
-msgctxt "@action:button"
-msgid "Print via cloud"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
-msgctxt "@properties:tooltip"
-msgid "Print via cloud"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
-msgctxt "@info:status"
-msgid "Connected via cloud"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
-#, python-brace-format
-msgctxt "@error:send"
-msgid "Unknown error code when uploading print job: {0}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
-msgctxt "@info:status"
-msgid "tomorrow"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
-msgctxt "@info:status"
-msgid "today"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
-msgctxt "@info:status"
-msgid "Sending Print Job"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
-msgctxt "@info:status"
-msgid "Uploading print job to printer."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
-#, python-brace-format
-msgctxt "@info:status"
-msgid ""
-"You are attempting to connect to {0} but it is not the host of a group. You "
-"can visit the web page to configure it as a group host."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
-msgctxt "@info:title"
-msgid "Not a group host"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
-msgctxt "@action"
-msgid "Configure group"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
msgctxt "@info:status"
msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
msgctxt "@info:status Ultimaker Cloud should not be translated."
msgid "Connect to Ultimaker Digital Factory"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
msgctxt "@action"
msgid "Get started"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
msgctxt "@info:status"
-msgid "Please wait until the current job has been sent."
+msgid ""
+"You are attempting to connect to a printer that is not running Ultimaker "
+"Connect. Please update the printer to the latest firmware."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
msgctxt "@info:title"
-msgid "Print error"
+msgid "Update your printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
-msgctxt "@info:text"
-msgid "Could not upload the data to the printer."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
-msgctxt "@info:title"
-msgid "Network error"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
#, python-brace-format
msgctxt "@info:status"
msgid ""
@@ -1253,461 +1560,414 @@ msgid ""
"printer of group {0}."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
msgctxt "@info:title"
msgid "Sending materials to printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
+#, python-brace-format
+msgctxt "@info:status"
+msgid ""
+"You are attempting to connect to {0} but it is not the host of a group. You "
+"can visit the web page to configure it as a group host."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
+msgctxt "@info:title"
+msgid "Not a group host"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
+msgctxt "@action"
+msgid "Configure group"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+msgctxt "@info:status"
+msgid "Please wait until the current job has been sent."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+msgctxt "@info:title"
+msgid "Print error"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
+msgctxt "@info:text"
+msgid "Could not upload the data to the printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
+msgctxt "@info:title"
+msgid "Network error"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
+msgctxt "@info:status"
+msgid "Sending Print Job"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
+msgctxt "@info:status"
+msgid "Uploading print job to printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
msgctxt "@info:status"
msgid "Print job queue is full. The printer can't accept a new job."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
msgctxt "@info:title"
msgid "Queue Full"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
msgctxt "@info:status"
msgid "Print job was successfully sent to the printer."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
msgctxt "@info:title"
msgid "Data Sent"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
-msgctxt "@info:status"
-msgid ""
-"You are attempting to connect to a printer that is not running Ultimaker "
-"Connect. Please update the printer to the latest firmware."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
-msgctxt "@info:title"
-msgid "Update your printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
msgctxt "@action:button Preceded by 'Ready to'."
msgid "Print over network"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
msgctxt "@info:status"
msgid "Connected over the network"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
msgctxt "@action"
-msgid "Select upgrades"
+msgid "Connect via Network"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
-msgctxt "@action"
-msgid "Level build plate"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
-msgctxt "@title:tab"
-msgid "Recommended"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
-msgctxt "@title:tab"
-msgid "Custom"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
-#, 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 ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
-msgctxt "@info:title"
-msgid "Open Project File"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
-#, python-brace-format
-msgctxt "@info:error Don't translate the XML tags or !"
-msgid ""
-"Project file {0} is suddenly inaccessible: {1}"
-"."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
-msgctxt "@info:title"
-msgid "Can't Open Project File"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
-#, python-brace-format
-msgctxt "@info:error Don't translate the XML tags or !"
-msgid ""
-"Project file {0} is corrupt: {1}."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:693
-#, 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 ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:27
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:33
-msgctxt "@item:inlistbox"
-msgid "3MF File"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/__init__.py:17
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzReader/__init__.py:17
-msgctxt "@item:inlistbox"
-msgid "Compressed G-code File"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
-msgctxt "@error:not supported"
-msgid "GCodeGzWriter does not support text mode."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:31
-msgctxt "@info:title"
-msgid "3D Model Assistant"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:96
-#, python-brace-format
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
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."
-"p>\n"
-"
View print quality "
-"guide
"
+msgid "tomorrow"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
-msgctxt "@info"
-msgid "Could not access update information."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
-#, python-brace-format
-msgctxt ""
-"@info Don't translate {machine_name}, since it gets replaced by a printer "
-"name!"
-msgid ""
-"New features or bug-fixes may be available for your {machine_name}! If not "
-"already at the latest version, it is recommended to update the firmware on "
-"your printer to version {latest_version}."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
-#, python-format
-msgctxt "@info:title The %s gets replaced with the printer name."
-msgid "New %s firmware available"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
-msgctxt "@action:button"
-msgid "How to update"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "G File"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:347
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
msgctxt "@info:status"
-msgid "Parsing G-code"
+msgid "today"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:349
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:503
-msgctxt "@info:title"
-msgid "G-code Details"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
+msgctxt "@item:inmenu"
+msgid "USB printing"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:501
-msgctxt "@info:generic"
-msgid ""
-"Make sure the g-code is suitable for your printer and printer configuration "
-"before sending the file to it. The g-code representation may not be accurate."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Print via USB"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:12
-msgctxt "@label"
-msgid "Support Blocker"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:13
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
msgctxt "@info:tooltip"
-msgid "Create a volume in which supports are not printed."
+msgid "Print via USB"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:15
-msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
-msgid "Open Compressed Triangle Mesh"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
+msgctxt "@info:status"
+msgid "Connected via USB"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
+msgctxt "@label"
+msgid ""
+"A USB print is in progress, closing Cura will stop this print. Are you sure?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid ""
+"A print is still in progress. Cura cannot start another print via USB until "
+"the previous print has completed."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid "Print in Progress"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
msgctxt "@item:inlistbox"
-msgid "COLLADA Digital Asset Exchange"
+msgid "X3D File"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:23
-msgctxt "@item:inlistbox"
-msgid "glTF Binary"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:27
-msgctxt "@item:inlistbox"
-msgid "glTF Embedded JSON"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:36
-msgctxt "@item:inlistbox"
-msgid "Stanford Triangle Format"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:40
-msgctxt "@item:inlistbox"
-msgid "Compressed COLLADA Digital Asset Exchange"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPReader/__init__.py:22
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/__init__.py:28
-msgctxt "@item:inlistbox"
-msgid "Ultimaker Format Package"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/LegacyProfileReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "Cura 15.04 profiles"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PrepareStage/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Prepare"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/__init__.py:14
-msgctxt "@item:inmenu"
-msgid "Monitor"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/XRayView/__init__.py:12
+#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
msgctxt "@item:inlistbox"
msgid "X-Ray view"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
-msgctxt "@error:zip"
-msgid "Error writing 3mf file."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "3MF file"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:34
-msgctxt "@item:inlistbox"
-msgid "Cura Project 3MF file"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
-msgctxt "@error:zip"
-msgid "3MF Writer plug-in is corrupt."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
-msgctxt "@error:zip"
-msgid "No permission to write the workspace here."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
-msgctxt "@error:zip"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
+msgctxt "@info:tooltip"
msgid ""
-"The operating system does not allow saving a project file to this location "
-"or with this file name."
+"Some things could be problematic in this print. Click to see tips for "
+"adjustment."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PreviewStage/__init__.py:13
-msgctxt "@item:inmenu"
-msgid "Preview"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
+msgctxt "@title:window"
+msgid "Open Project"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/__init__.py:15
-msgctxt "@item:inlistbox"
-msgid "Layer view"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
+msgctxt "@action:ComboBox Update/override existing profile"
+msgid "Update existing"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:124
-msgctxt "@info:status"
-msgid "Cura does not accurately display layers when Wire Printing is enabled."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
+msgctxt "@action:ComboBox Save settings in a new profile"
+msgid "Create new"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:125
-msgctxt "@info:title"
-msgid "Simulation View"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
+msgctxt "@action:title"
+msgid "Summary - Cura Project"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:status"
-msgid "Nothing is shown because you need to slice first."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
+msgctxt "@action:label"
+msgid "Printer settings"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:title"
-msgid "No layers to show"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
+msgctxt "@info:tooltip"
+msgid "How should the conflict in the machine be resolved?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:127
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:74
-msgctxt "@info:option_text"
-msgid "Do not show this message again"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
+msgctxt "@action:label"
+msgid "Type"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
-msgctxt "@action"
-msgid "Machine Settings"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+msgctxt "@action:label"
+msgid "Printer Group"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Solid view"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
+msgctxt "@action:label"
+msgid "Profile settings"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:71
-msgctxt "@info:status"
-msgid ""
-"The highlighted areas indicate either missing or extraneous surfaces. Fix "
-"your model and open it again into Cura."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
+msgctxt "@info:tooltip"
+msgid "How should the conflict in the profile be resolved?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:73
-msgctxt "@info:title"
-msgid "Model Errors"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
+msgctxt "@action:label"
+msgid "Name"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:79
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
+msgctxt "@action:label"
+msgid "Intent"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
+msgctxt "@action:label"
+msgid "Not in profile"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
+msgctxt "@action:label"
+msgid "%1 override"
+msgid_plural "%1 overrides"
+msgstr[0] ""
+msgstr[1] ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
+msgctxt "@action:label"
+msgid "Derivative from"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
+msgctxt "@action:label"
+msgid "%1, %2 override"
+msgid_plural "%1, %2 overrides"
+msgstr[0] ""
+msgstr[1] ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
+msgctxt "@action:label"
+msgid "Material settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
+msgctxt "@info:tooltip"
+msgid "How should the conflict in the material be resolved?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
+msgctxt "@action:label"
+msgid "Setting visibility"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
+msgctxt "@action:label"
+msgid "Mode"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
+msgctxt "@action:label"
+msgid "Visible settings:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
+msgctxt "@action:label"
+msgid "%1 out of %2"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
+msgctxt "@action:warning"
+msgid "Loading a project will clear all models on the build plate."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
msgctxt "@action:button"
-msgid "Learn more"
+msgid "Open"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/UFPWriter.py:134
-msgctxt "@info:error"
-msgid "Can't write to UFP file:"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
+msgctxt "@button"
+msgid "Want more?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:74
-msgctxt "@error:not supported"
-msgid "GCodeWriter does not support non-text mode."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
+msgctxt "@button"
+msgid "Backup Now"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:80
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:96
-msgctxt "@warning:status"
-msgid "Please prepare G-code before exporting."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
+msgctxt "@checkbox:description"
+msgid "Auto Backup"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "JPG Image"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
+msgctxt "@checkbox:description"
+msgid "Automatically create a backup each day that Cura is started."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "JPEG Image"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
+msgctxt "@button"
+msgid "Restore"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:22
-msgctxt "@item:inlistbox"
-msgid "PNG Image"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
+msgctxt "@dialog:title"
+msgid "Delete Backup"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "BMP Image"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
+msgctxt "@dialog:info"
+msgid "Are you sure you want to delete this backup? This cannot be undone."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:30
-msgctxt "@item:inlistbox"
-msgid "GIF Image"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
+msgctxt "@dialog:title"
+msgid "Restore Backup"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DriveApiService.py:86
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
-msgctxt "@info:backup_status"
-msgid "There was an error trying to restore your backup."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
+msgctxt "@dialog:info"
+msgid ""
+"You will need to restart Cura before your backup is restored. Do you want to "
+"close Cura now?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
-msgctxt "@info:title"
-msgid "Backups"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
+msgctxt "@backuplist:label"
+msgid "Cura Version"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
-msgctxt "@info:backup_status"
-msgid "There was an error while uploading your backup."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
+msgctxt "@backuplist:label"
+msgid "Machines"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
-msgctxt "@info:backup_status"
-msgid "Creating your backup..."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
+msgctxt "@backuplist:label"
+msgid "Materials"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
-msgctxt "@info:backup_status"
-msgid "There was an error while creating your backup."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
+msgctxt "@backuplist:label"
+msgid "Profiles"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
-msgctxt "@info:backup_status"
-msgid "Uploading your backup..."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
+msgctxt "@backuplist:label"
+msgid "Plugins"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
-msgctxt "@info:backup_status"
-msgid "Your backup has finished uploading."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
+msgctxt "@title:window"
+msgid "Cura Backups"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
-msgctxt "@error:file_size"
-msgid "The backup exceeds the maximum file size."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
+msgctxt "@title"
+msgid "My Backups"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
-msgctxt "@item:inmenu"
-msgid "Manage backups"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
+msgctxt "@empty_state"
+msgid ""
+"You don't have any backups currently. Use the 'Backup Now' button to create "
+"one."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
+msgctxt "@backup_limit_info"
+msgid ""
+"During the preview phase, you'll be limited to 5 visible backups. Remove a "
+"backup to see older ones."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
+msgctxt "@description"
+msgid "Backup and synchronize your Cura settings."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199
+msgctxt "@button"
+msgid "Sign in"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
msgctxt "@title"
msgid "Update Firmware"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
msgctxt "@label"
msgid ""
"Firmware is the piece of software running directly on your 3D printer. This "
@@ -1715,602 +1975,935 @@ msgid ""
"makes your printer work."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
msgctxt "@label"
msgid ""
"The firmware shipping with new printers works, but new versions tend to have "
"more features and improvements."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
msgctxt "@action:button"
msgid "Automatically upgrade Firmware"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
msgctxt "@action:button"
msgid "Upload custom Firmware"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
msgctxt "@label"
msgid ""
"Firmware can not be updated because there is no connection with the printer."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
msgctxt "@label"
msgid ""
"Firmware can not be updated because the connection with the printer does not "
"support upgrading firmware."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
msgctxt "@title:window"
msgid "Select custom firmware"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
msgctxt "@title:window"
msgid "Firmware Update"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
msgctxt "@label"
msgid "Updating firmware."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
msgctxt "@label"
msgid "Firmware update completed."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
msgctxt "@label"
msgid "Firmware update failed due to an unknown error."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
msgctxt "@label"
msgid "Firmware update failed due to an communication error."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
msgctxt "@label"
msgid "Firmware update failed due to an input/output error."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
msgctxt "@label"
msgid "Firmware update failed due to missing firmware."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
-msgctxt "@title"
-msgid "Marketplace"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
-msgctxt "@label"
-msgid "You need to accept the license to install the package"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
-msgctxt "@title"
-msgid "Changes from your account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
-msgctxt "@button"
-msgid "Dismiss"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:182
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
-msgctxt "@button"
-msgid "Next"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
-msgctxt "@label"
-msgid "The following packages will be added:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
-msgctxt "@label"
-msgid ""
-"The following packages can not be installed because of an incompatible Cura "
-"version:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
msgctxt "@title:window"
-msgid "Confirm uninstall"
+msgid "Convert Image..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
-msgctxt "@text:window"
-msgid ""
-"You are uninstalling materials and/or profiles that are still in use. "
-"Confirming will reset the following materials/profiles to their defaults."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
-msgctxt "@text:window"
-msgid "Materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
-msgctxt "@text:window"
-msgid "Profiles"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
-msgctxt "@action:button"
-msgid "Confirm"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
-msgctxt "@info"
-msgid ""
-"Could not connect to the Cura Package database. Please check your connection."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Contributions"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Plugins"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
-msgctxt "@label"
-msgid "Generic Materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
-msgctxt "@label"
-msgid "Version"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
-msgctxt "@label"
-msgid "Last updated"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
-msgctxt "@label"
-msgid "Brand"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
-msgctxt "@label"
-msgid "Downloads"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
-msgctxt "@title:tab"
-msgid "Installed plugins"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
-msgctxt "@info"
-msgid "No plugin has been installed."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
-msgctxt "@title:tab"
-msgid "Installed materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
-msgctxt "@info"
-msgid "No material has been installed."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
-msgctxt "@title:tab"
-msgid "Bundled plugins"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
-msgctxt "@title:tab"
-msgid "Bundled materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
-msgctxt "@label"
-msgid "Website"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
-msgctxt "@label"
-msgid "Email"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
-msgctxt "@description"
-msgid ""
-"Please sign in to get verified plugins and materials for Ultimaker Cura "
-"Enterprise"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:199
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:53
-msgctxt "@button"
-msgid "Sign in"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
-msgctxt "@info"
-msgid "Fetching packages..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
-msgctxt "@label"
-msgid "Compatibility"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
-msgctxt "@label:table_header"
-msgid "Machine"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
-msgctxt "@label:table_header"
-msgid "Build Plate"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
-msgctxt "@label:table_header"
-msgid "Support"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
-msgctxt "@label:table_header"
-msgid "Quality"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
-msgctxt "@action:label"
-msgid "Technical Data Sheet"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
-msgctxt "@action:label"
-msgid "Safety Data Sheet"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
-msgctxt "@action:label"
-msgid "Printing Guidelines"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
-msgctxt "@action:label"
-msgid "Website"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
-msgctxt "@title:tab"
-msgid "Plugins"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:457
-msgctxt "@title:tab"
-msgid "Materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
-msgctxt "@title:tab"
-msgid "Installed"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
msgctxt "@info:tooltip"
-msgid "Go to Web Marketplace"
+msgid "The maximum distance of each pixel from \"Base.\""
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
+msgctxt "@action:label"
+msgid "Height (mm)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
+msgctxt "@info:tooltip"
+msgid "The base height from the build plate in millimeters."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
+msgctxt "@action:label"
+msgid "Base (mm)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
+msgctxt "@info:tooltip"
+msgid "The width in millimeters on the build plate."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
+msgctxt "@action:label"
+msgid "Width (mm)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
+msgctxt "@info:tooltip"
+msgid "The depth in millimeters on the build plate"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
+msgctxt "@action:label"
+msgid "Depth (mm)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
+msgctxt "@info:tooltip"
+msgid ""
+"For lithophanes dark pixels should correspond to thicker locations in order "
+"to block more light coming through. For height maps lighter pixels signify "
+"higher terrain, so lighter pixels should correspond to thicker locations in "
+"the generated 3D model."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Darker is higher"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Lighter is higher"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
+msgctxt "@info:tooltip"
+msgid ""
+"For lithophanes a simple logarithmic model for translucency is available. "
+"For height maps the pixel values correspond to heights linearly."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+msgctxt "@item:inlistbox"
+msgid "Linear"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
+msgctxt "@item:inlistbox"
+msgid "Translucency"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
+msgctxt "@info:tooltip"
+msgid ""
+"The percentage of light penetrating a print with a thickness of 1 "
+"millimeter. Lowering this value increases the contrast in dark regions and "
+"decreases the contrast in light regions of the image."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
+msgctxt "@action:label"
+msgid "1mm Transmittance (%)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
+msgctxt "@info:tooltip"
+msgid "The amount of smoothing to apply to the image."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
+msgctxt "@action:label"
+msgid "Smoothing"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
+msgctxt "@action:button"
+msgid "OK"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
+msgctxt "@title:tab"
+msgid "Printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
+msgctxt "@title:label"
+msgid "Nozzle Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
msgctxt "@label"
-msgid "Will install upon restarting"
+msgid "Nozzle size"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
-msgctxt "@action:button"
-msgid "Update"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
-msgctxt "@action:button"
-msgid "Updating"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
-msgctxt "@action:button"
-msgid "Updated"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to update"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Downgrade"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Uninstall"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
-msgctxt "@action:button"
-msgid "Installed"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to install or update"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Buy material spools"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
msgctxt "@label"
-msgid "Premium"
+msgid "mm"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
msgctxt "@label"
-msgid "Search materials"
+msgid "Compatible material diameter"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
+msgctxt "@label"
+msgid "Nozzle offset X"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
+msgctxt "@label"
+msgid "Nozzle offset Y"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
+msgctxt "@label"
+msgid "Cooling Fan Number"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
+msgctxt "@title:label"
+msgid "Extruder Start G-code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
+msgctxt "@title:label"
+msgid "Extruder End G-code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
+msgctxt "@title:label"
+msgid "Printer Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
+msgctxt "@label"
+msgid "X (Width)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
+msgctxt "@label"
+msgid "Y (Depth)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
+msgctxt "@label"
+msgid "Z (Height)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
+msgctxt "@label"
+msgid "Build plate shape"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
+msgctxt "@label"
+msgid "Origin at center"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
+msgctxt "@label"
+msgid "Heated bed"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
+msgctxt "@label"
+msgid "Heated build volume"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
+msgctxt "@label"
+msgid "G-code flavor"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
+msgctxt "@title:label"
+msgid "Printhead Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
+msgctxt "@label"
+msgid "X min"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
+msgctxt "@label"
+msgid "Y min"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
+msgctxt "@label"
+msgid "X max"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
+msgctxt "@label"
+msgid "Y max"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
+msgctxt "@label"
+msgid "Gantry Height"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
+msgctxt "@label"
+msgid "Number of Extruders"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
+msgctxt "@label"
+msgid "Apply Extruder offsets to GCode"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
+msgctxt "@title:label"
+msgid "Start G-code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
+msgctxt "@title:label"
+msgid "End G-code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
msgctxt "@info"
-msgid "You will need to restart Cura before changes in packages have effect."
+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 ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
-msgctxt "@info:button, %1 is the application name"
-msgid "Quit %1"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
+msgctxt "@info"
+msgid "Please connect your printer to the network."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
-msgctxt "@action:button"
-msgid "Back"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155
+msgctxt "@label link to technical assistance"
+msgid "View user manuals online"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
-msgctxt "@action:button"
-msgid "Install"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172
+msgctxt "@info"
+msgid "In order to monitor your print from Cura, please connect the printer."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
msgctxt "@label"
msgid "Mesh Type"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
msgctxt "@label"
msgid "Normal model"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
msgctxt "@label"
msgid "Print as support"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
msgctxt "@label"
msgid "Modify settings for overlaps"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
msgctxt "@label"
msgid "Don't support overlaps"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
msgctxt "@item:inlistbox"
msgid "Infill mesh only"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
msgctxt "@item:inlistbox"
msgid "Cutting mesh"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
msgctxt "@action:button"
msgid "Select settings"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
msgctxt "@title:window"
msgid "Select Settings to Customize for this model"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96
msgctxt "@label:textbox"
msgid "Filter..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
msgctxt "@label:checkbox"
msgid "Show all"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20
msgctxt "@title:window"
msgid "Post Processing Plugin"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59
msgctxt "@label"
msgid "Post Processing Scripts"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235
msgctxt "@action"
msgid "Add a script"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282
msgctxt "@label"
msgid "Settings"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502
msgctxt "@info:tooltip"
msgid "Change active post-processing scripts."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506
msgctxt "@info:tooltip"
msgid "The following script is active:"
msgid_plural "The following scripts are active:"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
msgctxt "@label"
-msgid "Queued"
+msgid "Color scheme"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
-msgctxt "@label link to connect manager"
-msgid "Manage in browser"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110
+msgctxt "@label:listbox"
+msgid "Material Color"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114
+msgctxt "@label:listbox"
+msgid "Line Type"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118
+msgctxt "@label:listbox"
+msgid "Speed"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122
+msgctxt "@label:listbox"
+msgid "Layer Thickness"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126
+msgctxt "@label:listbox"
+msgid "Line Width"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130
+msgctxt "@label:listbox"
+msgid "Flow"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171
msgctxt "@label"
-msgid "There are no print jobs in the queue. Slice and send a job to add one."
+msgid "Compatibility Mode"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245
msgctxt "@label"
-msgid "Print jobs"
+msgid "Travels"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251
msgctxt "@label"
-msgid "Total print time"
+msgid "Helpers"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
msgctxt "@label"
-msgid "Waiting for"
+msgid "Shell"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
+msgctxt "@label"
+msgid "Infill"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271
+msgctxt "@label"
+msgid "Starts"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
+msgctxt "@label"
+msgid "Only Show Top Layers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332
+msgctxt "@label"
+msgid "Show 5 Detailed Layers On Top"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346
+msgctxt "@label"
+msgid "Top / Bottom"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350
+msgctxt "@label"
+msgid "Inner Wall"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419
+msgctxt "@label"
+msgid "min"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488
+msgctxt "@label"
+msgid "max"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
msgctxt "@title:window"
-msgid "Configuration Changes"
+msgid "More information on anonymous data collection"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
+msgctxt "@text:window"
+msgid ""
+"Ultimaker Cura collects anonymous data in order to improve the print quality "
+"and user experience. Below is an example of all the data that is shared:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
+msgctxt "@text:window"
+msgid "I don't want to send anonymous data"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
+msgctxt "@text:window"
+msgid "Allow sending anonymous data"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
msgctxt "@action:button"
-msgid "Override"
+msgid "Back"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
msgctxt "@label"
-msgid "The assigned printer, %1, requires the following configuration change:"
-msgid_plural ""
-"The assigned printer, %1, requires the following configuration changes:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
-msgctxt "@label"
-msgid ""
-"The printer %1 is assigned, but the job contains an unknown material "
-"configuration."
+msgid "Compatibility"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
-msgctxt "@label"
-msgid "Change material %1 from %2 to %3."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
+msgctxt "@label:table_header"
+msgid "Machine"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
-msgctxt "@label"
-msgid "Load %3 as material %1 (This cannot be overridden)."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
+msgctxt "@label:table_header"
+msgid "Build Plate"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
-msgctxt "@label"
-msgid "Change print core %1 from %2 to %3."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
+msgctxt "@label:table_header"
+msgid "Support"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
-msgctxt "@label"
-msgid "Change build plate to %1 (This cannot be overridden)."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
+msgctxt "@label:table_header"
+msgid "Quality"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
-msgctxt "@label"
-msgid ""
-"Override will use the specified settings with the existing printer "
-"configuration. This may result in a failed print."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
+msgctxt "@action:label"
+msgid "Technical Data Sheet"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
-msgctxt "@label"
-msgid "Glass"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
+msgctxt "@action:label"
+msgid "Safety Data Sheet"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
-msgctxt "@label"
-msgid "Aluminum"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
+msgctxt "@action:label"
+msgid "Printing Guidelines"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
-msgctxt "@label"
-msgid "Unavailable printer"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
+msgctxt "@action:label"
+msgid "Website"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
-msgctxt "@label"
-msgid "First available"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
+msgctxt "@action:button"
+msgid "Installed"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to install or update"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Buy material spools"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
+msgctxt "@action:button"
+msgid "Update"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
+msgctxt "@action:button"
+msgid "Updating"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
+msgctxt "@action:button"
+msgid "Updated"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
+msgctxt "@label"
+msgid "Premium"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
+msgctxt "@info:tooltip"
+msgid "Go to Web Marketplace"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
+msgctxt "@label"
+msgid "Search materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
msgctxt "@info"
-msgid "Please update your printer's firmware to manage the queue remotely."
+msgid "You will need to restart Cura before changes in packages have effect."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
+msgctxt "@info:button, %1 is the application name"
+msgid "Quit %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
+msgctxt "@title:tab"
+msgid "Plugins"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
+msgctxt "@title:tab"
+msgid "Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
+msgctxt "@title:tab"
+msgid "Installed"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
+msgctxt "@label"
+msgid "Will install upon restarting"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to update"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Downgrade"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Uninstall"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
+msgctxt "@action:button"
+msgid "Install"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
+msgctxt "@title"
+msgid "Changes from your account"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
+msgctxt "@button"
+msgid "Dismiss"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178
+msgctxt "@button"
+msgid "Next"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
+msgctxt "@label"
+msgid "The following packages will be added:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
+msgctxt "@label"
+msgid ""
+"The following packages can not be installed because of an incompatible Cura "
+"version:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
+msgctxt "@title:window"
+msgid "Confirm uninstall"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
+msgctxt "@text:window"
+msgid ""
+"You are uninstalling materials and/or profiles that are still in use. "
+"Confirming will reset the following materials/profiles to their defaults."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
+msgctxt "@text:window"
+msgid "Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
+msgctxt "@text:window"
+msgid "Profiles"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
+msgctxt "@action:button"
+msgid "Confirm"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
+msgctxt "@label"
+msgid "You need to accept the license to install the package"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
+msgctxt "@label"
+msgid "Website"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
+msgctxt "@label"
+msgid "Email"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
+msgctxt "@label"
+msgid "Version"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
+msgctxt "@label"
+msgid "Last updated"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
+msgctxt "@label"
+msgid "Brand"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
+msgctxt "@label"
+msgid "Downloads"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Contributions"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Plugins"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
+msgctxt "@label"
+msgid "Generic Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
+msgctxt "@info"
+msgid ""
+"Could not connect to the Cura Package database. Please check your connection."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
+msgctxt "@title:tab"
+msgid "Installed plugins"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
+msgctxt "@info"
+msgid "No plugin has been installed."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
+msgctxt "@title:tab"
+msgid "Installed materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
+msgctxt "@info"
+msgid "No material has been installed."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
+msgctxt "@title:tab"
+msgid "Bundled plugins"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
+msgctxt "@title:tab"
+msgid "Bundled materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
+msgctxt "@info"
+msgid "Fetching packages..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
+msgctxt "@description"
+msgid ""
+"Please sign in to get verified plugins and materials for Ultimaker Cura "
+"Enterprise"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
+msgctxt "@title"
+msgid "Marketplace"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
+msgctxt "@title"
+msgid "Build Plate Leveling"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
+msgctxt "@label"
+msgid ""
+"To make sure your prints will come out great, you can now adjust your "
+"buildplate. When you click 'Move to Next Position' the nozzle will move to "
+"the different positions that can be adjusted."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
+msgctxt "@label"
+msgid ""
+"For every position; insert a piece of paper under the nozzle and adjust the "
+"print build plate height. The print build plate height is right when the "
+"paper is slightly gripped by the tip of the nozzle."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
+msgctxt "@action:button"
+msgid "Start Build Plate Leveling"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
+msgctxt "@action:button"
+msgid "Move to Next Position"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
+msgctxt "@label"
+msgid "Please select any upgrades made to this Ultimaker Original"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
+msgctxt "@label"
+msgid "Heated Build Plate (official kit or self-built)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
msgctxt "@title:window"
msgid "Connect to Networked Printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
msgctxt "@label"
msgid ""
"To print directly to your printer over the network, please make sure your "
@@ -2320,1206 +2913,2298 @@ msgid ""
"printer."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
msgctxt "@label"
msgid "Select your printer from the list below:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
msgctxt "@action:button"
msgid "Edit"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:55
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:138
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
msgctxt "@action:button"
msgid "Remove"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
msgctxt "@action:button"
msgid "Refresh"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
msgctxt "@label"
msgid ""
"If your printer is not listed, read the network printing "
"troubleshooting guide"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
msgctxt "@label"
msgid "Type"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
msgctxt "@label"
msgid "Firmware version"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
msgctxt "@label"
msgid "Address"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
msgctxt "@label"
msgid "This printer is not set up to host a group of printers."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
msgctxt "@label"
msgid "This printer is the host for a group of %1 printers."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
msgctxt "@label"
msgid "The printer at this address has not yet responded."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
msgctxt "@action:button"
msgid "Connect"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
msgctxt "@title:window"
msgid "Invalid IP address"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
msgctxt "@text"
msgid "Please enter a valid IP address."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
msgctxt "@title:window"
msgid "Printer Address"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
msgctxt "@label"
msgid "Enter the IP address of your printer on the network."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:227
-msgctxt "@action:button"
-msgid "OK"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
msgctxt "@title:window"
-msgid "Print over network"
+msgid "Configuration Changes"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
msgctxt "@action:button"
-msgid "Print"
+msgid "Override"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
msgctxt "@label"
-msgid "Printer selection"
+msgid "The assigned printer, %1, requires the following configuration change:"
+msgid_plural ""
+"The assigned printer, %1, requires the following configuration changes:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
+msgctxt "@label"
+msgid ""
+"The printer %1 is assigned, but the job contains an unknown material "
+"configuration."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
+msgctxt "@label"
+msgid "Change material %1 from %2 to %3."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
+msgctxt "@label"
+msgid "Load %3 as material %1 (This cannot be overridden)."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
+msgctxt "@label"
+msgid "Change print core %1 from %2 to %3."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
+msgctxt "@label"
+msgid "Change build plate to %1 (This cannot be overridden)."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
+msgctxt "@label"
+msgid ""
+"Override will use the specified settings with the existing printer "
+"configuration. This may result in a failed print."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
+msgctxt "@label"
+msgid "Glass"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
+msgctxt "@label"
+msgid "Aluminum"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
msgctxt "@label"
msgid "Move to top"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
msgctxt "@label"
msgid "Delete"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:290
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290
msgctxt "@label"
msgid "Resume"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
msgctxt "@label"
msgid "Pausing..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
msgctxt "@label"
msgid "Resuming..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:285
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:294
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294
msgctxt "@label"
msgid "Pause"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
msgctxt "@label"
msgid "Aborting..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
msgctxt "@label"
msgid "Abort"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
msgctxt "@label %1 is the name of a print job."
msgid "Are you sure you want to move %1 to the top of the queue?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
msgctxt "@window:title"
msgid "Move print job to top"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
msgctxt "@label %1 is the name of a print job."
msgid "Are you sure you want to delete %1?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
msgctxt "@window:title"
msgid "Delete print job"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
msgctxt "@label %1 is the name of a print job."
msgid "Are you sure you want to abort %1?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:336
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336
msgctxt "@window:title"
msgid "Abort print"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
-msgctxt "@label:status"
-msgid "Aborted"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
-msgctxt "@label:status"
-msgid "Finished"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
-msgctxt "@label:status"
-msgid "Preparing..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
-msgctxt "@label:status"
-msgid "Aborting..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
-msgctxt "@label:status"
-msgid "Pausing..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
-msgctxt "@label:status"
-msgid "Paused"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
-msgctxt "@label:status"
-msgid "Resuming..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
-msgctxt "@label:status"
-msgid "Action required"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
-msgctxt "@label:status"
-msgid "Finishes %1 at %2"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
msgctxt "@label link to Connect and Cloud interfaces"
msgid "Manage printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
+msgctxt "@info"
+msgid "Please update your printer's firmware to manage the queue remotely."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
msgctxt "@label:status"
msgid "Loading..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
msgctxt "@label:status"
msgid "Unavailable"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
msgctxt "@label:status"
msgid "Unreachable"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
msgctxt "@label:status"
msgid "Idle"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
+msgctxt "@label:status"
+msgid "Preparing..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
msgctxt "@label:status"
msgid "Printing"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
msgctxt "@label"
msgid "Untitled"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
msgctxt "@label"
msgid "Anonymous"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
msgctxt "@label:status"
msgid "Requires configuration changes"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
msgctxt "@action:button"
msgid "Details"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
msgctxt "@label"
-msgid "Please select any upgrades made to this Ultimaker Original"
+msgid "Unavailable printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
msgctxt "@label"
-msgid "Heated Build Plate (official kit or self-built)"
+msgid "First available"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
-msgctxt "@title"
-msgid "Build Plate Leveling"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
+msgctxt "@label:status"
+msgid "Aborted"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
+msgctxt "@label:status"
+msgid "Finished"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
+msgctxt "@label:status"
+msgid "Aborting..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
+msgctxt "@label:status"
+msgid "Pausing..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
+msgctxt "@label:status"
+msgid "Paused"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
+msgctxt "@label:status"
+msgid "Resuming..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
+msgctxt "@label:status"
+msgid "Action required"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
+msgctxt "@label:status"
+msgid "Finishes %1 at %2"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
msgctxt "@label"
-msgid ""
-"To make sure your prints will come out great, you can now adjust your "
-"buildplate. When you click 'Move to Next Position' the nozzle will move to "
-"the different positions that can be adjusted."
+msgid "Queued"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
+msgctxt "@label link to connect manager"
+msgid "Manage in browser"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
msgctxt "@label"
-msgid ""
-"For every position; insert a piece of paper under the nozzle and adjust the "
-"print build plate height. The print build plate height is right when the "
-"paper is slightly gripped by the tip of the nozzle."
+msgid "There are no print jobs in the queue. Slice and send a job to add one."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
-msgctxt "@action:button"
-msgid "Start Build Plate Leveling"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
+msgctxt "@label"
+msgid "Print jobs"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
-msgctxt "@action:button"
-msgid "Move to Next Position"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
+msgctxt "@label"
+msgid "Total print time"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
+msgctxt "@label"
+msgid "Waiting for"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
msgctxt "@title:window"
-msgid "Open Project"
+msgid "Print over network"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
-msgctxt "@action:ComboBox Update/override existing profile"
-msgid "Update existing"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
-msgctxt "@action:ComboBox Save settings in a new profile"
-msgid "Create new"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
-msgctxt "@action:title"
-msgid "Summary - Cura Project"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
-msgctxt "@action:label"
-msgid "Printer settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
-msgctxt "@info:tooltip"
-msgid "How should the conflict in the machine be resolved?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
-msgctxt "@action:label"
-msgid "Type"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
-msgctxt "@action:label"
-msgid "Printer Group"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
-msgctxt "@action:label"
-msgid "Profile settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
-msgctxt "@info:tooltip"
-msgid "How should the conflict in the profile be resolved?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
-msgctxt "@action:label"
-msgid "Name"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
-msgctxt "@action:label"
-msgid "Intent"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
-msgctxt "@action:label"
-msgid "Not in profile"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
-msgctxt "@action:label"
-msgid "%1 override"
-msgid_plural "%1 overrides"
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
-msgctxt "@action:label"
-msgid "Derivative from"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
-msgctxt "@action:label"
-msgid "%1, %2 override"
-msgid_plural "%1, %2 overrides"
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
-msgctxt "@action:label"
-msgid "Material settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
-msgctxt "@info:tooltip"
-msgid "How should the conflict in the material be resolved?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
-msgctxt "@action:label"
-msgid "Setting visibility"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
-msgctxt "@action:label"
-msgid "Mode"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
-msgctxt "@action:label"
-msgid "Visible settings:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
-msgctxt "@action:label"
-msgid "%1 out of %2"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
-msgctxt "@action:warning"
-msgid "Loading a project will clear all models on the build plate."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
msgctxt "@action:button"
-msgid "Open"
+msgid "Print"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.qml:22
-msgctxt "@info:tooltip"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
+msgctxt "@label"
+msgid "Printer selection"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
+msgctxt "@action:button"
+msgid "Sign in"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64
+msgctxt "@label"
+msgid "Sign in to the Ultimaker platform"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42
+msgctxt "@text"
msgid ""
-"Some things could be problematic in this print. Click to see tips for "
-"adjustment."
+"- 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 ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:100
-msgctxt "@info"
-msgid ""
-"Please make sure your printer has a connection:\n"
-"- Check if the printer is turned on.\n"
-"- Check if the printer is connected to the network.\n"
-"- Check if you are signed in to discover cloud-connected printers."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62
+msgctxt "@button"
+msgid "Create a free Ultimaker account"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:117
-msgctxt "@info"
-msgid "Please connect your printer to the network."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:155
-msgctxt "@label link to technical assistance"
-msgid "View user manuals online"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
-msgctxt "@title:window"
-msgid "More information on anonymous data collection"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
-msgctxt "@text:window"
-msgid ""
-"Ultimaker Cura collects anonymous data in order to improve the print quality "
-"and user experience. Below is an example of all the data that is shared:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
-msgctxt "@text:window"
-msgid "I don't want to send anonymous data"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
-msgctxt "@text:window"
-msgid "Allow sending anonymous data"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28
msgctxt "@label"
-msgid "Color scheme"
+msgid "Checking..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
-msgctxt "@label:listbox"
-msgid "Material Color"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
-msgctxt "@label:listbox"
-msgid "Line Type"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
-msgctxt "@label:listbox"
-msgid "Speed"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
-msgctxt "@label:listbox"
-msgid "Layer Thickness"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
-msgctxt "@label:listbox"
-msgid "Line Width"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:163
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35
msgctxt "@label"
-msgid "Compatibility Mode"
+msgid "Account synced"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42
msgctxt "@label"
-msgid "Travels"
+msgid "Something went wrong..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96
+msgctxt "@button"
+msgid "Install pending updates"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118
+msgctxt "@button"
+msgid "Check for account updates"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81
+msgctxt "@label The argument is a timestamp"
+msgid "Last update: %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109
+msgctxt "@button"
+msgid "Ultimaker Account"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125
+msgctxt "@button"
+msgid "Sign Out"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
msgctxt "@label"
-msgid "Helpers"
+msgid "No time estimation available"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
msgctxt "@label"
-msgid "Shell"
+msgid "No cost estimation available"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:255
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
+msgctxt "@button"
+msgid "Preview"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
msgctxt "@label"
-msgid "Infill"
+msgid "Time estimation"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
msgctxt "@label"
-msgid "Starts"
+msgid "Material estimation"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:314
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
+msgctxt "@label m for meter"
+msgid "%1m"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
+msgctxt "@label g for grams"
+msgid "%1g"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
+msgctxt "@label:PrintjobStatus"
+msgid "Slicing..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
+msgctxt "@label:PrintjobStatus"
+msgid "Unable to slice"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Processing"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Slice"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
msgctxt "@label"
-msgid "Only Show Top Layers"
+msgid "Start the slicing process"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:324
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
+msgctxt "@button"
+msgid "Cancel"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83
+msgctxt "@action:inmenu"
+msgid "Show Online Troubleshooting Guide"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90
+msgctxt "@action:inmenu"
+msgid "Toggle Full Screen"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98
+msgctxt "@action:inmenu"
+msgid "Exit Full Screen"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Undo"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Redo"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125
+msgctxt "@action:inmenu menubar:file"
+msgid "&Quit"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133
+msgctxt "@action:inmenu menubar:view"
+msgid "3D View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140
+msgctxt "@action:inmenu menubar:view"
+msgid "Front View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147
+msgctxt "@action:inmenu menubar:view"
+msgid "Top View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154
+msgctxt "@action:inmenu menubar:view"
+msgid "Bottom View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161
+msgctxt "@action:inmenu menubar:view"
+msgid "Left Side View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168
+msgctxt "@action:inmenu menubar:view"
+msgid "Right Side View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175
+msgctxt "@action:inmenu"
+msgid "Configure Cura..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182
+msgctxt "@action:inmenu menubar:printer"
+msgid "&Add Printer..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188
+msgctxt "@action:inmenu menubar:printer"
+msgid "Manage Pr&inters..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195
+msgctxt "@action:inmenu"
+msgid "Manage Materials..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203
+msgctxt "@action:inmenu"
+msgid "Add more materials from Marketplace"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
+msgctxt "@action:inmenu menubar:profile"
+msgid "&Update profile with current settings/overrides"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218
+msgctxt "@action:inmenu menubar:profile"
+msgid "&Discard current changes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230
+msgctxt "@action:inmenu menubar:profile"
+msgid "&Create profile from current settings/overrides..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236
+msgctxt "@action:inmenu menubar:profile"
+msgid "Manage Profiles..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244
+msgctxt "@action:inmenu menubar:help"
+msgid "Show Online &Documentation"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252
+msgctxt "@action:inmenu menubar:help"
+msgid "Report a &Bug"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260
+msgctxt "@action:inmenu menubar:help"
+msgid "What's New"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266
+msgctxt "@action:inmenu menubar:help"
+msgid "About..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273
+msgctxt "@action:inmenu menubar:edit"
+msgid "Delete Selected"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283
+msgctxt "@action:inmenu menubar:edit"
+msgid "Center Selected"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292
+msgctxt "@action:inmenu menubar:edit"
+msgid "Multiply Selected"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301
+msgctxt "@action:inmenu"
+msgid "Delete Model"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309
+msgctxt "@action:inmenu"
+msgid "Ce&nter Model on Platform"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Group Models"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335
+msgctxt "@action:inmenu menubar:edit"
+msgid "Ungroup Models"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Merge Models"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355
+msgctxt "@action:inmenu"
+msgid "&Multiply Model..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362
+msgctxt "@action:inmenu menubar:edit"
+msgid "Select All Models"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372
+msgctxt "@action:inmenu menubar:edit"
+msgid "Clear Build Plate"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382
+msgctxt "@action:inmenu menubar:file"
+msgid "Reload All Models"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391
+msgctxt "@action:inmenu menubar:edit"
+msgid "Arrange All Models To All Build Plates"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398
+msgctxt "@action:inmenu menubar:edit"
+msgid "Arrange All Models"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406
+msgctxt "@action:inmenu menubar:edit"
+msgid "Arrange Selection"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413
+msgctxt "@action:inmenu menubar:edit"
+msgid "Reset All Model Positions"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420
+msgctxt "@action:inmenu menubar:edit"
+msgid "Reset All Model Transformations"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429
+msgctxt "@action:inmenu menubar:file"
+msgid "&Open File(s)..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439
+msgctxt "@action:inmenu menubar:file"
+msgid "&New Project..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446
+msgctxt "@action:inmenu menubar:help"
+msgid "Show Configuration Folder"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550
+msgctxt "@action:menu"
+msgid "Configure setting visibility..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460
+msgctxt "@action:menu"
+msgid "&Marketplace"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257
msgctxt "@label"
-msgid "Show 5 Detailed Layers On Top"
+msgid "This package will be installed after restarting."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:338
-msgctxt "@label"
-msgid "Top / Bottom"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:342
-msgctxt "@label"
-msgid "Inner Wall"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:405
-msgctxt "@label"
-msgid "min"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:464
-msgctxt "@label"
-msgid "max"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
-msgctxt "@title:label"
-msgid "Nozzle Settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
-msgctxt "@label"
-msgid "Nozzle size"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
-msgctxt "@label"
-msgid "mm"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
-msgctxt "@label"
-msgid "Compatible material diameter"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
-msgctxt "@label"
-msgid "Nozzle offset X"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
-msgctxt "@label"
-msgid "Nozzle offset Y"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
-msgctxt "@label"
-msgid "Cooling Fan Number"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
-msgctxt "@title:label"
-msgid "Extruder Start G-code"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
-msgctxt "@title:label"
-msgid "Extruder End G-code"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17
msgctxt "@title:tab"
-msgid "Printer"
+msgid "General"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
-msgctxt "@title:label"
-msgid "Printer Settings"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453
+msgctxt "@title:tab"
+msgid "Settings"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
-msgctxt "@label"
-msgid "X (Width)"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
+msgctxt "@title:tab"
+msgid "Printers"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
-msgctxt "@label"
-msgid "Y (Depth)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
-msgctxt "@label"
-msgid "Z (Height)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
-msgctxt "@label"
-msgid "Build plate shape"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
-msgctxt "@label"
-msgid "Origin at center"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
-msgctxt "@label"
-msgid "Heated bed"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
-msgctxt "@label"
-msgid "Heated build volume"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
-msgctxt "@label"
-msgid "G-code flavor"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
-msgctxt "@title:label"
-msgid "Printhead Settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
-msgctxt "@label"
-msgid "X min"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
-msgctxt "@label"
-msgid "Y min"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
-msgctxt "@label"
-msgid "X max"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
-msgctxt "@label"
-msgid "Y max"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
-msgctxt "@label"
-msgid "Gantry Height"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
-msgctxt "@label"
-msgid "Number of Extruders"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
-msgctxt "@label"
-msgid "Apply Extruder offsets to GCode"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
-msgctxt "@title:label"
-msgid "Start G-code"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
-msgctxt "@title:label"
-msgid "End G-code"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:19
-msgctxt "@title:window"
-msgid "Convert Image..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:33
-msgctxt "@info:tooltip"
-msgid "The maximum distance of each pixel from \"Base.\""
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:38
-msgctxt "@action:label"
-msgid "Height (mm)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:56
-msgctxt "@info:tooltip"
-msgid "The base height from the build plate in millimeters."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:61
-msgctxt "@action:label"
-msgid "Base (mm)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:79
-msgctxt "@info:tooltip"
-msgid "The width in millimeters on the build plate."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:84
-msgctxt "@action:label"
-msgid "Width (mm)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:103
-msgctxt "@info:tooltip"
-msgid "The depth in millimeters on the build plate"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:108
-msgctxt "@action:label"
-msgid "Depth (mm)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:126
-msgctxt "@info:tooltip"
-msgid ""
-"For lithophanes dark pixels should correspond to thicker locations in order "
-"to block more light coming through. For height maps lighter pixels signify "
-"higher terrain, so lighter pixels should correspond to thicker locations in "
-"the generated 3D model."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Darker is higher"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Lighter is higher"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:149
-msgctxt "@info:tooltip"
-msgid ""
-"For lithophanes a simple logarithmic model for translucency is available. "
-"For height maps the pixel values correspond to heights linearly."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
-msgctxt "@item:inlistbox"
-msgid "Linear"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:172
-msgctxt "@item:inlistbox"
-msgid "Translucency"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:171
-msgctxt "@info:tooltip"
-msgid ""
-"The percentage of light penetrating a print with a thickness of 1 "
-"millimeter. Lowering this value increases the contrast in dark regions and "
-"decreases the contrast in light regions of the image."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:177
-msgctxt "@action:label"
-msgid "1mm Transmittance (%)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:195
-msgctxt "@info:tooltip"
-msgid "The amount of smoothing to apply to the image."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:200
-msgctxt "@action:label"
-msgid "Smoothing"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
-msgctxt "@title"
-msgid "My Backups"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
-msgctxt "@empty_state"
-msgid ""
-"You don't have any backups currently. Use the 'Backup Now' button to create "
-"one."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
-msgctxt "@backup_limit_info"
-msgid ""
-"During the preview phase, you'll be limited to 5 visible backups. Remove a "
-"backup to see older ones."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
-msgctxt "@description"
-msgid "Backup and synchronize your Cura settings."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
-msgctxt "@button"
-msgid "Want more?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
-msgctxt "@button"
-msgid "Backup Now"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
-msgctxt "@checkbox:description"
-msgid "Auto Backup"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
-msgctxt "@checkbox:description"
-msgid "Automatically create a backup each day that Cura is started."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
-msgctxt "@backuplist:label"
-msgid "Cura Version"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
-msgctxt "@backuplist:label"
-msgid "Machines"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
-msgctxt "@backuplist:label"
-msgid "Materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
-msgctxt "@backuplist:label"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
+msgctxt "@title:tab"
msgid "Profiles"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
-msgctxt "@backuplist:label"
-msgid "Plugins"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576
+msgctxt "@title:window %1 is the application name"
+msgid "Closing %1"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
-msgctxt "@button"
-msgid "Restore"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589
+msgctxt "@label %1 is the application name"
+msgid "Are you sure you want to exit %1?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
-msgctxt "@dialog:title"
-msgid "Delete Backup"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
-msgctxt "@dialog:info"
-msgid "Are you sure you want to delete this backup? This cannot be undone."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
-msgctxt "@dialog:title"
-msgid "Restore Backup"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
-msgctxt "@dialog:info"
-msgid ""
-"You will need to restart Cura before your backup is restored. Do you want to "
-"close Cura now?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/main.qml:25
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
msgctxt "@title:window"
-msgid "Cura Backups"
+msgid "Open file(s)"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:13
-msgctxt "@label:category menu label"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737
+msgctxt "@window:title"
+msgid "Install Package"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745
+msgctxt "@title:window"
+msgid "Open File(s)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748
+msgctxt "@text:window"
+msgid ""
+"We have found one or more G-Code files within the files you have selected. "
+"You can only open one G-Code file at a time. If you want to open a G-Code "
+"file, please just select only one."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857
+msgctxt "@title:window"
+msgid "Add Printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865
+msgctxt "@title:window"
+msgid "What's New"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
+msgctxt "@title:window The argument is the application name."
+msgid "About %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
+msgctxt "@label"
+msgid "version: %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
+msgctxt "@label"
+msgid "End-to-end solution for fused filament 3D printing."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
+msgctxt "@info:credit"
+msgid ""
+"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
+"Cura proudly uses the following open source projects:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
+msgctxt "@label"
+msgid "Graphical user interface"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
+msgctxt "@label"
+msgid "Application framework"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
+msgctxt "@label"
+msgid "G-code generator"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
+msgctxt "@label"
+msgid "Interprocess communication library"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
+msgctxt "@label"
+msgid "Programming language"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
+msgctxt "@label"
+msgid "GUI framework"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
+msgctxt "@label"
+msgid "GUI framework bindings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
+msgctxt "@label"
+msgid "C/C++ Binding library"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
+msgctxt "@label"
+msgid "Data interchange format"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
+msgctxt "@label"
+msgid "Support library for scientific computing"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
+msgctxt "@label"
+msgid "Support library for faster math"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
+msgctxt "@label"
+msgid "Support library for handling STL files"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
+msgctxt "@label"
+msgid "Support library for handling planar objects"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
+msgctxt "@label"
+msgid "Support library for handling triangular meshes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
+msgctxt "@label"
+msgid "Support library for handling 3MF files"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
+msgctxt "@label"
+msgid "Support library for file metadata and streaming"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
+msgctxt "@label"
+msgid "Serial communication library"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
+msgctxt "@label"
+msgid "ZeroConf discovery library"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
+msgctxt "@label"
+msgid "Polygon clipping library"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
+msgctxt "@Label"
+msgid "Static type checker for Python"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
+msgctxt "@Label"
+msgid "Root Certificates for validating SSL trustworthiness"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
+msgctxt "@Label"
+msgid "Python Error tracking library"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
+msgctxt "@label"
+msgid "Polygon packing library, developed by Prusa Research"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
+msgctxt "@label"
+msgid "Python bindings for libnest2d"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161
+msgctxt "@label"
+msgid "Support library for system keyring access"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162
+msgctxt "@label"
+msgid "Python extensions for Microsoft Windows"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163
+msgctxt "@label"
+msgid "Font"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164
+msgctxt "@label"
+msgid "SVG icons"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165
+msgctxt "@label"
+msgid "Linux cross-distribution application deployment"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
+msgctxt "@title:window"
+msgid "Open project file"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
+msgctxt "@text:window"
+msgid ""
+"This is a Cura project file. Would you like to open it as a project or "
+"import the models from it?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
+msgctxt "@text:window"
+msgid "Remember my choice"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
+msgctxt "@action:button"
+msgid "Open as project"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
+msgctxt "@action:button"
+msgid "Import models"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
+msgctxt "@title:window"
+msgid "Discard or Keep changes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
+msgctxt "@text:window, %1 is a profile name"
+msgid ""
+"You have customized some profile settings.\n"
+"Would you like to Keep these changed settings after switching profiles?\n"
+"Alternatively, you can discard the changes to load the defaults from '%1'."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
+msgctxt "@title:column"
+msgid "Profile settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
+msgctxt "@title:column"
+msgid "Current changes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733
+msgctxt "@option:discardOrKeep"
+msgid "Always ask me this"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
+msgctxt "@option:discardOrKeep"
+msgid "Discard and never ask again"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
+msgctxt "@option:discardOrKeep"
+msgid "Keep and never ask again"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
+msgctxt "@action:button"
+msgid "Discard changes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
+msgctxt "@action:button"
+msgid "Keep changes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
+msgctxt "@text:window"
+msgid ""
+"We have found one or more project file(s) within the files you have "
+"selected. You can open only one project file at a time. We suggest to only "
+"import models from those files. Would you like to proceed?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
+msgctxt "@action:button"
+msgid "Import all as models"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
+msgctxt "@title:window"
+msgid "Save Project"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
+msgctxt "@action:label"
+msgid "Extruder %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
+msgctxt "@action:label"
+msgid "%1 & material"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
+msgctxt "@action:label"
msgid "Material"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:54
-msgctxt "@label:category menu label"
-msgid "Favorites"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
+msgctxt "@action:label"
+msgid "Don't show project summary on save again"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:79
-msgctxt "@label:category menu label"
-msgid "Generic"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
+msgctxt "@action:button"
+msgid "Save"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:13
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
+msgctxt "@label %1 is filled in with the name of an extruder"
+msgid "Print Selected Model with %1"
+msgid_plural "Print Selected Models with %1"
+msgstr[0] ""
+msgstr[1] ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
+msgctxt "@text Print job name"
+msgid "Untitled"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
msgctxt "@title:menu menubar:toplevel"
msgid "&File"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:41
-msgctxt "@title:menu menubar:file"
-msgid "&Save Project..."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Edit"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:74
-msgctxt "@title:menu menubar:file"
-msgid "&Export..."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
+msgctxt "@title:menu menubar:toplevel"
+msgid "&View"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:85
-msgctxt "@action:inmenu menubar:file"
-msgid "Export Selection..."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Settings"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Open &Recent"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
+msgctxt "@title:menu menubar:toplevel"
+msgid "E&xtensions"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
-msgctxt "@label"
-msgid "Select configuration"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
+msgctxt "@title:menu menubar:toplevel"
+msgid "P&references"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
-msgctxt "@label"
-msgid "Configurations"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Help"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
+msgctxt "@title:window"
+msgid "New project"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
+msgctxt "@info:question"
+msgid ""
+"Are you sure you want to start a new project? This will clear the build "
+"plate and any unsaved settings."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
+msgctxt "@action:button"
+msgid "Marketplace"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
msgctxt "@header"
msgid "Configurations"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
-msgctxt "@header"
-msgid "Custom"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
-msgctxt "@label"
-msgid "Printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
-msgctxt "@label"
-msgid "Enabled"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
-msgctxt "@label"
-msgid "Material"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
-msgctxt "@label"
-msgid "Use glue for better adhesion with this material combination."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
msgctxt "@label"
msgid ""
"This configuration is not available because %1 is not recognized. Please "
"visit %2 to download the correct material profile."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
msgctxt "@label"
msgid "Marketplace"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
msgctxt "@label"
msgid "Loading available configurations from the printer..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
msgctxt "@label"
msgid ""
"The configurations are not available because the printer is disconnected."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:12
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
-msgctxt "@title:menu menubar:toplevel"
-msgid "&View"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
+msgctxt "@label"
+msgid "Select configuration"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:19
-msgctxt "@action:inmenu menubar:view"
-msgid "&Camera position"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
+msgctxt "@label"
+msgid "Configurations"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:44
-msgctxt "@action:inmenu menubar:view"
-msgid "Camera view"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
+msgctxt "@header"
+msgid "Custom"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:47
-msgctxt "@action:inmenu menubar:view"
-msgid "Perspective"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
+msgctxt "@label"
+msgid "Printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:59
-msgctxt "@action:inmenu menubar:view"
-msgid "Orthographic"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
+msgctxt "@label"
+msgid "Enabled"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:80
-msgctxt "@action:inmenu menubar:view"
-msgid "&Build plate"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
+msgctxt "@label"
+msgid "Material"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:25
-msgctxt "@label:category menu label"
-msgid "Network enabled printers"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407
+msgctxt "@label"
+msgid "Use glue for better adhesion with this material combination."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:42
-msgctxt "@label:category menu label"
-msgid "Local printers"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
-msgctxt "@action:inmenu"
-msgid "Visible Settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
-msgctxt "@action:inmenu"
-msgid "Collapse All Categories"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
-msgctxt "@action:inmenu"
-msgid "Manage Setting Visibility..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:13
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:15
-msgctxt "@title:menu menubar:settings"
-msgid "&Printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:29
-msgctxt "@title:menu"
-msgid "&Material"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:44
-msgctxt "@action:inmenu"
-msgid "Set as Active Extruder"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:50
-msgctxt "@action:inmenu"
-msgid "Enable Extruder"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:57
-msgctxt "@action:inmenu"
-msgid "Disable Extruder"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Save Project..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
msgctxt "@label"
msgid "Print Selected Model With:"
msgid_plural "Print Selected Models With:"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:116
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
msgctxt "@title:window"
msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:141
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
msgctxt "@label"
msgid "Number of Copies"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41
+msgctxt "@title:menu menubar:file"
+msgid "&Save Project..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74
+msgctxt "@title:menu menubar:file"
+msgid "&Export..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85
+msgctxt "@action:inmenu menubar:file"
+msgid "Export Selection..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
+msgctxt "@label:category menu label"
+msgid "Material"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
+msgctxt "@label:category menu label"
+msgid "Favorites"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
+msgctxt "@label:category menu label"
+msgid "Generic"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
msgctxt "@title:menu menubar:file"
msgid "Open File(s)..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
-msgctxt "@label:header"
-msgid "Custom profiles"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
+msgctxt "@label:category menu label"
+msgid "Network enabled printers"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:564
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
+msgctxt "@label:category menu label"
+msgid "Local printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Open &Recent"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Save Project..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
+msgctxt "@title:menu menubar:settings"
+msgid "&Printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29
+msgctxt "@title:menu"
+msgid "&Material"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44
+msgctxt "@action:inmenu"
+msgid "Set as Active Extruder"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50
+msgctxt "@action:inmenu"
+msgid "Enable Extruder"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57
+msgctxt "@action:inmenu"
+msgid "Disable Extruder"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
+msgctxt "@action:inmenu"
+msgid "Visible Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
+msgctxt "@action:inmenu"
+msgid "Collapse All Categories"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
+msgctxt "@action:inmenu"
+msgid "Manage Setting Visibility..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
+msgctxt "@action:inmenu menubar:view"
+msgid "&Camera position"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45
+msgctxt "@action:inmenu menubar:view"
+msgid "Camera view"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48
+msgctxt "@action:inmenu menubar:view"
+msgid "Perspective"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60
+msgctxt "@action:inmenu menubar:view"
+msgid "Orthographic"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81
+msgctxt "@action:inmenu menubar:view"
+msgid "&Build plate"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
+msgctxt "@label:MonitorStatus"
+msgid "Not connected to a printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
+msgctxt "@label:MonitorStatus"
+msgid "Printer does not accept commands"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
+msgctxt "@label:MonitorStatus"
+msgid "In maintenance. Please check the printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
+msgctxt "@label:MonitorStatus"
+msgid "Lost connection with the printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
+msgctxt "@label:MonitorStatus"
+msgid "Printing..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
+msgctxt "@label:MonitorStatus"
+msgid "Paused"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
+msgctxt "@label:MonitorStatus"
+msgid "Preparing..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
+msgctxt "@label:MonitorStatus"
+msgid "Please remove the print"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326
+msgctxt "@label"
+msgid "Abort Print"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338
+msgctxt "@label"
+msgid "Are you sure you want to abort the print?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114
+msgctxt "@label"
+msgid "Is printed as support."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117
+msgctxt "@label"
+msgid "Other models overlapping with this model are modified."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120
+msgctxt "@label"
+msgid "Infill overlapping with this model is modified."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123
+msgctxt "@label"
+msgid "Overlaps with this model are not supported."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130
+msgctxt "@label %1 is the number of settings it overrides."
+msgid "Overrides %1 setting."
+msgid_plural "Overrides %1 settings."
+msgstr[0] ""
+msgstr[1] ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
+msgctxt "@label"
+msgid "Object list"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137
+msgctxt "@label"
+msgid "Interface"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209
+msgctxt "@label"
+msgid "Currency:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222
+msgctxt "@label"
+msgid "Theme:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267
+msgctxt "@label"
+msgid ""
+"You will need to restart the application for these changes to have effect."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284
+msgctxt "@info:tooltip"
+msgid "Slice automatically when changing settings."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292
+msgctxt "@option:check"
+msgid "Slice automatically"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306
+msgctxt "@label"
+msgid "Viewport behavior"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314
+msgctxt "@info:tooltip"
+msgid ""
+"Highlight unsupported areas of the model in red. Without support these areas "
+"will not print properly."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323
+msgctxt "@option:check"
+msgid "Display overhang"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333
+msgctxt "@info:tooltip"
+msgid ""
+"Highlight missing or extraneous surfaces of the model using warning signs. "
+"The toolpaths will often be missing parts of the intended geometry."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342
+msgctxt "@option:check"
+msgid "Display model errors"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350
+msgctxt "@info:tooltip"
+msgid ""
+"Moves the camera so the model is in the center of the view when a model is "
+"selected"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355
+msgctxt "@action:button"
+msgid "Center camera when item is selected"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365
+msgctxt "@info:tooltip"
+msgid "Should the default zoom behavior of cura be inverted?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370
+msgctxt "@action:button"
+msgid "Invert the direction of camera zoom."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid "Should zooming move in the direction of the mouse?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid ""
+"Zooming towards the mouse is not supported in the orthographic perspective."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391
+msgctxt "@action:button"
+msgid "Zoom toward mouse direction"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417
+msgctxt "@info:tooltip"
+msgid ""
+"Should models on the platform be moved so that they no longer intersect?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422
+msgctxt "@option:check"
+msgid "Ensure models are kept apart"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431
+msgctxt "@info:tooltip"
+msgid "Should models on the platform be moved down to touch the build plate?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436
+msgctxt "@option:check"
+msgid "Automatically drop models to the build plate"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448
+msgctxt "@info:tooltip"
+msgid "Show caution message in g-code reader."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457
+msgctxt "@option:check"
+msgid "Caution message in g-code reader"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465
+msgctxt "@info:tooltip"
+msgid "Should layer be forced into compatibility mode?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470
+msgctxt "@option:check"
+msgid "Force layer view compatibility mode (restart required)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480
+msgctxt "@info:tooltip"
+msgid "Should Cura open at the location it was closed?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485
+msgctxt "@option:check"
+msgid "Restore window position on start"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495
+msgctxt "@info:tooltip"
+msgid "What type of camera rendering should be used?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502
+msgctxt "@window:text"
+msgid "Camera rendering:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509
+msgid "Perspective"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510
+msgid "Orthographic"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548
+msgctxt "@label"
+msgid "Opening and saving files"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555
+msgctxt "@info:tooltip"
+msgid ""
+"Should opening files from the desktop or external applications open in the "
+"same instance of Cura?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560
+msgctxt "@option:check"
+msgid "Use a single instance of Cura"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570
+msgctxt "@info:tooltip"
+msgid "Should models be scaled to the build volume if they are too large?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
+msgctxt "@option:check"
+msgid "Scale large models"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585
+msgctxt "@info:tooltip"
+msgid ""
+"An model may appear extremely small if its unit is for example in meters "
+"rather than millimeters. Should these models be scaled up?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
+msgctxt "@option:check"
+msgid "Scale extremely small models"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600
+msgctxt "@info:tooltip"
+msgid "Should models be selected after they are loaded?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605
+msgctxt "@option:check"
+msgid "Select models when loaded"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615
+msgctxt "@info:tooltip"
+msgid ""
+"Should a prefix based on the printer name be added to the print job name "
+"automatically?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
+msgctxt "@option:check"
+msgid "Add machine prefix to job name"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630
+msgctxt "@info:tooltip"
+msgid "Should a summary be shown when saving a project file?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634
+msgctxt "@option:check"
+msgid "Show summary dialog when saving project"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644
+msgctxt "@info:tooltip"
+msgid "Default behavior when opening a project file"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652
+msgctxt "@window:text"
+msgid "Default behavior when opening a project file: "
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666
+msgctxt "@option:openProject"
+msgid "Always ask me this"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667
+msgctxt "@option:openProject"
+msgid "Always open as a project"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668
+msgctxt "@option:openProject"
+msgid "Always import models"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705
+msgctxt "@info:tooltip"
+msgid ""
+"When you have made changes to a profile and switched to a different one, a "
+"dialog will be shown asking whether you want to keep your modifications or "
+"not, or you can choose a default behaviour and never show that dialog again."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
+msgctxt "@label"
+msgid "Profiles"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719
+msgctxt "@window:text"
+msgid ""
+"Default behavior for changed setting values when switching to a different "
+"profile: "
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734
+msgctxt "@option:discardOrKeep"
+msgid "Always discard changed settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735
+msgctxt "@option:discardOrKeep"
+msgid "Always transfer changed settings to new profile"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770
+msgctxt "@label"
+msgid "Privacy"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777
+msgctxt "@info:tooltip"
+msgid "Should Cura check for updates when the program is started?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782
+msgctxt "@option:check"
+msgid "Check for updates on start"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792
+msgctxt "@info:tooltip"
+msgid ""
+"Should anonymous data about your print be sent to Ultimaker? Note, no "
+"models, IP addresses or other personally identifiable information is sent or "
+"stored."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797
+msgctxt "@option:check"
+msgid "Send (anonymous) print information"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806
+msgctxt "@action:button"
+msgid "More information"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
+msgctxt "@action:button"
+msgid "Activate"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
+msgctxt "@action:button"
+msgid "Rename"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
+msgctxt "@action:button"
+msgid "Create"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
+msgctxt "@action:button"
+msgid "Duplicate"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
+msgctxt "@action:button"
+msgid "Import"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
+msgctxt "@action:button"
+msgid "Export"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199
+msgctxt "@action:button Sending materials to printers"
+msgid "Sync with Printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248
+msgctxt "@action:label"
+msgid "Printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277
+msgctxt "@title:window"
+msgid "Confirm Remove"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278
+msgctxt "@label (%1 is object name)"
+msgid "Are you sure you wish to remove %1? This cannot be undone!"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337
+msgctxt "@title:window"
+msgid "Import Material"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid ""
+"Could not import material %1: %2"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully imported material %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368
+msgctxt "@title:window"
+msgid "Export Material"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372
+msgctxt "@info:status Don't translate the XML tags and !"
+msgid ""
+"Failed to export material to %1: %2"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully exported material to %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388
+msgctxt "@title:window"
+msgid "Export All Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
+msgctxt "@title"
+msgid "Information"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
+msgctxt "@title:window"
+msgid "Confirm Diameter Change"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
+msgctxt "@label (%1 is a number)"
+msgid ""
+"The new filament diameter is set to %1 mm, which is not compatible with the "
+"current extruder. Do you wish to continue?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
+msgctxt "@label"
+msgid "Display Name"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
+msgctxt "@label"
+msgid "Material Type"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
+msgctxt "@label"
+msgid "Color"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
+msgctxt "@label"
+msgid "Properties"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
+msgctxt "@label"
+msgid "Density"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
+msgctxt "@label"
+msgid "Diameter"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
+msgctxt "@label"
+msgid "Filament Cost"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
+msgctxt "@label"
+msgid "Filament weight"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
+msgctxt "@label"
+msgid "Filament length"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
+msgctxt "@label"
+msgid "Cost per Meter"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
+msgctxt "@label"
+msgid "This material is linked to %1 and shares some of its properties."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
+msgctxt "@label"
+msgid "Unlink Material"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
+msgctxt "@label"
+msgid "Description"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
+msgctxt "@label"
+msgid "Adhesion Information"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
+msgctxt "@label"
+msgid "Print settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
+msgctxt "@label"
+msgid "Create"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
+msgctxt "@label"
+msgid "Duplicate"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
+msgctxt "@title:window"
+msgid "Create Profile"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
+msgctxt "@info"
+msgid "Please provide a name for this profile."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263
+msgctxt "@title:window"
+msgid "Duplicate Profile"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294
+msgctxt "@title:window"
+msgid "Rename Profile"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307
+msgctxt "@title:window"
+msgid "Import Profile"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336
+msgctxt "@title:window"
+msgid "Export Profile"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399
+msgctxt "@label %1 is printer name"
+msgid "Printer: %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557
+msgctxt "@action:button"
+msgid "Update profile with current settings/overrides"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
msgctxt "@action:button"
msgid "Discard current changes"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583
+msgctxt "@action:label"
+msgid ""
+"This profile uses the defaults specified by the printer, so it has no "
+"settings/overrides in the list below."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591
+msgctxt "@action:label"
+msgid "Your current settings match the selected profile."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609
+msgctxt "@title:tab"
+msgid "Global Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
+msgctxt "@info:status"
+msgid "Calculated"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
+msgctxt "@title:column"
+msgid "Setting"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
+msgctxt "@title:column"
+msgid "Profile"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
+msgctxt "@title:column"
+msgid "Current"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
+msgctxt "@title:column"
+msgid "Unit"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16
+msgctxt "@title:tab"
+msgid "Setting Visibility"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48
+msgctxt "@label:textbox"
+msgid "Check all"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+msgctxt "@label"
+msgid "Extruder"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
+msgctxt "@tooltip"
+msgid ""
+"The target temperature of the hotend. The hotend will heat up or cool down "
+"towards this temperature. If this is 0, the hotend heating is turned off."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
+msgctxt "@tooltip"
+msgid "The current temperature of this hotend."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the hotend to."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
+msgctxt "@button Cancel pre-heating"
+msgid "Cancel"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+msgctxt "@button"
+msgid "Pre-heat"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
+msgctxt "@tooltip of pre-heat"
+msgid ""
+"Heat the hotend in advance before printing. You can continue adjusting your "
+"print while it is heating, and you won't have to wait for the hotend to heat "
+"up when you're ready to print."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
+msgctxt "@tooltip"
+msgid "The colour of the material in this extruder."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
+msgctxt "@tooltip"
+msgid "The material in this extruder."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
+msgctxt "@tooltip"
+msgid "The nozzle inserted in this extruder."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+msgctxt "@label"
+msgid "Build plate"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
+msgctxt "@tooltip"
+msgid ""
+"The target temperature of the heated bed. The bed will heat up or cool down "
+"towards this temperature. If this is 0, the bed heating is turned off."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
+msgctxt "@tooltip"
+msgid "The current temperature of the heated bed."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the bed to."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
+msgctxt "@tooltip of pre-heat"
+msgid ""
+"Heat the bed in advance before printing. You can continue adjusting your "
+"print while it is heating, and you won't have to wait for the bed to heat up "
+"when you're ready to print."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+msgctxt "@label"
+msgid "Printer control"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+msgctxt "@label"
+msgid "Jog Position"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+msgctxt "@label"
+msgid "X/Y"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
+msgctxt "@label"
+msgid "Z"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
+msgctxt "@label"
+msgid "Jog Distance"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
+msgctxt "@label"
+msgid "Send G-code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
+msgctxt "@tooltip of G-code command input"
+msgid ""
+"Send a custom G-code command to the connected printer. Press 'enter' to send "
+"the command."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
+msgctxt "@info:status"
+msgid "The printer is not connected."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
+msgctxt "@status"
+msgid ""
+"The cloud printer is offline. Please check if the printer is turned on and "
+"connected to the internet."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
+msgctxt "@status"
+msgid ""
+"This printer is not linked to your account. Please visit the Ultimaker "
+"Digital Factory to establish a connection."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
+msgctxt "@status"
+msgid ""
+"The cloud connection is currently unavailable. Please sign in to connect to "
+"the cloud printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
+msgctxt "@status"
+msgid ""
+"The cloud connection is currently unavailable. Please check your internet "
+"connection."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
+msgctxt "@button"
+msgid "Add printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
+msgctxt "@button"
+msgid "Manage printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Connected printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Preset printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
+msgctxt "@label"
+msgid "Active print"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
+msgctxt "@label"
+msgid "Job Name"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
+msgctxt "@label"
+msgid "Printing Time"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
+msgctxt "@label"
+msgid "Estimated time left"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
msgctxt "@label"
msgid "Profile"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
msgctxt "@tooltip"
msgid ""
"Some setting/override values are different from the values stored in the "
@@ -3528,91 +5213,12 @@ msgid ""
"Click to open the profile manager."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
-msgctxt "@label:Should be short"
-msgid "On"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
+msgctxt "@label:header"
+msgid "Custom profiles"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
-msgctxt "@label:Should be short"
-msgid "Off"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
-msgctxt "@label"
-msgid "Experimental"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
-msgctxt "@button"
-msgid "Recommended"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
-msgctxt "@button"
-msgid "Custom"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
-msgctxt "@label"
-msgid "Print settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
-msgctxt "@label shown when we load a Gcode file"
-msgid "Print setup disabled. G-code file can not be modified."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
-msgctxt "@label"
-msgid "Gradual infill"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
-msgctxt "@label"
-msgid ""
-"Gradual infill will gradually increase the amount of infill towards the top."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:728
-msgctxt "@label"
-msgid "Profiles"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
-msgctxt "@tooltip"
-msgid ""
-"You have modified some profile settings. If you want to change these go to "
-"custom mode."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
-msgctxt "@label"
-msgid "Support"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
-msgctxt "@label"
-msgid ""
-"Generate structures to support parts of the model which have overhangs. "
-"Without these structures, such parts would collapse during printing."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
-msgctxt "@label"
-msgid "Adhesion"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
-msgctxt "@label"
-msgid ""
-"Enable printing a brim or raft. This will add a flat area around or under "
-"your object which is easy to cut off afterwards."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
msgctxt ""
"@label %1 is filled in with the type of a profile. %2 is filled with a list "
"of numbers (eg '1' or '1, 2')"
@@ -3625,1572 +5231,79 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Widgets/ComboBox.qml:24
-msgctxt "@label"
-msgid "No items to select from"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
+msgctxt "@label shown when we load a Gcode file"
+msgid "Print setup disabled. G-code file can not be modified."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:140
-msgctxt "@label"
-msgid "Active print"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:148
-msgctxt "@label"
-msgid "Job Name"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:156
-msgctxt "@label"
-msgid "Printing Time"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:164
-msgctxt "@label"
-msgid "Estimated time left"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
-msgctxt "@title:window"
-msgid "Discard or Keep changes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
-msgctxt "@text:window, %1 is a profile name"
-msgid ""
-"You have customized some profile settings.\n"
-"Would you like to Keep these changed settings after switching profiles?\n"
-"Alternatively, you can discard the changes to load the defaults from '%1'."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
-msgctxt "@title:column"
-msgid "Profile settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
-msgctxt "@title:column"
-msgid "Current changes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:747
-msgctxt "@option:discardOrKeep"
-msgid "Always ask me this"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
-msgctxt "@option:discardOrKeep"
-msgid "Discard and never ask again"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
-msgctxt "@option:discardOrKeep"
-msgid "Keep and never ask again"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
-msgctxt "@action:button"
-msgid "Discard changes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
-msgctxt "@action:button"
-msgid "Keep changes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:15
-msgctxt "@title:window The argument is the application name."
-msgid "About %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:57
-msgctxt "@label"
-msgid "version: %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:72
-msgctxt "@label"
-msgid "End-to-end solution for fused filament 3D printing."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:85
-msgctxt "@info:credit"
-msgid ""
-"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
-"Cura proudly uses the following open source projects:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:135
-msgctxt "@label"
-msgid "Graphical user interface"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:136
-msgctxt "@label"
-msgid "Application framework"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:137
-msgctxt "@label"
-msgid "G-code generator"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:138
-msgctxt "@label"
-msgid "Interprocess communication library"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:140
-msgctxt "@label"
-msgid "Programming language"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:141
-msgctxt "@label"
-msgid "GUI framework"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:142
-msgctxt "@label"
-msgid "GUI framework bindings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:143
-msgctxt "@label"
-msgid "C/C++ Binding library"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:144
-msgctxt "@label"
-msgid "Data interchange format"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:145
-msgctxt "@label"
-msgid "Support library for scientific computing"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:146
-msgctxt "@label"
-msgid "Support library for faster math"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:147
-msgctxt "@label"
-msgid "Support library for handling STL files"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:148
-msgctxt "@label"
-msgid "Support library for handling planar objects"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:149
-msgctxt "@label"
-msgid "Support library for handling triangular meshes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:150
-msgctxt "@label"
-msgid "Support library for handling 3MF files"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:151
-msgctxt "@label"
-msgid "Support library for file metadata and streaming"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:152
-msgctxt "@label"
-msgid "Serial communication library"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:153
-msgctxt "@label"
-msgid "ZeroConf discovery library"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:154
-msgctxt "@label"
-msgid "Polygon clipping library"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:155
-msgctxt "@Label"
-msgid "Static type checker for Python"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:156
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:157
-msgctxt "@Label"
-msgid "Root Certificates for validating SSL trustworthiness"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:158
-msgctxt "@Label"
-msgid "Python Error tracking library"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:159
-msgctxt "@label"
-msgid "Polygon packing library, developed by Prusa Research"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:160
-msgctxt "@label"
-msgid "Python bindings for libnest2d"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:161
-msgctxt "@label"
-msgid "Support library for system keyring access"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:162
-msgctxt "@label"
-msgid "Python extensions for Microsoft Windows"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:163
-msgctxt "@label"
-msgid "Font"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:164
-msgctxt "@label"
-msgid "SVG icons"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:165
-msgctxt "@label"
-msgid "Linux cross-distribution application deployment"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:627
-msgctxt "@title:window"
-msgid "Open file(s)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
-msgctxt "@text:window"
-msgid ""
-"We have found one or more project file(s) within the files you have "
-"selected. You can open only one project file at a time. We suggest to only "
-"import models from those files. Would you like to proceed?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
-msgctxt "@action:button"
-msgid "Import all as models"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
-msgctxt "@title:window"
-msgid "Save Project"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
-msgctxt "@action:label"
-msgid "Extruder %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
-msgctxt "@action:label"
-msgid "%1 & material"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
-msgctxt "@action:label"
-msgid "Material"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
-msgctxt "@action:label"
-msgid "Don't show project summary on save again"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
-msgctxt "@action:button"
-msgid "Save"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
-msgctxt "@title:window"
-msgid "Open project file"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
-msgctxt "@text:window"
-msgid ""
-"This is a Cura project file. Would you like to open it as a project or "
-"import the models from it?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
-msgctxt "@text:window"
-msgid "Remember my choice"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
-msgctxt "@action:button"
-msgid "Open as project"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
-msgctxt "@action:button"
-msgid "Import models"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/JobSpecs.qml:99
-msgctxt "@text Print job name"
-msgid "Untitled"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
-msgctxt "@label"
-msgid "Welcome to Ultimaker Cura"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
-msgctxt "@text"
-msgid ""
-"Please follow these steps to set up Ultimaker Cura. This will only take a "
-"few moments."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
msgctxt "@button"
-msgid "Get started"
+msgid "Recommended"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
-msgctxt "@label"
-msgid "Empty"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
-msgctxt "@label"
-msgid "Help us to improve Ultimaker Cura"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
-msgctxt "@text"
-msgid ""
-"Ultimaker Cura collects anonymous data to improve print quality and user "
-"experience, including:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
-msgctxt "@text"
-msgid "Machine types"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
-msgctxt "@text"
-msgid "Material usage"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
-msgctxt "@text"
-msgid "Number of slices"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
-msgctxt "@text"
-msgid "Print settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
-msgctxt "@text"
-msgid ""
-"Data collected by Ultimaker Cura will not contain any personal information."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
-msgctxt "@text"
-msgid "More information"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
-msgctxt "@label"
-msgid "Add printer by IP address"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
-msgctxt "@text"
-msgid "Enter your printer's IP address."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
msgctxt "@button"
-msgid "Add"
+msgid "Custom"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
+msgctxt "@label:Should be short"
+msgid "On"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
+msgctxt "@label:Should be short"
+msgid "Off"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
msgctxt "@label"
-msgid "Could not connect to device."
+msgid "Experimental"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
msgctxt "@label"
-msgid "Can't connect to your Ultimaker printer?"
+msgid "Adhesion"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
-msgctxt "@label"
-msgid "The printer at this address has not responded yet."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
msgctxt "@label"
msgid ""
-"This printer cannot be added because it's an unknown printer or it's not the "
-"host of a group."
+"Enable printing a brim or raft. This will add a flat area around or under "
+"your object which is easy to cut off afterwards."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
-msgctxt "@button"
-msgid "Back"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
-msgctxt "@button"
-msgid "Connect"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
msgctxt "@label"
-msgid "Add a printer"
+msgid "Gradual infill"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
-msgctxt "@label"
-msgid "Add a networked printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
-msgctxt "@label"
-msgid "Add a non-networked printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
-msgctxt "@label"
-msgid "What's New"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
-msgctxt "@label"
-msgid "Add a Cloud printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
-msgctxt "@label"
-msgid "Waiting for Cloud response"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
-msgctxt "@label"
-msgid "No printers found in your account?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
-msgctxt "@label"
-msgid "The following printers in your account have been added in Cura:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
-msgctxt "@button"
-msgid "Add printer manually"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:64
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:20
-msgctxt "@label"
-msgid "Sign in to the Ultimaker platform"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:124
-msgctxt "@text"
-msgid "Add material settings and plugins from the Marketplace"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:154
-msgctxt "@text"
-msgid "Backup and sync your material settings and plugins"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:184
-msgctxt "@text"
-msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:217
-msgctxt "@text"
-msgid "Create a free Ultimaker Account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:230
-msgctxt "@button"
-msgid "Skip"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
-msgctxt "@label"
-msgid "User Agreement"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
-msgctxt "@button"
-msgid "Decline and close"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
-msgctxt "@label"
-msgid "Release Notes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
-msgctxt "@label"
-msgid "There is no printer found over your network."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
-msgctxt "@label"
-msgid "Refresh"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
-msgctxt "@label"
-msgid "Add printer by IP"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
-msgctxt "@label"
-msgid "Add cloud printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
-msgctxt "@label"
-msgid "Troubleshooting"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
-msgctxt "@label"
-msgid "Manufacturer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
-msgctxt "@label"
-msgid "Profile author"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
-msgctxt "@label"
-msgid "Printer name"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
-msgctxt "@text"
-msgid "Please name your printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:81
-msgctxt "@label The argument is a timestamp"
-msgid "Last update: %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:109
-msgctxt "@button"
-msgid "Ultimaker Account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:125
-msgctxt "@button"
-msgid "Sign Out"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:42
-msgctxt "@text"
-msgid ""
-"- Add material profiles and plug-ins from the Marketplace\n"
-"- Back-up and sync your material profiles and plug-ins\n"
-"- Share ideas and get help from 48,000+ users in the Ultimaker community"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:62
-msgctxt "@button"
-msgid "Create a free Ultimaker account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/AccountWidget.qml:24
-msgctxt "@action:button"
-msgid "Sign in"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:28
-msgctxt "@label"
-msgid "Checking..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:35
-msgctxt "@label"
-msgid "Account synced"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:42
-msgctxt "@label"
-msgid "Something went wrong..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:96
-msgctxt "@button"
-msgid "Install pending updates"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:118
-msgctxt "@button"
-msgid "Check for account updates"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectSelector.qml:59
-msgctxt "@label"
-msgid "Object list"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:82
-msgctxt "@action:inmenu"
-msgid "Show Online Troubleshooting Guide"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:89
-msgctxt "@action:inmenu"
-msgid "Toggle Full Screen"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:97
-msgctxt "@action:inmenu"
-msgid "Exit Full Screen"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:104
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Undo"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:114
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Redo"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:124
-msgctxt "@action:inmenu menubar:file"
-msgid "&Quit"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:132
-msgctxt "@action:inmenu menubar:view"
-msgid "3D View"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:139
-msgctxt "@action:inmenu menubar:view"
-msgid "Front View"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:146
-msgctxt "@action:inmenu menubar:view"
-msgid "Top View"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:153
-msgctxt "@action:inmenu menubar:view"
-msgid "Left Side View"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:160
-msgctxt "@action:inmenu menubar:view"
-msgid "Right Side View"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:167
-msgctxt "@action:inmenu"
-msgid "Configure Cura..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:174
-msgctxt "@action:inmenu menubar:printer"
-msgid "&Add Printer..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:180
-msgctxt "@action:inmenu menubar:printer"
-msgid "Manage Pr&inters..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:187
-msgctxt "@action:inmenu"
-msgid "Manage Materials..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:195
-msgctxt "@action:inmenu"
-msgid "Add more materials from Marketplace"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:202
-msgctxt "@action:inmenu menubar:profile"
-msgid "&Update profile with current settings/overrides"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:210
-msgctxt "@action:inmenu menubar:profile"
-msgid "&Discard current changes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:222
-msgctxt "@action:inmenu menubar:profile"
-msgid "&Create profile from current settings/overrides..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:228
-msgctxt "@action:inmenu menubar:profile"
-msgid "Manage Profiles..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:236
-msgctxt "@action:inmenu menubar:help"
-msgid "Show Online &Documentation"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:244
-msgctxt "@action:inmenu menubar:help"
-msgid "Report a &Bug"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:252
-msgctxt "@action:inmenu menubar:help"
-msgid "What's New"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:258
-msgctxt "@action:inmenu menubar:help"
-msgid "About..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:265
-msgctxt "@action:inmenu menubar:edit"
-msgid "Delete Selected"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:275
-msgctxt "@action:inmenu menubar:edit"
-msgid "Center Selected"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:284
-msgctxt "@action:inmenu menubar:edit"
-msgid "Multiply Selected"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:293
-msgctxt "@action:inmenu"
-msgid "Delete Model"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:301
-msgctxt "@action:inmenu"
-msgid "Ce&nter Model on Platform"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:307
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Group Models"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:327
-msgctxt "@action:inmenu menubar:edit"
-msgid "Ungroup Models"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:337
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Merge Models"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:347
-msgctxt "@action:inmenu"
-msgid "&Multiply Model..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:354
-msgctxt "@action:inmenu menubar:edit"
-msgid "Select All Models"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:364
-msgctxt "@action:inmenu menubar:edit"
-msgid "Clear Build Plate"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:374
-msgctxt "@action:inmenu menubar:file"
-msgid "Reload All Models"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:383
-msgctxt "@action:inmenu menubar:edit"
-msgid "Arrange All Models To All Build Plates"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:390
-msgctxt "@action:inmenu menubar:edit"
-msgid "Arrange All Models"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:398
-msgctxt "@action:inmenu menubar:edit"
-msgid "Arrange Selection"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:405
-msgctxt "@action:inmenu menubar:edit"
-msgid "Reset All Model Positions"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:412
-msgctxt "@action:inmenu menubar:edit"
-msgid "Reset All Model Transformations"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:421
-msgctxt "@action:inmenu menubar:file"
-msgid "&Open File(s)..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:431
-msgctxt "@action:inmenu menubar:file"
-msgid "&New Project..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:438
-msgctxt "@action:inmenu menubar:help"
-msgid "Show Configuration Folder"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:445
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:538
-msgctxt "@action:menu"
-msgid "Configure setting visibility..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:452
-msgctxt "@action:menu"
-msgid "&Marketplace"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:61
-msgctxt "@info:status"
-msgid "Calculated"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:75
-msgctxt "@title:column"
-msgid "Setting"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:82
-msgctxt "@title:column"
-msgid "Profile"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:89
-msgctxt "@title:column"
-msgid "Current"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:97
-msgctxt "@title:column"
-msgid "Unit"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
-msgctxt "@title"
-msgid "Information"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
-msgctxt "@title:window"
-msgid "Confirm Diameter Change"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
-msgctxt "@label (%1 is a number)"
-msgid ""
-"The new filament diameter is set to %1 mm, which is not compatible with the "
-"current extruder. Do you wish to continue?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
-msgctxt "@label"
-msgid "Display Name"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
-msgctxt "@label"
-msgid "Material Type"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
-msgctxt "@label"
-msgid "Color"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
-msgctxt "@label"
-msgid "Properties"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
-msgctxt "@label"
-msgid "Density"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
-msgctxt "@label"
-msgid "Diameter"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
-msgctxt "@label"
-msgid "Filament Cost"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
-msgctxt "@label"
-msgid "Filament weight"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
-msgctxt "@label"
-msgid "Filament length"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
-msgctxt "@label"
-msgid "Cost per Meter"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
-msgctxt "@label"
-msgid "This material is linked to %1 and shares some of its properties."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
-msgctxt "@label"
-msgid "Unlink Material"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
-msgctxt "@label"
-msgid "Description"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
-msgctxt "@label"
-msgid "Adhesion Information"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:40
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:84
-msgctxt "@action:button"
-msgid "Activate"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
-msgctxt "@action:button"
-msgid "Create"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
-msgctxt "@action:button"
-msgid "Duplicate"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:167
-msgctxt "@action:button"
-msgid "Import"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:179
-msgctxt "@action:button"
-msgid "Export"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
-msgctxt "@action:label"
-msgid "Printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:277
-msgctxt "@title:window"
-msgid "Confirm Remove"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:278
-msgctxt "@label (%1 is object name)"
-msgid "Are you sure you wish to remove %1? This cannot be undone!"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
-msgctxt "@title:window"
-msgid "Import Material"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
-msgctxt "@info:status Don't translate the XML tags or !"
-msgid ""
-"Could not import material %1: %2"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully imported material %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
-msgctxt "@title:window"
-msgid "Export Material"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
-msgctxt "@info:status Don't translate the XML tags and !"
-msgid ""
-"Failed to export material to %1: %2"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully exported material to %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:16
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:455
-msgctxt "@title:tab"
-msgid "Printers"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:63
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:152
-msgctxt "@action:button"
-msgid "Rename"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:34
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:459
-msgctxt "@title:tab"
-msgid "Profiles"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:104
-msgctxt "@label"
-msgid "Create"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:121
-msgctxt "@label"
-msgid "Duplicate"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:202
-msgctxt "@title:window"
-msgid "Create Profile"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:204
-msgctxt "@info"
-msgid "Please provide a name for this profile."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:263
-msgctxt "@title:window"
-msgid "Duplicate Profile"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:294
-msgctxt "@title:window"
-msgid "Rename Profile"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:307
-msgctxt "@title:window"
-msgid "Import Profile"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:336
-msgctxt "@title:window"
-msgid "Export Profile"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:399
-msgctxt "@label %1 is printer name"
-msgid "Printer: %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:557
-msgctxt "@action:button"
-msgid "Update profile with current settings/overrides"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:583
-msgctxt "@action:label"
-msgid ""
-"This profile uses the defaults specified by the printer, so it has no "
-"settings/overrides in the list below."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:591
-msgctxt "@action:label"
-msgid "Your current settings match the selected profile."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:609
-msgctxt "@title:tab"
-msgid "Global Settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
-msgctxt "@title:tab"
-msgid "Setting Visibility"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
-msgctxt "@label:textbox"
-msgid "Check all"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:15
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:450
-msgctxt "@title:tab"
-msgid "General"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:137
-msgctxt "@label"
-msgid "Interface"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:216
-msgctxt "@label"
-msgid "Currency:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:229
-msgctxt "@label"
-msgid "Theme:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:285
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
msgctxt "@label"
msgid ""
-"You will need to restart the application for these changes to have effect."
+"Gradual infill will gradually increase the amount of infill towards the top."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:302
-msgctxt "@info:tooltip"
-msgid "Slice automatically when changing settings."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
+msgctxt "@tooltip"
+msgid ""
+"You have modified some profile settings. If you want to change these go to "
+"custom mode."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:310
-msgctxt "@option:check"
-msgid "Slice automatically"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:324
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
msgctxt "@label"
-msgid "Viewport behavior"
+msgid "Support"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:332
-msgctxt "@info:tooltip"
-msgid ""
-"Highlight unsupported areas of the model in red. Without support these areas "
-"will not print properly."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:341
-msgctxt "@option:check"
-msgid "Display overhang"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:351
-msgctxt "@info:tooltip"
-msgid ""
-"Highlight missing or extraneous surfaces of the model using warning signs. "
-"The toolpaths will often be missing parts of the intended geometry."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:360
-msgctxt "@option:check"
-msgid "Display model errors"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:368
-msgctxt "@info:tooltip"
-msgid ""
-"Moves the camera so the model is in the center of the view when a model is "
-"selected"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:373
-msgctxt "@action:button"
-msgid "Center camera when item is selected"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:383
-msgctxt "@info:tooltip"
-msgid "Should the default zoom behavior of cura be inverted?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:388
-msgctxt "@action:button"
-msgid "Invert the direction of camera zoom."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid "Should zooming move in the direction of the mouse?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid ""
-"Zooming towards the mouse is not supported in the orthographic perspective."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:409
-msgctxt "@action:button"
-msgid "Zoom toward mouse direction"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:435
-msgctxt "@info:tooltip"
-msgid ""
-"Should models on the platform be moved so that they no longer intersect?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:440
-msgctxt "@option:check"
-msgid "Ensure models are kept apart"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:449
-msgctxt "@info:tooltip"
-msgid "Should models on the platform be moved down to touch the build plate?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:454
-msgctxt "@option:check"
-msgid "Automatically drop models to the build plate"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:466
-msgctxt "@info:tooltip"
-msgid "Show caution message in g-code reader."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:475
-msgctxt "@option:check"
-msgid "Caution message in g-code reader"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:483
-msgctxt "@info:tooltip"
-msgid "Should layer be forced into compatibility mode?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:488
-msgctxt "@option:check"
-msgid "Force layer view compatibility mode (restart required)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:498
-msgctxt "@info:tooltip"
-msgid "Should Cura open at the location it was closed?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:503
-msgctxt "@option:check"
-msgid "Restore window position on start"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:513
-msgctxt "@info:tooltip"
-msgid "What type of camera rendering should be used?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:520
-msgctxt "@window:text"
-msgid "Camera rendering:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:531
-msgid "Perspective"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:532
-msgid "Orthographic"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:563
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
msgctxt "@label"
-msgid "Opening and saving files"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:570
-msgctxt "@info:tooltip"
msgid ""
-"Should opening files from the desktop or external applications open in the "
-"same instance of Cura?"
+"Generate structures to support parts of the model which have overhangs. "
+"Without these structures, such parts would collapse during printing."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:575
-msgctxt "@option:check"
-msgid "Use a single instance of Cura"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:585
-msgctxt "@info:tooltip"
-msgid "Should models be scaled to the build volume if they are too large?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:590
-msgctxt "@option:check"
-msgid "Scale large models"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:600
-msgctxt "@info:tooltip"
-msgid ""
-"An model may appear extremely small if its unit is for example in meters "
-"rather than millimeters. Should these models be scaled up?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:605
-msgctxt "@option:check"
-msgid "Scale extremely small models"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:615
-msgctxt "@info:tooltip"
-msgid "Should models be selected after they are loaded?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:620
-msgctxt "@option:check"
-msgid "Select models when loaded"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:630
-msgctxt "@info:tooltip"
-msgid ""
-"Should a prefix based on the printer name be added to the print job name "
-"automatically?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:635
-msgctxt "@option:check"
-msgid "Add machine prefix to job name"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:645
-msgctxt "@info:tooltip"
-msgid "Should a summary be shown when saving a project file?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:649
-msgctxt "@option:check"
-msgid "Show summary dialog when saving project"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:659
-msgctxt "@info:tooltip"
-msgid "Default behavior when opening a project file"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:667
-msgctxt "@window:text"
-msgid "Default behavior when opening a project file: "
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:681
-msgctxt "@option:openProject"
-msgid "Always ask me this"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:682
-msgctxt "@option:openProject"
-msgid "Always open as a project"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:683
-msgctxt "@option:openProject"
-msgid "Always import models"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:719
-msgctxt "@info:tooltip"
-msgid ""
-"When you have made changes to a profile and switched to a different one, a "
-"dialog will be shown asking whether you want to keep your modifications or "
-"not, or you can choose a default behaviour and never show that dialog again."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:733
-msgctxt "@window:text"
-msgid ""
-"Default behavior for changed setting values when switching to a different "
-"profile: "
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:748
-msgctxt "@option:discardOrKeep"
-msgid "Always discard changed settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:749
-msgctxt "@option:discardOrKeep"
-msgid "Always transfer changed settings to new profile"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:783
-msgctxt "@label"
-msgid "Privacy"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:790
-msgctxt "@info:tooltip"
-msgid "Should Cura check for updates when the program is started?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:795
-msgctxt "@option:check"
-msgid "Check for updates on start"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:805
-msgctxt "@info:tooltip"
-msgid ""
-"Should anonymous data about your print be sent to Ultimaker? Note, no "
-"models, IP addresses or other personally identifiable information is sent or "
-"stored."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:810
-msgctxt "@option:check"
-msgid "Send (anonymous) print information"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:819
-msgctxt "@action:button"
-msgid "More information"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewsSelector.qml:50
-msgctxt "@label"
-msgid "View type"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:119
-msgctxt "@label:MonitorStatus"
-msgid "Not connected to a printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:123
-msgctxt "@label:MonitorStatus"
-msgid "Printer does not accept commands"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:133
-msgctxt "@label:MonitorStatus"
-msgid "In maintenance. Please check the printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:144
-msgctxt "@label:MonitorStatus"
-msgid "Lost connection with the printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:146
-msgctxt "@label:MonitorStatus"
-msgid "Printing..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:149
-msgctxt "@label:MonitorStatus"
-msgid "Paused"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:152
-msgctxt "@label:MonitorStatus"
-msgid "Preparing..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:154
-msgctxt "@label:MonitorStatus"
-msgid "Please remove the print"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:326
-msgctxt "@label"
-msgid "Abort Print"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:338
-msgctxt "@label"
-msgid "Are you sure you want to abort the print?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:68
-msgctxt "@label:textbox"
-msgid "Search settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:456
-msgctxt "@action:menu"
-msgid "Copy value to all extruders"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:465
-msgctxt "@action:menu"
-msgid "Copy all changed values to all extruders"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:502
-msgctxt "@action:menu"
-msgid "Hide this setting"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:515
-msgctxt "@action:menu"
-msgid "Don't show this setting"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:519
-msgctxt "@action:menu"
-msgid "Keep this setting visible"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingCategory.qml:200
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200
msgctxt "@label"
msgid ""
"Some hidden settings use values different from their normal calculated "
@@ -5199,36 +5312,36 @@ msgid ""
"Click to make these settings visible."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
msgctxt "@label"
msgid ""
"This setting is not used because all the settings that it influences are "
"overridden."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:86
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
msgctxt "@label Header for list of settings."
msgid "Affects"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:91
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
msgctxt "@label Header for list of settings."
msgid "Affected By"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:187
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
msgctxt "@label"
msgid ""
"This setting is always shared between all extruders. Changing it here will "
"change the value for all extruders."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
msgctxt "@label"
msgid "This setting is resolved from conflicting extruder-specific values:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:230
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
msgctxt "@label"
msgid ""
"This setting has a value that is different from the profile.\n"
@@ -5236,7 +5349,7 @@ msgid ""
"Click to restore the value of the profile."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
msgctxt "@label"
msgid ""
"This setting is normally calculated, but it currently has an absolute value "
@@ -5245,744 +5358,312 @@ msgid ""
"Click to restore the calculated value."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68
+msgctxt "@label:textbox"
+msgid "Search settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468
+msgctxt "@action:menu"
+msgid "Copy value to all extruders"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477
+msgctxt "@action:menu"
+msgid "Copy all changed values to all extruders"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514
+msgctxt "@action:menu"
+msgid "Hide this setting"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527
+msgctxt "@action:menu"
+msgid "Don't show this setting"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531
+msgctxt "@action:menu"
+msgid "Keep this setting visible"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
msgctxt "@info:tooltip"
msgid "3D View"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
msgctxt "@info:tooltip"
msgid "Front View"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
msgctxt "@info:tooltip"
msgid "Top View"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:66
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
msgctxt "@info:tooltip"
msgid "Left View"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
msgctxt "@info:tooltip"
msgid "Right View"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
msgctxt "@label"
-msgid "Extruder"
+msgid "View type"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
-msgctxt "@tooltip"
-msgid ""
-"The target temperature of the hotend. The hotend will heat up or cool down "
-"towards this temperature. If this is 0, the hotend heating is turned off."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
+msgctxt "@label"
+msgid "Add a Cloud printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
-msgctxt "@tooltip"
-msgid "The current temperature of this hotend."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
+msgctxt "@label"
+msgid "Waiting for Cloud response"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the hotend to."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
+msgctxt "@label"
+msgid "No printers found in your account?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
-msgctxt "@button Cancel pre-heating"
-msgid "Cancel"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
+msgctxt "@label"
+msgid "The following printers in your account have been added in Cura:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
msgctxt "@button"
-msgid "Pre-heat"
+msgid "Add printer manually"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
-msgctxt "@tooltip of pre-heat"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
+msgctxt "@label"
+msgid "Manufacturer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
+msgctxt "@label"
+msgid "Profile author"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
+msgctxt "@label"
+msgid "Printer name"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
+msgctxt "@text"
+msgid "Please name your printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
+msgctxt "@label"
+msgid "Add a printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
+msgctxt "@label"
+msgid "Add a networked printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
+msgctxt "@label"
+msgid "Add a non-networked printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
+msgctxt "@label"
+msgid "There is no printer found over your network."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
+msgctxt "@label"
+msgid "Refresh"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
+msgctxt "@label"
+msgid "Add printer by IP"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
+msgctxt "@label"
+msgid "Add cloud printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
+msgctxt "@label"
+msgid "Troubleshooting"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
+msgctxt "@label"
+msgid "Add printer by IP address"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
+msgctxt "@text"
+msgid "Enter your printer's IP address."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
+msgctxt "@button"
+msgid "Add"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
+msgctxt "@label"
+msgid "Could not connect to device."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
+msgctxt "@label"
+msgid "Can't connect to your Ultimaker printer?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
+msgctxt "@label"
+msgid "The printer at this address has not responded yet."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
+msgctxt "@label"
msgid ""
-"Heat the hotend in advance before printing. You can continue adjusting your "
-"print while it is heating, and you won't have to wait for the hotend to heat "
-"up when you're ready to print."
+"This printer cannot be added because it's an unknown printer or it's not the "
+"host of a group."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
-msgctxt "@tooltip"
-msgid "The colour of the material in this extruder."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
+msgctxt "@button"
+msgid "Back"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
-msgctxt "@tooltip"
-msgid "The material in this extruder."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
+msgctxt "@button"
+msgid "Connect"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
-msgctxt "@tooltip"
-msgid "The nozzle inserted in this extruder."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
msgctxt "@label"
-msgid "Build plate"
+msgid "Release Notes"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
-msgctxt "@tooltip"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124
+msgctxt "@text"
+msgid "Add material settings and plugins from the Marketplace"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154
+msgctxt "@text"
+msgid "Backup and sync your material settings and plugins"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184
+msgctxt "@text"
+msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217
+msgctxt "@text"
+msgid "Create a free Ultimaker Account"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230
+msgctxt "@button"
+msgid "Skip"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
+msgctxt "@label"
+msgid "Help us to improve Ultimaker Cura"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
+msgctxt "@text"
msgid ""
-"The target temperature of the heated bed. The bed will heat up or cool down "
-"towards this temperature. If this is 0, the bed heating is turned off."
+"Ultimaker Cura collects anonymous data to improve print quality and user "
+"experience, including:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
-msgctxt "@tooltip"
-msgid "The current temperature of the heated bed."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
+msgctxt "@text"
+msgid "Machine types"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the bed to."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
+msgctxt "@text"
+msgid "Material usage"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
-msgctxt "@tooltip of pre-heat"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
+msgctxt "@text"
+msgid "Number of slices"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
+msgctxt "@text"
+msgid "Print settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
+msgctxt "@text"
msgid ""
-"Heat the bed in advance before printing. You can continue adjusting your "
-"print while it is heating, and you won't have to wait for the bed to heat up "
-"when you're ready to print."
+"Data collected by Ultimaker Cura will not contain any personal information."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
+msgctxt "@text"
+msgid "More information"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
msgctxt "@label"
-msgid "Printer control"
+msgid "Empty"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
msgctxt "@label"
-msgid "Jog Position"
+msgid "User Agreement"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
+msgctxt "@button"
+msgid "Decline and close"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
msgctxt "@label"
-msgid "X/Y"
+msgid "Welcome to Ultimaker Cura"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
-msgctxt "@label"
-msgid "Z"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
-msgctxt "@label"
-msgid "Jog Distance"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
-msgctxt "@label"
-msgid "Send G-code"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
-msgctxt "@tooltip of G-code command input"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
+msgctxt "@text"
msgid ""
-"Send a custom G-code command to the connected printer. Press 'enter' to send "
-"the command."
+"Please follow these steps to set up Ultimaker Cura. This will only take a "
+"few moments."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
-msgctxt "@info:status"
-msgid "The printer is not connected."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
+msgctxt "@button"
+msgid "Get started"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:114
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
msgctxt "@label"
-msgid "Is printed as support."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:117
-msgctxt "@label"
-msgid "Other models overlapping with this model are modified."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:120
-msgctxt "@label"
-msgid "Infill overlapping with this model is modified."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:123
-msgctxt "@label"
-msgid "Overlaps with this model are not supported."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:130
-msgctxt "@label %1 is the number of settings it overrides."
-msgid "Overrides %1 setting."
-msgid_plural "Overrides %1 settings."
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
-msgctxt "@action:button"
-msgid "Marketplace"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Edit"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
-msgctxt "@title:menu menubar:toplevel"
-msgid "E&xtensions"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
-msgctxt "@title:menu menubar:toplevel"
-msgid "P&references"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Help"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
-msgctxt "@title:window"
-msgid "New project"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
-msgctxt "@info:question"
-msgid ""
-"Are you sure you want to start a new project? This will clear the build "
-"plate and any unsaved settings."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:257
-msgctxt "@label"
-msgid "This package will be installed after restarting."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:453
-msgctxt "@title:tab"
-msgid "Settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:576
-msgctxt "@title:window %1 is the application name"
-msgid "Closing %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:577
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:589
-msgctxt "@label %1 is the application name"
-msgid "Are you sure you want to exit %1?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:737
-msgctxt "@window:title"
-msgid "Install Package"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:745
-msgctxt "@title:window"
-msgid "Open File(s)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:748
-msgctxt "@text:window"
-msgid ""
-"We have found one or more G-Code files within the files you have selected. "
-"You can only open one G-Code file at a time. If you want to open a G-Code "
-"file, please just select only one."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:857
-msgctxt "@title:window"
-msgid "Add Printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:865
-msgctxt "@title:window"
msgid "What's New"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
-msgctxt "@status"
-msgid ""
-"The cloud printer is offline. Please check if the printer is turned on and "
-"connected to the internet."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
-msgctxt "@status"
-msgid ""
-"This printer is not linked to your account. Please visit the Ultimaker "
-"Digital Factory to establish a connection."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
-msgctxt "@status"
-msgid ""
-"The cloud connection is currently unavailable. Please sign in to connect to "
-"the cloud printer."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
-msgctxt "@status"
-msgid ""
-"The cloud connection is currently unavailable. Please check your internet "
-"connection."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
-msgctxt "@button"
-msgid "Add printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
-msgctxt "@button"
-msgid "Manage printers"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24
msgctxt "@label"
-msgid "Connected printers"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
-msgctxt "@label"
-msgid "Preset printers"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ExtruderButton.qml:16
-msgctxt "@label %1 is filled in with the name of an extruder"
-msgid "Print Selected Model with %1"
-msgid_plural "Print Selected Models with %1"
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
-msgctxt "@label"
-msgid "Time estimation"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
-msgctxt "@label"
-msgid "Material estimation"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
-msgctxt "@label m for meter"
-msgid "%1m"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
-msgctxt "@label g for grams"
-msgid "%1g"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
-msgctxt "@label:PrintjobStatus"
-msgid "Slicing..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
-msgctxt "@label:PrintjobStatus"
-msgid "Unable to slice"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Processing"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Slice"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
-msgctxt "@label"
-msgid "Start the slicing process"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
-msgctxt "@button"
-msgid "Cancel"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
-msgctxt "@label"
-msgid "No time estimation available"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
-msgctxt "@label"
-msgid "No cost estimation available"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
-msgctxt "@button"
-msgid "Preview"
-msgstr ""
-
-#: RemovableDriveOutputDevice/plugin.json
-msgctxt "description"
-msgid "Provides removable drive hotplugging and writing support."
-msgstr ""
-
-#: RemovableDriveOutputDevice/plugin.json
-msgctxt "name"
-msgid "Removable Drive Output Device Plugin"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.5 to 4.0"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.6.2 to 4.7"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.2 to 2.4"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.2 to 4.3"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.6.0 to 4.6.2"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.0 to 3.1"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.0 to 4.1"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.6 to 2.7"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.5 to 2.6"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.1 to 4.2"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.1 to 2.2"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.2 to 3.3"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.5 to 4.6"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.4 to 4.5"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.7 to 4.8"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.3 to 3.4"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.3 to 4.4"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.4 to 3.5"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.7 to 3.0"
-msgstr ""
-
-#: AMFReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading AMF files."
-msgstr ""
-
-#: AMFReader/plugin.json
-msgctxt "name"
-msgid "AMF Reader"
-msgstr ""
-
-#: GCodeProfileReader/plugin.json
-msgctxt "description"
-msgid "Provides support for importing profiles from g-code files."
-msgstr ""
-
-#: GCodeProfileReader/plugin.json
-msgctxt "name"
-msgid "G-code Profile Reader"
-msgstr ""
-
-#: FirmwareUpdater/plugin.json
-msgctxt "description"
-msgid "Provides a machine actions for updating firmware."
-msgstr ""
-
-#: FirmwareUpdater/plugin.json
-msgctxt "name"
-msgid "Firmware Updater"
-msgstr ""
-
-#: X3DReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading X3D files."
-msgstr ""
-
-#: X3DReader/plugin.json
-msgctxt "name"
-msgid "X3D Reader"
-msgstr ""
-
-#: Toolbox/plugin.json
-msgctxt "description"
-msgid "Find, manage and install new Cura packages."
-msgstr ""
-
-#: Toolbox/plugin.json
-msgctxt "name"
-msgid "Toolbox"
-msgstr ""
-
-#: PerObjectSettingsTool/plugin.json
-msgctxt "description"
-msgid "Provides the Per Model Settings."
-msgstr ""
-
-#: PerObjectSettingsTool/plugin.json
-msgctxt "name"
-msgid "Per Model Settings Tool"
-msgstr ""
-
-#: PostProcessingPlugin/plugin.json
-msgctxt "description"
-msgid "Extension that allows for user created scripts for post processing"
-msgstr ""
-
-#: PostProcessingPlugin/plugin.json
-msgctxt "name"
-msgid "Post Processing"
-msgstr ""
-
-#: CuraEngineBackend/plugin.json
-msgctxt "description"
-msgid "Provides the link to the CuraEngine slicing backend."
-msgstr ""
-
-#: CuraEngineBackend/plugin.json
-msgctxt "name"
-msgid "CuraEngine Backend"
-msgstr ""
-
-#: USBPrinting/plugin.json
-msgctxt "description"
-msgid ""
-"Accepts G-Code and sends them to a printer. Plugin can also update firmware."
-msgstr ""
-
-#: USBPrinting/plugin.json
-msgctxt "name"
-msgid "USB printing"
-msgstr ""
-
-#: CuraProfileWriter/plugin.json
-msgctxt "description"
-msgid "Provides support for exporting Cura profiles."
-msgstr ""
-
-#: CuraProfileWriter/plugin.json
-msgctxt "name"
-msgid "Cura Profile Writer"
-msgstr ""
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "description"
-msgid "Manages network connections to Ultimaker networked printers."
-msgstr ""
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "name"
-msgid "Ultimaker Network Connection"
-msgstr ""
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "description"
-msgid ""
-"Provides machine actions for Ultimaker machines (such as bed leveling "
-"wizard, selecting upgrades, etc.)."
-msgstr ""
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "name"
-msgid "Ultimaker machine actions"
-msgstr ""
-
-#: 3MFReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading 3MF files."
-msgstr ""
-
-#: 3MFReader/plugin.json
-msgctxt "name"
-msgid "3MF Reader"
-msgstr ""
-
-#: GCodeGzWriter/plugin.json
-msgctxt "description"
-msgid "Writes g-code to a compressed archive."
-msgstr ""
-
-#: GCodeGzWriter/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Writer"
-msgstr ""
-
-#: GCodeGzReader/plugin.json
-msgctxt "description"
-msgid "Reads g-code from a compressed archive."
-msgstr ""
-
-#: GCodeGzReader/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Reader"
+msgid "No items to select from"
msgstr ""
#: ModelChecker/plugin.json
@@ -5997,105 +5678,14 @@ msgctxt "name"
msgid "Model Checker"
msgstr ""
-#: FirmwareUpdateChecker/plugin.json
+#: 3MFReader/plugin.json
msgctxt "description"
-msgid "Checks for firmware updates."
+msgid "Provides support for reading 3MF files."
msgstr ""
-#: FirmwareUpdateChecker/plugin.json
+#: 3MFReader/plugin.json
msgctxt "name"
-msgid "Firmware Update Checker"
-msgstr ""
-
-#: GCodeReader/plugin.json
-msgctxt "description"
-msgid "Allows loading and displaying G-code files."
-msgstr ""
-
-#: GCodeReader/plugin.json
-msgctxt "name"
-msgid "G-code Reader"
-msgstr ""
-
-#: SupportEraser/plugin.json
-msgctxt "description"
-msgid ""
-"Creates an eraser mesh to block the printing of support in certain places"
-msgstr ""
-
-#: SupportEraser/plugin.json
-msgctxt "name"
-msgid "Support Eraser"
-msgstr ""
-
-#: TrimeshReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading model files."
-msgstr ""
-
-#: TrimeshReader/plugin.json
-msgctxt "name"
-msgid "Trimesh Reader"
-msgstr ""
-
-#: SentryLogger/plugin.json
-msgctxt "description"
-msgid "Logs certain events so that they can be used by the crash reporter"
-msgstr ""
-
-#: SentryLogger/plugin.json
-msgctxt "name"
-msgid "Sentry Logger"
-msgstr ""
-
-#: UFPReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading Ultimaker Format Packages."
-msgstr ""
-
-#: UFPReader/plugin.json
-msgctxt "name"
-msgid "UFP Reader"
-msgstr ""
-
-#: LegacyProfileReader/plugin.json
-msgctxt "description"
-msgid "Provides support for importing profiles from legacy Cura versions."
-msgstr ""
-
-#: LegacyProfileReader/plugin.json
-msgctxt "name"
-msgid "Legacy Cura Profile Reader"
-msgstr ""
-
-#: PrepareStage/plugin.json
-msgctxt "description"
-msgid "Provides a prepare stage in Cura."
-msgstr ""
-
-#: PrepareStage/plugin.json
-msgctxt "name"
-msgid "Prepare Stage"
-msgstr ""
-
-#: MonitorStage/plugin.json
-msgctxt "description"
-msgid "Provides a monitor stage in Cura."
-msgstr ""
-
-#: MonitorStage/plugin.json
-msgctxt "name"
-msgid "Monitor Stage"
-msgstr ""
-
-#: XRayView/plugin.json
-msgctxt "description"
-msgid "Provides the X-Ray view."
-msgstr ""
-
-#: XRayView/plugin.json
-msgctxt "name"
-msgid "X-Ray View"
+msgid "3MF Reader"
msgstr ""
#: 3MFWriter/plugin.json
@@ -6108,66 +5698,34 @@ msgctxt "name"
msgid "3MF Writer"
msgstr ""
-#: SliceInfoPlugin/plugin.json
+#: AMFReader/plugin.json
msgctxt "description"
-msgid "Submits anonymous slice info. Can be disabled through preferences."
+msgid "Provides support for reading AMF files."
msgstr ""
-#: SliceInfoPlugin/plugin.json
+#: AMFReader/plugin.json
msgctxt "name"
-msgid "Slice info"
+msgid "AMF Reader"
msgstr ""
-#: PreviewStage/plugin.json
+#: CuraDrive/plugin.json
msgctxt "description"
-msgid "Provides a preview stage in Cura."
+msgid "Backup and restore your configuration."
msgstr ""
-#: PreviewStage/plugin.json
+#: CuraDrive/plugin.json
msgctxt "name"
-msgid "Preview Stage"
+msgid "Cura Backups"
msgstr ""
-#: SimulationView/plugin.json
+#: CuraEngineBackend/plugin.json
msgctxt "description"
-msgid "Provides the Simulation view."
+msgid "Provides the link to the CuraEngine slicing backend."
msgstr ""
-#: SimulationView/plugin.json
+#: CuraEngineBackend/plugin.json
msgctxt "name"
-msgid "Simulation View"
-msgstr ""
-
-#: MachineSettingsAction/plugin.json
-msgctxt "description"
-msgid ""
-"Provides a way to change machine settings (such as build volume, nozzle "
-"size, etc.)."
-msgstr ""
-
-#: MachineSettingsAction/plugin.json
-msgctxt "name"
-msgid "Machine Settings Action"
-msgstr ""
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "description"
-msgid "Provides capabilities to read and write XML-based material profiles."
-msgstr ""
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "name"
-msgid "Material Profiles"
-msgstr ""
-
-#: SolidView/plugin.json
-msgctxt "description"
-msgid "Provides a normal solid mesh view."
-msgstr ""
-
-#: SolidView/plugin.json
-msgctxt "name"
-msgid "Solid View"
+msgid "CuraEngine Backend"
msgstr ""
#: CuraProfileReader/plugin.json
@@ -6180,14 +5738,86 @@ msgctxt "name"
msgid "Cura Profile Reader"
msgstr ""
-#: UFPWriter/plugin.json
+#: CuraProfileWriter/plugin.json
msgctxt "description"
-msgid "Provides support for writing Ultimaker Format Packages."
+msgid "Provides support for exporting Cura profiles."
msgstr ""
-#: UFPWriter/plugin.json
+#: CuraProfileWriter/plugin.json
msgctxt "name"
-msgid "UFP Writer"
+msgid "Cura Profile Writer"
+msgstr ""
+
+#: DigitalLibrary/plugin.json
+msgctxt "description"
+msgid ""
+"Connects to the Digital Library, allowing Cura to open files from and save "
+"files to the Digital Library."
+msgstr ""
+
+#: DigitalLibrary/plugin.json
+msgctxt "name"
+msgid "Ultimaker Digital Library"
+msgstr ""
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "description"
+msgid "Checks for firmware updates."
+msgstr ""
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "name"
+msgid "Firmware Update Checker"
+msgstr ""
+
+#: FirmwareUpdater/plugin.json
+msgctxt "description"
+msgid "Provides a machine actions for updating firmware."
+msgstr ""
+
+#: FirmwareUpdater/plugin.json
+msgctxt "name"
+msgid "Firmware Updater"
+msgstr ""
+
+#: GCodeGzReader/plugin.json
+msgctxt "description"
+msgid "Reads g-code from a compressed archive."
+msgstr ""
+
+#: GCodeGzReader/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Reader"
+msgstr ""
+
+#: GCodeGzWriter/plugin.json
+msgctxt "description"
+msgid "Writes g-code to a compressed archive."
+msgstr ""
+
+#: GCodeGzWriter/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Writer"
+msgstr ""
+
+#: GCodeProfileReader/plugin.json
+msgctxt "description"
+msgid "Provides support for importing profiles from g-code files."
+msgstr ""
+
+#: GCodeProfileReader/plugin.json
+msgctxt "name"
+msgid "G-code Profile Reader"
+msgstr ""
+
+#: GCodeReader/plugin.json
+msgctxt "description"
+msgid "Allows loading and displaying G-code files."
+msgstr ""
+
+#: GCodeReader/plugin.json
+msgctxt "name"
+msgid "G-code Reader"
msgstr ""
#: GCodeWriter/plugin.json
@@ -6210,12 +5840,448 @@ msgctxt "name"
msgid "Image Reader"
msgstr ""
-#: CuraDrive/plugin.json
+#: LegacyProfileReader/plugin.json
msgctxt "description"
-msgid "Backup and restore your configuration."
+msgid "Provides support for importing profiles from legacy Cura versions."
msgstr ""
-#: CuraDrive/plugin.json
+#: LegacyProfileReader/plugin.json
msgctxt "name"
-msgid "Cura Backups"
+msgid "Legacy Cura Profile Reader"
+msgstr ""
+
+#: MachineSettingsAction/plugin.json
+msgctxt "description"
+msgid ""
+"Provides a way to change machine settings (such as build volume, nozzle "
+"size, etc.)."
+msgstr ""
+
+#: MachineSettingsAction/plugin.json
+msgctxt "name"
+msgid "Machine Settings Action"
+msgstr ""
+
+#: MonitorStage/plugin.json
+msgctxt "description"
+msgid "Provides a monitor stage in Cura."
+msgstr ""
+
+#: MonitorStage/plugin.json
+msgctxt "name"
+msgid "Monitor Stage"
+msgstr ""
+
+#: PerObjectSettingsTool/plugin.json
+msgctxt "description"
+msgid "Provides the Per Model Settings."
+msgstr ""
+
+#: PerObjectSettingsTool/plugin.json
+msgctxt "name"
+msgid "Per Model Settings Tool"
+msgstr ""
+
+#: PostProcessingPlugin/plugin.json
+msgctxt "description"
+msgid "Extension that allows for user created scripts for post processing"
+msgstr ""
+
+#: PostProcessingPlugin/plugin.json
+msgctxt "name"
+msgid "Post Processing"
+msgstr ""
+
+#: PrepareStage/plugin.json
+msgctxt "description"
+msgid "Provides a prepare stage in Cura."
+msgstr ""
+
+#: PrepareStage/plugin.json
+msgctxt "name"
+msgid "Prepare Stage"
+msgstr ""
+
+#: PreviewStage/plugin.json
+msgctxt "description"
+msgid "Provides a preview stage in Cura."
+msgstr ""
+
+#: PreviewStage/plugin.json
+msgctxt "name"
+msgid "Preview Stage"
+msgstr ""
+
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "description"
+msgid "Provides removable drive hotplugging and writing support."
+msgstr ""
+
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "name"
+msgid "Removable Drive Output Device Plugin"
+msgstr ""
+
+#: SentryLogger/plugin.json
+msgctxt "description"
+msgid "Logs certain events so that they can be used by the crash reporter"
+msgstr ""
+
+#: SentryLogger/plugin.json
+msgctxt "name"
+msgid "Sentry Logger"
+msgstr ""
+
+#: SimulationView/plugin.json
+msgctxt "description"
+msgid "Provides the Simulation view."
+msgstr ""
+
+#: SimulationView/plugin.json
+msgctxt "name"
+msgid "Simulation View"
+msgstr ""
+
+#: SliceInfoPlugin/plugin.json
+msgctxt "description"
+msgid "Submits anonymous slice info. Can be disabled through preferences."
+msgstr ""
+
+#: SliceInfoPlugin/plugin.json
+msgctxt "name"
+msgid "Slice info"
+msgstr ""
+
+#: SolidView/plugin.json
+msgctxt "description"
+msgid "Provides a normal solid mesh view."
+msgstr ""
+
+#: SolidView/plugin.json
+msgctxt "name"
+msgid "Solid View"
+msgstr ""
+
+#: SupportEraser/plugin.json
+msgctxt "description"
+msgid ""
+"Creates an eraser mesh to block the printing of support in certain places"
+msgstr ""
+
+#: SupportEraser/plugin.json
+msgctxt "name"
+msgid "Support Eraser"
+msgstr ""
+
+#: Toolbox/plugin.json
+msgctxt "description"
+msgid "Find, manage and install new Cura packages."
+msgstr ""
+
+#: Toolbox/plugin.json
+msgctxt "name"
+msgid "Toolbox"
+msgstr ""
+
+#: TrimeshReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading model files."
+msgstr ""
+
+#: TrimeshReader/plugin.json
+msgctxt "name"
+msgid "Trimesh Reader"
+msgstr ""
+
+#: UFPReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading Ultimaker Format Packages."
+msgstr ""
+
+#: UFPReader/plugin.json
+msgctxt "name"
+msgid "UFP Reader"
+msgstr ""
+
+#: UFPWriter/plugin.json
+msgctxt "description"
+msgid "Provides support for writing Ultimaker Format Packages."
+msgstr ""
+
+#: UFPWriter/plugin.json
+msgctxt "name"
+msgid "UFP Writer"
+msgstr ""
+
+#: UltimakerMachineActions/plugin.json
+msgctxt "description"
+msgid ""
+"Provides machine actions for Ultimaker machines (such as bed leveling "
+"wizard, selecting upgrades, etc.)."
+msgstr ""
+
+#: UltimakerMachineActions/plugin.json
+msgctxt "name"
+msgid "Ultimaker machine actions"
+msgstr ""
+
+#: UM3NetworkPrinting/plugin.json
+msgctxt "description"
+msgid "Manages network connections to Ultimaker networked printers."
+msgstr ""
+
+#: UM3NetworkPrinting/plugin.json
+msgctxt "name"
+msgid "Ultimaker Network Connection"
+msgstr ""
+
+#: USBPrinting/plugin.json
+msgctxt "description"
+msgid ""
+"Accepts G-Code and sends them to a printer. Plugin can also update firmware."
+msgstr ""
+
+#: USBPrinting/plugin.json
+msgctxt "name"
+msgid "USB printing"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.1 to 2.2"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.2 to 2.4"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.5 to 2.6"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.6 to 2.7"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.7 to 3.0"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.0 to 3.1"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.2 to 3.3"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.3 to 3.4"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.4 to 3.5"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.5 to 4.0"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.0 to 4.1"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.1 to 4.2"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.2 to 4.3"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.3 to 4.4"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.4 to 4.5"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.5 to 4.6"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.0 to 4.6.2"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.2 to 4.7"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.7 to 4.8"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.8 to 4.9"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.9 to 4.10"
+msgstr ""
+
+#: X3DReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading X3D files."
+msgstr ""
+
+#: X3DReader/plugin.json
+msgctxt "name"
+msgid "X3D Reader"
+msgstr ""
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "description"
+msgid "Provides capabilities to read and write XML-based material profiles."
+msgstr ""
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "name"
+msgid "Material Profiles"
+msgstr ""
+
+#: XRayView/plugin.json
+msgctxt "description"
+msgid "Provides the X-Ray view."
+msgstr ""
+
+#: XRayView/plugin.json
+msgctxt "name"
+msgid "X-Ray View"
msgstr ""
diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po
index 86b2bcd9d7..931571e60f 100644
--- a/resources/i18n/de_DE/cura.po
+++ b/resources/i18n/de_DE/cura.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:10+0200\n"
+"POT-Creation-Date: 2021-06-10 17:35+0200\n"
"PO-Revision-Date: 2021-04-16 15:15+0200\n"
"Last-Translator: Lionbridge \n"
"Language-Team: German , German \n"
@@ -17,170 +17,180 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 2.4.1\n"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
-msgctxt "@info:progress"
-msgid "Loading machines..."
-msgstr "Geräte werden geladen..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+msgctxt "@label"
+msgid "Unknown"
+msgstr "Unbekannt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
-msgctxt "@info:progress"
-msgid "Setting up preferences..."
-msgstr "Erstellungen werden eingerichtet ..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
+msgctxt "@label"
+msgid "The printer(s) below cannot be connected because they are part of a group"
+msgstr "Der/die nachfolgende(n) Drucker kann/können nicht verbunden werden, weil er/sie Teil einer Gruppe ist/sind"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
-msgctxt "@info:progress"
-msgid "Initializing Active Machine..."
-msgstr "Aktives Gerät wird initialisiert ..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
+msgctxt "@label"
+msgid "Available networked printers"
+msgstr "Verfügbare vernetzte Drucker"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
-msgctxt "@info:progress"
-msgid "Initializing machine manager..."
-msgstr "Gerätemanager wird initialisiert ..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211
+msgctxt "@menuitem"
+msgid "Not overridden"
+msgstr "Nicht überschrieben"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
-msgctxt "@info:progress"
-msgid "Initializing build volume..."
-msgstr "Bauraum wird initialisiert ..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
-msgctxt "@info:progress"
-msgid "Setting up scene..."
-msgstr "Die Szene wird eingerichtet..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
-msgctxt "@info:progress"
-msgid "Loading interface..."
-msgstr "Die Benutzeroberfläche wird geladen..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
-msgctxt "@info:progress"
-msgid "Initializing engine..."
-msgstr "Funktion wird initialisiert ..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
-#, 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"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
-msgstr "Es kann nur jeweils ein G-Code gleichzeitig geladen werden. Wichtige {0} werden übersprungen."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800 /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188 /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
-msgctxt "@info:title"
-msgid "Warning"
-msgstr "Warnhinweis"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
-msgstr "Wenn G-Code geladen wird, kann keine weitere Datei geöffnet werden. Wichtige {0} werden übersprungen."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
-msgctxt "@info:title"
-msgid "Error"
-msgstr "Fehler"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
#, python-brace-format
msgctxt "@label {0} is the name of a printer that's about to be deleted."
msgid "Are you sure you wish to remove {0}? This cannot be undone!"
msgstr "Möchten Sie {0} wirklich entfernen? Der Vorgang kann nicht rückgängig gemacht werden!"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
-msgctxt "@label"
-msgid "Custom Material"
-msgstr "Benutzerdefiniertes Material"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227 /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
-msgctxt "@label"
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
msgctxt "@label"
msgid "Default"
msgstr "Default"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
msgctxt "@label"
-msgid "Unknown"
-msgstr "Unbekannt"
+msgid "Visual"
+msgstr "Visuell"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
+msgctxt "@text"
+msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
+msgstr "Das visuelle Profil wurde für den Druck visueller Prototypen und Modellen entwickelt, bei denen das Ziel eine hohe visuelle Qualität und eine hohe Oberflächenqualität ist."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
+msgctxt "@label"
+msgid "Engineering"
+msgstr "Engineering"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
+msgctxt "@text"
+msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
+msgstr "Das Engineering-Profil ist für den Druck von Funktionsprototypen und Endnutzungsteilen gedacht, bei denen Präzision gefragt ist und engere Toleranzen gelten."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
+msgctxt "@label"
+msgid "Draft"
+msgstr "Entwurf"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
+msgctxt "@text"
+msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
+msgstr "Das Entwurfsprofil wurde für erste Prototypen und die Konzeptvalidierung entwickelt, um einen deutlich schnelleren Druck zu ermöglichen."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234
+msgctxt "@label"
+msgid "Custom Material"
+msgstr "Benutzerdefiniertes Material"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
+msgctxt "@label"
+msgid "Custom"
+msgstr "Benutzerdefiniert"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
msgctxt "@label"
msgid "Custom profiles"
msgstr "Benutzerdefinierte Profile"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
#, python-brace-format
msgctxt "@item:inlistbox"
msgid "All Supported Types ({0})"
msgstr "Alle unterstützten Typen ({0})"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
msgctxt "@item:inlistbox"
msgid "All Files (*)"
msgstr "Alle Dateien (*)"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
-msgctxt "@label"
-msgid "Visual"
-msgstr "Visuell"
+#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181
+msgctxt "@info:title"
+msgid "Login failed"
+msgstr "Login fehlgeschlagen"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
-msgctxt "@text"
-msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
-msgstr "Das visuelle Profil wurde für den Druck visueller Prototypen und Modellen entwickelt, bei denen das Ziel eine hohe visuelle Qualität und eine hohe Oberflächenqualität ist."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
+msgctxt "@info:status"
+msgid "Finding new location for objects"
+msgstr "Neue Position für Objekte finden"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
-msgctxt "@label"
-msgid "Engineering"
-msgstr "Engineering"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Finding Location"
+msgstr "Position finden"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
-msgctxt "@text"
-msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
-msgstr "Das Engineering-Profil ist für den Druck von Funktionsprototypen und Endnutzungsteilen gedacht, bei denen Präzision gefragt ist und engere Toleranzen gelten."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76
+msgctxt "@info:status"
+msgid "Unable to find a location within the build volume for all objects"
+msgstr "Innerhalb der Druckabmessung für alle Objekte konnte keine Position gefunden werden"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
-msgctxt "@label"
-msgid "Draft"
-msgstr "Entwurf"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+msgctxt "@info:title"
+msgid "Can't Find Location"
+msgstr "Kann Position nicht finden"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
-msgctxt "@text"
-msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
-msgstr "Das Entwurfsprofil wurde für erste Prototypen und die Konzeptvalidierung entwickelt, um einen deutlich schnelleren Druck zu ermöglichen."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116
+msgctxt "@info:backup_failed"
+msgid "Could not create archive from user data directory: {}"
+msgstr "Konnte kein Archiv von Benutzer-Datenverzeichnis {} erstellen"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
-msgctxt "@label"
-msgid "The printer(s) below cannot be connected because they are part of a group"
-msgstr "Der/die nachfolgende(n) Drucker kann/können nicht verbunden werden, weil er/sie Teil einer Gruppe ist/sind"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
+msgctxt "@info:title"
+msgid "Backup"
+msgstr "Backup"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
-msgctxt "@label"
-msgid "Available networked printers"
-msgstr "Verfügbare vernetzte Drucker"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup without having proper data or meta data."
+msgstr "Versucht, ein Cura-Backup-Verzeichnis ohne entsprechende Daten oder Metadaten wiederherzustellen."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
-msgctxt "@menuitem"
-msgid "Not overridden"
-msgstr "Nicht überschrieben"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup that is higher than the current version."
+msgstr "Versucht, ein Cura-Backup wiederherzustellen, das eine höhere Version als die aktuelle hat."
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157
+msgctxt "@info:backup_failed"
+msgid "The following error occurred while trying to restore a Cura backup:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
+msgctxt "@info:status"
+msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
+msgstr "Die Höhe der Druckabmessung wurde aufgrund des Wertes der Einstellung „Druckreihenfolge“ reduziert, um eine Kollision der Brücke mit den gedruckten Modellen zu verhindern."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100
+msgctxt "@info:title"
+msgid "Build Volume"
+msgstr "Produktabmessungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
msgctxt "@title:window"
msgid "Cura can't start"
msgstr "Cura kann nicht starten"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
msgctxt "@label crash message"
msgid ""
"Oops, Ultimaker Cura has encountered something that doesn't seem right.
\n"
@@ -195,32 +205,32 @@ msgstr ""
"
Senden Sie uns diesen Absturzbericht bitte, um das Problem zu beheben.
\n"
" "
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
msgctxt "@action:button"
msgid "Send crash report to Ultimaker"
msgstr "Absturzbericht an Ultimaker senden"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
msgctxt "@action:button"
msgid "Show detailed crash report"
msgstr "Detaillierten Absturzbericht anzeigen"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
msgctxt "@action:button"
msgid "Show configuration folder"
msgstr "Konfigurationsordner anzeigen"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
msgctxt "@action:button"
msgid "Backup and Reset Configuration"
msgstr "Backup und Reset der Konfiguration"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
msgctxt "@title:window"
msgid "Crash Report"
msgstr "Crash-Bericht"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
msgctxt "@label crash message"
msgid ""
"A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem
\n"
@@ -231,658 +241,676 @@ msgstr ""
" Verwenden Sie bitte die Schaltfläche „Bericht senden“, um den Fehlerbericht automatisch an unsere Server zu senden
\n"
" "
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
msgctxt "@title:groupbox"
msgid "System information"
msgstr "Systeminformationen"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
msgctxt "@label unknown version of Cura"
msgid "Unknown"
msgstr "Unbekannt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
msgctxt "@label Cura version number"
msgid "Cura version"
msgstr "Cura-Version"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
msgctxt "@label"
msgid "Cura language"
msgstr "Cura-Sprache"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
msgctxt "@label"
msgid "OS language"
msgstr "Sprache des Betriebssystems"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
msgctxt "@label Type of platform"
msgid "Platform"
msgstr "Plattform"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
msgctxt "@label"
msgid "Qt version"
msgstr "Qt Version"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
msgctxt "@label"
msgid "PyQt version"
msgstr "PyQt Version"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
msgctxt "@label OpenGL version"
msgid "OpenGL"
msgstr "OpenGL"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
msgctxt "@label"
msgid "Not yet initialized
"
msgstr "Noch nicht initialisiert
"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
#, python-brace-format
msgctxt "@label OpenGL version"
msgid "OpenGL Version: {version}"
msgstr "OpenGL-Version: {version}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
#, python-brace-format
msgctxt "@label OpenGL vendor"
msgid "OpenGL Vendor: {vendor}"
msgstr "OpenGL-Anbieter: {vendor}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
#, python-brace-format
msgctxt "@label OpenGL renderer"
msgid "OpenGL Renderer: {renderer}"
msgstr "OpenGL-Renderer: {renderer}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
msgctxt "@title:groupbox"
msgid "Error traceback"
msgstr "Fehler-Rückverfolgung"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
msgctxt "@title:groupbox"
msgid "Logs"
msgstr "Protokolle"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
msgctxt "@action:button"
msgid "Send report"
msgstr "Bericht senden"
-#: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
-msgctxt "@info:title"
-msgid "Login failed"
-msgstr "Login fehlgeschlagen"
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527
+msgctxt "@info:progress"
+msgid "Loading machines..."
+msgstr "Geräte werden geladen..."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534
+msgctxt "@info:progress"
+msgid "Setting up preferences..."
+msgstr "Erstellungen werden eingerichtet ..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672
+msgctxt "@info:progress"
+msgid "Initializing Active Machine..."
+msgstr "Aktives Gerät wird initialisiert ..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803
+msgctxt "@info:progress"
+msgid "Initializing machine manager..."
+msgstr "Gerätemanager wird initialisiert ..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817
+msgctxt "@info:progress"
+msgid "Initializing build volume..."
+msgstr "Bauraum wird initialisiert ..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888
+msgctxt "@info:progress"
+msgid "Setting up scene..."
+msgstr "Die Szene wird eingerichtet..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924
+msgctxt "@info:progress"
+msgid "Loading interface..."
+msgstr "Die Benutzeroberfläche wird geladen..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929
+msgctxt "@info:progress"
+msgid "Initializing engine..."
+msgstr "Funktion wird initialisiert ..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246
+#, python-format
+msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
+msgid "%(width).1f x %(depth).1f x %(height).1f mm"
+msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
+msgstr "Es kann nur jeweils ein G-Code gleichzeitig geladen werden. Wichtige {0} werden übersprungen."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+msgctxt "@info:title"
+msgid "Warning"
+msgstr "Warnhinweis"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
+msgstr "Wenn G-Code geladen wird, kann keine weitere Datei geöffnet werden. Wichtige {0} werden übersprungen."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
+msgctxt "@info:title"
+msgid "Error"
+msgstr "Fehler"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26
+msgctxt "@info:status"
+msgid "Multiplying and placing objects"
+msgstr "Objekte vervielfältigen und platzieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Placing Objects"
+msgstr "Objekte platzieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77
+msgctxt "@info:title"
+msgid "Placing Object"
+msgstr "Objekt-Platzierung"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92
msgctxt "@message"
msgid "Could not read response."
msgstr "Antwort konnte nicht gelesen werden."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
-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."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
-msgctxt "@info"
-msgid "Unable to reach the Ultimaker account server."
-msgstr "Der Ultimaker-Konto-Server konnte nicht erreicht werden."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
msgctxt "@message"
msgid "The provided state is not correct."
msgstr "Angegebener Status ist falsch."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
msgctxt "@message"
msgid "Please give the required permissions when authorizing this application."
msgstr "Erteilen Sie bitte die erforderlichen Freigaben bei der Autorisierung dieser Anwendung."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
msgctxt "@message"
msgid "Something unexpected happened when trying to log in, please try again."
msgstr "Bei dem Versuch, sich anzumelden, trat ein unerwarteter Fehler auf. Bitte erneut versuchen."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189
+msgctxt "@info"
+msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
+msgstr "Es kann kein neuer Anmeldevorgang gestartet werden. Bitte überprüfen Sie, ob noch ein weiterer Anmeldevorgang aktiv ist."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+msgctxt "@info"
+msgid "Unable to reach the Ultimaker account server."
+msgstr "Der Ultimaker-Konto-Server konnte nicht erreicht werden."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132
msgctxt "@title:window"
msgid "File Already Exists"
msgstr "Datei bereits vorhanden"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
#, 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?"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456 /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460
msgctxt "@info:status"
msgid "Invalid file URL:"
msgstr "Ungültige Datei-URL:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
-msgctxt "@label"
-msgid "Nozzle"
-msgstr "Düse"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
-msgctxt "@info:message Followed by a list of settings."
-msgid "Settings have been changed to match the current availability of extruders:"
-msgstr "Die Einstellungen wurden an die aktuell verfügbaren Extruder angepasst:"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
-msgctxt "@info:title"
-msgid "Settings updated"
-msgstr "Einstellungen aktualisiert"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
-msgctxt "@info:title"
-msgid "Extruder(s) Disabled"
-msgstr "Extruder deaktiviert"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
#, 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}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Exported profile to {0}"
msgstr "Profil wurde nach {0} exportiert"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157
msgctxt "@info:title"
msgid "Export succeeded"
msgstr "Export erfolgreich ausgeführt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188
#, 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"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207
#, 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}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211
#, 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:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338
#, 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:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342
#, python-brace-format
msgctxt "@info:status"
msgid "Successfully imported profile {0}."
msgstr "Profil {0} erfolgreich importiert."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349
#, python-brace-format
msgctxt "@info:status"
msgid "File {0} does not contain any valid profile."
msgstr "Datei {0} enthält kein gültiges Profil."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426
msgctxt "@label"
msgid "Custom profile"
msgstr "Benutzerdefiniertes Profil"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442
msgctxt "@info:status"
msgid "Profile is missing a quality type."
msgstr "Für das Profil fehlt eine Qualitätsangabe."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446
msgctxt "@info:status"
msgid "There is no active printer yet."
msgstr "Es ist noch kein Drucker aktiv."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452
msgctxt "@info:status"
msgid "Unable to add the profile."
msgstr "Das Profil kann nicht hinzugefügt werden."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
msgctxt "@info:not supported profile"
msgid "Not supported"
msgstr "Nicht unterstützt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
msgctxt "@info:No intent profile selected"
msgid "Default"
msgstr "Default"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
-msgctxt "@info:status"
-msgid "Finding new location for objects"
-msgstr "Neue Position für Objekte finden"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
+msgctxt "@label"
+msgid "Nozzle"
+msgstr "Düse"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856
+msgctxt "@info:message Followed by a list of settings."
+msgid "Settings have been changed to match the current availability of extruders:"
+msgstr "Die Einstellungen wurden an die aktuell verfügbaren Extruder angepasst:"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858
msgctxt "@info:title"
-msgid "Finding Location"
-msgstr "Position finden"
+msgid "Settings updated"
+msgstr "Einstellungen aktualisiert"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
-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"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478
msgctxt "@info:title"
-msgid "Can't Find Location"
-msgstr "Kann Position nicht finden"
+msgid "Extruder(s) Disabled"
+msgstr "Extruder deaktiviert"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
+msgctxt "@action:button"
+msgid "Add"
+msgstr "Hinzufügen"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272
+msgctxt "@action:button"
+msgid "Finish"
+msgstr "Beenden"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+msgctxt "@action:button"
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
#, python-brace-format
msgctxt "@label"
msgid "Group #{group_nr}"
msgstr "Gruppe #{group_nr}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55 /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
-msgctxt "@action:button"
-msgid "Skip"
-msgstr "Überspringen"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60 /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
-msgctxt "@action:button"
-msgid "Close"
-msgstr "Schließen"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56 /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
-msgctxt "@action:button"
-msgid "Next"
-msgstr "Weiter"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272 /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
-msgctxt "@action:button"
-msgid "Finish"
-msgstr "Beenden"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82
msgctxt "@tooltip"
msgid "Outer Wall"
msgstr "Außenwand"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
msgctxt "@tooltip"
msgid "Inner Walls"
msgstr "Innenwände"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
msgctxt "@tooltip"
msgid "Skin"
msgstr "Außenhaut"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
msgctxt "@tooltip"
msgid "Infill"
msgstr "Füllung"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
msgctxt "@tooltip"
msgid "Support Infill"
msgstr "Stützstruktur-Füllung"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
msgctxt "@tooltip"
msgid "Support Interface"
msgstr "Stützstruktur-Schnittstelle"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
msgctxt "@tooltip"
msgid "Support"
msgstr "Stützstruktur"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
msgctxt "@tooltip"
msgid "Skirt"
msgstr "Skirt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
msgctxt "@tooltip"
msgid "Prime Tower"
msgstr "Einzugsturm"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
msgctxt "@tooltip"
msgid "Travel"
msgstr "Bewegungen"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
msgctxt "@tooltip"
msgid "Retractions"
msgstr "Einzüge"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
msgctxt "@tooltip"
msgid "Other"
msgstr "Sonstige"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259
msgctxt "@action:button"
-msgid "Add"
-msgstr "Hinzufügen"
+msgid "Next"
+msgstr "Weiter"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55
msgctxt "@action:button"
-msgid "Cancel"
-msgstr "Abbrechen"
+msgid "Skip"
+msgstr "Überspringen"
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
-msgctxt "@info:status"
-msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
-msgstr "Die Höhe der Druckabmessung wurde aufgrund des Wertes der Einstellung „Druckreihenfolge“ reduziert, um eine Kollision der Brücke mit den gedruckten Modellen zu verhindern."
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
+msgctxt "@action:button"
+msgid "Close"
+msgstr "Schließen"
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
msgctxt "@info:title"
-msgid "Build Volume"
-msgstr "Produktabmessungen"
+msgid "3D Model Assistant"
+msgstr "3D-Modell-Assistent"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
-msgctxt "@info:backup_failed"
-msgid "Could not create archive from user data directory: {}"
-msgstr "Konnte kein Archiv von Benutzer-Datenverzeichnis {} erstellen"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
-msgctxt "@info:title"
-msgid "Backup"
-msgstr "Backup"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup without having proper data or meta data."
-msgstr "Versucht, ein Cura-Backup-Verzeichnis ohne entsprechende Daten oder Metadaten wiederherzustellen."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup that is higher than the current version."
-msgstr "Versucht, ein Cura-Backup wiederherzustellen, das eine höhere Version als die aktuelle hat."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
-msgctxt "@info:status"
-msgid "Multiplying and placing objects"
-msgstr "Objekte vervielfältigen und platzieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
-msgctxt "@info:title"
-msgid "Placing Objects"
-msgstr "Objekte platzieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
-msgctxt "@info:title"
-msgid "Placing Object"
-msgstr "Objekt-Platzierung"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Save to Removable Drive"
-msgstr "Speichern auf Wechseldatenträger"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96
#, python-brace-format
-msgctxt "@item:inlistbox"
-msgid "Save to Removable Drive {0}"
-msgstr "Auf Wechseldatenträger speichern {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
msgctxt "@info:status"
-msgid "There are no file formats available to write with!"
-msgstr "Es sind keine Dateiformate zum Schreiben vorhanden!"
+msgid ""
+"One or more 3D models may not print optimally due to the model size and material configuration:
\n"
+"{model_names}
\n"
+"Find out how to ensure the best possible print quality and reliability.
\n"
+"View print quality guide
"
+msgstr ""
+"Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:
\n"
+"{model_names}
\n"
+"Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.
\n"
+"Leitfaden zu Druckqualität anzeigen
"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-#, python-brace-format
-msgctxt "@info:progress Don't translate the XML tags !"
-msgid "Saving to Removable Drive {0}"
-msgstr "Wird auf Wechseldatenträger gespeichert {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-msgctxt "@info:title"
-msgid "Saving"
-msgstr "Wird gespeichert"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540
#, 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}"
+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."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
-#, python-brace-format
-msgctxt "@info:status Don't translate the tag {device}!"
-msgid "Could not find a file name when trying to write to {device}."
-msgstr "Bei dem Versuch, auf {device} zu schreiben, wurde ein Dateiname nicht gefunden."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Could not save to removable drive {0}: {1}"
-msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Saved to Removable Drive {0} as {1}"
-msgstr "Auf Wechseldatenträger {0} gespeichert als {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543
msgctxt "@info:title"
-msgid "File Saved"
-msgstr "Datei wurde gespeichert"
+msgid "Open Project File"
+msgstr "Projektdatei öffnen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
-msgctxt "@action:button"
-msgid "Eject"
-msgstr "Auswerfen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639
#, python-brace-format
-msgctxt "@action"
-msgid "Eject removable device {0}"
-msgstr "Wechseldatenträger auswerfen {0}"
+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}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Ejected {0}. You can now safely remove the drive."
-msgstr "Ausgeworfen {0}. Sie können den Datenträger jetzt sicher entfernen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647
msgctxt "@info:title"
-msgid "Safely Remove Hardware"
-msgstr "Hardware sicher entfernen"
+msgid "Can't Open Project File"
+msgstr "Projektdatei kann nicht geöffnet werden"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646
#, 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."
+msgctxt "@info:error Don't translate the XML tags or !"
+msgid "Project file {0} is corrupt: {1}."
+msgstr "Projektdatei {0} ist beschädigt: {1}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
-msgctxt "@item:intext"
-msgid "Removable Drive"
-msgstr "Wechseldatenträger"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698
+#, python-brace-format
+msgctxt "@info:error Don't translate the XML tag !"
+msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura."
+msgstr "Projektdatei {0} verwendet Profile, die nicht mit dieser Ultimaker Cura-Version kompatibel sind."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203
+msgctxt "@title:tab"
+msgid "Recommended"
+msgstr "Empfohlen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205
+msgctxt "@title:tab"
+msgid "Custom"
+msgstr "Benutzerdefiniert"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
+msgctxt "@item:inlistbox"
+msgid "3MF File"
+msgstr "3MF-Datei"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
+msgctxt "@error:zip"
+msgid "3MF Writer plug-in is corrupt."
+msgstr "Das 3MF-Writer-Plugin ist beschädigt."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
+msgctxt "@error:zip"
+msgid "No permission to write the workspace here."
+msgstr "Keine Erlaubnis zum Beschreiben dieses Arbeitsbereichs."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
+msgctxt "@error:zip"
+msgid "The operating system does not allow saving a project file to this location or with this file name."
+msgstr "Das Betriebssystem erlaubt es nicht, eine Projektdatei an diesem Speicherort oder mit diesem Dateinamen zu speichern."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
+msgctxt "@error:zip"
+msgid "Error writing 3mf file."
+msgstr "Fehler beim Schreiben von 3MF-Datei."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "3MF file"
+msgstr "3MF-Datei"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
+msgctxt "@item:inlistbox"
+msgid "Cura Project 3MF file"
+msgstr "Cura-Projekt 3MF-Datei"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
msgctxt "@item:inlistbox"
msgid "AMF File"
msgstr "AMF-Datei"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
-msgctxt "@item:inlistbox"
-msgid "G-code File"
-msgstr "G-Code-Datei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
-msgctxt "@action"
-msgid "Update Firmware"
-msgstr "Firmware aktualisieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
-msgctxt "@item:inlistbox"
-msgid "X3D File"
-msgstr "X3D-Datei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
-msgctxt "@button"
-msgid "Decline"
-msgstr "Ablehnen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
-msgctxt "@button"
-msgid "Agree"
-msgstr "Stimme zu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
-msgctxt "@title:window"
-msgid "Plugin License Agreement"
-msgstr "Plugin für Lizenzvereinbarung"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
-msgctxt "@button"
-msgid "Decline and remove from account"
-msgstr "Ablehnen und vom Konto entfernen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
-msgctxt "@info:generic"
-msgid "{} plugins failed to download"
-msgstr "{} Plugins konnten nicht heruntergeladen werden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
-msgctxt "@info:generic"
-msgid "Syncing..."
-msgstr "Synchronisierung läuft ..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
msgctxt "@info:title"
-msgid "Changes detected from your Ultimaker account"
-msgstr "Von Ihrem Ultimaker-Konto erkannte Änderungen"
+msgid "Backups"
+msgstr "Backups"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
-msgctxt "@info:generic"
-msgid "You need to quit and restart {} before changes have effect."
-msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
+msgctxt "@info:backup_status"
+msgid "There was an error while uploading your backup."
+msgstr "Beim Versuch, Ihr Backup hochzuladen, trat ein Fehler auf."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
-msgctxt "@info:generic"
-msgid "Do you want to sync material and software packages with your account?"
-msgstr "Möchten Sie Material- und Softwarepakete mit Ihrem Konto synchronisieren?"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
+msgctxt "@info:backup_status"
+msgid "Creating your backup..."
+msgstr "Ihr Backup wird erstellt..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
-msgctxt "@action:button"
-msgid "Sync"
-msgstr "Synchronisieren"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
+msgctxt "@info:backup_status"
+msgid "There was an error while creating your backup."
+msgstr "Beim Erstellen Ihres Backups ist ein Fehler aufgetreten."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
-msgctxt "@label"
-msgid "Per Model Settings"
-msgstr "Einstellungen pro Objekt"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
+msgctxt "@info:backup_status"
+msgid "Uploading your backup..."
+msgstr "Ihr Backup wird hochgeladen..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
-msgctxt "@info:tooltip"
-msgid "Configure Per Model Settings"
-msgstr "Pro Objekteinstellungen konfigurieren"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
+msgctxt "@info:backup_status"
+msgid "Your backup has finished uploading."
+msgstr "Ihr Backup wurde erfolgreich hochgeladen."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
+msgctxt "@error:file_size"
+msgid "The backup exceeds the maximum file size."
+msgstr "Das Backup überschreitet die maximale Dateigröße."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
+msgctxt "@info:backup_status"
+msgid "There was an error trying to restore your backup."
+msgstr "Beim Versuch, Ihr Backup wiederherzustellen, trat ein Fehler auf."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
msgctxt "@item:inmenu"
-msgid "Post Processing"
-msgstr "Nachbearbeitung"
+msgid "Manage backups"
+msgstr "Backups verwalten"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
-msgctxt "@item:inmenu"
-msgid "Modify G-Code"
-msgstr "G-Code ändern"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
msgctxt "@info:status"
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
msgstr "Slicing mit dem aktuellen Material nicht möglich, da es mit der gewählten Maschine oder Konfiguration nicht kompatibel ist."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
msgctxt "@info:title"
msgid "Unable to slice"
msgstr "Slicing nicht möglich"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
msgstr "Die aktuellen Einstellungen lassen kein Schneiden (Slicing) zu. Die folgenden Einstellungen sind fehlerhaft:{0}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
msgstr "Aufgrund der Pro-Modell-Einstellungen ist kein Schneiden (Slicing) möglich. Die folgenden Einstellungen sind für ein oder mehrere Modelle fehlerhaft: {error_labels}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
msgctxt "@info:status"
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
msgstr "Schneiden (Slicing) ist nicht möglich, da der Einzugsturm oder die Einzugsposition(en) ungültig ist (sind)."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
#, python-format
msgctxt "@info:status"
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
msgstr "Schneiden (Slicing) ist nicht möglich, da Objekte vorhanden sind, die mit dem deaktivierten Extruder %s verbunden sind."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
msgctxt "@info:status"
msgid ""
"Please review settings and check if your models:\n"
@@ -895,75 +923,465 @@ msgstr ""
"- Einem aktiven Extruder zugewiesen sind\n"
"- Nicht alle als Modifier Meshes eingerichtet sind"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:status"
msgid "Processing Layers"
msgstr "Schichten werden verarbeitet"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:title"
msgid "Information"
msgstr "Informationen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
-msgctxt "@item:inmenu"
-msgid "USB printing"
-msgstr "USB-Drucken"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Print via USB"
-msgstr "Über USB drucken"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
-msgctxt "@info:tooltip"
-msgid "Print via USB"
-msgstr "Über USB drucken"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
-msgctxt "@info:status"
-msgid "Connected via USB"
-msgstr "Über USB verbunden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
-msgctxt "@label"
-msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
-msgstr "Ein USB-Druck wird ausgeführt. Das Schließen von Cura beendet diesen Druck. Sind Sie sicher?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
-msgstr "Druck wird bearbeitet. Cura kann keinen weiteren Druck via USB starten, bis der vorherige Druck abgeschlossen wurde."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "Print in Progress"
-msgstr "Druck in Bearbeitung"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
msgctxt "@item:inlistbox"
msgid "Cura Profile"
msgstr "Cura-Profil"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
-msgctxt "@action"
-msgid "Connect via Network"
-msgstr "Anschluss über Netzwerk"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
+msgctxt "@info"
+msgid "Could not access update information."
+msgstr "Zugriff auf Update-Informationen nicht möglich."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
+#, python-brace-format
+msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
+msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
+msgstr "Für Ihren {machine_name} sind eventuell neue Funktionen oder Fehlerbereinigungen verfügbar! Falls Sie nicht bereits die aktuellste Version verwenden, empfehlen wir Ihnen, ein Firmware-Update Ihres Druckers auf Version {latest_version} auszuführen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
+#, python-format
+msgctxt "@info:title The %s gets replaced with the printer name."
+msgid "New %s firmware available"
+msgstr "Neue Firmware für %s verfügbar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
+msgctxt "@action:button"
+msgid "How to update"
+msgstr "Anleitung für die Aktualisierung"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
+msgctxt "@action"
+msgid "Update Firmware"
+msgstr "Firmware aktualisieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
+msgctxt "@item:inlistbox"
+msgid "Compressed G-code File"
+msgstr "Komprimierte G-Code-Datei"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
+msgctxt "@error:not supported"
+msgid "GCodeGzWriter does not support text mode."
+msgstr "GCodeWriter unterstützt keinen Textmodus."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
+msgctxt "@item:inlistbox"
+msgid "G-code File"
+msgstr "G-Code-Datei"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347
+msgctxt "@info:status"
+msgid "Parsing G-code"
+msgstr "G-Code parsen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503
+msgctxt "@info:title"
+msgid "G-code Details"
+msgstr "G-Code-Details"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501
+msgctxt "@info:generic"
+msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
+msgstr "Stellen Sie sicher, dass der G-Code für Ihren Drucker und Ihre Druckerkonfiguration geeignet ist, bevor Sie die Datei senden. Der Darstellung des G-Codes ist möglicherweise nicht korrekt."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "G File"
+msgstr "G-Datei"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74
+msgctxt "@error:not supported"
+msgid "GCodeWriter does not support non-text mode."
+msgstr "GCodeWriter unterstützt keinen Nicht-Textmodus."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96
+msgctxt "@warning:status"
+msgid "Please prepare G-code before exporting."
+msgstr "Vor dem Exportieren bitte G-Code vorbereiten."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "JPG Image"
+msgstr "JPG-Bilddatei"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "JPEG Image"
+msgstr "JPEG-Bilddatei"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
+msgctxt "@item:inlistbox"
+msgid "PNG Image"
+msgstr "PNG-Bilddatei"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "BMP Image"
+msgstr "BMP-Bilddatei"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
+msgctxt "@item:inlistbox"
+msgid "GIF Image"
+msgstr "GIF-Bilddatei"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "Cura 15.04 profiles"
+msgstr "Cura 15.04-Profile"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
+msgctxt "@action"
+msgid "Machine Settings"
+msgstr "Geräteeinstellungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
+msgctxt "@item:inmenu"
+msgid "Monitor"
+msgstr "Überwachen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
+msgctxt "@label"
+msgid "Per Model Settings"
+msgstr "Einstellungen pro Objekt"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
+msgctxt "@info:tooltip"
+msgid "Configure Per Model Settings"
+msgstr "Pro Objekteinstellungen konfigurieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+msgctxt "@item:inmenu"
+msgid "Post Processing"
+msgstr "Nachbearbeitung"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
+msgctxt "@item:inmenu"
+msgid "Modify G-Code"
+msgstr "G-Code ändern"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Prepare"
+msgstr "Vorbereiten"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
+msgctxt "@item:inmenu"
+msgid "Preview"
+msgstr "Vorschau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Save to Removable Drive"
+msgstr "Speichern auf Wechseldatenträger"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
+#, python-brace-format
+msgctxt "@item:inlistbox"
+msgid "Save to Removable Drive {0}"
+msgstr "Auf Wechseldatenträger speichern {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
+msgctxt "@info:status"
+msgid "There are no file formats available to write with!"
+msgstr "Es sind keine Dateiformate zum Schreiben vorhanden!"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+#, python-brace-format
+msgctxt "@info:progress Don't translate the XML tags !"
+msgid "Saving to Removable Drive {0}"
+msgstr "Wird auf Wechseldatenträger gespeichert {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+msgctxt "@info:title"
+msgid "Saving"
+msgstr "Wird gespeichert"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#, python-brace-format
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid "Could not save to {0}: {1}"
+msgstr "Konnte nicht als {0} gespeichert werden: {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
+#, python-brace-format
+msgctxt "@info:status Don't translate the tag {device}!"
+msgid "Could not find a file name when trying to write to {device}."
+msgstr "Bei dem Versuch, auf {device} zu schreiben, wurde ein Dateiname nicht gefunden."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Could not save to removable drive {0}: {1}"
+msgstr "Konnte nicht auf dem Wechseldatenträger gespeichert werden {0}: {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Saved to Removable Drive {0} as {1}"
+msgstr "Auf Wechseldatenträger {0} gespeichert als {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+msgctxt "@info:title"
+msgid "File Saved"
+msgstr "Datei wurde gespeichert"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+msgctxt "@action:button"
+msgid "Eject"
+msgstr "Auswerfen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#, python-brace-format
+msgctxt "@action"
+msgid "Eject removable device {0}"
+msgstr "Wechseldatenträger auswerfen {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Ejected {0}. You can now safely remove the drive."
+msgstr "Ausgeworfen {0}. Sie können den Datenträger jetzt sicher entfernen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+msgctxt "@info:title"
+msgid "Safely Remove Hardware"
+msgstr "Hardware sicher entfernen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Failed to eject {0}. Another program may be using the drive."
+msgstr "Auswurf fehlgeschlagen {0}. Möglicherweise wird das Laufwerk von einem anderen Programm verwendet."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
+msgctxt "@item:intext"
+msgid "Removable Drive"
+msgstr "Wechseldatenträger"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128
+msgctxt "@info:status"
+msgid "Cura does not accurately display layers when Wire Printing is enabled."
+msgstr "Cura zeigt die Schichten nicht präzise an, wenn „Drucken mit Drahtstruktur“ aktiviert ist."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129
+msgctxt "@info:title"
+msgid "Simulation View"
+msgstr "Simulationsansicht"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:status"
+msgid "Nothing is shown because you need to slice first."
+msgstr "Es kann nichts angezeigt werden, weil Sie zuerst das Slicing vornehmen müssen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:title"
+msgid "No layers to show"
+msgstr "Keine anzeigbaren Schichten vorhanden"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74
+msgctxt "@info:option_text"
+msgid "Do not show this message again"
+msgstr "Diese Meldung nicht mehr anzeigen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
+msgctxt "@item:inlistbox"
+msgid "Layer view"
+msgstr "Schichtenansicht"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71
+msgctxt "@info:status"
+msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
+msgstr "Die hervorgehobenen Bereiche kennzeichnen fehlende oder überschüssige Oberflächen. Beheben Sie die Fehler am Modell und öffnen Sie es erneut in Cura."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73
+msgctxt "@info:title"
+msgid "Model Errors"
+msgstr "Modellfehler"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79
+msgctxt "@action:button"
+msgid "Learn more"
+msgstr "Mehr erfahren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Solid view"
+msgstr "Solide Ansicht"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
+msgctxt "@label"
+msgid "Support Blocker"
+msgstr "Stützstruktur-Blocker"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
+msgctxt "@info:tooltip"
+msgid "Create a volume in which supports are not printed."
+msgstr "Erstellt ein Volumen, in dem keine Stützstrukturen gedruckt werden."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
+msgctxt "@info:generic"
+msgid "Do you want to sync material and software packages with your account?"
+msgstr "Möchten Sie Material- und Softwarepakete mit Ihrem Konto synchronisieren?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
+msgctxt "@info:title"
+msgid "Changes detected from your Ultimaker account"
+msgstr "Von Ihrem Ultimaker-Konto erkannte Änderungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
+msgctxt "@action:button"
+msgid "Sync"
+msgstr "Synchronisieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
+msgctxt "@info:generic"
+msgid "Syncing..."
+msgstr "Synchronisierung läuft ..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
+msgctxt "@button"
+msgid "Decline"
+msgstr "Ablehnen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
+msgctxt "@button"
+msgid "Agree"
+msgstr "Stimme zu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
+msgctxt "@title:window"
+msgid "Plugin License Agreement"
+msgstr "Plugin für Lizenzvereinbarung"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
+msgctxt "@button"
+msgid "Decline and remove from account"
+msgstr "Ablehnen und vom Konto entfernen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
+msgctxt "@info:generic"
+msgid "You need to quit and restart {} before changes have effect."
+msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
+msgctxt "@info:generic"
+msgid "{} plugins failed to download"
+msgstr "{} Plugins konnten nicht heruntergeladen werden"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
+msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
+msgid "Open Compressed Triangle Mesh"
+msgstr "Öffnen Sie das komprimierte Dreiecksnetz"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
+msgctxt "@item:inlistbox"
+msgid "COLLADA Digital Asset Exchange"
+msgstr "COLLADA Digital Asset Exchange"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
+msgctxt "@item:inlistbox"
+msgid "glTF Binary"
+msgstr "glTF Binary"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
+msgctxt "@item:inlistbox"
+msgid "glTF Embedded JSON"
+msgstr "glTF Embedded JSON"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
+msgctxt "@item:inlistbox"
+msgid "Stanford Triangle Format"
+msgstr "Stanford Triangle Format"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
+msgctxt "@item:inlistbox"
+msgid "Compressed COLLADA Digital Asset Exchange"
+msgstr "Compressed COLLADA Digital Asset Exchange"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
+msgctxt "@item:inlistbox"
+msgid "Ultimaker Format Package"
+msgstr "Ultimaker Format Package"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159
+msgctxt "@info:error"
+msgid "Can't write to UFP file:"
+msgstr "Kann nicht in UFP-Datei schreiben:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
+msgctxt "@action"
+msgid "Level build plate"
+msgstr "Druckbett nivellieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+msgctxt "@action"
+msgid "Select upgrades"
+msgstr "Upgrades wählen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
+msgctxt "@action:button"
+msgid "Print via cloud"
+msgstr "Über Cloud drucken"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
+msgctxt "@properties:tooltip"
+msgid "Print via cloud"
+msgstr "Über Cloud drucken"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
+msgctxt "@info:status"
+msgid "Connected via cloud"
+msgstr "Über Cloud verbunden"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270
+#, python-brace-format
+msgctxt "@error:send"
+msgid "Unknown error code when uploading print job: {0}"
+msgstr "Unbekannter Fehlercode beim Upload des Druckauftrags: {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
msgctxt "info:status"
msgid "New printer detected from your Ultimaker account"
msgid_plural "New printers detected from your Ultimaker account"
msgstr[0] "Ihr Ultimaker-Konto hat einen neuen Drucker erkannt"
msgstr[1] "Ihr Ultimaker-Konto hat neue Drucker erkannt"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
#, python-brace-format
msgctxt "info:status Filled in with printer name and printer model."
msgid "Adding printer {name} ({model}) from your account"
msgstr "Drucker {name} ({model}) aus Ihrem Konto wird hinzugefügt"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
#, python-brace-format
msgctxt "info:{0} gets replaced by a number of printers"
msgid "... and {0} other"
@@ -971,70 +1389,71 @@ msgid_plural "... and {0} others"
msgstr[0] "... und {0} weiterer"
msgstr[1] "... und {0} weitere"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
msgctxt "info:status"
msgid "Printers added from Digital Factory:"
msgstr "Drucker aus Digital Factory hinzugefügt:"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
msgctxt "info:status"
msgid "A cloud connection is not available for a printer"
msgid_plural "A cloud connection is not available for some printers"
msgstr[0] "Für einen Drucker ist keine Cloud-Verbindung verfügbar"
msgstr[1] "Für mehrere Drucker ist keine Cloud-Verbindung verfügbar"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
msgctxt "info:status"
msgid "This printer is not linked to the Digital Factory:"
msgid_plural "These printers are not linked to the Digital Factory:"
msgstr[0] "Dieser Drucker ist nicht mit der Digital Factory verbunden:"
msgstr[1] "Diese Drucker sind nicht mit der Digital Factory verbunden:"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
msgctxt "info:name"
msgid "Ultimaker Digital Factory"
msgstr "Ultimaker Digital Factory"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
#, python-brace-format
msgctxt "info:status"
msgid "To establish a connection, please visit the {website_link}"
msgstr "Bitte besuchen Sie {website_link}, um eine Verbindung herzustellen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
msgctxt "@action:button"
msgid "Keep printer configurations"
msgstr "Druckerkonfigurationen speichern"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
msgctxt "@action:button"
msgid "Remove printers"
msgstr "Drucker entfernen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "{printer_name} will be removed until the next account sync."
msgstr "{printer_name} wird bis zur nächsten Synchronisierung entfernt."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
msgstr "Wenn Sie {printer_name} dauerhaft entfernen möchten, dann besuchen Sie bitte die {digital_factory_link}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "Are you sure you want to remove {printer_name} temporarily?"
msgstr "Möchten Sie {printer_name} wirklich vorübergehend entfernen?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
msgctxt "@title:window"
msgid "Remove printers?"
msgstr "Drucker entfernen?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
#, python-brace-format
msgctxt "@label"
msgid ""
@@ -1050,1542 +1469,768 @@ 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?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
msgctxt "@label"
msgid ""
"You are about to remove all printers from Cura. This action cannot be undone.\n"
"Are you sure you want to continue?"
msgstr "Es werden gleich alle Drucker aus Cura entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden.Möchten Sie wirklich fortfahren?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
-msgctxt "@action:button"
-msgid "Print via cloud"
-msgstr "Über Cloud drucken"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
-msgctxt "@properties:tooltip"
-msgid "Print via cloud"
-msgstr "Über Cloud drucken"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
-msgctxt "@info:status"
-msgid "Connected via cloud"
-msgstr "Über Cloud verbunden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
-#, python-brace-format
-msgctxt "@error:send"
-msgid "Unknown error code when uploading print job: {0}"
-msgstr "Unbekannter Fehlercode beim Upload des Druckauftrags: {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
-msgctxt "@info:status"
-msgid "tomorrow"
-msgstr "morgen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
-msgctxt "@info:status"
-msgid "today"
-msgstr "heute"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
-msgctxt "@info:status"
-msgid "Sending Print Job"
-msgstr "Druckauftrag senden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
-msgctxt "@info:status"
-msgid "Uploading print job to printer."
-msgstr "Druckauftrag wird vorbereitet."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
-#, python-brace-format
-msgctxt "@info:status"
-msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
-msgstr "Sie versuchen, sich mit {0} zu verbinden, aber dieser Drucker ist nicht der Host, der die Gruppe verwaltet. Besuchen Sie die Website, um den Drucker als Host der Gruppe zu konfigurieren."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
-msgctxt "@info:title"
-msgid "Not a group host"
-msgstr "Nicht Host-Drucker der Gruppe"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
-msgctxt "@action"
-msgid "Configure group"
-msgstr "Gruppe konfigurieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
msgctxt "@info:status"
msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
msgstr "Druckaufträge mithilfe Ihres Ultimaker-Kontos von einem anderen Ort aus senden und überwachen."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
msgctxt "@info:status Ultimaker Cloud should not be translated."
msgid "Connect to Ultimaker Digital Factory"
msgstr "Mit der Ultimaker Digital Factory verbinden"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
msgctxt "@action"
msgid "Get started"
msgstr "Erste Schritte"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
msgctxt "@info:status"
-msgid "Please wait until the current job has been sent."
-msgstr "Bitte warten Sie, bis der aktuelle Druckauftrag gesendet wurde."
+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."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
msgctxt "@info:title"
-msgid "Print error"
-msgstr "Druckfehler"
+msgid "Update your printer"
+msgstr "Drucker aktualisieren"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
-msgctxt "@info:text"
-msgid "Could not upload the data to the printer."
-msgstr "Daten konnten nicht in Drucker geladen werden."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
-msgctxt "@info:title"
-msgid "Network error"
-msgstr "Netzwerkfehler"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
#, python-brace-format
msgctxt "@info:status"
msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
msgstr "Cura hat Materialprofile entdeckt, die auf dem Host-Drucker der Gruppe {0} noch nicht installiert wurden."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
msgctxt "@info:title"
msgid "Sending materials to printer"
msgstr "Material an Drucker senden"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
+#, python-brace-format
+msgctxt "@info:status"
+msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
+msgstr "Sie versuchen, sich mit {0} zu verbinden, aber dieser Drucker ist nicht der Host, der die Gruppe verwaltet. Besuchen Sie die Website, um den Drucker als Host der Gruppe zu konfigurieren."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
+msgctxt "@info:title"
+msgid "Not a group host"
+msgstr "Nicht Host-Drucker der Gruppe"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
+msgctxt "@action"
+msgid "Configure group"
+msgstr "Gruppe konfigurieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+msgctxt "@info:status"
+msgid "Please wait until the current job has been sent."
+msgstr "Bitte warten Sie, bis der aktuelle Druckauftrag gesendet wurde."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+msgctxt "@info:title"
+msgid "Print error"
+msgstr "Druckfehler"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
+msgctxt "@info:text"
+msgid "Could not upload the data to the printer."
+msgstr "Daten konnten nicht in Drucker geladen werden."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
+msgctxt "@info:title"
+msgid "Network error"
+msgstr "Netzwerkfehler"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
+msgctxt "@info:status"
+msgid "Sending Print Job"
+msgstr "Druckauftrag senden"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
+msgctxt "@info:status"
+msgid "Uploading print job to printer."
+msgstr "Druckauftrag wird vorbereitet."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
msgctxt "@info:status"
msgid "Print job queue is full. The printer can't accept a new job."
msgstr "Die Druckauftragswarteschlange ist voll. Der Drucker kann keinen neuen Auftrag annehmen."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
msgctxt "@info:title"
msgid "Queue Full"
msgstr "Warteschlange voll"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
msgctxt "@info:status"
msgid "Print job was successfully sent to the printer."
msgstr "Der Druckauftrag wurde erfolgreich an den Drucker gesendet."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
msgctxt "@info:title"
msgid "Data Sent"
msgstr "Daten gesendet"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
-msgctxt "@info:status"
-msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
-msgstr "Sie versuchen, sich mit einem Drucker zu verbinden, auf dem Ultimaker Connect nicht läuft. Bitte aktualisieren Sie die Firmware des Druckers."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
-msgctxt "@info:title"
-msgid "Update your printer"
-msgstr "Drucker aktualisieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
msgctxt "@action:button Preceded by 'Ready to'."
msgid "Print over network"
msgstr "Drucken über Netzwerk"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr "Drücken über Netzwerk"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
msgctxt "@info:status"
msgid "Connected over the network"
msgstr "Über Netzwerk verbunden"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
msgctxt "@action"
-msgid "Select upgrades"
-msgstr "Upgrades wählen"
+msgid "Connect via Network"
+msgstr "Anschluss über Netzwerk"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
-msgctxt "@action"
-msgid "Level build plate"
-msgstr "Druckbett nivellieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
-msgctxt "@title:tab"
-msgid "Recommended"
-msgstr "Empfohlen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
-msgctxt "@title:tab"
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
-#, 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."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
-msgctxt "@info:title"
-msgid "Open Project File"
-msgstr "Projektdatei öffnen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
-#, 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}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
-msgctxt "@info:title"
-msgid "Can't Open Project File"
-msgstr "Projektdatei kann nicht geöffnet werden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
-#, 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}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:693
-#, 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."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:27 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:33
-msgctxt "@item:inlistbox"
-msgid "3MF File"
-msgstr "3MF-Datei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/__init__.py:17 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzReader/__init__.py:17
-msgctxt "@item:inlistbox"
-msgid "Compressed G-code File"
-msgstr "Komprimierte G-Code-Datei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
-msgctxt "@error:not supported"
-msgid "GCodeGzWriter does not support text mode."
-msgstr "GCodeWriter unterstützt keinen Textmodus."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:31
-msgctxt "@info:title"
-msgid "3D Model Assistant"
-msgstr "3D-Modell-Assistent"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:96
-#, python-brace-format
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
msgctxt "@info:status"
-msgid ""
-"One or more 3D models may not print optimally due to the model size and material configuration:
\n"
-"{model_names}
\n"
-"Find out how to ensure the best possible print quality and reliability.
\n"
-"View print quality guide
"
-msgstr ""
-"Ein oder mehrere 3D-Modelle können möglicherweise aufgrund der Modellgröße und Materialkonfiguration nicht optimal gedruckt werden:
\n"
-"{model_names}
\n"
-"Erfahren Sie, wie Sie die bestmögliche Druckqualität und Zuverlässigkeit sicherstellen.
\n"
-"Leitfaden zu Druckqualität anzeigen
"
+msgid "tomorrow"
+msgstr "morgen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
-msgctxt "@info"
-msgid "Could not access update information."
-msgstr "Zugriff auf Update-Informationen nicht möglich."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
-#, python-brace-format
-msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
-msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
-msgstr "Für Ihren {machine_name} sind eventuell neue Funktionen oder Fehlerbereinigungen verfügbar! Falls Sie nicht bereits die aktuellste Version verwenden, empfehlen wir Ihnen, ein Firmware-Update Ihres Druckers auf Version {latest_version} auszuführen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
-#, python-format
-msgctxt "@info:title The %s gets replaced with the printer name."
-msgid "New %s firmware available"
-msgstr "Neue Firmware für %s verfügbar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
-msgctxt "@action:button"
-msgid "How to update"
-msgstr "Anleitung für die Aktualisierung"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "G File"
-msgstr "G-Datei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:347
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
msgctxt "@info:status"
-msgid "Parsing G-code"
-msgstr "G-Code parsen"
+msgid "today"
+msgstr "heute"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:349 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:503
-msgctxt "@info:title"
-msgid "G-code Details"
-msgstr "G-Code-Details"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
+msgctxt "@item:inmenu"
+msgid "USB printing"
+msgstr "USB-Drucken"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:501
-msgctxt "@info:generic"
-msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
-msgstr "Stellen Sie sicher, dass der G-Code für Ihren Drucker und Ihre Druckerkonfiguration geeignet ist, bevor Sie die Datei senden. Der Darstellung des G-Codes ist möglicherweise nicht korrekt."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Print via USB"
+msgstr "Über USB drucken"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:12
-msgctxt "@label"
-msgid "Support Blocker"
-msgstr "Stützstruktur-Blocker"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:13
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
msgctxt "@info:tooltip"
-msgid "Create a volume in which supports are not printed."
-msgstr "Erstellt ein Volumen, in dem keine Stützstrukturen gedruckt werden."
+msgid "Print via USB"
+msgstr "Über USB drucken"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:15
-msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
-msgid "Open Compressed Triangle Mesh"
-msgstr "Öffnen Sie das komprimierte Dreiecksnetz"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
+msgctxt "@info:status"
+msgid "Connected via USB"
+msgstr "Über USB verbunden"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
+msgctxt "@label"
+msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
+msgstr "Ein USB-Druck wird ausgeführt. Das Schließen von Cura beendet diesen Druck. Sind Sie sicher?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
+msgstr "Druck wird bearbeitet. Cura kann keinen weiteren Druck via USB starten, bis der vorherige Druck abgeschlossen wurde."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid "Print in Progress"
+msgstr "Druck in Bearbeitung"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
msgctxt "@item:inlistbox"
-msgid "COLLADA Digital Asset Exchange"
-msgstr "COLLADA Digital Asset Exchange"
+msgid "X3D File"
+msgstr "X3D-Datei"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:23
-msgctxt "@item:inlistbox"
-msgid "glTF Binary"
-msgstr "glTF Binary"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:27
-msgctxt "@item:inlistbox"
-msgid "glTF Embedded JSON"
-msgstr "glTF Embedded JSON"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:36
-msgctxt "@item:inlistbox"
-msgid "Stanford Triangle Format"
-msgstr "Stanford Triangle Format"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:40
-msgctxt "@item:inlistbox"
-msgid "Compressed COLLADA Digital Asset Exchange"
-msgstr "Compressed COLLADA Digital Asset Exchange"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPReader/__init__.py:22 /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/__init__.py:28
-msgctxt "@item:inlistbox"
-msgid "Ultimaker Format Package"
-msgstr "Ultimaker Format Package"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/LegacyProfileReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "Cura 15.04 profiles"
-msgstr "Cura 15.04-Profile"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PrepareStage/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Prepare"
-msgstr "Vorbereiten"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/__init__.py:14
-msgctxt "@item:inmenu"
-msgid "Monitor"
-msgstr "Überwachen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/XRayView/__init__.py:12
+#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
msgctxt "@item:inlistbox"
msgid "X-Ray view"
msgstr "Röntgen-Ansicht"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
-msgctxt "@error:zip"
-msgid "Error writing 3mf file."
-msgstr "Fehler beim Schreiben von 3MF-Datei."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "3MF file"
-msgstr "3MF-Datei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:34
-msgctxt "@item:inlistbox"
-msgid "Cura Project 3MF file"
-msgstr "Cura-Projekt 3MF-Datei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
-msgctxt "@error:zip"
-msgid "3MF Writer plug-in is corrupt."
-msgstr "Das 3MF-Writer-Plugin ist beschädigt."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
-msgctxt "@error:zip"
-msgid "No permission to write the workspace here."
-msgstr "Keine Erlaubnis zum Beschreiben dieses Arbeitsbereichs."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
-msgctxt "@error:zip"
-msgid "The operating system does not allow saving a project file to this location or with this file name."
-msgstr "Das Betriebssystem erlaubt es nicht, eine Projektdatei an diesem Speicherort oder mit diesem Dateinamen zu speichern."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PreviewStage/__init__.py:13
-msgctxt "@item:inmenu"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/__init__.py:15
-msgctxt "@item:inlistbox"
-msgid "Layer view"
-msgstr "Schichtenansicht"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:124
-msgctxt "@info:status"
-msgid "Cura does not accurately display layers when Wire Printing is enabled."
-msgstr "Cura zeigt die Schichten nicht präzise an, wenn „Drucken mit Drahtstruktur“ aktiviert ist."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:125
-msgctxt "@info:title"
-msgid "Simulation View"
-msgstr "Simulationsansicht"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:status"
-msgid "Nothing is shown because you need to slice first."
-msgstr "Es kann nichts angezeigt werden, weil Sie zuerst das Slicing vornehmen müssen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:title"
-msgid "No layers to show"
-msgstr "Keine anzeigbaren Schichten vorhanden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:127 /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:74
-msgctxt "@info:option_text"
-msgid "Do not show this message again"
-msgstr "Diese Meldung nicht mehr anzeigen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
-msgctxt "@action"
-msgid "Machine Settings"
-msgstr "Geräteeinstellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Solid view"
-msgstr "Solide Ansicht"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:71
-msgctxt "@info:status"
-msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
-msgstr "Die hervorgehobenen Bereiche kennzeichnen fehlende oder überschüssige Oberflächen. Beheben Sie die Fehler am Modell und öffnen Sie es erneut in Cura."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:73
-msgctxt "@info:title"
-msgid "Model Errors"
-msgstr "Modellfehler"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:79
-msgctxt "@action:button"
-msgid "Learn more"
-msgstr "Mehr erfahren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/UFPWriter.py:134
-msgctxt "@info:error"
-msgid "Can't write to UFP file:"
-msgstr "Kann nicht in UFP-Datei schreiben:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:74
-msgctxt "@error:not supported"
-msgid "GCodeWriter does not support non-text mode."
-msgstr "GCodeWriter unterstützt keinen Nicht-Textmodus."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:96
-msgctxt "@warning:status"
-msgid "Please prepare G-code before exporting."
-msgstr "Vor dem Exportieren bitte G-Code vorbereiten."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "JPG Image"
-msgstr "JPG-Bilddatei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "JPEG Image"
-msgstr "JPEG-Bilddatei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:22
-msgctxt "@item:inlistbox"
-msgid "PNG Image"
-msgstr "PNG-Bilddatei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "BMP Image"
-msgstr "BMP-Bilddatei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:30
-msgctxt "@item:inlistbox"
-msgid "GIF Image"
-msgstr "GIF-Bilddatei"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DriveApiService.py:86 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
-msgctxt "@info:backup_status"
-msgid "There was an error trying to restore your backup."
-msgstr "Beim Versuch, Ihr Backup wiederherzustellen, trat ein Fehler auf."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
-msgctxt "@info:title"
-msgid "Backups"
-msgstr "Backups"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
-msgctxt "@info:backup_status"
-msgid "There was an error while uploading your backup."
-msgstr "Beim Versuch, Ihr Backup hochzuladen, trat ein Fehler auf."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
-msgctxt "@info:backup_status"
-msgid "Creating your backup..."
-msgstr "Ihr Backup wird erstellt..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
-msgctxt "@info:backup_status"
-msgid "There was an error while creating your backup."
-msgstr "Beim Erstellen Ihres Backups ist ein Fehler aufgetreten."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
-msgctxt "@info:backup_status"
-msgid "Uploading your backup..."
-msgstr "Ihr Backup wird hochgeladen..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
-msgctxt "@info:backup_status"
-msgid "Your backup has finished uploading."
-msgstr "Ihr Backup wurde erfolgreich hochgeladen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
-msgctxt "@error:file_size"
-msgid "The backup exceeds the maximum file size."
-msgstr "Das Backup überschreitet die maximale Dateigröße."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
-msgctxt "@item:inmenu"
-msgid "Manage backups"
-msgstr "Backups verwalten"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
-msgctxt "@title"
-msgid "Update Firmware"
-msgstr "Firmware aktualisieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
-msgctxt "@label"
-msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
-msgstr "Die Firmware ist der Teil der Software, der direkt auf Ihrem 3D-Drucker läuft. Diese Firmware kontrolliert die Schrittmotoren, reguliert die Temperatur und sorgt letztlich dafür, dass Ihr Drucker funktioniert."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
-msgctxt "@label"
-msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
-msgstr "Die mit neuen Druckern gelieferte Firmware funktioniert, allerdings enthalten neue Versionen üblicherweise mehr Funktionen und Verbesserungen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
-msgctxt "@action:button"
-msgid "Automatically upgrade Firmware"
-msgstr "Firmware automatisch aktualisieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
-msgctxt "@action:button"
-msgid "Upload custom Firmware"
-msgstr "Benutzerdefinierte Firmware hochladen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
-msgctxt "@label"
-msgid "Firmware can not be updated because there is no connection with the printer."
-msgstr "Firmware kann nicht aktualisiert werden, da keine Verbindung zum Drucker besteht."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
-msgctxt "@label"
-msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
-msgstr "Firmware kann nicht aktualisiert werden, da die Verbindung zum Drucker die Firmware-Aktualisierung nicht unterstützt."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
-msgctxt "@title:window"
-msgid "Select custom firmware"
-msgstr "Benutzerdefinierte Firmware wählen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
-msgctxt "@title:window"
-msgid "Firmware Update"
-msgstr "Firmware-Aktualisierung"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
-msgctxt "@label"
-msgid "Updating firmware."
-msgstr "Die Firmware wird aktualisiert."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
-msgctxt "@label"
-msgid "Firmware update completed."
-msgstr "Firmware-Aktualisierung abgeschlossen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
-msgctxt "@label"
-msgid "Firmware update failed due to an unknown error."
-msgstr "Die Firmware-Aktualisierung ist aufgrund eines unbekannten Fehlers fehlgeschlagen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
-msgctxt "@label"
-msgid "Firmware update failed due to an communication error."
-msgstr "Die Firmware-Aktualisierung ist aufgrund eines Kommunikationsfehlers fehlgeschlagen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
-msgctxt "@label"
-msgid "Firmware update failed due to an input/output error."
-msgstr "Die Firmware-Aktualisierung ist aufgrund eines Eingabe-/Ausgabefehlers fehlgeschlagen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
-msgctxt "@label"
-msgid "Firmware update failed due to missing firmware."
-msgstr "Die Firmware-Aktualisierung ist aufgrund von fehlender Firmware fehlgeschlagen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
-msgctxt "@title"
-msgid "Marketplace"
-msgstr "Marktplatz"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
-msgctxt "@label"
-msgid "You need to accept the license to install the package"
-msgstr "Sie müssen die Lizenz akzeptieren, um das Paket zu installieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
-msgctxt "@title"
-msgid "Changes from your account"
-msgstr "Änderungen in deinem Konto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
-msgctxt "@button"
-msgid "Dismiss"
-msgstr "Verwerfen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:182
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
-msgctxt "@button"
-msgid "Next"
-msgstr "Weiter"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
-msgctxt "@label"
-msgid "The following packages will be added:"
-msgstr "Die folgenden Pakete werden hinzugefügt:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
-msgctxt "@label"
-msgid "The following packages can not be installed because of an incompatible Cura version:"
-msgstr "Die folgenden Pakete können nicht hinzugefügt werden, weil die Cura-Version nicht kompatibel ist:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
-msgctxt "@title:window"
-msgid "Confirm uninstall"
-msgstr "Deinstallieren bestätigen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
-msgctxt "@text:window"
-msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
-msgstr "Sie sind dabei, Materialien und/oder Profile zu deinstallieren, die noch verwendet werden. Durch Bestätigen werden die folgenden Materialien/Profile auf ihre Standardeinstellungen zurückgesetzt."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
-msgctxt "@text:window"
-msgid "Materials"
-msgstr "Materialien"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
-msgctxt "@text:window"
-msgid "Profiles"
-msgstr "Profile"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
-msgctxt "@action:button"
-msgid "Confirm"
-msgstr "Bestätigen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
-msgctxt "@info"
-msgid "Could not connect to the Cura Package database. Please check your connection."
-msgstr "Verbindung zur Cura Paket-Datenbank konnte nicht hergestellt werden. Bitte überprüfen Sie Ihre Verbindung."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Contributions"
-msgstr "Community-Beiträge"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Plugins"
-msgstr "Community-Plugins"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
-msgctxt "@label"
-msgid "Generic Materials"
-msgstr "Generische Materialien"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
-msgctxt "@label"
-msgid "Version"
-msgstr "Version"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
-msgctxt "@label"
-msgid "Last updated"
-msgstr "Zuletzt aktualisiert"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
-msgctxt "@label"
-msgid "Brand"
-msgstr "Marke"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
-msgctxt "@label"
-msgid "Downloads"
-msgstr "Downloads"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
-msgctxt "@title:tab"
-msgid "Installed plugins"
-msgstr "Installierte Plugins"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
-msgctxt "@info"
-msgid "No plugin has been installed."
-msgstr "Es wurde kein Plugin installiert."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
-msgctxt "@title:tab"
-msgid "Installed materials"
-msgstr "Installierte Materialien"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
-msgctxt "@info"
-msgid "No material has been installed."
-msgstr "Es wurde kein Material installiert."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
-msgctxt "@title:tab"
-msgid "Bundled plugins"
-msgstr "Gebündelte Plugins"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
-msgctxt "@title:tab"
-msgid "Bundled materials"
-msgstr "Gebündelte Materialien"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
-msgctxt "@label"
-msgid "Website"
-msgstr "Website"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
-msgctxt "@label"
-msgid "Email"
-msgstr "E-Mail"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
-msgctxt "@description"
-msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
-msgstr "Bitte melden Sie sich an, um verifizierte Plugins und Materialien für Ultimaker Cura Enterprise zu erhalten"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:199
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:53
-msgctxt "@button"
-msgid "Sign in"
-msgstr "Anmelden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
-msgctxt "@info"
-msgid "Fetching packages..."
-msgstr "Pakete werden abgeholt..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
-msgctxt "@label"
-msgid "Compatibility"
-msgstr "Kompatibilität"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
-msgctxt "@label:table_header"
-msgid "Machine"
-msgstr "Gerät"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
-msgctxt "@label:table_header"
-msgid "Build Plate"
-msgstr "Druckbett"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
-msgctxt "@label:table_header"
-msgid "Support"
-msgstr "Support"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
-msgctxt "@label:table_header"
-msgid "Quality"
-msgstr "Qualität"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
-msgctxt "@action:label"
-msgid "Technical Data Sheet"
-msgstr "Technisches Datenblatt"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
-msgctxt "@action:label"
-msgid "Safety Data Sheet"
-msgstr "Sicherheitsdatenblatt"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
-msgctxt "@action:label"
-msgid "Printing Guidelines"
-msgstr "Druckrichtlinien"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
-msgctxt "@action:label"
-msgid "Website"
-msgstr "Website"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
-msgctxt "@title:tab"
-msgid "Plugins"
-msgstr "Plugins"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:457
-msgctxt "@title:tab"
-msgid "Materials"
-msgstr "Materialien"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
-msgctxt "@title:tab"
-msgid "Installed"
-msgstr "Installiert"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
msgctxt "@info:tooltip"
-msgid "Go to Web Marketplace"
-msgstr "Zum Web Marketplace gehen"
+msgid "Some things could be problematic in this print. Click to see tips for adjustment."
+msgstr "Einige Punkte bei diesem Druck könnten problematisch sein. Klicken Sie, um Tipps für die Anpassung zu erhalten."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
-msgctxt "@label"
-msgid "Will install upon restarting"
-msgstr "Installiert nach Neustart"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
-msgctxt "@action:button"
-msgid "Update"
-msgstr "Aktualisierung"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
-msgctxt "@action:button"
-msgid "Updating"
-msgstr "Aktualisierung wird durchgeführt"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
-msgctxt "@action:button"
-msgid "Updated"
-msgstr "Aktualisiert"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to update"
-msgstr "Anmeldung für Update erforderlich"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Downgrade"
-msgstr "Downgraden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Uninstall"
-msgstr "Deinstallieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
-msgctxt "@action:button"
-msgid "Installed"
-msgstr "Installiert"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to install or update"
-msgstr "Anmeldung für Installation oder Update erforderlich"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Buy material spools"
-msgstr "Materialspulen kaufen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
-msgctxt "@label"
-msgid "Premium"
-msgstr "Premium"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
-msgctxt "@label"
-msgid "Search materials"
-msgstr "Materialien suchen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
-msgctxt "@info"
-msgid "You will need to restart Cura before changes in packages have effect."
-msgstr "Cura muss neu gestartet werden, um die Änderungen der Pakete zu übernehmen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
-msgctxt "@info:button, %1 is the application name"
-msgid "Quit %1"
-msgstr "%1 beenden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
-msgctxt "@action:button"
-msgid "Back"
-msgstr "Zurück"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
-msgctxt "@action:button"
-msgid "Install"
-msgstr "Installieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
-msgctxt "@label"
-msgid "Mesh Type"
-msgstr "Mesh-Typ"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
-msgctxt "@label"
-msgid "Normal model"
-msgstr "Normales Modell"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
-msgctxt "@label"
-msgid "Print as support"
-msgstr "Als Stützstruktur drucken"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
-msgctxt "@label"
-msgid "Modify settings for overlaps"
-msgstr "Einstellungen für Überlappungen ändern"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
-msgctxt "@label"
-msgid "Don't support overlaps"
-msgstr "Überlappungen nicht unterstützen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
-msgctxt "@item:inlistbox"
-msgid "Infill mesh only"
-msgstr "Nur Mesh-Füllung"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
-msgctxt "@item:inlistbox"
-msgid "Cutting mesh"
-msgstr "Mesh beschneiden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
-msgctxt "@action:button"
-msgid "Select settings"
-msgstr "Einstellungen wählen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
-msgctxt "@title:window"
-msgid "Select Settings to Customize for this model"
-msgstr "Einstellungen für die benutzerdefinierte Anpassung dieses Modells wählen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
-msgctxt "@label:textbox"
-msgid "Filter..."
-msgstr "Filtern..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
-msgctxt "@label:checkbox"
-msgid "Show all"
-msgstr "Alle anzeigen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
-msgctxt "@title:window"
-msgid "Post Processing Plugin"
-msgstr "Plugin Nachbearbeitung"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
-msgctxt "@label"
-msgid "Post Processing Scripts"
-msgstr "Skripts Nachbearbeitung"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
-msgctxt "@action"
-msgid "Add a script"
-msgstr "Ein Skript hinzufügen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
-msgctxt "@label"
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
-msgctxt "@info:tooltip"
-msgid "Change active post-processing scripts."
-msgstr "Aktive Nachbearbeitungsskripts ändern."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
-msgctxt "@info:tooltip"
-msgid "The following script is active:"
-msgid_plural "The following scripts are active:"
-msgstr[0] "Die folgenden Skript ist aktiv:"
-msgstr[1] "Die folgenden Skripte sind aktiv:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
-msgctxt "@label"
-msgid "Queued"
-msgstr "In Warteschlange"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
-msgctxt "@label link to connect manager"
-msgid "Manage in browser"
-msgstr "Im Browser verwalten"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
-msgctxt "@label"
-msgid "There are no print jobs in the queue. Slice and send a job to add one."
-msgstr "Die Warteschlange enthält keine Druckaufträge. Slicen Sie einen Auftrag und schicken Sie ihn ab, um ihn zur Warteschlange hinzuzufügen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
-msgctxt "@label"
-msgid "Print jobs"
-msgstr "Druckaufträge"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
-msgctxt "@label"
-msgid "Total print time"
-msgstr "Druckdauer insgesamt"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
-msgctxt "@label"
-msgid "Waiting for"
-msgstr "Warten auf"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
-msgctxt "@title:window"
-msgid "Configuration Changes"
-msgstr "Konfigurationsänderungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
-msgctxt "@action:button"
-msgid "Override"
-msgstr "Überschreiben"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
-msgctxt "@label"
-msgid "The assigned printer, %1, requires the following configuration change:"
-msgid_plural "The assigned printer, %1, requires the following configuration changes:"
-msgstr[0] "Der zugewiesene Drucker %1 erfordert die folgende Konfigurationsänderung:"
-msgstr[1] "Der zugewiesene Drucker %1 erfordert die folgenden Konfigurationsänderungen:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
-msgctxt "@label"
-msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
-msgstr "Der Drucker %1 wurde zugewiesen, allerdings enthält der Auftrag eine unbekannte Materialkonfiguration."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
-msgctxt "@label"
-msgid "Change material %1 from %2 to %3."
-msgstr "Material %1 von %2 auf %3 wechseln."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
-msgctxt "@label"
-msgid "Load %3 as material %1 (This cannot be overridden)."
-msgstr "%3 als Material %1 laden (Dies kann nicht übergangen werden)."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
-msgctxt "@label"
-msgid "Change print core %1 from %2 to %3."
-msgstr "Print Core %1 von %2 auf %3 wechseln."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
-msgctxt "@label"
-msgid "Change build plate to %1 (This cannot be overridden)."
-msgstr "Druckplatte auf %1 wechseln (Dies kann nicht übergangen werden)."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
-msgctxt "@label"
-msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
-msgstr "Überschreiben verwendet die definierten Einstellungen mit der vorhandenen Druckerkonfiguration. Dies kann zu einem fehlgeschlagenen Druck führen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
-msgctxt "@label"
-msgid "Glass"
-msgstr "Glas"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
-msgctxt "@label"
-msgid "Aluminum"
-msgstr "Aluminium"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
-msgctxt "@label"
-msgid "Unavailable printer"
-msgstr "Drucker nicht verfügbar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
-msgctxt "@label"
-msgid "First available"
-msgstr "Zuerst verfügbar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
-msgctxt "@info"
-msgid "Please update your printer's firmware to manage the queue remotely."
-msgstr "Damit Sie die Warteschlange aus der Ferne verwalten können, müssen Sie die Druckfirmware aktualisieren."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
-msgctxt "@title:window"
-msgid "Connect to Networked Printer"
-msgstr "Anschluss an vernetzten Drucker"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
-msgctxt "@label"
-msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
-msgstr "Um direkt auf Ihrem Drucker über das Netzwerk zu drucken, muss der Drucker über ein Netzwerkkabel oder per WLAN mit dem Netzwerk verbunden sein. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie G-Code-Dateien auf einen USB-Stick kopieren und diesen am Drucker anschließen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
-msgctxt "@label"
-msgid "Select your printer from the list below:"
-msgstr "Wählen Sie Ihren Drucker aus der folgenden Liste aus:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
-msgctxt "@action:button"
-msgid "Edit"
-msgstr "Bearbeiten"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:55
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:138
-msgctxt "@action:button"
-msgid "Remove"
-msgstr "Entfernen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
-msgctxt "@action:button"
-msgid "Refresh"
-msgstr "Aktualisieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
-msgctxt "@label"
-msgid "If your printer is not listed, read the network printing troubleshooting guide"
-msgstr "Wenn Ihr Drucker nicht aufgeführt ist, lesen Sie die Anleitung für Fehlerbehebung für Netzwerkdruck"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
-msgctxt "@label"
-msgid "Type"
-msgstr "Typ"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
-msgctxt "@label"
-msgid "Firmware version"
-msgstr "Firmware-Version"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
-msgctxt "@label"
-msgid "Address"
-msgstr "Adresse"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
-msgctxt "@label"
-msgid "This printer is not set up to host a group of printers."
-msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Druckern anzusteuern."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
-msgctxt "@label"
-msgid "This printer is the host for a group of %1 printers."
-msgstr "Dieser Drucker steuert eine Gruppe von %1 Druckern an."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
-msgctxt "@label"
-msgid "The printer at this address has not yet responded."
-msgstr "Der Drucker unter dieser Adresse hat nicht reagiert."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
-msgctxt "@action:button"
-msgid "Connect"
-msgstr "Verbinden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
-msgctxt "@title:window"
-msgid "Invalid IP address"
-msgstr "Ungültige IP-Adresse"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
-msgctxt "@text"
-msgid "Please enter a valid IP address."
-msgstr "Bitte eine gültige IP-Adresse eingeben."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
-msgctxt "@title:window"
-msgid "Printer Address"
-msgstr "Druckeradresse"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
-msgctxt "@label"
-msgid "Enter the IP address of your printer on the network."
-msgstr "Geben Sie die IP-Adresse Ihres Druckers in das Netzwerk ein."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:227
-msgctxt "@action:button"
-msgid "OK"
-msgstr "OK"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
-msgctxt "@title:window"
-msgid "Print over network"
-msgstr "Drucken über Netzwerk"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
-msgctxt "@action:button"
-msgid "Print"
-msgstr "Drucken"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
-msgctxt "@label"
-msgid "Printer selection"
-msgstr "Druckerauswahl"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
-msgctxt "@label"
-msgid "Move to top"
-msgstr "Vorziehen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
-msgctxt "@label"
-msgid "Delete"
-msgstr "Löschen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:290
-msgctxt "@label"
-msgid "Resume"
-msgstr "Zurückkehren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
-msgctxt "@label"
-msgid "Pausing..."
-msgstr "Wird pausiert..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
-msgctxt "@label"
-msgid "Resuming..."
-msgstr "Wird fortgesetzt..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:285 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:294
-msgctxt "@label"
-msgid "Pause"
-msgstr "Pausieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
-msgctxt "@label"
-msgid "Aborting..."
-msgstr "Wird abgebrochen..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
-msgctxt "@label"
-msgid "Abort"
-msgstr "Abbrechen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to move %1 to the top of the queue?"
-msgstr "Soll dieser %1 wirklich an den Anfang der Warteschlange vorgezogen werden?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
-msgctxt "@window:title"
-msgid "Move print job to top"
-msgstr "Druckauftrag vorziehen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to delete %1?"
-msgstr "Soll %1 wirklich gelöscht werden?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
-msgctxt "@window:title"
-msgid "Delete print job"
-msgstr "Druckauftrag löschen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to abort %1?"
-msgstr "Möchten Sie %1 wirklich abbrechen?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:336
-msgctxt "@window:title"
-msgid "Abort print"
-msgstr "Drucken abbrechen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
-msgctxt "@label:status"
-msgid "Aborted"
-msgstr "Abgebrochen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
-msgctxt "@label:status"
-msgid "Finished"
-msgstr "Beendet"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
-msgctxt "@label:status"
-msgid "Preparing..."
-msgstr "Vorbereitung..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
-msgctxt "@label:status"
-msgid "Aborting..."
-msgstr "Wird abgebrochen..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
-msgctxt "@label:status"
-msgid "Pausing..."
-msgstr "Wird pausiert..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
-msgctxt "@label:status"
-msgid "Paused"
-msgstr "Pausiert"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
-msgctxt "@label:status"
-msgid "Resuming..."
-msgstr "Wird fortgesetzt..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
-msgctxt "@label:status"
-msgid "Action required"
-msgstr "Handlung erforderlich"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
-msgctxt "@label:status"
-msgid "Finishes %1 at %2"
-msgstr "Fertigstellung %1 auf %2"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
-msgctxt "@label link to Connect and Cloud interfaces"
-msgid "Manage printer"
-msgstr "Drucker verwalten"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
-msgctxt "@label:status"
-msgid "Loading..."
-msgstr "Lädt..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
-msgctxt "@label:status"
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
-msgctxt "@label:status"
-msgid "Unreachable"
-msgstr "Nicht erreichbar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
-msgctxt "@label:status"
-msgid "Idle"
-msgstr "Leerlauf"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
-msgctxt "@label:status"
-msgid "Printing"
-msgstr "Drucken"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
-msgctxt "@label"
-msgid "Untitled"
-msgstr "Unbenannt"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
-msgctxt "@label"
-msgid "Anonymous"
-msgstr "Anonym"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
-msgctxt "@label:status"
-msgid "Requires configuration changes"
-msgstr "Erfordert Konfigurationsänderungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
-msgctxt "@action:button"
-msgid "Details"
-msgstr "Details"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
-msgctxt "@label"
-msgid "Please select any upgrades made to this Ultimaker Original"
-msgstr "Wählen Sie bitte alle Upgrades für dieses Ultimaker-Original"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
-msgctxt "@label"
-msgid "Heated Build Plate (official kit or self-built)"
-msgstr "Beheizte Druckplatte (offizielles Kit oder Eigenbau)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
-msgctxt "@title"
-msgid "Build Plate Leveling"
-msgstr "Nivellierung der Druckplatte"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
-msgctxt "@label"
-msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
-msgstr "Um sicherzustellen, dass Ihre Drucke hervorragend werden, können Sie nun Ihre Druckplatte justieren. Wenn Sie auf „Gehe zur nächsten Position“ klicken, bewegt sich die Düse zu den verschiedenen Positionen, die justiert werden können."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
-msgctxt "@label"
-msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
-msgstr "Legen Sie für jede Position ein Blatt Papier unter die Düse und stellen Sie die Höhe der Druckplatte ein. Die Höhe der Druckplatte ist korrekt, wenn das Papier von der Spitze der Düse leicht berührt wird."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
-msgctxt "@action:button"
-msgid "Start Build Plate Leveling"
-msgstr "Nivellierung der Druckplatte starten"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
-msgctxt "@action:button"
-msgid "Move to Next Position"
-msgstr "Gehe zur nächsten Position"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
msgctxt "@title:window"
msgid "Open Project"
msgstr "Projekt öffnen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
msgctxt "@action:ComboBox Update/override existing profile"
msgid "Update existing"
msgstr "Vorhandenes aktualisieren"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
msgctxt "@action:ComboBox Save settings in a new profile"
msgid "Create new"
msgstr "Neu erstellen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
msgctxt "@action:title"
msgid "Summary - Cura Project"
msgstr "Zusammenfassung – Cura-Projekt"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
msgctxt "@action:label"
msgid "Printer settings"
msgstr "Druckereinstellungen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
msgctxt "@info:tooltip"
msgid "How should the conflict in the machine be resolved?"
msgstr "Wie soll der Konflikt im Gerät gelöst werden?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
msgctxt "@action:label"
msgid "Type"
msgstr "Typ"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
msgctxt "@action:label"
msgid "Printer Group"
msgstr "Druckergruppe"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
msgctxt "@action:label"
msgid "Profile settings"
msgstr "Profileinstellungen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
msgctxt "@info:tooltip"
msgid "How should the conflict in the profile be resolved?"
msgstr "Wie soll der Konflikt im Profil gelöst werden?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
msgctxt "@action:label"
msgid "Name"
msgstr "Name"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
msgctxt "@action:label"
msgid "Intent"
msgstr "Intent"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
msgctxt "@action:label"
msgid "Not in profile"
msgstr "Nicht im Profil"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
msgctxt "@action:label"
msgid "%1 override"
msgid_plural "%1 overrides"
msgstr[0] "%1 überschreiben"
msgstr[1] "%1 überschreibt"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
msgctxt "@action:label"
msgid "Derivative from"
msgstr "Ableitung von"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
msgctxt "@action:label"
msgid "%1, %2 override"
msgid_plural "%1, %2 overrides"
msgstr[0] "%1, %2 überschreiben"
msgstr[1] "%1, %2 überschreibt"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
msgctxt "@action:label"
msgid "Material settings"
msgstr "Materialeinstellungen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
msgctxt "@info:tooltip"
msgid "How should the conflict in the material be resolved?"
msgstr "Wie soll der Konflikt im Material gelöst werden?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
msgctxt "@action:label"
msgid "Setting visibility"
msgstr "Sichtbarkeit einstellen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
msgctxt "@action:label"
msgid "Mode"
msgstr "Modus"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
msgctxt "@action:label"
msgid "Visible settings:"
msgstr "Sichtbare Einstellungen:"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
msgctxt "@action:label"
msgid "%1 out of %2"
msgstr "%1 von %2"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
msgctxt "@action:warning"
msgid "Loading a project will clear all models on the build plate."
msgstr "Das Laden eines Projekts entfernt alle Modelle von der Druckplatte."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
msgctxt "@action:button"
msgid "Open"
msgstr "Öffnen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.qml:22
-msgctxt "@info:tooltip"
-msgid "Some things could be problematic in this print. Click to see tips for adjustment."
-msgstr "Einige Punkte bei diesem Druck könnten problematisch sein. Klicken Sie, um Tipps für die Anpassung zu erhalten."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
+msgctxt "@button"
+msgid "Want more?"
+msgstr "Möchten Sie mehr?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:100
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
+msgctxt "@button"
+msgid "Backup Now"
+msgstr "Jetzt Backup durchführen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
+msgctxt "@checkbox:description"
+msgid "Auto Backup"
+msgstr "Automatisches Backup"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
+msgctxt "@checkbox:description"
+msgid "Automatically create a backup each day that Cura is started."
+msgstr "An jedem Tag, an dem Cura gestartet wird, ein automatisches Backup erstellen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
+msgctxt "@button"
+msgid "Restore"
+msgstr "Wiederherstellen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
+msgctxt "@dialog:title"
+msgid "Delete Backup"
+msgstr "Backup löschen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
+msgctxt "@dialog:info"
+msgid "Are you sure you want to delete this backup? This cannot be undone."
+msgstr "Soll dieses Backup wirklich gelöscht werden? Der Vorgang kann nicht rückgängig gemacht werden."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
+msgctxt "@dialog:title"
+msgid "Restore Backup"
+msgstr "Backup wiederherstellen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
+msgctxt "@dialog:info"
+msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
+msgstr "Cura muss neu gestartet werden, um Ihre Datensicherung wiederherzustellen. Möchten Sie Cura jetzt schließen?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
+msgctxt "@backuplist:label"
+msgid "Cura Version"
+msgstr "Cura-Version"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
+msgctxt "@backuplist:label"
+msgid "Machines"
+msgstr "Maschinen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
+msgctxt "@backuplist:label"
+msgid "Materials"
+msgstr "Materialien"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
+msgctxt "@backuplist:label"
+msgid "Profiles"
+msgstr "Profile"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
+msgctxt "@backuplist:label"
+msgid "Plugins"
+msgstr "Plugins"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
+msgctxt "@title:window"
+msgid "Cura Backups"
+msgstr "Cura-Backups"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
+msgctxt "@title"
+msgid "My Backups"
+msgstr "Meine Backups"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
+msgctxt "@empty_state"
+msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
+msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläche ‚Jetzt Backup erstellen‘, um ein Backup zu erstellen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
+msgctxt "@backup_limit_info"
+msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
+msgstr "In der Vorschau-Phase sind Sie auf 5 sichtbare Backups beschränkt. Ein Backup entfernen, um ältere anzusehen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
+msgctxt "@description"
+msgid "Backup and synchronize your Cura settings."
+msgstr "Ihre Cura-Einstellungen sichern und synchronisieren."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199
+msgctxt "@button"
+msgid "Sign in"
+msgstr "Anmelden"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
+msgctxt "@title"
+msgid "Update Firmware"
+msgstr "Firmware aktualisieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
+msgctxt "@label"
+msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
+msgstr "Die Firmware ist der Teil der Software, der direkt auf Ihrem 3D-Drucker läuft. Diese Firmware kontrolliert die Schrittmotoren, reguliert die Temperatur und sorgt letztlich dafür, dass Ihr Drucker funktioniert."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
+msgctxt "@label"
+msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
+msgstr "Die mit neuen Druckern gelieferte Firmware funktioniert, allerdings enthalten neue Versionen üblicherweise mehr Funktionen und Verbesserungen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
+msgctxt "@action:button"
+msgid "Automatically upgrade Firmware"
+msgstr "Firmware automatisch aktualisieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
+msgctxt "@action:button"
+msgid "Upload custom Firmware"
+msgstr "Benutzerdefinierte Firmware hochladen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
+msgctxt "@label"
+msgid "Firmware can not be updated because there is no connection with the printer."
+msgstr "Firmware kann nicht aktualisiert werden, da keine Verbindung zum Drucker besteht."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
+msgctxt "@label"
+msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
+msgstr "Firmware kann nicht aktualisiert werden, da die Verbindung zum Drucker die Firmware-Aktualisierung nicht unterstützt."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
+msgctxt "@title:window"
+msgid "Select custom firmware"
+msgstr "Benutzerdefinierte Firmware wählen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
+msgctxt "@title:window"
+msgid "Firmware Update"
+msgstr "Firmware-Aktualisierung"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
+msgctxt "@label"
+msgid "Updating firmware."
+msgstr "Die Firmware wird aktualisiert."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
+msgctxt "@label"
+msgid "Firmware update completed."
+msgstr "Firmware-Aktualisierung abgeschlossen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
+msgctxt "@label"
+msgid "Firmware update failed due to an unknown error."
+msgstr "Die Firmware-Aktualisierung ist aufgrund eines unbekannten Fehlers fehlgeschlagen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
+msgctxt "@label"
+msgid "Firmware update failed due to an communication error."
+msgstr "Die Firmware-Aktualisierung ist aufgrund eines Kommunikationsfehlers fehlgeschlagen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
+msgctxt "@label"
+msgid "Firmware update failed due to an input/output error."
+msgstr "Die Firmware-Aktualisierung ist aufgrund eines Eingabe-/Ausgabefehlers fehlgeschlagen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
+msgctxt "@label"
+msgid "Firmware update failed due to missing firmware."
+msgstr "Die Firmware-Aktualisierung ist aufgrund von fehlender Firmware fehlgeschlagen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
+msgctxt "@title:window"
+msgid "Convert Image..."
+msgstr "Bild konvertieren..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
+msgctxt "@info:tooltip"
+msgid "The maximum distance of each pixel from \"Base.\""
+msgstr "Der Maximalabstand von jedem Pixel von der „Basis“."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
+msgctxt "@action:label"
+msgid "Height (mm)"
+msgstr "Höhe (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
+msgctxt "@info:tooltip"
+msgid "The base height from the build plate in millimeters."
+msgstr "Die Basishöhe von der Druckplatte in Millimetern."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
+msgctxt "@action:label"
+msgid "Base (mm)"
+msgstr "Basis (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
+msgctxt "@info:tooltip"
+msgid "The width in millimeters on the build plate."
+msgstr "Die Breite der Druckplatte in Millimetern."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
+msgctxt "@action:label"
+msgid "Width (mm)"
+msgstr "Breite (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
+msgctxt "@info:tooltip"
+msgid "The depth in millimeters on the build plate"
+msgstr "Die Tiefe der Druckplatte in Millimetern"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
+msgctxt "@action:label"
+msgid "Depth (mm)"
+msgstr "Tiefe (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
+msgctxt "@info:tooltip"
+msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
+msgstr "Für Lithophanien sollten dunkle Pixel dickeren Positionen entsprechen, um mehr einfallendes Licht zu blockieren. Für Höhenkarten stellen hellere Pixel höheres Terrain dar, sodass hellere Pixel dickeren Positionen im generierten 3D-Modell entsprechen sollten."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Darker is higher"
+msgstr "Dunkler ist höher"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Lighter is higher"
+msgstr "Heller ist höher"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
+msgctxt "@info:tooltip"
+msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
+msgstr "Für Lithophanien ist ein einfaches logarithmisches Modell für Transparenz verfügbar. Bei Höhenprofilen entsprechen die Pixelwerte den Höhen linear."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+msgctxt "@item:inlistbox"
+msgid "Linear"
+msgstr "Linear"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
+msgctxt "@item:inlistbox"
+msgid "Translucency"
+msgstr "Transparenz"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
+msgctxt "@info:tooltip"
+msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
+msgstr "Der Prozentsatz an Licht, der einen Druck von einer Dicke mit 1 Millimeter durchdringt. Senkt man diesen Wert, steigt der Kontrast in den dunkleren Bereichen, während der Kontrast in den helleren Bereichen des Bilds sinkt."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
+msgctxt "@action:label"
+msgid "1mm Transmittance (%)"
+msgstr "1 mm Durchlässigkeit (%)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
+msgctxt "@info:tooltip"
+msgid "The amount of smoothing to apply to the image."
+msgstr "Die Stärke der Glättung, die für das Bild angewendet wird."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
+msgctxt "@action:label"
+msgid "Smoothing"
+msgstr "Glättung"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
+msgctxt "@action:button"
+msgid "OK"
+msgstr "OK"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
+msgctxt "@title:tab"
+msgid "Printer"
+msgstr "Drucker"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
+msgctxt "@title:label"
+msgid "Nozzle Settings"
+msgstr "Düseneinstellungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
+msgctxt "@label"
+msgid "Nozzle size"
+msgstr "Düsengröße"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
+msgctxt "@label"
+msgid "mm"
+msgstr "mm"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
+msgctxt "@label"
+msgid "Compatible material diameter"
+msgstr "Kompatibler Materialdurchmesser"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
+msgctxt "@label"
+msgid "Nozzle offset X"
+msgstr "X-Versatz Düse"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
+msgctxt "@label"
+msgid "Nozzle offset Y"
+msgstr "Y-Versatz Düse"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
+msgctxt "@label"
+msgid "Cooling Fan Number"
+msgstr "Kühllüfter-Nr."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
+msgctxt "@title:label"
+msgid "Extruder Start G-code"
+msgstr "G-Code Extruder-Start"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
+msgctxt "@title:label"
+msgid "Extruder End G-code"
+msgstr "G-Code Extruder-Ende"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
+msgctxt "@title:label"
+msgid "Printer Settings"
+msgstr "Druckereinstellungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
+msgctxt "@label"
+msgid "X (Width)"
+msgstr "X (Breite)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
+msgctxt "@label"
+msgid "Y (Depth)"
+msgstr "Y (Tiefe)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
+msgctxt "@label"
+msgid "Z (Height)"
+msgstr "Z (Höhe)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
+msgctxt "@label"
+msgid "Build plate shape"
+msgstr "Druckbettform"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
+msgctxt "@label"
+msgid "Origin at center"
+msgstr "Ausgang in Mitte"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
+msgctxt "@label"
+msgid "Heated bed"
+msgstr "Heizbares Bett"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
+msgctxt "@label"
+msgid "Heated build volume"
+msgstr "Druckraum aufgeheizt"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
+msgctxt "@label"
+msgid "G-code flavor"
+msgstr "G-Code-Variante"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
+msgctxt "@title:label"
+msgid "Printhead Settings"
+msgstr "Druckkopfeinstellungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
+msgctxt "@label"
+msgid "X min"
+msgstr "X min."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
+msgctxt "@label"
+msgid "Y min"
+msgstr "Y min."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
+msgctxt "@label"
+msgid "X max"
+msgstr "X max."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
+msgctxt "@label"
+msgid "Y max"
+msgstr "Y max."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
+msgctxt "@label"
+msgid "Gantry Height"
+msgstr "Brückenhöhe"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
+msgctxt "@label"
+msgid "Number of Extruders"
+msgstr "Anzahl Extruder"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
+msgctxt "@label"
+msgid "Apply Extruder offsets to GCode"
+msgstr "Extruder-Versatzwerte auf GCode anwenden"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
+msgctxt "@title:label"
+msgid "Start G-code"
+msgstr "Start G-Code"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
+msgctxt "@title:label"
+msgid "End G-code"
+msgstr "Ende G-Code"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
msgctxt "@info"
msgid ""
"Please make sure your printer has a connection:\n"
@@ -2597,1364 +2242,971 @@ msgstr ""
"– Prüfen Sie, ob der Drucker eingeschaltet ist.– Prüfen Sie, ob der Drucker mit dem Netzwerk verbunden ist.\n"
"– Prüfen Sie, ob Sie angemeldet sind, falls Sie über die Cloud verbundene Drucker suchen möchten."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
msgctxt "@info"
msgid "Please connect your printer to the network."
msgstr "Verbinden Sie Ihren Drucker bitte mit dem Netzwerk."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:155
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155
msgctxt "@label link to technical assistance"
msgid "View user manuals online"
msgstr "Benutzerhandbücher online anzeigen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172
+msgctxt "@info"
+msgid "In order to monitor your print from Cura, please connect the printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
+msgctxt "@label"
+msgid "Mesh Type"
+msgstr "Mesh-Typ"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
+msgctxt "@label"
+msgid "Normal model"
+msgstr "Normales Modell"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
+msgctxt "@label"
+msgid "Print as support"
+msgstr "Als Stützstruktur drucken"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
+msgctxt "@label"
+msgid "Modify settings for overlaps"
+msgstr "Einstellungen für Überlappungen ändern"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
+msgctxt "@label"
+msgid "Don't support overlaps"
+msgstr "Überlappungen nicht unterstützen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
+msgctxt "@item:inlistbox"
+msgid "Infill mesh only"
+msgstr "Nur Mesh-Füllung"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
+msgctxt "@item:inlistbox"
+msgid "Cutting mesh"
+msgstr "Mesh beschneiden"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
+msgctxt "@action:button"
+msgid "Select settings"
+msgstr "Einstellungen wählen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
msgctxt "@title:window"
-msgid "More information on anonymous data collection"
-msgstr "Weitere Informationen zur anonymen Datenerfassung"
+msgid "Select Settings to Customize for this model"
+msgstr "Einstellungen für die benutzerdefinierte Anpassung dieses Modells wählen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
-msgctxt "@text:window"
-msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
-msgstr "Ultimaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Nachfolgend ist ein Beispiel aller Daten, die geteilt werden:"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96
+msgctxt "@label:textbox"
+msgid "Filter..."
+msgstr "Filtern..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
-msgctxt "@text:window"
-msgid "I don't want to send anonymous data"
-msgstr "Ich möchte keine anonymen Daten senden"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
+msgctxt "@label:checkbox"
+msgid "Show all"
+msgstr "Alle anzeigen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
-msgctxt "@text:window"
-msgid "Allow sending anonymous data"
-msgstr "Senden von anonymen Daten erlauben"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20
+msgctxt "@title:window"
+msgid "Post Processing Plugin"
+msgstr "Plugin Nachbearbeitung"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59
+msgctxt "@label"
+msgid "Post Processing Scripts"
+msgstr "Skripts Nachbearbeitung"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235
+msgctxt "@action"
+msgid "Add a script"
+msgstr "Ein Skript hinzufügen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282
+msgctxt "@label"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502
+msgctxt "@info:tooltip"
+msgid "Change active post-processing scripts."
+msgstr "Aktive Nachbearbeitungsskripts ändern."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506
+msgctxt "@info:tooltip"
+msgid "The following script is active:"
+msgid_plural "The following scripts are active:"
+msgstr[0] "Die folgenden Skript ist aktiv:"
+msgstr[1] "Die folgenden Skripte sind aktiv:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
msgctxt "@label"
msgid "Color scheme"
msgstr "Farbschema"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110
msgctxt "@label:listbox"
msgid "Material Color"
msgstr "Materialfarbe"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114
msgctxt "@label:listbox"
msgid "Line Type"
msgstr "Linientyp"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118
msgctxt "@label:listbox"
msgid "Speed"
msgstr "Geschwindigkeit"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122
msgctxt "@label:listbox"
msgid "Layer Thickness"
msgstr "Schichtdicke"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126
msgctxt "@label:listbox"
msgid "Line Width"
msgstr "Linienbreite"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130
+msgctxt "@label:listbox"
+msgid "Flow"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171
msgctxt "@label"
msgid "Compatibility Mode"
msgstr "Kompatibilitätsmodus"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245
msgctxt "@label"
msgid "Travels"
msgstr "Bewegungen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251
msgctxt "@label"
msgid "Helpers"
msgstr "Helfer"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
msgctxt "@label"
msgid "Shell"
msgstr "Gehäuse"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:255 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
msgctxt "@label"
msgid "Infill"
msgstr "Füllung"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271
msgctxt "@label"
msgid "Starts"
msgstr "Startet"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:314
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
msgctxt "@label"
msgid "Only Show Top Layers"
msgstr "Nur obere Schichten anzeigen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:324
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332
msgctxt "@label"
msgid "Show 5 Detailed Layers On Top"
msgstr "5 detaillierte Schichten oben anzeigen"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:338
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346
msgctxt "@label"
msgid "Top / Bottom"
msgstr "Oben/Unten"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:342
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350
msgctxt "@label"
msgid "Inner Wall"
msgstr "Innenwand"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:405
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419
msgctxt "@label"
msgid "min"
msgstr "min."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:464
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488
msgctxt "@label"
msgid "max"
msgstr "max."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
-msgctxt "@title:label"
-msgid "Nozzle Settings"
-msgstr "Düseneinstellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
-msgctxt "@label"
-msgid "Nozzle size"
-msgstr "Düsengröße"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
-msgctxt "@label"
-msgid "mm"
-msgstr "mm"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
-msgctxt "@label"
-msgid "Compatible material diameter"
-msgstr "Kompatibler Materialdurchmesser"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
-msgctxt "@label"
-msgid "Nozzle offset X"
-msgstr "X-Versatz Düse"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
-msgctxt "@label"
-msgid "Nozzle offset Y"
-msgstr "Y-Versatz Düse"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
-msgctxt "@label"
-msgid "Cooling Fan Number"
-msgstr "Kühllüfter-Nr."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
-msgctxt "@title:label"
-msgid "Extruder Start G-code"
-msgstr "G-Code Extruder-Start"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
-msgctxt "@title:label"
-msgid "Extruder End G-code"
-msgstr "G-Code Extruder-Ende"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
-msgctxt "@title:tab"
-msgid "Printer"
-msgstr "Drucker"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
-msgctxt "@title:label"
-msgid "Printer Settings"
-msgstr "Druckereinstellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
-msgctxt "@label"
-msgid "X (Width)"
-msgstr "X (Breite)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
-msgctxt "@label"
-msgid "Y (Depth)"
-msgstr "Y (Tiefe)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
-msgctxt "@label"
-msgid "Z (Height)"
-msgstr "Z (Höhe)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
-msgctxt "@label"
-msgid "Build plate shape"
-msgstr "Druckbettform"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
-msgctxt "@label"
-msgid "Origin at center"
-msgstr "Ausgang in Mitte"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
-msgctxt "@label"
-msgid "Heated bed"
-msgstr "Heizbares Bett"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
-msgctxt "@label"
-msgid "Heated build volume"
-msgstr "Druckraum aufgeheizt"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
-msgctxt "@label"
-msgid "G-code flavor"
-msgstr "G-Code-Variante"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
-msgctxt "@title:label"
-msgid "Printhead Settings"
-msgstr "Druckkopfeinstellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
-msgctxt "@label"
-msgid "X min"
-msgstr "X min."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
-msgctxt "@label"
-msgid "Y min"
-msgstr "Y min."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
-msgctxt "@label"
-msgid "X max"
-msgstr "X max."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
-msgctxt "@label"
-msgid "Y max"
-msgstr "Y max."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
-msgctxt "@label"
-msgid "Gantry Height"
-msgstr "Brückenhöhe"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
-msgctxt "@label"
-msgid "Number of Extruders"
-msgstr "Anzahl Extruder"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
-msgctxt "@label"
-msgid "Apply Extruder offsets to GCode"
-msgstr "Extruder-Versatzwerte auf GCode anwenden"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
-msgctxt "@title:label"
-msgid "Start G-code"
-msgstr "Start G-Code"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
-msgctxt "@title:label"
-msgid "End G-code"
-msgstr "Ende G-Code"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
msgctxt "@title:window"
-msgid "Convert Image..."
-msgstr "Bild konvertieren..."
+msgid "More information on anonymous data collection"
+msgstr "Weitere Informationen zur anonymen Datenerfassung"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:33
-msgctxt "@info:tooltip"
-msgid "The maximum distance of each pixel from \"Base.\""
-msgstr "Der Maximalabstand von jedem Pixel von der „Basis“."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:38
-msgctxt "@action:label"
-msgid "Height (mm)"
-msgstr "Höhe (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:56
-msgctxt "@info:tooltip"
-msgid "The base height from the build plate in millimeters."
-msgstr "Die Basishöhe von der Druckplatte in Millimetern."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:61
-msgctxt "@action:label"
-msgid "Base (mm)"
-msgstr "Basis (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:79
-msgctxt "@info:tooltip"
-msgid "The width in millimeters on the build plate."
-msgstr "Die Breite der Druckplatte in Millimetern."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:84
-msgctxt "@action:label"
-msgid "Width (mm)"
-msgstr "Breite (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:103
-msgctxt "@info:tooltip"
-msgid "The depth in millimeters on the build plate"
-msgstr "Die Tiefe der Druckplatte in Millimetern"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:108
-msgctxt "@action:label"
-msgid "Depth (mm)"
-msgstr "Tiefe (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:126
-msgctxt "@info:tooltip"
-msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
-msgstr "Für Lithophanien sollten dunkle Pixel dickeren Positionen entsprechen, um mehr einfallendes Licht zu blockieren. Für Höhenkarten stellen hellere Pixel höheres Terrain dar, sodass hellere Pixel dickeren Positionen im generierten 3D-Modell entsprechen sollten."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Darker is higher"
-msgstr "Dunkler ist höher"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Lighter is higher"
-msgstr "Heller ist höher"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:149
-msgctxt "@info:tooltip"
-msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
-msgstr "Für Lithophanien ist ein einfaches logarithmisches Modell für Transparenz verfügbar. Bei Höhenprofilen entsprechen die Pixelwerte den Höhen linear."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
-msgctxt "@item:inlistbox"
-msgid "Linear"
-msgstr "Linear"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:172
-msgctxt "@item:inlistbox"
-msgid "Translucency"
-msgstr "Transparenz"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:171
-msgctxt "@info:tooltip"
-msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
-msgstr "Der Prozentsatz an Licht, der einen Druck von einer Dicke mit 1 Millimeter durchdringt. Senkt man diesen Wert, steigt der Kontrast in den dunkleren Bereichen, während der Kontrast in den helleren Bereichen des Bilds sinkt."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:177
-msgctxt "@action:label"
-msgid "1mm Transmittance (%)"
-msgstr "1 mm Durchlässigkeit (%)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:195
-msgctxt "@info:tooltip"
-msgid "The amount of smoothing to apply to the image."
-msgstr "Die Stärke der Glättung, die für das Bild angewendet wird."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:200
-msgctxt "@action:label"
-msgid "Smoothing"
-msgstr "Glättung"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
-msgctxt "@title"
-msgid "My Backups"
-msgstr "Meine Backups"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
-msgctxt "@empty_state"
-msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
-msgstr "Sie verfügen derzeit über keine Backups. Verwenden Sie die Schaltfläche ‚Jetzt Backup erstellen‘, um ein Backup zu erstellen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
-msgctxt "@backup_limit_info"
-msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
-msgstr "In der Vorschau-Phase sind Sie auf 5 sichtbare Backups beschränkt. Ein Backup entfernen, um ältere anzusehen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
-msgctxt "@description"
-msgid "Backup and synchronize your Cura settings."
-msgstr "Ihre Cura-Einstellungen sichern und synchronisieren."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
-msgctxt "@button"
-msgid "Want more?"
-msgstr "Möchten Sie mehr?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
-msgctxt "@button"
-msgid "Backup Now"
-msgstr "Jetzt Backup durchführen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
-msgctxt "@checkbox:description"
-msgid "Auto Backup"
-msgstr "Automatisches Backup"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
-msgctxt "@checkbox:description"
-msgid "Automatically create a backup each day that Cura is started."
-msgstr "An jedem Tag, an dem Cura gestartet wird, ein automatisches Backup erstellen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
-msgctxt "@backuplist:label"
-msgid "Cura Version"
-msgstr "Cura-Version"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
-msgctxt "@backuplist:label"
-msgid "Machines"
-msgstr "Maschinen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
-msgctxt "@backuplist:label"
-msgid "Materials"
-msgstr "Materialien"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
-msgctxt "@backuplist:label"
-msgid "Profiles"
-msgstr "Profile"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
-msgctxt "@backuplist:label"
-msgid "Plugins"
-msgstr "Plugins"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
-msgctxt "@button"
-msgid "Restore"
-msgstr "Wiederherstellen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
-msgctxt "@dialog:title"
-msgid "Delete Backup"
-msgstr "Backup löschen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
-msgctxt "@dialog:info"
-msgid "Are you sure you want to delete this backup? This cannot be undone."
-msgstr "Soll dieses Backup wirklich gelöscht werden? Der Vorgang kann nicht rückgängig gemacht werden."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
-msgctxt "@dialog:title"
-msgid "Restore Backup"
-msgstr "Backup wiederherstellen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
-msgctxt "@dialog:info"
-msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
-msgstr "Cura muss neu gestartet werden, um Ihre Datensicherung wiederherzustellen. Möchten Sie Cura jetzt schließen?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/main.qml:25
-msgctxt "@title:window"
-msgid "Cura Backups"
-msgstr "Cura-Backups"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:13
-msgctxt "@label:category menu label"
-msgid "Material"
-msgstr "Material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:54
-msgctxt "@label:category menu label"
-msgid "Favorites"
-msgstr "Favoriten"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:79
-msgctxt "@label:category menu label"
-msgid "Generic"
-msgstr "Generisch"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:13 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
-msgctxt "@title:menu menubar:toplevel"
-msgid "&File"
-msgstr "&Datei"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:41
-msgctxt "@title:menu menubar:file"
-msgid "&Save Project..."
-msgstr "&Projekt speichern ..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:74
-msgctxt "@title:menu menubar:file"
-msgid "&Export..."
-msgstr "&Exportieren..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:85
-msgctxt "@action:inmenu menubar:file"
-msgid "Export Selection..."
-msgstr "Auswahl exportieren..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Open &Recent"
-msgstr "&Zuletzt geöffnet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
-msgctxt "@label"
-msgid "Select configuration"
-msgstr "Konfiguration wählen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
-msgctxt "@label"
-msgid "Configurations"
-msgstr "Konfigurationen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
-msgctxt "@header"
-msgid "Configurations"
-msgstr "Konfigurationen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
-msgctxt "@header"
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
-msgctxt "@label"
-msgid "Printer"
-msgstr "Drucker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
-msgctxt "@label"
-msgid "Enabled"
-msgstr "Aktiviert"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
-msgctxt "@label"
-msgid "Material"
-msgstr "Material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
-msgctxt "@label"
-msgid "Use glue for better adhesion with this material combination."
-msgstr "Für diese Materialkombination Kleber für eine bessere Haftung verwenden."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
-msgctxt "@label"
-msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
-msgstr "Diese Konfigurationen sind nicht verfügbar, weil %1 nicht erkannt wird. Besuchen Sie bitte %2 für das Herunterladen des korrekten Materialprofils."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
-msgctxt "@label"
-msgid "Marketplace"
-msgstr "Marktplatz"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
-msgctxt "@label"
-msgid "Loading available configurations from the printer..."
-msgstr "Verfügbare Konfigurationen werden von diesem Drucker geladen..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
-msgctxt "@label"
-msgid "The configurations are not available because the printer is disconnected."
-msgstr "Die Konfigurationen sind nicht verfügbar, da der Drucker getrennt ist."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:12 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
-msgctxt "@title:menu menubar:toplevel"
-msgid "&View"
-msgstr "&Ansicht"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:19
-msgctxt "@action:inmenu menubar:view"
-msgid "&Camera position"
-msgstr "&Kameraposition"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:44
-msgctxt "@action:inmenu menubar:view"
-msgid "Camera view"
-msgstr "Kameraansicht"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:47
-msgctxt "@action:inmenu menubar:view"
-msgid "Perspective"
-msgstr "Ansicht"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:59
-msgctxt "@action:inmenu menubar:view"
-msgid "Orthographic"
-msgstr "Orthogonal"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:80
-msgctxt "@action:inmenu menubar:view"
-msgid "&Build plate"
-msgstr "&Druckplatte"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:25
-msgctxt "@label:category menu label"
-msgid "Network enabled printers"
-msgstr "Netzwerkfähige Drucker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:42
-msgctxt "@label:category menu label"
-msgid "Local printers"
-msgstr "Lokale Drucker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
-msgctxt "@action:inmenu"
-msgid "Visible Settings"
-msgstr "Sichtbare Einstellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
-msgctxt "@action:inmenu"
-msgid "Collapse All Categories"
-msgstr "Alle Kategorien schließen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
-msgctxt "@action:inmenu"
-msgid "Manage Setting Visibility..."
-msgstr "Sichtbarkeit einstellen verwalten..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:13 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Settings"
-msgstr "&Einstellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:15
-msgctxt "@title:menu menubar:settings"
-msgid "&Printer"
-msgstr "Dr&ucker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:29
-msgctxt "@title:menu"
-msgid "&Material"
-msgstr "&Material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:44
-msgctxt "@action:inmenu"
-msgid "Set as Active Extruder"
-msgstr "Als aktiven Extruder festlegen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:50
-msgctxt "@action:inmenu"
-msgid "Enable Extruder"
-msgstr "Extruder aktivieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:57
-msgctxt "@action:inmenu"
-msgid "Disable Extruder"
-msgstr "Extruder deaktivieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Save Project..."
-msgstr "Projekt speichern..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:27
-msgctxt "@label"
-msgid "Print Selected Model With:"
-msgid_plural "Print Selected Models With:"
-msgstr[0] "Ausgewähltes Modell drucken mit:"
-msgstr[1] "Ausgewählte Modelle drucken mit:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:116
-msgctxt "@title:window"
-msgid "Multiply Selected Model"
-msgid_plural "Multiply Selected Models"
-msgstr[0] "Ausgewähltes Modell multiplizieren"
-msgstr[1] "Ausgewählte Modelle multiplizieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:141
-msgctxt "@label"
-msgid "Number of Copies"
-msgstr "Anzahl Kopien"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Open File(s)..."
-msgstr "Datei(en) öffnen..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
-msgctxt "@label:header"
-msgid "Custom profiles"
-msgstr "Benutzerdefinierte Profile"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:564
-msgctxt "@action:button"
-msgid "Discard current changes"
-msgstr "Aktuelle Änderungen verwerfen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
-msgctxt "@label"
-msgid "Profile"
-msgstr "Profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
-msgctxt "@tooltip"
-msgid ""
-"Some setting/override values are different from the values stored in the profile.\n"
-"\n"
-"Click to open the profile manager."
-msgstr ""
-"Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n"
-"\n"
-"Klicken Sie, um den Profilmanager zu öffnen."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
-msgctxt "@label:Should be short"
-msgid "On"
-msgstr "Ein"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
-msgctxt "@label:Should be short"
-msgid "Off"
-msgstr "Aus"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
-msgctxt "@label"
-msgid "Experimental"
-msgstr "Experimentell"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
-msgctxt "@button"
-msgid "Recommended"
-msgstr "Empfohlen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
-msgctxt "@button"
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
-msgctxt "@label"
-msgid "Print settings"
-msgstr "Druckeinstellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
-msgctxt "@label shown when we load a Gcode file"
-msgid "Print setup disabled. G-code file can not be modified."
-msgstr "Druckeinrichtung ist deaktiviert. G-Code-Datei kann nicht geändert werden."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
-msgctxt "@label"
-msgid "Gradual infill"
-msgstr "Stufenweise Füllung"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
-msgctxt "@label"
-msgid "Gradual infill will gradually increase the amount of infill towards the top."
-msgstr "Die graduelle Füllung steigert die Menge der Füllung nach oben hin schrittweise."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:728
-msgctxt "@label"
-msgid "Profiles"
-msgstr "Profile"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
-msgctxt "@tooltip"
-msgid "You have modified some profile settings. If you want to change these go to custom mode."
-msgstr "Sie haben einige Profileinstellungen geändert. Wenn Sie diese ändern möchten, wechseln Sie in den Modus „Benutzerdefiniert“."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
-msgctxt "@label"
-msgid "Support"
-msgstr "Stützstruktur"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
-msgctxt "@label"
-msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
-msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
-msgctxt "@label"
-msgid "Adhesion"
-msgstr "Haftung"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
-msgctxt "@label"
-msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
-msgstr "Drucken eines Brim- oder Raft-Elements aktivieren. Es wird ein flacher Bereich rund um oder unter Ihrem Objekt hinzugefügt, das im Anschluss leicht abgeschnitten werden kann."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
-msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
-msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
-msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
-msgstr[0] "Es gibt kein %1-Profil für die Konfiguration in der Extruder %2. Es wird stattdessen der Standard verwendet"
-msgstr[1] "Es gibt kein %1-Profil für die Konfigurationen in den Extrudern %2. Es wird stattdessen der Standard verwendet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Widgets/ComboBox.qml:24
-msgctxt "@label"
-msgid "No items to select from"
-msgstr "Keine auswählbaren Einträge"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:140
-msgctxt "@label"
-msgid "Active print"
-msgstr "Aktiver Druck"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:148
-msgctxt "@label"
-msgid "Job Name"
-msgstr "Name des Auftrags"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:156
-msgctxt "@label"
-msgid "Printing Time"
-msgstr "Druckzeit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:164
-msgctxt "@label"
-msgid "Estimated time left"
-msgstr "Geschätzte verbleibende Zeit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
-msgctxt "@title:window"
-msgid "Discard or Keep changes"
-msgstr "Änderungen verwerfen oder übernehmen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
-msgctxt "@text:window, %1 is a profile name"
-msgid ""
-"You have customized some profile settings.\n"
-"Would you like to Keep these changed settings after switching profiles?\n"
-"Alternatively, you can discard the changes to load the defaults from '%1'."
-msgstr ""
-"Sie haben einige Profileinstellungen personalisiert.\n"
-"Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\n"
-"Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
-msgctxt "@title:column"
-msgid "Profile settings"
-msgstr "Profileinstellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
-msgctxt "@title:column"
-msgid "Current changes"
-msgstr "Aktuelle Änderungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:747
-msgctxt "@option:discardOrKeep"
-msgid "Always ask me this"
-msgstr "Stets nachfragen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
-msgctxt "@option:discardOrKeep"
-msgid "Discard and never ask again"
-msgstr "Verwerfen und zukünftig nicht mehr nachfragen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
-msgctxt "@option:discardOrKeep"
-msgid "Keep and never ask again"
-msgstr "Übernehmen und zukünftig nicht mehr nachfragen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
-msgctxt "@action:button"
-msgid "Discard changes"
-msgstr "Änderungen verwerfen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
-msgctxt "@action:button"
-msgid "Keep changes"
-msgstr "Änderungen speichern"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:15
-msgctxt "@title:window The argument is the application name."
-msgid "About %1"
-msgstr "Über %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:57
-msgctxt "@label"
-msgid "version: %1"
-msgstr "Version: %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:72
-msgctxt "@label"
-msgid "End-to-end solution for fused filament 3D printing."
-msgstr "Komplettlösung für den 3D-Druck mit geschmolzenem Filament."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:85
-msgctxt "@info:credit"
-msgid ""
-"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
-"Cura proudly uses the following open source projects:"
-msgstr ""
-"Cura wurde von Ultimaker B.V. in Zusammenarbeit mit der Community entwickelt.\n"
-"Cura verwendet mit Stolz die folgenden Open Source-Projekte:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:135
-msgctxt "@label"
-msgid "Graphical user interface"
-msgstr "Grafische Benutzerschnittstelle"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:136
-msgctxt "@label"
-msgid "Application framework"
-msgstr "Anwendungsrahmenwerk"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:137
-msgctxt "@label"
-msgid "G-code generator"
-msgstr "G-Code-Generator"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:138
-msgctxt "@label"
-msgid "Interprocess communication library"
-msgstr "Bibliothek Interprozess-Kommunikation"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:140
-msgctxt "@label"
-msgid "Programming language"
-msgstr "Programmiersprache"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:141
-msgctxt "@label"
-msgid "GUI framework"
-msgstr "GUI-Rahmenwerk"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:142
-msgctxt "@label"
-msgid "GUI framework bindings"
-msgstr "GUI-Rahmenwerk Einbindungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:143
-msgctxt "@label"
-msgid "C/C++ Binding library"
-msgstr "C/C++ Einbindungsbibliothek"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:144
-msgctxt "@label"
-msgid "Data interchange format"
-msgstr "Format Datenaustausch"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:145
-msgctxt "@label"
-msgid "Support library for scientific computing"
-msgstr "Support-Bibliothek für wissenschaftliche Berechnung"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:146
-msgctxt "@label"
-msgid "Support library for faster math"
-msgstr "Support-Bibliothek für schnelleres Rechnen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:147
-msgctxt "@label"
-msgid "Support library for handling STL files"
-msgstr "Support-Bibliothek für die Handhabung von STL-Dateien"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:148
-msgctxt "@label"
-msgid "Support library for handling planar objects"
-msgstr "Support-Bibliothek für die Handhabung von ebenen Objekten"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:149
-msgctxt "@label"
-msgid "Support library for handling triangular meshes"
-msgstr "Support-Bibliothek für die Handhabung von dreieckigen Netzen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:150
-msgctxt "@label"
-msgid "Support library for handling 3MF files"
-msgstr "Support-Bibliothek für die Handhabung von 3MF-Dateien"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:151
-msgctxt "@label"
-msgid "Support library for file metadata and streaming"
-msgstr "Support-Bibliothek für Datei-Metadaten und Streaming"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:152
-msgctxt "@label"
-msgid "Serial communication library"
-msgstr "Bibliothek für serielle Kommunikation"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:153
-msgctxt "@label"
-msgid "ZeroConf discovery library"
-msgstr "Bibliothek für ZeroConf-Erkennung"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:154
-msgctxt "@label"
-msgid "Polygon clipping library"
-msgstr "Bibliothek für Polygon-Beschneidung"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:155
-msgctxt "@Label"
-msgid "Static type checker for Python"
-msgstr "Statischer Prüfer für Python"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:157
-msgctxt "@Label"
-msgid "Root Certificates for validating SSL trustworthiness"
-msgstr "Root-Zertifikate zur Validierung der SSL-Vertrauenswürdigkeit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:158
-msgctxt "@Label"
-msgid "Python Error tracking library"
-msgstr "Python-Fehlerverfolgungs-Bibliothek"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:159
-msgctxt "@label"
-msgid "Polygon packing library, developed by Prusa Research"
-msgstr "Polygon-Packaging-Bibliothek, entwickelt von Prusa Research"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:160
-msgctxt "@label"
-msgid "Python bindings for libnest2d"
-msgstr "Python-Bindungen für libnest2d"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:161
-msgctxt "@label"
-msgid "Support library for system keyring access"
-msgstr "Unterstützungsbibliothek für den Zugriff auf den Systemschlüsselbund"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:162
-msgctxt "@label"
-msgid "Python extensions for Microsoft Windows"
-msgstr "Python-Erweiterungen für Microsoft Windows"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:163
-msgctxt "@label"
-msgid "Font"
-msgstr "Schriftart"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:164
-msgctxt "@label"
-msgid "SVG icons"
-msgstr "SVG-Symbole"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:165
-msgctxt "@label"
-msgid "Linux cross-distribution application deployment"
-msgstr "Distributionsunabhängiges Format für Linux-Anwendungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:627
-msgctxt "@title:window"
-msgid "Open file(s)"
-msgstr "Datei(en) öffnen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
msgctxt "@text:window"
-msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
-msgstr "Es wurden eine oder mehrere Projektdatei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine Projektdatei auf einmal öffnen. Es wird empfohlen, nur Modelle aus diesen Dateien zu importieren. Möchten Sie fortfahren?"
+msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
+msgstr "Ultimaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Nachfolgend ist ein Beispiel aller Daten, die geteilt werden:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
-msgctxt "@action:button"
-msgid "Import all as models"
-msgstr "Alle als Modelle importieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
-msgctxt "@title:window"
-msgid "Save Project"
-msgstr "Projekt speichern"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
-msgctxt "@action:label"
-msgid "Extruder %1"
-msgstr "Extruder %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
-msgctxt "@action:label"
-msgid "%1 & material"
-msgstr "%1 & Material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
-msgctxt "@action:label"
-msgid "Material"
-msgstr "Material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
-msgctxt "@action:label"
-msgid "Don't show project summary on save again"
-msgstr "Projektzusammenfassung beim Speichern nicht erneut anzeigen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
-msgctxt "@action:button"
-msgid "Save"
-msgstr "Speichern"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
-msgctxt "@title:window"
-msgid "Open project file"
-msgstr "Projektdatei öffnen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
msgctxt "@text:window"
-msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
-msgstr "Dies ist eine Cura-Projektdatei. Möchten Sie diese als Projekt öffnen oder die Modelle hieraus importieren?"
+msgid "I don't want to send anonymous data"
+msgstr "Ich möchte keine anonymen Daten senden"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
msgctxt "@text:window"
-msgid "Remember my choice"
-msgstr "Meine Auswahl merken"
+msgid "Allow sending anonymous data"
+msgstr "Senden von anonymen Daten erlauben"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
msgctxt "@action:button"
-msgid "Open as project"
-msgstr "Als Projekt öffnen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
-msgctxt "@action:button"
-msgid "Import models"
-msgstr "Modelle importieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/JobSpecs.qml:99
-msgctxt "@text Print job name"
-msgid "Untitled"
-msgstr "Unbenannt"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
-msgctxt "@label"
-msgid "Welcome to Ultimaker Cura"
-msgstr "Willkommen bei Ultimaker Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
-msgctxt "@text"
-msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
-msgstr ""
-"Befolgen Sie bitte diese Schritte für das Einrichten von\n"
-"Ultimaker Cura. Dies dauert nur wenige Sekunden."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
-msgctxt "@button"
-msgid "Get started"
-msgstr "Erste Schritte"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
-msgctxt "@label"
-msgid "Empty"
-msgstr "Leer"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
-msgctxt "@label"
-msgid "Help us to improve Ultimaker Cura"
-msgstr "Helfen Sie uns, Ultimaker Cura zu verbessern"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
-msgctxt "@text"
-msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
-msgstr "Ultimaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Dazu gehören:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
-msgctxt "@text"
-msgid "Machine types"
-msgstr "Gerätetypen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
-msgctxt "@text"
-msgid "Material usage"
-msgstr "Materialverbrauch"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
-msgctxt "@text"
-msgid "Number of slices"
-msgstr "Anzahl der Slices"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
-msgctxt "@text"
-msgid "Print settings"
-msgstr "Druckeinstellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
-msgctxt "@text"
-msgid "Data collected by Ultimaker Cura will not contain any personal information."
-msgstr "Die von Ultimaker Cura erfassten Daten enthalten keine personenbezogenen Daten."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
-msgctxt "@text"
-msgid "More information"
-msgstr "Mehr Informationen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
-msgctxt "@label"
-msgid "Add printer by IP address"
-msgstr "Drucker nach IP-Adresse hinzufügen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
-msgctxt "@text"
-msgid "Enter your printer's IP address."
-msgstr "Geben Sie die IP-Adresse Ihres Druckers ein."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
-msgctxt "@button"
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
-msgctxt "@label"
-msgid "Could not connect to device."
-msgstr "Verbindung mit Drucker nicht möglich."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
-msgctxt "@label"
-msgid "Can't connect to your Ultimaker printer?"
-msgstr "Sie können keine Verbindung zu Ihrem Ultimaker-Drucker herstellen?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
-msgctxt "@label"
-msgid "The printer at this address has not responded yet."
-msgstr "Der Drucker unter dieser Adresse hat noch nicht reagiert."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
-msgctxt "@label"
-msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
-msgstr "Dieser Drucker kann nicht hinzugefügt werden, weil es sich um einen unbekannten Drucker handelt oder er nicht im Host einer Gruppe enthalten ist."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
-msgctxt "@button"
msgid "Back"
msgstr "Zurück"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
+msgctxt "@label"
+msgid "Compatibility"
+msgstr "Kompatibilität"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
+msgctxt "@label:table_header"
+msgid "Machine"
+msgstr "Gerät"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
+msgctxt "@label:table_header"
+msgid "Build Plate"
+msgstr "Druckbett"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
+msgctxt "@label:table_header"
+msgid "Support"
+msgstr "Support"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
+msgctxt "@label:table_header"
+msgid "Quality"
+msgstr "Qualität"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
+msgctxt "@action:label"
+msgid "Technical Data Sheet"
+msgstr "Technisches Datenblatt"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
+msgctxt "@action:label"
+msgid "Safety Data Sheet"
+msgstr "Sicherheitsdatenblatt"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
+msgctxt "@action:label"
+msgid "Printing Guidelines"
+msgstr "Druckrichtlinien"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
+msgctxt "@action:label"
+msgid "Website"
+msgstr "Website"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
+msgctxt "@action:button"
+msgid "Installed"
+msgstr "Installiert"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to install or update"
+msgstr "Anmeldung für Installation oder Update erforderlich"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Buy material spools"
+msgstr "Materialspulen kaufen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
+msgctxt "@action:button"
+msgid "Update"
+msgstr "Aktualisierung"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
+msgctxt "@action:button"
+msgid "Updating"
+msgstr "Aktualisierung wird durchgeführt"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
+msgctxt "@action:button"
+msgid "Updated"
+msgstr "Aktualisiert"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
+msgctxt "@label"
+msgid "Premium"
+msgstr "Premium"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
+msgctxt "@info:tooltip"
+msgid "Go to Web Marketplace"
+msgstr "Zum Web Marketplace gehen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
+msgctxt "@label"
+msgid "Search materials"
+msgstr "Materialien suchen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
+msgctxt "@info"
+msgid "You will need to restart Cura before changes in packages have effect."
+msgstr "Cura muss neu gestartet werden, um die Änderungen der Pakete zu übernehmen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
+msgctxt "@info:button, %1 is the application name"
+msgid "Quit %1"
+msgstr "%1 beenden"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
+msgctxt "@title:tab"
+msgid "Plugins"
+msgstr "Plugins"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
+msgctxt "@title:tab"
+msgid "Materials"
+msgstr "Materialien"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
+msgctxt "@title:tab"
+msgid "Installed"
+msgstr "Installiert"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
+msgctxt "@label"
+msgid "Will install upon restarting"
+msgstr "Installiert nach Neustart"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to update"
+msgstr "Anmeldung für Update erforderlich"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Downgrade"
+msgstr "Downgraden"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Uninstall"
+msgstr "Deinstallieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
+msgctxt "@action:button"
+msgid "Install"
+msgstr "Installieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
+msgctxt "@title"
+msgid "Changes from your account"
+msgstr "Änderungen in deinem Konto"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
msgctxt "@button"
+msgid "Dismiss"
+msgstr "Verwerfen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178
+msgctxt "@button"
+msgid "Next"
+msgstr "Weiter"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
+msgctxt "@label"
+msgid "The following packages will be added:"
+msgstr "Die folgenden Pakete werden hinzugefügt:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
+msgctxt "@label"
+msgid "The following packages can not be installed because of an incompatible Cura version:"
+msgstr "Die folgenden Pakete können nicht hinzugefügt werden, weil die Cura-Version nicht kompatibel ist:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
+msgctxt "@title:window"
+msgid "Confirm uninstall"
+msgstr "Deinstallieren bestätigen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
+msgctxt "@text:window"
+msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
+msgstr "Sie sind dabei, Materialien und/oder Profile zu deinstallieren, die noch verwendet werden. Durch Bestätigen werden die folgenden Materialien/Profile auf ihre Standardeinstellungen zurückgesetzt."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
+msgctxt "@text:window"
+msgid "Materials"
+msgstr "Materialien"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
+msgctxt "@text:window"
+msgid "Profiles"
+msgstr "Profile"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
+msgctxt "@action:button"
+msgid "Confirm"
+msgstr "Bestätigen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
+msgctxt "@label"
+msgid "You need to accept the license to install the package"
+msgstr "Sie müssen die Lizenz akzeptieren, um das Paket zu installieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
+msgctxt "@label"
+msgid "Website"
+msgstr "Website"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
+msgctxt "@label"
+msgid "Email"
+msgstr "E-Mail"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
+msgctxt "@label"
+msgid "Version"
+msgstr "Version"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
+msgctxt "@label"
+msgid "Last updated"
+msgstr "Zuletzt aktualisiert"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
+msgctxt "@label"
+msgid "Brand"
+msgstr "Marke"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
+msgctxt "@label"
+msgid "Downloads"
+msgstr "Downloads"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Contributions"
+msgstr "Community-Beiträge"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Plugins"
+msgstr "Community-Plugins"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
+msgctxt "@label"
+msgid "Generic Materials"
+msgstr "Generische Materialien"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
+msgctxt "@info"
+msgid "Could not connect to the Cura Package database. Please check your connection."
+msgstr "Verbindung zur Cura Paket-Datenbank konnte nicht hergestellt werden. Bitte überprüfen Sie Ihre Verbindung."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
+msgctxt "@title:tab"
+msgid "Installed plugins"
+msgstr "Installierte Plugins"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
+msgctxt "@info"
+msgid "No plugin has been installed."
+msgstr "Es wurde kein Plugin installiert."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
+msgctxt "@title:tab"
+msgid "Installed materials"
+msgstr "Installierte Materialien"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
+msgctxt "@info"
+msgid "No material has been installed."
+msgstr "Es wurde kein Material installiert."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
+msgctxt "@title:tab"
+msgid "Bundled plugins"
+msgstr "Gebündelte Plugins"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
+msgctxt "@title:tab"
+msgid "Bundled materials"
+msgstr "Gebündelte Materialien"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
+msgctxt "@info"
+msgid "Fetching packages..."
+msgstr "Pakete werden abgeholt..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
+msgctxt "@description"
+msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
+msgstr "Bitte melden Sie sich an, um verifizierte Plugins und Materialien für Ultimaker Cura Enterprise zu erhalten"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
+msgctxt "@title"
+msgid "Marketplace"
+msgstr "Marktplatz"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
+msgctxt "@title"
+msgid "Build Plate Leveling"
+msgstr "Nivellierung der Druckplatte"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
+msgctxt "@label"
+msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
+msgstr "Um sicherzustellen, dass Ihre Drucke hervorragend werden, können Sie nun Ihre Druckplatte justieren. Wenn Sie auf „Gehe zur nächsten Position“ klicken, bewegt sich die Düse zu den verschiedenen Positionen, die justiert werden können."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
+msgctxt "@label"
+msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
+msgstr "Legen Sie für jede Position ein Blatt Papier unter die Düse und stellen Sie die Höhe der Druckplatte ein. Die Höhe der Druckplatte ist korrekt, wenn das Papier von der Spitze der Düse leicht berührt wird."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
+msgctxt "@action:button"
+msgid "Start Build Plate Leveling"
+msgstr "Nivellierung der Druckplatte starten"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
+msgctxt "@action:button"
+msgid "Move to Next Position"
+msgstr "Gehe zur nächsten Position"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
+msgctxt "@label"
+msgid "Please select any upgrades made to this Ultimaker Original"
+msgstr "Wählen Sie bitte alle Upgrades für dieses Ultimaker-Original"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
+msgctxt "@label"
+msgid "Heated Build Plate (official kit or self-built)"
+msgstr "Beheizte Druckplatte (offizielles Kit oder Eigenbau)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
+msgctxt "@title:window"
+msgid "Connect to Networked Printer"
+msgstr "Anschluss an vernetzten Drucker"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+msgctxt "@label"
+msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
+msgstr "Um direkt auf Ihrem Drucker über das Netzwerk zu drucken, muss der Drucker über ein Netzwerkkabel oder per WLAN mit dem Netzwerk verbunden sein. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie G-Code-Dateien auf einen USB-Stick kopieren und diesen am Drucker anschließen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+msgctxt "@label"
+msgid "Select your printer from the list below:"
+msgstr "Wählen Sie Ihren Drucker aus der folgenden Liste aus:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
+msgctxt "@action:button"
+msgid "Edit"
+msgstr "Bearbeiten"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
+msgctxt "@action:button"
+msgid "Remove"
+msgstr "Entfernen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
+msgctxt "@action:button"
+msgid "Refresh"
+msgstr "Aktualisieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
+msgctxt "@label"
+msgid "If your printer is not listed, read the network printing troubleshooting guide"
+msgstr "Wenn Ihr Drucker nicht aufgeführt ist, lesen Sie die Anleitung für Fehlerbehebung für Netzwerkdruck"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
+msgctxt "@label"
+msgid "Type"
+msgstr "Typ"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
+msgctxt "@label"
+msgid "Firmware version"
+msgstr "Firmware-Version"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
+msgctxt "@label"
+msgid "Address"
+msgstr "Adresse"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
+msgctxt "@label"
+msgid "This printer is not set up to host a group of printers."
+msgstr "Dieser Drucker ist nicht eingerichtet um eine Gruppe von Druckern anzusteuern."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
+msgctxt "@label"
+msgid "This printer is the host for a group of %1 printers."
+msgstr "Dieser Drucker steuert eine Gruppe von %1 Druckern an."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
+msgctxt "@label"
+msgid "The printer at this address has not yet responded."
+msgstr "Der Drucker unter dieser Adresse hat nicht reagiert."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
+msgctxt "@action:button"
msgid "Connect"
msgstr "Verbinden"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
+msgctxt "@title:window"
+msgid "Invalid IP address"
+msgstr "Ungültige IP-Adresse"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
+msgctxt "@text"
+msgid "Please enter a valid IP address."
+msgstr "Bitte eine gültige IP-Adresse eingeben."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
+msgctxt "@title:window"
+msgid "Printer Address"
+msgstr "Druckeradresse"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
msgctxt "@label"
-msgid "Add a printer"
-msgstr "Einen Drucker hinzufügen"
+msgid "Enter the IP address of your printer on the network."
+msgstr "Geben Sie die IP-Adresse Ihres Druckers in das Netzwerk ein."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
+msgctxt "@title:window"
+msgid "Configuration Changes"
+msgstr "Konfigurationsänderungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
+msgctxt "@action:button"
+msgid "Override"
+msgstr "Überschreiben"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
msgctxt "@label"
-msgid "Add a networked printer"
-msgstr "Einen vernetzten Drucker hinzufügen"
+msgid "The assigned printer, %1, requires the following configuration change:"
+msgid_plural "The assigned printer, %1, requires the following configuration changes:"
+msgstr[0] "Der zugewiesene Drucker %1 erfordert die folgende Konfigurationsänderung:"
+msgstr[1] "Der zugewiesene Drucker %1 erfordert die folgenden Konfigurationsänderungen:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
msgctxt "@label"
-msgid "Add a non-networked printer"
-msgstr "Einen unvernetzten Drucker hinzufügen"
+msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
+msgstr "Der Drucker %1 wurde zugewiesen, allerdings enthält der Auftrag eine unbekannte Materialkonfiguration."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
msgctxt "@label"
-msgid "What's New"
-msgstr "Neuheiten"
+msgid "Change material %1 from %2 to %3."
+msgstr "Material %1 von %2 auf %3 wechseln."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
msgctxt "@label"
-msgid "Add a Cloud printer"
-msgstr "Einen Cloud-Drucker hinzufügen"
+msgid "Load %3 as material %1 (This cannot be overridden)."
+msgstr "%3 als Material %1 laden (Dies kann nicht übergangen werden)."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
msgctxt "@label"
-msgid "Waiting for Cloud response"
-msgstr "Auf eine Antwort von der Cloud warten"
+msgid "Change print core %1 from %2 to %3."
+msgstr "Print Core %1 von %2 auf %3 wechseln."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
msgctxt "@label"
-msgid "No printers found in your account?"
-msgstr "Keine Drucker in Ihrem Konto gefunden?"
+msgid "Change build plate to %1 (This cannot be overridden)."
+msgstr "Druckplatte auf %1 wechseln (Dies kann nicht übergangen werden)."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
msgctxt "@label"
-msgid "The following printers in your account have been added in Cura:"
-msgstr "Folgende Drucker in Ihrem Konto wurden zu Cura hinzugefügt:"
+msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
+msgstr "Überschreiben verwendet die definierten Einstellungen mit der vorhandenen Druckerkonfiguration. Dies kann zu einem fehlgeschlagenen Druck führen."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
-msgctxt "@button"
-msgid "Add printer manually"
-msgstr "Drucker manuell hinzufügen"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
+msgctxt "@label"
+msgid "Glass"
+msgstr "Glas"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
+msgctxt "@label"
+msgid "Aluminum"
+msgstr "Aluminium"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
+msgctxt "@label"
+msgid "Move to top"
+msgstr "Vorziehen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
+msgctxt "@label"
+msgid "Delete"
+msgstr "Löschen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290
+msgctxt "@label"
+msgid "Resume"
+msgstr "Zurückkehren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
+msgctxt "@label"
+msgid "Pausing..."
+msgstr "Wird pausiert..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
+msgctxt "@label"
+msgid "Resuming..."
+msgstr "Wird fortgesetzt..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294
+msgctxt "@label"
+msgid "Pause"
+msgstr "Pausieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+msgctxt "@label"
+msgid "Aborting..."
+msgstr "Wird abgebrochen..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+msgctxt "@label"
+msgid "Abort"
+msgstr "Abbrechen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to move %1 to the top of the queue?"
+msgstr "Soll dieser %1 wirklich an den Anfang der Warteschlange vorgezogen werden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
+msgctxt "@window:title"
+msgid "Move print job to top"
+msgstr "Druckauftrag vorziehen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to delete %1?"
+msgstr "Soll %1 wirklich gelöscht werden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
+msgctxt "@window:title"
+msgid "Delete print job"
+msgstr "Druckauftrag löschen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to abort %1?"
+msgstr "Möchten Sie %1 wirklich abbrechen?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336
+msgctxt "@window:title"
+msgid "Abort print"
+msgstr "Drucken abbrechen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
+msgctxt "@label link to Connect and Cloud interfaces"
+msgid "Manage printer"
+msgstr "Drucker verwalten"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
+msgctxt "@info"
+msgid "Please update your printer's firmware to manage the queue remotely."
+msgstr "Damit Sie die Warteschlange aus der Ferne verwalten können, müssen Sie die Druckfirmware aktualisieren."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
+msgctxt "@label:status"
+msgid "Loading..."
+msgstr "Lädt..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
+msgctxt "@label:status"
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
+msgctxt "@label:status"
+msgid "Unreachable"
+msgstr "Nicht erreichbar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
+msgctxt "@label:status"
+msgid "Idle"
+msgstr "Leerlauf"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
+msgctxt "@label:status"
+msgid "Preparing..."
+msgstr "Vorbereitung..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
+msgctxt "@label:status"
+msgid "Printing"
+msgstr "Drucken"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
+msgctxt "@label"
+msgid "Untitled"
+msgstr "Unbenannt"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
+msgctxt "@label"
+msgid "Anonymous"
+msgstr "Anonym"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
+msgctxt "@label:status"
+msgid "Requires configuration changes"
+msgstr "Erfordert Konfigurationsänderungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
+msgctxt "@action:button"
+msgid "Details"
+msgstr "Details"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
+msgctxt "@label"
+msgid "Unavailable printer"
+msgstr "Drucker nicht verfügbar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
+msgctxt "@label"
+msgid "First available"
+msgstr "Zuerst verfügbar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
+msgctxt "@label:status"
+msgid "Aborted"
+msgstr "Abgebrochen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
+msgctxt "@label:status"
+msgid "Finished"
+msgstr "Beendet"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
+msgctxt "@label:status"
+msgid "Aborting..."
+msgstr "Wird abgebrochen..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
+msgctxt "@label:status"
+msgid "Pausing..."
+msgstr "Wird pausiert..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
+msgctxt "@label:status"
+msgid "Paused"
+msgstr "Pausiert"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
+msgctxt "@label:status"
+msgid "Resuming..."
+msgstr "Wird fortgesetzt..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
+msgctxt "@label:status"
+msgid "Action required"
+msgstr "Handlung erforderlich"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
+msgctxt "@label:status"
+msgid "Finishes %1 at %2"
+msgstr "Fertigstellung %1 auf %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
+msgctxt "@label"
+msgid "Queued"
+msgstr "In Warteschlange"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
+msgctxt "@label link to connect manager"
+msgid "Manage in browser"
+msgstr "Im Browser verwalten"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
+msgctxt "@label"
+msgid "There are no print jobs in the queue. Slice and send a job to add one."
+msgstr "Die Warteschlange enthält keine Druckaufträge. Slicen Sie einen Auftrag und schicken Sie ihn ab, um ihn zur Warteschlange hinzuzufügen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
+msgctxt "@label"
+msgid "Print jobs"
+msgstr "Druckaufträge"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
+msgctxt "@label"
+msgid "Total print time"
+msgstr "Druckdauer insgesamt"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
+msgctxt "@label"
+msgid "Waiting for"
+msgstr "Warten auf"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
+msgctxt "@title:window"
+msgid "Print over network"
+msgstr "Drucken über Netzwerk"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
+msgctxt "@action:button"
+msgid "Print"
+msgstr "Drucken"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
+msgctxt "@label"
+msgid "Printer selection"
+msgstr "Druckerauswahl"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
+msgctxt "@action:button"
+msgid "Sign in"
+msgstr "Anmelden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64
msgctxt "@label"
msgid "Sign in to the Ultimaker platform"
msgstr "Bei der Ultimaker-Plattform anmelden"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:124
-msgctxt "@text"
-msgid "Add material settings and plugins from the Marketplace"
-msgstr "Materialeinstellungen und Plug-ins aus dem Marketplace hinzufügen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:154
-msgctxt "@text"
-msgid "Backup and sync your material settings and plugins"
-msgstr "Materialeinstellungen und Plug-ins sichern und synchronisieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:184
-msgctxt "@text"
-msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
-msgstr "Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der Ultimaker Community"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:217
-msgctxt "@text"
-msgid "Create a free Ultimaker Account"
-msgstr "Kostenloses Ultimaker-Konto erstellen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:230
-msgctxt "@button"
-msgid "Skip"
-msgstr "Überspringen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
-msgctxt "@label"
-msgid "User Agreement"
-msgstr "Benutzervereinbarung"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
-msgctxt "@button"
-msgid "Decline and close"
-msgstr "Ablehnen und schließen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
-msgctxt "@label"
-msgid "Release Notes"
-msgstr "Versionshinweise"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
-msgctxt "@label"
-msgid "There is no printer found over your network."
-msgstr "Kein Drucker in Ihrem Netzwerk gefunden."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
-msgctxt "@label"
-msgid "Refresh"
-msgstr "Aktualisieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
-msgctxt "@label"
-msgid "Add printer by IP"
-msgstr "Drucker nach IP hinzufügen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
-msgctxt "@label"
-msgid "Add cloud printer"
-msgstr "Ein Cloud-Drucker hinzufügen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
-msgctxt "@label"
-msgid "Troubleshooting"
-msgstr "Störungen beheben"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
-msgctxt "@label"
-msgid "Manufacturer"
-msgstr "Hersteller"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
-msgctxt "@label"
-msgid "Profile author"
-msgstr "Autor des Profils"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
-msgctxt "@label"
-msgid "Printer name"
-msgstr "Druckername"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
-msgctxt "@text"
-msgid "Please name your printer"
-msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:81
-msgctxt "@label The argument is a timestamp"
-msgid "Last update: %1"
-msgstr "Letztes Update: %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:109
-msgctxt "@button"
-msgid "Ultimaker Account"
-msgstr "Ultimaker‑Konto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:125
-msgctxt "@button"
-msgid "Sign Out"
-msgstr "Abmelden"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42
msgctxt "@text"
msgid ""
"- Add material profiles and plug-ins from the Marketplace\n"
@@ -3965,935 +3217,1921 @@ msgstr ""
"- Materialprofile und Plug-ins sichern und synchronisieren\n"
"- Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der Ultimaker Community"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:62
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62
msgctxt "@button"
msgid "Create a free Ultimaker account"
msgstr "Kostenloses Ultimaker-Konto erstellen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/AccountWidget.qml:24
-msgctxt "@action:button"
-msgid "Sign in"
-msgstr "Anmelden"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:28
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28
msgctxt "@label"
msgid "Checking..."
msgstr "Überprüfung läuft ..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:35
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35
msgctxt "@label"
msgid "Account synced"
msgstr "Konto wurde synchronisiert"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42
msgctxt "@label"
msgid "Something went wrong..."
msgstr "Irgendetwas ist schief gelaufen ..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:96
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96
msgctxt "@button"
msgid "Install pending updates"
msgstr "Ausstehende Updates installieren"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:118
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118
msgctxt "@button"
msgid "Check for account updates"
msgstr "Nach Updates für das Konto suchen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectSelector.qml:59
-msgctxt "@label"
-msgid "Object list"
-msgstr "Objektliste"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81
+msgctxt "@label The argument is a timestamp"
+msgid "Last update: %1"
+msgstr "Letztes Update: %1"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:82
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109
+msgctxt "@button"
+msgid "Ultimaker Account"
+msgstr "Ultimaker‑Konto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125
+msgctxt "@button"
+msgid "Sign Out"
+msgstr "Abmelden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
+msgctxt "@label"
+msgid "No time estimation available"
+msgstr "Keine Zeitschätzung verfügbar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
+msgctxt "@label"
+msgid "No cost estimation available"
+msgstr "Keine Kostenschätzung verfügbar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
+msgctxt "@button"
+msgid "Preview"
+msgstr "Vorschau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
+msgctxt "@label"
+msgid "Time estimation"
+msgstr "Zeitschätzung"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
+msgctxt "@label"
+msgid "Material estimation"
+msgstr "Materialschätzung"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
+msgctxt "@label m for meter"
+msgid "%1m"
+msgstr "%1 m"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
+msgctxt "@label g for grams"
+msgid "%1g"
+msgstr "%1 g"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
+msgctxt "@label:PrintjobStatus"
+msgid "Slicing..."
+msgstr "Das Slicing läuft..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
+msgctxt "@label:PrintjobStatus"
+msgid "Unable to slice"
+msgstr "Slicing nicht möglich"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Processing"
+msgstr "Verarbeitung läuft"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Slice"
+msgstr "Slice"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
+msgctxt "@label"
+msgid "Start the slicing process"
+msgstr "Slicing-Vorgang starten"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
+msgctxt "@button"
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83
msgctxt "@action:inmenu"
msgid "Show Online Troubleshooting Guide"
msgstr "Online-Fehlerbehebung anzeigen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:89
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90
msgctxt "@action:inmenu"
msgid "Toggle Full Screen"
msgstr "Umschalten auf Vollbild-Modus"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98
msgctxt "@action:inmenu"
msgid "Exit Full Screen"
msgstr "Vollbildmodus beenden"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:104
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105
msgctxt "@action:inmenu menubar:edit"
msgid "&Undo"
msgstr "&Rückgängig machen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:114
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115
msgctxt "@action:inmenu menubar:edit"
msgid "&Redo"
msgstr "&Wiederholen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:124
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125
msgctxt "@action:inmenu menubar:file"
msgid "&Quit"
msgstr "&Beenden"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:132
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133
msgctxt "@action:inmenu menubar:view"
msgid "3D View"
msgstr "3D-Ansicht"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:139
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140
msgctxt "@action:inmenu menubar:view"
msgid "Front View"
msgstr "Vorderansicht"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:146
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147
msgctxt "@action:inmenu menubar:view"
msgid "Top View"
msgstr "Draufsicht"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:153
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154
+msgctxt "@action:inmenu menubar:view"
+msgid "Bottom View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161
msgctxt "@action:inmenu menubar:view"
msgid "Left Side View"
msgstr "Ansicht von links"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:160
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168
msgctxt "@action:inmenu menubar:view"
msgid "Right Side View"
msgstr "Ansicht von rechts"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:167
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175
msgctxt "@action:inmenu"
msgid "Configure Cura..."
msgstr "Cura konfigurieren..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:174
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182
msgctxt "@action:inmenu menubar:printer"
msgid "&Add Printer..."
msgstr "&Drucker hinzufügen..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:180
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188
msgctxt "@action:inmenu menubar:printer"
msgid "Manage Pr&inters..."
msgstr "Dr&ucker verwalten..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:187
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195
msgctxt "@action:inmenu"
msgid "Manage Materials..."
msgstr "Materialien werden verwaltet..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:195
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203
msgctxt "@action:inmenu"
msgid "Add more materials from Marketplace"
msgstr "Weiteres Material aus Marketplace hinzufügen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:202
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
msgctxt "@action:inmenu menubar:profile"
msgid "&Update profile with current settings/overrides"
msgstr "&Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:210
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218
msgctxt "@action:inmenu menubar:profile"
msgid "&Discard current changes"
msgstr "&Aktuelle Änderungen verwerfen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:222
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230
msgctxt "@action:inmenu menubar:profile"
msgid "&Create profile from current settings/overrides..."
msgstr "P&rofil von aktuellen Einstellungen/Überschreibungen erstellen..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:228
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236
msgctxt "@action:inmenu menubar:profile"
msgid "Manage Profiles..."
msgstr "Profile verwalten..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:236
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244
msgctxt "@action:inmenu menubar:help"
msgid "Show Online &Documentation"
msgstr "Online-&Dokumentation anzeigen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:244
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252
msgctxt "@action:inmenu menubar:help"
msgid "Report a &Bug"
msgstr "&Fehler melden"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:252
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260
msgctxt "@action:inmenu menubar:help"
msgid "What's New"
msgstr "Neuheiten"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:258
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266
msgctxt "@action:inmenu menubar:help"
msgid "About..."
msgstr "Über..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:265
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273
msgctxt "@action:inmenu menubar:edit"
msgid "Delete Selected"
msgstr "Ausgewählte löschen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:275
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283
msgctxt "@action:inmenu menubar:edit"
msgid "Center Selected"
msgstr "Ausgewählte zentrieren"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:284
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292
msgctxt "@action:inmenu menubar:edit"
msgid "Multiply Selected"
msgstr "Ausgewählte vervielfachen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:293
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301
msgctxt "@action:inmenu"
msgid "Delete Model"
msgstr "Modell löschen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:301
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309
msgctxt "@action:inmenu"
msgid "Ce&nter Model on Platform"
msgstr "Modell auf Druckplatte ze&ntrieren"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:307
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315
msgctxt "@action:inmenu menubar:edit"
msgid "&Group Models"
msgstr "Modelle &gruppieren"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:327
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335
msgctxt "@action:inmenu menubar:edit"
msgid "Ungroup Models"
msgstr "Gruppierung für Modelle aufheben"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:337
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345
msgctxt "@action:inmenu menubar:edit"
msgid "&Merge Models"
msgstr "Modelle &zusammenführen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:347
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355
msgctxt "@action:inmenu"
msgid "&Multiply Model..."
msgstr "Modell &multiplizieren..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:354
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362
msgctxt "@action:inmenu menubar:edit"
msgid "Select All Models"
msgstr "Alle Modelle wählen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:364
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372
msgctxt "@action:inmenu menubar:edit"
msgid "Clear Build Plate"
msgstr "Druckplatte reinigen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:374
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382
msgctxt "@action:inmenu menubar:file"
msgid "Reload All Models"
msgstr "Alle Modelle neu laden"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:383
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391
msgctxt "@action:inmenu menubar:edit"
msgid "Arrange All Models To All Build Plates"
msgstr "Alle Modelle an allen Druckplatten anordnen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:390
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398
msgctxt "@action:inmenu menubar:edit"
msgid "Arrange All Models"
msgstr "Alle Modelle anordnen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:398
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406
msgctxt "@action:inmenu menubar:edit"
msgid "Arrange Selection"
msgstr "Anordnung auswählen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:405
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413
msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Model Positions"
msgstr "Alle Modellpositionen zurücksetzen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:412
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420
msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Model Transformations"
msgstr "Alle Modelltransformationen zurücksetzen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:421
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429
msgctxt "@action:inmenu menubar:file"
msgid "&Open File(s)..."
msgstr "&Datei(en) öffnen..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:431
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439
msgctxt "@action:inmenu menubar:file"
msgid "&New Project..."
msgstr "&Neues Projekt..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:438
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446
msgctxt "@action:inmenu menubar:help"
msgid "Show Configuration Folder"
msgstr "Konfigurationsordner anzeigen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:445 /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:538
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550
msgctxt "@action:menu"
msgid "Configure setting visibility..."
msgstr "Sichtbarkeit einstellen wird konfiguriert..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:452
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460
msgctxt "@action:menu"
msgid "&Marketplace"
msgstr "&Marktplatz"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:61
-msgctxt "@info:status"
-msgid "Calculated"
-msgstr "Berechnet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:75
-msgctxt "@title:column"
-msgid "Setting"
-msgstr "Einstellung"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:82
-msgctxt "@title:column"
-msgid "Profile"
-msgstr "Profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:89
-msgctxt "@title:column"
-msgid "Current"
-msgstr "Aktuell"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:97
-msgctxt "@title:column"
-msgid "Unit"
-msgstr "Einheit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
-msgctxt "@title"
-msgid "Information"
-msgstr "Informationen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
-msgctxt "@title:window"
-msgid "Confirm Diameter Change"
-msgstr "Änderung Durchmesser bestätigen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
-msgctxt "@label (%1 is a number)"
-msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
-msgstr "Der neue Filament-Durchmesser wurde auf %1 mm eingestellt, was nicht kompatibel mit dem aktuellen Extruder ist. Möchten Sie fortfahren?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257
msgctxt "@label"
-msgid "Display Name"
-msgstr "Namen anzeigen"
+msgid "This package will be installed after restarting."
+msgstr "Dieses Paket wird nach einem Neustart installiert."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
-msgctxt "@label"
-msgid "Material Type"
-msgstr "Materialtyp"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
-msgctxt "@label"
-msgid "Color"
-msgstr "Farbe"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
-msgctxt "@label"
-msgid "Properties"
-msgstr "Eigenschaften"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
-msgctxt "@label"
-msgid "Density"
-msgstr "Dichte"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
-msgctxt "@label"
-msgid "Diameter"
-msgstr "Durchmesser"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
-msgctxt "@label"
-msgid "Filament Cost"
-msgstr "Filamentkosten"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
-msgctxt "@label"
-msgid "Filament weight"
-msgstr "Filamentgewicht"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
-msgctxt "@label"
-msgid "Filament length"
-msgstr "Filamentlänge"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
-msgctxt "@label"
-msgid "Cost per Meter"
-msgstr "Kosten pro Meter"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
-msgctxt "@label"
-msgid "This material is linked to %1 and shares some of its properties."
-msgstr "Dieses Material ist mit %1 verknüpft und teilt sich damit einige seiner Eigenschaften."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
-msgctxt "@label"
-msgid "Unlink Material"
-msgstr "Material trennen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
-msgctxt "@label"
-msgid "Description"
-msgstr "Beschreibung"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
-msgctxt "@label"
-msgid "Adhesion Information"
-msgstr "Haftungsinformationen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:40 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:84
-msgctxt "@action:button"
-msgid "Activate"
-msgstr "Aktivieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
-msgctxt "@action:button"
-msgid "Create"
-msgstr "Erstellen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
-msgctxt "@action:button"
-msgid "Duplicate"
-msgstr "Duplizieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:167
-msgctxt "@action:button"
-msgid "Import"
-msgstr "Import"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:179
-msgctxt "@action:button"
-msgid "Export"
-msgstr "Export"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
-msgctxt "@action:label"
-msgid "Printer"
-msgstr "Drucker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:277
-msgctxt "@title:window"
-msgid "Confirm Remove"
-msgstr "Entfernen bestätigen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:278
-msgctxt "@label (%1 is object name)"
-msgid "Are you sure you wish to remove %1? This cannot be undone!"
-msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
-msgctxt "@title:window"
-msgid "Import Material"
-msgstr "Material importieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
-msgctxt "@info:status Don't translate the XML tags or !"
-msgid "Could not import material %1: %2"
-msgstr "Material konnte nicht importiert werden %1: %2"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully imported material %1"
-msgstr "Material wurde erfolgreich importiert %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
-msgctxt "@title:window"
-msgid "Export Material"
-msgstr "Material exportieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
-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"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully exported material to %1"
-msgstr "Material erfolgreich nach %1 exportiert"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:16 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:455
-msgctxt "@title:tab"
-msgid "Printers"
-msgstr "Drucker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:63 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:152
-msgctxt "@action:button"
-msgid "Rename"
-msgstr "Umbenennen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:459
-msgctxt "@title:tab"
-msgid "Profiles"
-msgstr "Profile"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:104
-msgctxt "@label"
-msgid "Create"
-msgstr "Erstellen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:121
-msgctxt "@label"
-msgid "Duplicate"
-msgstr "Duplizieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:202
-msgctxt "@title:window"
-msgid "Create Profile"
-msgstr "Profil erstellen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:204
-msgctxt "@info"
-msgid "Please provide a name for this profile."
-msgstr "Geben Sie bitte einen Namen für dieses Profil an."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:263
-msgctxt "@title:window"
-msgid "Duplicate Profile"
-msgstr "Profil duplizieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:294
-msgctxt "@title:window"
-msgid "Rename Profile"
-msgstr "Profil umbenennen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:307
-msgctxt "@title:window"
-msgid "Import Profile"
-msgstr "Profil importieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:336
-msgctxt "@title:window"
-msgid "Export Profile"
-msgstr "Profil exportieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:399
-msgctxt "@label %1 is printer name"
-msgid "Printer: %1"
-msgstr "Drucker: %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:557
-msgctxt "@action:button"
-msgid "Update profile with current settings/overrides"
-msgstr "Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:583
-msgctxt "@action:label"
-msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
-msgstr "Dieses Profil verwendet die vom Drucker festgelegten Standardeinstellungen, deshalb sind in der folgenden Liste keine Einstellungen/Überschreibungen enthalten."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:591
-msgctxt "@action:label"
-msgid "Your current settings match the selected profile."
-msgstr "Ihre aktuellen Einstellungen stimmen mit dem gewählten Profil überein."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:609
-msgctxt "@title:tab"
-msgid "Global Settings"
-msgstr "Globale Einstellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
-msgctxt "@title:tab"
-msgid "Setting Visibility"
-msgstr "Sichtbarkeit einstellen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
-msgctxt "@label:textbox"
-msgid "Check all"
-msgstr "Alle prüfen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:15 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:450
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17
msgctxt "@title:tab"
msgid "General"
msgstr "Allgemein"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:137
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453
+msgctxt "@title:tab"
+msgid "Settings"
+msgstr "Einstellungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
+msgctxt "@title:tab"
+msgid "Printers"
+msgstr "Drucker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
+msgctxt "@title:tab"
+msgid "Profiles"
+msgstr "Profile"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576
+msgctxt "@title:window %1 is the application name"
+msgid "Closing %1"
+msgstr "%1 wird geschlossen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589
+msgctxt "@label %1 is the application name"
+msgid "Are you sure you want to exit %1?"
+msgstr "Möchten Sie %1 wirklich beenden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
+msgctxt "@title:window"
+msgid "Open file(s)"
+msgstr "Datei(en) öffnen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737
+msgctxt "@window:title"
+msgid "Install Package"
+msgstr "Paket installieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745
+msgctxt "@title:window"
+msgid "Open File(s)"
+msgstr "Datei(en) öffnen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748
+msgctxt "@text:window"
+msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
+msgstr "Es wurden eine oder mehrere G-Code-Datei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine G-Code-Datei auf einmal öffnen. Wenn Sie eine G-Code-Datei öffnen möchten wählen Sie bitte nur eine Datei."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857
+msgctxt "@title:window"
+msgid "Add Printer"
+msgstr "Drucker hinzufügen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865
+msgctxt "@title:window"
+msgid "What's New"
+msgstr "Neuheiten"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
+msgctxt "@title:window The argument is the application name."
+msgid "About %1"
+msgstr "Über %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
msgctxt "@label"
-msgid "Interface"
-msgstr "Schnittstelle"
+msgid "version: %1"
+msgstr "Version: %1"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:216
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
msgctxt "@label"
-msgid "Currency:"
-msgstr "Währung:"
+msgid "End-to-end solution for fused filament 3D printing."
+msgstr "Komplettlösung für den 3D-Druck mit geschmolzenem Filament."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:229
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
+msgctxt "@info:credit"
+msgid ""
+"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
+"Cura proudly uses the following open source projects:"
+msgstr ""
+"Cura wurde von Ultimaker B.V. in Zusammenarbeit mit der Community entwickelt.\n"
+"Cura verwendet mit Stolz die folgenden Open Source-Projekte:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
msgctxt "@label"
-msgid "Theme:"
-msgstr "Thema:"
+msgid "Graphical user interface"
+msgstr "Grafische Benutzerschnittstelle"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:285
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
msgctxt "@label"
-msgid "You will need to restart the application for these changes to have effect."
-msgstr "Die Anwendung muss neu gestartet werden, um die Änderungen zu übernehmen."
+msgid "Application framework"
+msgstr "Anwendungsrahmenwerk"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:302
-msgctxt "@info:tooltip"
-msgid "Slice automatically when changing settings."
-msgstr "Bei Änderung der Einstellungen automatisch schneiden."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:310
-msgctxt "@option:check"
-msgid "Slice automatically"
-msgstr "Automatisch schneiden"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:324
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
msgctxt "@label"
-msgid "Viewport behavior"
-msgstr "Viewport-Verhalten"
+msgid "G-code generator"
+msgstr "G-Code-Generator"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:332
-msgctxt "@info:tooltip"
-msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
-msgstr "Nicht gestützte Bereiche des Modells in rot hervorheben. Ohne Support werden diese Bereiche nicht korrekt gedruckt."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
+msgctxt "@label"
+msgid "Interprocess communication library"
+msgstr "Bibliothek Interprozess-Kommunikation"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:341
-msgctxt "@option:check"
-msgid "Display overhang"
-msgstr "Überhang anzeigen"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
+msgctxt "@label"
+msgid "Programming language"
+msgstr "Programmiersprache"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:351
-msgctxt "@info:tooltip"
-msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
-msgstr "Heben Sie fehlende oder fehlerhafte Flächen des Modells mithilfe von Warnhinweisen hervor. In den Werkzeugpfaden fehlen oft Teile der beabsichtigten Geometrie."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
+msgctxt "@label"
+msgid "GUI framework"
+msgstr "GUI-Rahmenwerk"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:360
-msgctxt "@option:check"
-msgid "Display model errors"
-msgstr "Modellfehler anzeigen"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
+msgctxt "@label"
+msgid "GUI framework bindings"
+msgstr "GUI-Rahmenwerk Einbindungen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:368
-msgctxt "@info:tooltip"
-msgid "Moves the camera so the model is in the center of the view when a model is selected"
-msgstr "Bewegt die Kamera, bis sich das Modell im Mittelpunkt der Ansicht befindet, wenn ein Modell ausgewählt wurde"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
+msgctxt "@label"
+msgid "C/C++ Binding library"
+msgstr "C/C++ Einbindungsbibliothek"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:373
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
+msgctxt "@label"
+msgid "Data interchange format"
+msgstr "Format Datenaustausch"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
+msgctxt "@label"
+msgid "Support library for scientific computing"
+msgstr "Support-Bibliothek für wissenschaftliche Berechnung"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
+msgctxt "@label"
+msgid "Support library for faster math"
+msgstr "Support-Bibliothek für schnelleres Rechnen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
+msgctxt "@label"
+msgid "Support library for handling STL files"
+msgstr "Support-Bibliothek für die Handhabung von STL-Dateien"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
+msgctxt "@label"
+msgid "Support library for handling planar objects"
+msgstr "Support-Bibliothek für die Handhabung von ebenen Objekten"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
+msgctxt "@label"
+msgid "Support library for handling triangular meshes"
+msgstr "Support-Bibliothek für die Handhabung von dreieckigen Netzen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
+msgctxt "@label"
+msgid "Support library for handling 3MF files"
+msgstr "Support-Bibliothek für die Handhabung von 3MF-Dateien"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
+msgctxt "@label"
+msgid "Support library for file metadata and streaming"
+msgstr "Support-Bibliothek für Datei-Metadaten und Streaming"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
+msgctxt "@label"
+msgid "Serial communication library"
+msgstr "Bibliothek für serielle Kommunikation"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
+msgctxt "@label"
+msgid "ZeroConf discovery library"
+msgstr "Bibliothek für ZeroConf-Erkennung"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
+msgctxt "@label"
+msgid "Polygon clipping library"
+msgstr "Bibliothek für Polygon-Beschneidung"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
+msgctxt "@Label"
+msgid "Static type checker for Python"
+msgstr "Statischer Prüfer für Python"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
+msgctxt "@Label"
+msgid "Root Certificates for validating SSL trustworthiness"
+msgstr "Root-Zertifikate zur Validierung der SSL-Vertrauenswürdigkeit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
+msgctxt "@Label"
+msgid "Python Error tracking library"
+msgstr "Python-Fehlerverfolgungs-Bibliothek"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
+msgctxt "@label"
+msgid "Polygon packing library, developed by Prusa Research"
+msgstr "Polygon-Packaging-Bibliothek, entwickelt von Prusa Research"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
+msgctxt "@label"
+msgid "Python bindings for libnest2d"
+msgstr "Python-Bindungen für libnest2d"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161
+msgctxt "@label"
+msgid "Support library for system keyring access"
+msgstr "Unterstützungsbibliothek für den Zugriff auf den Systemschlüsselbund"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162
+msgctxt "@label"
+msgid "Python extensions for Microsoft Windows"
+msgstr "Python-Erweiterungen für Microsoft Windows"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163
+msgctxt "@label"
+msgid "Font"
+msgstr "Schriftart"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164
+msgctxt "@label"
+msgid "SVG icons"
+msgstr "SVG-Symbole"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165
+msgctxt "@label"
+msgid "Linux cross-distribution application deployment"
+msgstr "Distributionsunabhängiges Format für Linux-Anwendungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
+msgctxt "@title:window"
+msgid "Open project file"
+msgstr "Projektdatei öffnen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
+msgctxt "@text:window"
+msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
+msgstr "Dies ist eine Cura-Projektdatei. Möchten Sie diese als Projekt öffnen oder die Modelle hieraus importieren?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
+msgctxt "@text:window"
+msgid "Remember my choice"
+msgstr "Meine Auswahl merken"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
msgctxt "@action:button"
-msgid "Center camera when item is selected"
-msgstr "Zentrieren Sie die Kamera, wenn das Element ausgewählt wurde"
+msgid "Open as project"
+msgstr "Als Projekt öffnen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:383
-msgctxt "@info:tooltip"
-msgid "Should the default zoom behavior of cura be inverted?"
-msgstr "Soll das standardmäßige Zoom-Verhalten von Cura umgekehrt werden?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:388
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
msgctxt "@action:button"
-msgid "Invert the direction of camera zoom."
-msgstr "Kehren Sie die Richtung des Kamera-Zooms um."
+msgid "Import models"
+msgstr "Modelle importieren"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid "Should zooming move in the direction of the mouse?"
-msgstr "Soll das Zoomen in Richtung der Maus erfolgen?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
+msgctxt "@title:window"
+msgid "Discard or Keep changes"
+msgstr "Änderungen verwerfen oder übernehmen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid "Zooming towards the mouse is not supported in the orthographic perspective."
-msgstr "Das Zoomen in Richtung der Maus wird in der orthografischen Perspektive nicht unterstützt."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
+msgctxt "@text:window, %1 is a profile name"
+msgid ""
+"You have customized some profile settings.\n"
+"Would you like to Keep these changed settings after switching profiles?\n"
+"Alternatively, you can discard the changes to load the defaults from '%1'."
+msgstr ""
+"Sie haben einige Profileinstellungen personalisiert.\n"
+"Möchten Sie diese geänderten Einstellungen nach einem Profilwechsel beibehalten?\n"
+"Sie können die Änderungen auch verwerfen, um die Standardeinstellungen von '%1' zu laden."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:409
-msgctxt "@action:button"
-msgid "Zoom toward mouse direction"
-msgstr "In Mausrichtung zoomen"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
+msgctxt "@title:column"
+msgid "Profile settings"
+msgstr "Profileinstellungen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:435
-msgctxt "@info:tooltip"
-msgid "Should models on the platform be moved so that they no longer intersect?"
-msgstr "Sollen Modelle auf der Plattform so verschoben werden, dass sie sich nicht länger überschneiden?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
+msgctxt "@title:column"
+msgid "Current changes"
+msgstr "Aktuelle Änderungen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:440
-msgctxt "@option:check"
-msgid "Ensure models are kept apart"
-msgstr "Stellen Sie sicher, dass die Modelle getrennt gehalten werden"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:449
-msgctxt "@info:tooltip"
-msgid "Should models on the platform be moved down to touch the build plate?"
-msgstr "Sollen Modelle auf der Plattform so nach unten verschoben werden, dass sie die Druckplatte berühren?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:454
-msgctxt "@option:check"
-msgid "Automatically drop models to the build plate"
-msgstr "Setzt Modelle automatisch auf der Druckplatte ab"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:466
-msgctxt "@info:tooltip"
-msgid "Show caution message in g-code reader."
-msgstr "Warnmeldung im G-Code-Reader anzeigen."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:475
-msgctxt "@option:check"
-msgid "Caution message in g-code reader"
-msgstr "Warnmeldung in G-Code-Reader"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:483
-msgctxt "@info:tooltip"
-msgid "Should layer be forced into compatibility mode?"
-msgstr "Soll die Schicht in den Kompatibilitätsmodus gezwungen werden?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:488
-msgctxt "@option:check"
-msgid "Force layer view compatibility mode (restart required)"
-msgstr "Schichtenansicht Kompatibilitätsmodus erzwingen (Neustart erforderlich)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:498
-msgctxt "@info:tooltip"
-msgid "Should Cura open at the location it was closed?"
-msgstr "Sollte Cura sich an der Stelle öffnen, an der das Programm geschlossen wurde?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:503
-msgctxt "@option:check"
-msgid "Restore window position on start"
-msgstr "Fensterposition beim Start wiederherstellen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:513
-msgctxt "@info:tooltip"
-msgid "What type of camera rendering should be used?"
-msgstr "Welches Kamera-Rendering sollte verwendet werden?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:520
-msgctxt "@window:text"
-msgid "Camera rendering:"
-msgstr "Kamera-Rendering:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:531
-msgid "Perspective"
-msgstr "Ansicht"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:532
-msgid "Orthographic"
-msgstr "Orthogonal"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:563
-msgctxt "@label"
-msgid "Opening and saving files"
-msgstr "Dateien öffnen und speichern"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:570
-msgctxt "@info:tooltip"
-msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
-msgstr "Sollten Dateien vom Desktop oder von externen Anwendungen in derselben Instanz von Cura geöffnet werden?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:575
-msgctxt "@option:check"
-msgid "Use a single instance of Cura"
-msgstr "Eine einzelne Instanz von Cura verwenden"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:585
-msgctxt "@info:tooltip"
-msgid "Should models be scaled to the build volume if they are too large?"
-msgstr "Sollen Modelle an das Erstellungsvolumen angepasst werden, wenn sie zu groß sind?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:590
-msgctxt "@option:check"
-msgid "Scale large models"
-msgstr "Große Modelle anpassen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:600
-msgctxt "@info:tooltip"
-msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
-msgstr "Ein Modell kann extrem klein erscheinen, wenn seine Maßeinheit z. B. in Metern anstelle von Millimetern angegeben ist. Sollen diese Modelle hoch skaliert werden?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:605
-msgctxt "@option:check"
-msgid "Scale extremely small models"
-msgstr "Extrem kleine Modelle skalieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:615
-msgctxt "@info:tooltip"
-msgid "Should models be selected after they are loaded?"
-msgstr "Sollten Modelle gewählt werden, nachdem sie geladen wurden?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:620
-msgctxt "@option:check"
-msgid "Select models when loaded"
-msgstr "Modelle wählen, nachdem sie geladen wurden"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:630
-msgctxt "@info:tooltip"
-msgid "Should a prefix based on the printer name be added to the print job name automatically?"
-msgstr "Soll ein Präfix anhand des Druckernamens automatisch zum Namen des Druckauftrags hinzugefügt werden?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:635
-msgctxt "@option:check"
-msgid "Add machine prefix to job name"
-msgstr "Geräte-Präfix zu Auftragsnamen hinzufügen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:645
-msgctxt "@info:tooltip"
-msgid "Should a summary be shown when saving a project file?"
-msgstr "Soll beim Speichern einer Projektdatei eine Zusammenfassung angezeigt werden?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:649
-msgctxt "@option:check"
-msgid "Show summary dialog when saving project"
-msgstr "Dialog Zusammenfassung beim Speichern eines Projekts anzeigen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:659
-msgctxt "@info:tooltip"
-msgid "Default behavior when opening a project file"
-msgstr "Standardverhalten beim Öffnen einer Projektdatei"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:667
-msgctxt "@window:text"
-msgid "Default behavior when opening a project file: "
-msgstr "Standardverhalten beim Öffnen einer Projektdatei: "
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:681
-msgctxt "@option:openProject"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733
+msgctxt "@option:discardOrKeep"
msgid "Always ask me this"
msgstr "Stets nachfragen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:682
-msgctxt "@option:openProject"
-msgid "Always open as a project"
-msgstr "Immer als Projekt öffnen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:683
-msgctxt "@option:openProject"
-msgid "Always import models"
-msgstr "Modelle immer importieren"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:719
-msgctxt "@info:tooltip"
-msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
-msgstr "Wenn Sie Änderungen für ein Profil vorgenommen haben und zu einem anderen Profil gewechselt sind, wird ein Dialog angezeigt, der hinterfragt, ob Sie Ihre Änderungen beibehalten möchten oder nicht; optional können Sie ein Standardverhalten wählen, sodass dieser Dialog nicht erneut angezeigt wird."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:733
-msgctxt "@window:text"
-msgid "Default behavior for changed setting values when switching to a different profile: "
-msgstr "Standardverhalten für geänderte Einstellungswerte beim Wechsel zu einem anderen Profil: "
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:748
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
msgctxt "@option:discardOrKeep"
-msgid "Always discard changed settings"
-msgstr "Geänderte Einstellungen immer verwerfen"
+msgid "Discard and never ask again"
+msgstr "Verwerfen und zukünftig nicht mehr nachfragen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:749
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
msgctxt "@option:discardOrKeep"
-msgid "Always transfer changed settings to new profile"
-msgstr "Geänderte Einstellungen immer auf neues Profil übertragen"
+msgid "Keep and never ask again"
+msgstr "Übernehmen und zukünftig nicht mehr nachfragen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:783
-msgctxt "@label"
-msgid "Privacy"
-msgstr "Privatsphäre"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:790
-msgctxt "@info:tooltip"
-msgid "Should Cura check for updates when the program is started?"
-msgstr "Soll Cura bei Programmstart nach Updates suchen?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:795
-msgctxt "@option:check"
-msgid "Check for updates on start"
-msgstr "Bei Start nach Updates suchen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:805
-msgctxt "@info:tooltip"
-msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
-msgstr "Sollen anonyme Daten über Ihren Druck an Ultimaker gesendet werden? Beachten Sie, dass keine Modelle, IP-Adressen oder andere personenbezogene Daten gesendet oder gespeichert werden."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:810
-msgctxt "@option:check"
-msgid "Send (anonymous) print information"
-msgstr "(Anonyme) Druckinformationen senden"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:819
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
msgctxt "@action:button"
-msgid "More information"
-msgstr "Mehr Informationen"
+msgid "Discard changes"
+msgstr "Änderungen verwerfen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewsSelector.qml:50
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
+msgctxt "@action:button"
+msgid "Keep changes"
+msgstr "Änderungen speichern"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
+msgctxt "@text:window"
+msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
+msgstr "Es wurden eine oder mehrere Projektdatei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine Projektdatei auf einmal öffnen. Es wird empfohlen, nur Modelle aus diesen Dateien zu importieren. Möchten Sie fortfahren?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
+msgctxt "@action:button"
+msgid "Import all as models"
+msgstr "Alle als Modelle importieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
+msgctxt "@title:window"
+msgid "Save Project"
+msgstr "Projekt speichern"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
+msgctxt "@action:label"
+msgid "Extruder %1"
+msgstr "Extruder %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
+msgctxt "@action:label"
+msgid "%1 & material"
+msgstr "%1 & Material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
+msgctxt "@action:label"
+msgid "Material"
+msgstr "Material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
+msgctxt "@action:label"
+msgid "Don't show project summary on save again"
+msgstr "Projektzusammenfassung beim Speichern nicht erneut anzeigen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
+msgctxt "@action:button"
+msgid "Save"
+msgstr "Speichern"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
+msgctxt "@label %1 is filled in with the name of an extruder"
+msgid "Print Selected Model with %1"
+msgid_plural "Print Selected Models with %1"
+msgstr[0] "Ausgewähltes Modell drucken mit %1"
+msgstr[1] "Ausgewählte Modelle drucken mit %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
+msgctxt "@text Print job name"
+msgid "Untitled"
+msgstr "Unbenannt"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
+msgctxt "@title:menu menubar:toplevel"
+msgid "&File"
+msgstr "&Datei"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Edit"
+msgstr "&Bearbeiten"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
+msgctxt "@title:menu menubar:toplevel"
+msgid "&View"
+msgstr "&Ansicht"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Settings"
+msgstr "&Einstellungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
+msgctxt "@title:menu menubar:toplevel"
+msgid "E&xtensions"
+msgstr "Er&weiterungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
+msgctxt "@title:menu menubar:toplevel"
+msgid "P&references"
+msgstr "&Konfiguration"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Help"
+msgstr "&Hilfe"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
+msgctxt "@title:window"
+msgid "New project"
+msgstr "Neues Projekt"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
+msgctxt "@info:question"
+msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
+msgstr "Möchten Sie wirklich ein neues Projekt beginnen? Damit werden das Druckbett und alle nicht gespeicherten Einstellungen gelöscht."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
+msgctxt "@action:button"
+msgid "Marketplace"
+msgstr "Marktplatz"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
+msgctxt "@header"
+msgid "Configurations"
+msgstr "Konfigurationen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
msgctxt "@label"
-msgid "View type"
-msgstr "Typ anzeigen"
+msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
+msgstr "Diese Konfigurationen sind nicht verfügbar, weil %1 nicht erkannt wird. Besuchen Sie bitte %2 für das Herunterladen des korrekten Materialprofils."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:119
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
+msgctxt "@label"
+msgid "Marketplace"
+msgstr "Marktplatz"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
+msgctxt "@label"
+msgid "Loading available configurations from the printer..."
+msgstr "Verfügbare Konfigurationen werden von diesem Drucker geladen..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
+msgctxt "@label"
+msgid "The configurations are not available because the printer is disconnected."
+msgstr "Die Konfigurationen sind nicht verfügbar, da der Drucker getrennt ist."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
+msgctxt "@label"
+msgid "Select configuration"
+msgstr "Konfiguration wählen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
+msgctxt "@label"
+msgid "Configurations"
+msgstr "Konfigurationen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
+msgctxt "@header"
+msgid "Custom"
+msgstr "Benutzerdefiniert"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
+msgctxt "@label"
+msgid "Printer"
+msgstr "Drucker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
+msgctxt "@label"
+msgid "Enabled"
+msgstr "Aktiviert"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
+msgctxt "@label"
+msgid "Material"
+msgstr "Material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407
+msgctxt "@label"
+msgid "Use glue for better adhesion with this material combination."
+msgstr "Für diese Materialkombination Kleber für eine bessere Haftung verwenden."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
+msgctxt "@label"
+msgid "Print Selected Model With:"
+msgid_plural "Print Selected Models With:"
+msgstr[0] "Ausgewähltes Modell drucken mit:"
+msgstr[1] "Ausgewählte Modelle drucken mit:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
+msgctxt "@title:window"
+msgid "Multiply Selected Model"
+msgid_plural "Multiply Selected Models"
+msgstr[0] "Ausgewähltes Modell multiplizieren"
+msgstr[1] "Ausgewählte Modelle multiplizieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
+msgctxt "@label"
+msgid "Number of Copies"
+msgstr "Anzahl Kopien"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41
+msgctxt "@title:menu menubar:file"
+msgid "&Save Project..."
+msgstr "&Projekt speichern ..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74
+msgctxt "@title:menu menubar:file"
+msgid "&Export..."
+msgstr "&Exportieren..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85
+msgctxt "@action:inmenu menubar:file"
+msgid "Export Selection..."
+msgstr "Auswahl exportieren..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
+msgctxt "@label:category menu label"
+msgid "Material"
+msgstr "Material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
+msgctxt "@label:category menu label"
+msgid "Favorites"
+msgstr "Favoriten"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
+msgctxt "@label:category menu label"
+msgid "Generic"
+msgstr "Generisch"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Open File(s)..."
+msgstr "Datei(en) öffnen..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
+msgctxt "@label:category menu label"
+msgid "Network enabled printers"
+msgstr "Netzwerkfähige Drucker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
+msgctxt "@label:category menu label"
+msgid "Local printers"
+msgstr "Lokale Drucker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Open &Recent"
+msgstr "&Zuletzt geöffnet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Save Project..."
+msgstr "Projekt speichern..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
+msgctxt "@title:menu menubar:settings"
+msgid "&Printer"
+msgstr "Dr&ucker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29
+msgctxt "@title:menu"
+msgid "&Material"
+msgstr "&Material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44
+msgctxt "@action:inmenu"
+msgid "Set as Active Extruder"
+msgstr "Als aktiven Extruder festlegen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50
+msgctxt "@action:inmenu"
+msgid "Enable Extruder"
+msgstr "Extruder aktivieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57
+msgctxt "@action:inmenu"
+msgid "Disable Extruder"
+msgstr "Extruder deaktivieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
+msgctxt "@action:inmenu"
+msgid "Visible Settings"
+msgstr "Sichtbare Einstellungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
+msgctxt "@action:inmenu"
+msgid "Collapse All Categories"
+msgstr "Alle Kategorien schließen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
+msgctxt "@action:inmenu"
+msgid "Manage Setting Visibility..."
+msgstr "Sichtbarkeit einstellen verwalten..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
+msgctxt "@action:inmenu menubar:view"
+msgid "&Camera position"
+msgstr "&Kameraposition"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45
+msgctxt "@action:inmenu menubar:view"
+msgid "Camera view"
+msgstr "Kameraansicht"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48
+msgctxt "@action:inmenu menubar:view"
+msgid "Perspective"
+msgstr "Ansicht"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60
+msgctxt "@action:inmenu menubar:view"
+msgid "Orthographic"
+msgstr "Orthogonal"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81
+msgctxt "@action:inmenu menubar:view"
+msgid "&Build plate"
+msgstr "&Druckplatte"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
msgctxt "@label:MonitorStatus"
msgid "Not connected to a printer"
msgstr "Nicht mit einem Drucker verbunden"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
msgctxt "@label:MonitorStatus"
msgid "Printer does not accept commands"
msgstr "Drucker nimmt keine Befehle an"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:133
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
msgctxt "@label:MonitorStatus"
msgid "In maintenance. Please check the printer"
msgstr "In Wartung. Den Drucker überprüfen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:144
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
msgctxt "@label:MonitorStatus"
msgid "Lost connection with the printer"
msgstr "Verbindung zum Drucker wurde unterbrochen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:146
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
msgctxt "@label:MonitorStatus"
msgid "Printing..."
msgstr "Es wird gedruckt..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:149
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
msgctxt "@label:MonitorStatus"
msgid "Paused"
msgstr "Pausiert"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:152
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
msgctxt "@label:MonitorStatus"
msgid "Preparing..."
msgstr "Vorbereitung läuft..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:154
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
msgctxt "@label:MonitorStatus"
msgid "Please remove the print"
msgstr "Bitte den Ausdruck entfernen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:326
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326
msgctxt "@label"
msgid "Abort Print"
msgstr "Drucken abbrechen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:338
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338
msgctxt "@label"
msgid "Are you sure you want to abort the print?"
msgstr "Soll das Drucken wirklich abgebrochen werden?"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:68
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114
+msgctxt "@label"
+msgid "Is printed as support."
+msgstr "Wird als Stückstruktur gedruckt."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117
+msgctxt "@label"
+msgid "Other models overlapping with this model are modified."
+msgstr "Andere Modelle, die sich mit diesem Modell überschneiden, werden angepasst."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120
+msgctxt "@label"
+msgid "Infill overlapping with this model is modified."
+msgstr "Überlappende Füllung wird bei diesem Modell angepasst."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123
+msgctxt "@label"
+msgid "Overlaps with this model are not supported."
+msgstr "Überlappungen mit diesem Modell werden nicht unterstützt."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130
+msgctxt "@label %1 is the number of settings it overrides."
+msgid "Overrides %1 setting."
+msgid_plural "Overrides %1 settings."
+msgstr[0] "Überschreibt %1-Einstellung."
+msgstr[1] "Überschreibt %1-Einstellungen."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
+msgctxt "@label"
+msgid "Object list"
+msgstr "Objektliste"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137
+msgctxt "@label"
+msgid "Interface"
+msgstr "Schnittstelle"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209
+msgctxt "@label"
+msgid "Currency:"
+msgstr "Währung:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222
+msgctxt "@label"
+msgid "Theme:"
+msgstr "Thema:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267
+msgctxt "@label"
+msgid "You will need to restart the application for these changes to have effect."
+msgstr "Die Anwendung muss neu gestartet werden, um die Änderungen zu übernehmen."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284
+msgctxt "@info:tooltip"
+msgid "Slice automatically when changing settings."
+msgstr "Bei Änderung der Einstellungen automatisch schneiden."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292
+msgctxt "@option:check"
+msgid "Slice automatically"
+msgstr "Automatisch schneiden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306
+msgctxt "@label"
+msgid "Viewport behavior"
+msgstr "Viewport-Verhalten"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314
+msgctxt "@info:tooltip"
+msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
+msgstr "Nicht gestützte Bereiche des Modells in rot hervorheben. Ohne Support werden diese Bereiche nicht korrekt gedruckt."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323
+msgctxt "@option:check"
+msgid "Display overhang"
+msgstr "Überhang anzeigen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333
+msgctxt "@info:tooltip"
+msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
+msgstr "Heben Sie fehlende oder fehlerhafte Flächen des Modells mithilfe von Warnhinweisen hervor. In den Werkzeugpfaden fehlen oft Teile der beabsichtigten Geometrie."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342
+msgctxt "@option:check"
+msgid "Display model errors"
+msgstr "Modellfehler anzeigen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350
+msgctxt "@info:tooltip"
+msgid "Moves the camera so the model is in the center of the view when a model is selected"
+msgstr "Bewegt die Kamera, bis sich das Modell im Mittelpunkt der Ansicht befindet, wenn ein Modell ausgewählt wurde"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355
+msgctxt "@action:button"
+msgid "Center camera when item is selected"
+msgstr "Zentrieren Sie die Kamera, wenn das Element ausgewählt wurde"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365
+msgctxt "@info:tooltip"
+msgid "Should the default zoom behavior of cura be inverted?"
+msgstr "Soll das standardmäßige Zoom-Verhalten von Cura umgekehrt werden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370
+msgctxt "@action:button"
+msgid "Invert the direction of camera zoom."
+msgstr "Kehren Sie die Richtung des Kamera-Zooms um."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid "Should zooming move in the direction of the mouse?"
+msgstr "Soll das Zoomen in Richtung der Maus erfolgen?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid "Zooming towards the mouse is not supported in the orthographic perspective."
+msgstr "Das Zoomen in Richtung der Maus wird in der orthografischen Perspektive nicht unterstützt."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391
+msgctxt "@action:button"
+msgid "Zoom toward mouse direction"
+msgstr "In Mausrichtung zoomen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417
+msgctxt "@info:tooltip"
+msgid "Should models on the platform be moved so that they no longer intersect?"
+msgstr "Sollen Modelle auf der Plattform so verschoben werden, dass sie sich nicht länger überschneiden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422
+msgctxt "@option:check"
+msgid "Ensure models are kept apart"
+msgstr "Stellen Sie sicher, dass die Modelle getrennt gehalten werden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431
+msgctxt "@info:tooltip"
+msgid "Should models on the platform be moved down to touch the build plate?"
+msgstr "Sollen Modelle auf der Plattform so nach unten verschoben werden, dass sie die Druckplatte berühren?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436
+msgctxt "@option:check"
+msgid "Automatically drop models to the build plate"
+msgstr "Setzt Modelle automatisch auf der Druckplatte ab"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448
+msgctxt "@info:tooltip"
+msgid "Show caution message in g-code reader."
+msgstr "Warnmeldung im G-Code-Reader anzeigen."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457
+msgctxt "@option:check"
+msgid "Caution message in g-code reader"
+msgstr "Warnmeldung in G-Code-Reader"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465
+msgctxt "@info:tooltip"
+msgid "Should layer be forced into compatibility mode?"
+msgstr "Soll die Schicht in den Kompatibilitätsmodus gezwungen werden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470
+msgctxt "@option:check"
+msgid "Force layer view compatibility mode (restart required)"
+msgstr "Schichtenansicht Kompatibilitätsmodus erzwingen (Neustart erforderlich)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480
+msgctxt "@info:tooltip"
+msgid "Should Cura open at the location it was closed?"
+msgstr "Sollte Cura sich an der Stelle öffnen, an der das Programm geschlossen wurde?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485
+msgctxt "@option:check"
+msgid "Restore window position on start"
+msgstr "Fensterposition beim Start wiederherstellen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495
+msgctxt "@info:tooltip"
+msgid "What type of camera rendering should be used?"
+msgstr "Welches Kamera-Rendering sollte verwendet werden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502
+msgctxt "@window:text"
+msgid "Camera rendering:"
+msgstr "Kamera-Rendering:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509
+msgid "Perspective"
+msgstr "Ansicht"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510
+msgid "Orthographic"
+msgstr "Orthogonal"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548
+msgctxt "@label"
+msgid "Opening and saving files"
+msgstr "Dateien öffnen und speichern"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555
+msgctxt "@info:tooltip"
+msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
+msgstr "Sollten Dateien vom Desktop oder von externen Anwendungen in derselben Instanz von Cura geöffnet werden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560
+msgctxt "@option:check"
+msgid "Use a single instance of Cura"
+msgstr "Eine einzelne Instanz von Cura verwenden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570
+msgctxt "@info:tooltip"
+msgid "Should models be scaled to the build volume if they are too large?"
+msgstr "Sollen Modelle an das Erstellungsvolumen angepasst werden, wenn sie zu groß sind?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
+msgctxt "@option:check"
+msgid "Scale large models"
+msgstr "Große Modelle anpassen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585
+msgctxt "@info:tooltip"
+msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
+msgstr "Ein Modell kann extrem klein erscheinen, wenn seine Maßeinheit z. B. in Metern anstelle von Millimetern angegeben ist. Sollen diese Modelle hoch skaliert werden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
+msgctxt "@option:check"
+msgid "Scale extremely small models"
+msgstr "Extrem kleine Modelle skalieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600
+msgctxt "@info:tooltip"
+msgid "Should models be selected after they are loaded?"
+msgstr "Sollten Modelle gewählt werden, nachdem sie geladen wurden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605
+msgctxt "@option:check"
+msgid "Select models when loaded"
+msgstr "Modelle wählen, nachdem sie geladen wurden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615
+msgctxt "@info:tooltip"
+msgid "Should a prefix based on the printer name be added to the print job name automatically?"
+msgstr "Soll ein Präfix anhand des Druckernamens automatisch zum Namen des Druckauftrags hinzugefügt werden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
+msgctxt "@option:check"
+msgid "Add machine prefix to job name"
+msgstr "Geräte-Präfix zu Auftragsnamen hinzufügen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630
+msgctxt "@info:tooltip"
+msgid "Should a summary be shown when saving a project file?"
+msgstr "Soll beim Speichern einer Projektdatei eine Zusammenfassung angezeigt werden?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634
+msgctxt "@option:check"
+msgid "Show summary dialog when saving project"
+msgstr "Dialog Zusammenfassung beim Speichern eines Projekts anzeigen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644
+msgctxt "@info:tooltip"
+msgid "Default behavior when opening a project file"
+msgstr "Standardverhalten beim Öffnen einer Projektdatei"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652
+msgctxt "@window:text"
+msgid "Default behavior when opening a project file: "
+msgstr "Standardverhalten beim Öffnen einer Projektdatei: "
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666
+msgctxt "@option:openProject"
+msgid "Always ask me this"
+msgstr "Stets nachfragen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667
+msgctxt "@option:openProject"
+msgid "Always open as a project"
+msgstr "Immer als Projekt öffnen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668
+msgctxt "@option:openProject"
+msgid "Always import models"
+msgstr "Modelle immer importieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705
+msgctxt "@info:tooltip"
+msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
+msgstr "Wenn Sie Änderungen für ein Profil vorgenommen haben und zu einem anderen Profil gewechselt sind, wird ein Dialog angezeigt, der hinterfragt, ob Sie Ihre Änderungen beibehalten möchten oder nicht; optional können Sie ein Standardverhalten wählen, sodass dieser Dialog nicht erneut angezeigt wird."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
+msgctxt "@label"
+msgid "Profiles"
+msgstr "Profile"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719
+msgctxt "@window:text"
+msgid "Default behavior for changed setting values when switching to a different profile: "
+msgstr "Standardverhalten für geänderte Einstellungswerte beim Wechsel zu einem anderen Profil: "
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734
+msgctxt "@option:discardOrKeep"
+msgid "Always discard changed settings"
+msgstr "Geänderte Einstellungen immer verwerfen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735
+msgctxt "@option:discardOrKeep"
+msgid "Always transfer changed settings to new profile"
+msgstr "Geänderte Einstellungen immer auf neues Profil übertragen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770
+msgctxt "@label"
+msgid "Privacy"
+msgstr "Privatsphäre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777
+msgctxt "@info:tooltip"
+msgid "Should Cura check for updates when the program is started?"
+msgstr "Soll Cura bei Programmstart nach Updates suchen?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782
+msgctxt "@option:check"
+msgid "Check for updates on start"
+msgstr "Bei Start nach Updates suchen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792
+msgctxt "@info:tooltip"
+msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
+msgstr "Sollen anonyme Daten über Ihren Druck an Ultimaker gesendet werden? Beachten Sie, dass keine Modelle, IP-Adressen oder andere personenbezogene Daten gesendet oder gespeichert werden."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797
+msgctxt "@option:check"
+msgid "Send (anonymous) print information"
+msgstr "(Anonyme) Druckinformationen senden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806
+msgctxt "@action:button"
+msgid "More information"
+msgstr "Mehr Informationen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
+msgctxt "@action:button"
+msgid "Activate"
+msgstr "Aktivieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
+msgctxt "@action:button"
+msgid "Rename"
+msgstr "Umbenennen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
+msgctxt "@action:button"
+msgid "Create"
+msgstr "Erstellen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
+msgctxt "@action:button"
+msgid "Duplicate"
+msgstr "Duplizieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
+msgctxt "@action:button"
+msgid "Import"
+msgstr "Import"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
+msgctxt "@action:button"
+msgid "Export"
+msgstr "Export"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199
+msgctxt "@action:button Sending materials to printers"
+msgid "Sync with Printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248
+msgctxt "@action:label"
+msgid "Printer"
+msgstr "Drucker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277
+msgctxt "@title:window"
+msgid "Confirm Remove"
+msgstr "Entfernen bestätigen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278
+msgctxt "@label (%1 is object name)"
+msgid "Are you sure you wish to remove %1? This cannot be undone!"
+msgstr "Möchten Sie %1 wirklich entfernen? Dies kann nicht rückgängig gemacht werden!"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337
+msgctxt "@title:window"
+msgid "Import Material"
+msgstr "Material importieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid "Could not import material %1: %2"
+msgstr "Material konnte nicht importiert werden %1: %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully imported material %1"
+msgstr "Material wurde erfolgreich importiert %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368
+msgctxt "@title:window"
+msgid "Export Material"
+msgstr "Material exportieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372
+msgctxt "@info:status Don't translate the XML tags and !"
+msgid "Failed to export material to %1: %2"
+msgstr "Exportieren des Materials nach %1: %2 schlug fehl"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully exported material to %1"
+msgstr "Material erfolgreich nach %1 exportiert"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388
+msgctxt "@title:window"
+msgid "Export All Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
+msgctxt "@title"
+msgid "Information"
+msgstr "Informationen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
+msgctxt "@title:window"
+msgid "Confirm Diameter Change"
+msgstr "Änderung Durchmesser bestätigen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
+msgctxt "@label (%1 is a number)"
+msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
+msgstr "Der neue Filament-Durchmesser wurde auf %1 mm eingestellt, was nicht kompatibel mit dem aktuellen Extruder ist. Möchten Sie fortfahren?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
+msgctxt "@label"
+msgid "Display Name"
+msgstr "Namen anzeigen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
+msgctxt "@label"
+msgid "Material Type"
+msgstr "Materialtyp"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
+msgctxt "@label"
+msgid "Color"
+msgstr "Farbe"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
+msgctxt "@label"
+msgid "Properties"
+msgstr "Eigenschaften"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
+msgctxt "@label"
+msgid "Density"
+msgstr "Dichte"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
+msgctxt "@label"
+msgid "Diameter"
+msgstr "Durchmesser"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
+msgctxt "@label"
+msgid "Filament Cost"
+msgstr "Filamentkosten"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
+msgctxt "@label"
+msgid "Filament weight"
+msgstr "Filamentgewicht"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
+msgctxt "@label"
+msgid "Filament length"
+msgstr "Filamentlänge"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
+msgctxt "@label"
+msgid "Cost per Meter"
+msgstr "Kosten pro Meter"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
+msgctxt "@label"
+msgid "This material is linked to %1 and shares some of its properties."
+msgstr "Dieses Material ist mit %1 verknüpft und teilt sich damit einige seiner Eigenschaften."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
+msgctxt "@label"
+msgid "Unlink Material"
+msgstr "Material trennen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
+msgctxt "@label"
+msgid "Description"
+msgstr "Beschreibung"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
+msgctxt "@label"
+msgid "Adhesion Information"
+msgstr "Haftungsinformationen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
+msgctxt "@label"
+msgid "Print settings"
+msgstr "Druckeinstellungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
+msgctxt "@label"
+msgid "Create"
+msgstr "Erstellen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
+msgctxt "@label"
+msgid "Duplicate"
+msgstr "Duplizieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
+msgctxt "@title:window"
+msgid "Create Profile"
+msgstr "Profil erstellen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
+msgctxt "@info"
+msgid "Please provide a name for this profile."
+msgstr "Geben Sie bitte einen Namen für dieses Profil an."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263
+msgctxt "@title:window"
+msgid "Duplicate Profile"
+msgstr "Profil duplizieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294
+msgctxt "@title:window"
+msgid "Rename Profile"
+msgstr "Profil umbenennen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307
+msgctxt "@title:window"
+msgid "Import Profile"
+msgstr "Profil importieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336
+msgctxt "@title:window"
+msgid "Export Profile"
+msgstr "Profil exportieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399
+msgctxt "@label %1 is printer name"
+msgid "Printer: %1"
+msgstr "Drucker: %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557
+msgctxt "@action:button"
+msgid "Update profile with current settings/overrides"
+msgstr "Profil mit aktuellen Einstellungen/Überschreibungen aktualisieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
+msgctxt "@action:button"
+msgid "Discard current changes"
+msgstr "Aktuelle Änderungen verwerfen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583
+msgctxt "@action:label"
+msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
+msgstr "Dieses Profil verwendet die vom Drucker festgelegten Standardeinstellungen, deshalb sind in der folgenden Liste keine Einstellungen/Überschreibungen enthalten."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591
+msgctxt "@action:label"
+msgid "Your current settings match the selected profile."
+msgstr "Ihre aktuellen Einstellungen stimmen mit dem gewählten Profil überein."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609
+msgctxt "@title:tab"
+msgid "Global Settings"
+msgstr "Globale Einstellungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
+msgctxt "@info:status"
+msgid "Calculated"
+msgstr "Berechnet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
+msgctxt "@title:column"
+msgid "Setting"
+msgstr "Einstellung"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
+msgctxt "@title:column"
+msgid "Profile"
+msgstr "Profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
+msgctxt "@title:column"
+msgid "Current"
+msgstr "Aktuell"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
+msgctxt "@title:column"
+msgid "Unit"
+msgstr "Einheit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16
+msgctxt "@title:tab"
+msgid "Setting Visibility"
+msgstr "Sichtbarkeit einstellen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48
msgctxt "@label:textbox"
-msgid "Search settings"
-msgstr "Einstellungen durchsuchen"
+msgid "Check all"
+msgstr "Alle prüfen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:456
-msgctxt "@action:menu"
-msgid "Copy value to all extruders"
-msgstr "Werte für alle Extruder kopieren"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+msgctxt "@label"
+msgid "Extruder"
+msgstr "Extruder"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:465
-msgctxt "@action:menu"
-msgid "Copy all changed values to all extruders"
-msgstr "Alle geänderten Werte für alle Extruder kopieren"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
+msgctxt "@tooltip"
+msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
+msgstr "Die Zieltemperatur des Hotend. Das Hotend wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Hotend-Heizung ausgeschaltet."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:502
-msgctxt "@action:menu"
-msgid "Hide this setting"
-msgstr "Diese Einstellung ausblenden"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
+msgctxt "@tooltip"
+msgid "The current temperature of this hotend."
+msgstr "Die aktuelle Temperatur dieses Hotends."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:515
-msgctxt "@action:menu"
-msgid "Don't show this setting"
-msgstr "Diese Einstellung ausblenden"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the hotend to."
+msgstr "Die Temperatur, auf die das Hotend vorgeheizt wird."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:519
-msgctxt "@action:menu"
-msgid "Keep this setting visible"
-msgstr "Diese Einstellung weiterhin anzeigen"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
+msgctxt "@button Cancel pre-heating"
+msgid "Cancel"
+msgstr "Abbrechen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingCategory.qml:200
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+msgctxt "@button"
+msgid "Pre-heat"
+msgstr "Vorheizen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
+msgctxt "@tooltip of pre-heat"
+msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
+msgstr "Heizen Sie das Hotend vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Hotend aufgeheizt ist, wenn Sie druckbereit sind."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
+msgctxt "@tooltip"
+msgid "The colour of the material in this extruder."
+msgstr "Die Farbe des Materials in diesem Extruder."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
+msgctxt "@tooltip"
+msgid "The material in this extruder."
+msgstr "Das Material in diesem Extruder."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
+msgctxt "@tooltip"
+msgid "The nozzle inserted in this extruder."
+msgstr "Die in diesem Extruder eingesetzte Düse."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+msgctxt "@label"
+msgid "Build plate"
+msgstr "Druckbett"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
+msgctxt "@tooltip"
+msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
+msgstr "Die Zieltemperatur des heizbaren Betts. Das Bett wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Bettheizung ausgeschaltet."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
+msgctxt "@tooltip"
+msgid "The current temperature of the heated bed."
+msgstr "Die aktuelle Temperatur des beheizten Betts."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the bed to."
+msgstr "Die Temperatur, auf die das Bett vorgeheizt wird."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
+msgctxt "@tooltip of pre-heat"
+msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
+msgstr "Heizen Sie das Bett vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Bett aufgeheizt ist, wenn Sie druckbereit sind."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+msgctxt "@label"
+msgid "Printer control"
+msgstr "Druckersteuerung"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+msgctxt "@label"
+msgid "Jog Position"
+msgstr "Tippposition"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+msgctxt "@label"
+msgid "X/Y"
+msgstr "X/Y"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
+msgctxt "@label"
+msgid "Z"
+msgstr "Z"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
+msgctxt "@label"
+msgid "Jog Distance"
+msgstr "Tippdistanz"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
+msgctxt "@label"
+msgid "Send G-code"
+msgstr "G-Code senden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
+msgctxt "@tooltip of G-code command input"
+msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
+msgstr "Einen benutzerdefinierten G-Code-Befehl an den verbundenen Drucker senden. „Eingabe“ drücken, um den Befehl zu senden."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
+msgctxt "@info:status"
+msgid "The printer is not connected."
+msgstr "Der Drucker ist nicht verbunden."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
+msgctxt "@status"
+msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
+msgstr "Der Cloud-Drucker ist offline. Bitte prüfen Sie, ob der Drucker eingeschaltet und mit dem Internet verbunden ist."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
+msgctxt "@status"
+msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
+msgstr "Der Drucker ist nicht mit Ihrem Konto verbunden. Bitte besuchen Sie die Ultimaker Digital Factory, um eine Verbindung herzustellen."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
+msgctxt "@status"
+msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
+msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte melden Sie sich an, um sich mit dem Cloud-Drucker zu verbinden."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
+msgctxt "@status"
+msgid "The cloud connection is currently unavailable. Please check your internet connection."
+msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte überprüfen Sie ihre Internetverbindung."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
+msgctxt "@button"
+msgid "Add printer"
+msgstr "Drucker hinzufügen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
+msgctxt "@button"
+msgid "Manage printers"
+msgstr "Drucker verwalten"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Connected printers"
+msgstr "Verbundene Drucker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Preset printers"
+msgstr "Voreingestellte Drucker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
+msgctxt "@label"
+msgid "Active print"
+msgstr "Aktiver Druck"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
+msgctxt "@label"
+msgid "Job Name"
+msgstr "Name des Auftrags"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
+msgctxt "@label"
+msgid "Printing Time"
+msgstr "Druckzeit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
+msgctxt "@label"
+msgid "Estimated time left"
+msgstr "Geschätzte verbleibende Zeit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
+msgctxt "@label"
+msgid "Profile"
+msgstr "Profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
+msgctxt "@tooltip"
+msgid ""
+"Some setting/override values are different from the values stored in the profile.\n"
+"\n"
+"Click to open the profile manager."
+msgstr ""
+"Einige Einstellungs-/Überschreibungswerte unterscheiden sich von den im Profil gespeicherten Werten.\n"
+"\n"
+"Klicken Sie, um den Profilmanager zu öffnen."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
+msgctxt "@label:header"
+msgid "Custom profiles"
+msgstr "Benutzerdefinierte Profile"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
+msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
+msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
+msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
+msgstr[0] "Es gibt kein %1-Profil für die Konfiguration in der Extruder %2. Es wird stattdessen der Standard verwendet"
+msgstr[1] "Es gibt kein %1-Profil für die Konfigurationen in den Extrudern %2. Es wird stattdessen der Standard verwendet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
+msgctxt "@label shown when we load a Gcode file"
+msgid "Print setup disabled. G-code file can not be modified."
+msgstr "Druckeinrichtung ist deaktiviert. G-Code-Datei kann nicht geändert werden."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
+msgctxt "@button"
+msgid "Recommended"
+msgstr "Empfohlen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
+msgctxt "@button"
+msgid "Custom"
+msgstr "Benutzerdefiniert"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
+msgctxt "@label:Should be short"
+msgid "On"
+msgstr "Ein"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
+msgctxt "@label:Should be short"
+msgid "Off"
+msgstr "Aus"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
+msgctxt "@label"
+msgid "Experimental"
+msgstr "Experimentell"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
+msgctxt "@label"
+msgid "Adhesion"
+msgstr "Haftung"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
+msgctxt "@label"
+msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
+msgstr "Drucken eines Brim- oder Raft-Elements aktivieren. Es wird ein flacher Bereich rund um oder unter Ihrem Objekt hinzugefügt, das im Anschluss leicht abgeschnitten werden kann."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
+msgctxt "@label"
+msgid "Gradual infill"
+msgstr "Stufenweise Füllung"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
+msgctxt "@label"
+msgid "Gradual infill will gradually increase the amount of infill towards the top."
+msgstr "Die graduelle Füllung steigert die Menge der Füllung nach oben hin schrittweise."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
+msgctxt "@tooltip"
+msgid "You have modified some profile settings. If you want to change these go to custom mode."
+msgstr "Sie haben einige Profileinstellungen geändert. Wenn Sie diese ändern möchten, wechseln Sie in den Modus „Benutzerdefiniert“."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
+msgctxt "@label"
+msgid "Support"
+msgstr "Stützstruktur"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
+msgctxt "@label"
+msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
+msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200
msgctxt "@label"
msgid ""
"Some hidden settings use values different from their normal calculated value.\n"
@@ -4904,32 +5142,32 @@ msgstr ""
"\n"
"Klicken Sie, um diese Einstellungen sichtbar zu machen."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
msgctxt "@label"
msgid "This setting is not used because all the settings that it influences are overridden."
msgstr "Diese Einstellung wird nicht verwendet, weil alle hierdurch beeinflussten Einstellungen aufgehoben werden."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:86
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
msgctxt "@label Header for list of settings."
msgid "Affects"
msgstr "Hat Einfluss auf"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:91
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
msgctxt "@label Header for list of settings."
msgid "Affected By"
msgstr "Wird beeinflusst von"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:187
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
msgctxt "@label"
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
msgstr "Diese Einstellung wird stets zwischen allen Extrudern geteilt. Eine Änderung ändert den Wert für alle Extruder."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
msgctxt "@label"
msgid "This setting is resolved from conflicting extruder-specific values:"
msgstr "Diese Einstellung wird durch gegensätzliche, extruderspezifische Werte gelöst:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:230
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
msgctxt "@label"
msgid ""
"This setting has a value that is different from the profile.\n"
@@ -4940,7 +5178,7 @@ msgstr ""
"\n"
"Klicken Sie, um den Wert des Profils wiederherzustellen."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
msgctxt "@label"
msgid ""
"This setting is normally calculated, but it currently has an absolute value set.\n"
@@ -4951,714 +5189,308 @@ msgstr ""
"\n"
"Klicken Sie, um den berechneten Wert wiederherzustellen."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68
+msgctxt "@label:textbox"
+msgid "Search settings"
+msgstr "Einstellungen durchsuchen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468
+msgctxt "@action:menu"
+msgid "Copy value to all extruders"
+msgstr "Werte für alle Extruder kopieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477
+msgctxt "@action:menu"
+msgid "Copy all changed values to all extruders"
+msgstr "Alle geänderten Werte für alle Extruder kopieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514
+msgctxt "@action:menu"
+msgid "Hide this setting"
+msgstr "Diese Einstellung ausblenden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527
+msgctxt "@action:menu"
+msgid "Don't show this setting"
+msgstr "Diese Einstellung ausblenden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531
+msgctxt "@action:menu"
+msgid "Keep this setting visible"
+msgstr "Diese Einstellung weiterhin anzeigen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
msgctxt "@info:tooltip"
msgid "3D View"
msgstr "3D-Ansicht"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
msgctxt "@info:tooltip"
msgid "Front View"
msgstr "Vorderansicht"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
msgctxt "@info:tooltip"
msgid "Top View"
msgstr "Draufsicht"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:66
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
msgctxt "@info:tooltip"
msgid "Left View"
msgstr "Ansicht von links"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
msgctxt "@info:tooltip"
msgid "Right View"
msgstr "Ansicht von rechts"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
msgctxt "@label"
-msgid "Extruder"
-msgstr "Extruder"
+msgid "View type"
+msgstr "Typ anzeigen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
-msgctxt "@tooltip"
-msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
-msgstr "Die Zieltemperatur des Hotend. Das Hotend wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Hotend-Heizung ausgeschaltet."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
+msgctxt "@label"
+msgid "Add a Cloud printer"
+msgstr "Einen Cloud-Drucker hinzufügen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
-msgctxt "@tooltip"
-msgid "The current temperature of this hotend."
-msgstr "Die aktuelle Temperatur dieses Hotends."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
+msgctxt "@label"
+msgid "Waiting for Cloud response"
+msgstr "Auf eine Antwort von der Cloud warten"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the hotend to."
-msgstr "Die Temperatur, auf die das Hotend vorgeheizt wird."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
+msgctxt "@label"
+msgid "No printers found in your account?"
+msgstr "Keine Drucker in Ihrem Konto gefunden?"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
-msgctxt "@button Cancel pre-heating"
-msgid "Cancel"
-msgstr "Abbrechen"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
+msgctxt "@label"
+msgid "The following printers in your account have been added in Cura:"
+msgstr "Folgende Drucker in Ihrem Konto wurden zu Cura hinzugefügt:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
msgctxt "@button"
-msgid "Pre-heat"
-msgstr "Vorheizen"
+msgid "Add printer manually"
+msgstr "Drucker manuell hinzufügen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
-msgctxt "@tooltip of pre-heat"
-msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
-msgstr "Heizen Sie das Hotend vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Hotend aufgeheizt ist, wenn Sie druckbereit sind."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
-msgctxt "@tooltip"
-msgid "The colour of the material in this extruder."
-msgstr "Die Farbe des Materials in diesem Extruder."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
-msgctxt "@tooltip"
-msgid "The material in this extruder."
-msgstr "Das Material in diesem Extruder."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
-msgctxt "@tooltip"
-msgid "The nozzle inserted in this extruder."
-msgstr "Die in diesem Extruder eingesetzte Düse."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
msgctxt "@label"
-msgid "Build plate"
-msgstr "Druckbett"
+msgid "Manufacturer"
+msgstr "Hersteller"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
-msgctxt "@tooltip"
-msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
-msgstr "Die Zieltemperatur des heizbaren Betts. Das Bett wird auf diese Temperatur aufgeheizt oder abgekühlt. Wenn der Wert 0 beträgt, wird die Bettheizung ausgeschaltet."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
-msgctxt "@tooltip"
-msgid "The current temperature of the heated bed."
-msgstr "Die aktuelle Temperatur des beheizten Betts."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the bed to."
-msgstr "Die Temperatur, auf die das Bett vorgeheizt wird."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
-msgctxt "@tooltip of pre-heat"
-msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
-msgstr "Heizen Sie das Bett vor Druckbeginn auf. Sie können Ihren Druck während des Aufheizens weiter anpassen und müssen nicht warten, bis das Bett aufgeheizt ist, wenn Sie druckbereit sind."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
msgctxt "@label"
-msgid "Printer control"
-msgstr "Druckersteuerung"
+msgid "Profile author"
+msgstr "Autor des Profils"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
msgctxt "@label"
-msgid "Jog Position"
-msgstr "Tippposition"
+msgid "Printer name"
+msgstr "Druckername"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
+msgctxt "@text"
+msgid "Please name your printer"
+msgstr "Bitte weisen Sie Ihrem Drucker einen Namen zu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
msgctxt "@label"
-msgid "X/Y"
-msgstr "X/Y"
+msgid "Add a printer"
+msgstr "Einen Drucker hinzufügen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
msgctxt "@label"
-msgid "Z"
-msgstr "Z"
+msgid "Add a networked printer"
+msgstr "Einen vernetzten Drucker hinzufügen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
msgctxt "@label"
-msgid "Jog Distance"
-msgstr "Tippdistanz"
+msgid "Add a non-networked printer"
+msgstr "Einen unvernetzten Drucker hinzufügen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
msgctxt "@label"
-msgid "Send G-code"
-msgstr "G-Code senden"
+msgid "There is no printer found over your network."
+msgstr "Kein Drucker in Ihrem Netzwerk gefunden."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
-msgctxt "@tooltip of G-code command input"
-msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
-msgstr "Einen benutzerdefinierten G-Code-Befehl an den verbundenen Drucker senden. „Eingabe“ drücken, um den Befehl zu senden."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
-msgctxt "@info:status"
-msgid "The printer is not connected."
-msgstr "Der Drucker ist nicht verbunden."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:114
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
msgctxt "@label"
-msgid "Is printed as support."
-msgstr "Wird als Stückstruktur gedruckt."
+msgid "Refresh"
+msgstr "Aktualisieren"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
msgctxt "@label"
-msgid "Other models overlapping with this model are modified."
-msgstr "Andere Modelle, die sich mit diesem Modell überschneiden, werden angepasst."
+msgid "Add printer by IP"
+msgstr "Drucker nach IP hinzufügen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:120
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
msgctxt "@label"
-msgid "Infill overlapping with this model is modified."
-msgstr "Überlappende Füllung wird bei diesem Modell angepasst."
+msgid "Add cloud printer"
+msgstr "Ein Cloud-Drucker hinzufügen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
msgctxt "@label"
-msgid "Overlaps with this model are not supported."
-msgstr "Überlappungen mit diesem Modell werden nicht unterstützt."
+msgid "Troubleshooting"
+msgstr "Störungen beheben"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:130
-msgctxt "@label %1 is the number of settings it overrides."
-msgid "Overrides %1 setting."
-msgid_plural "Overrides %1 settings."
-msgstr[0] "Überschreibt %1-Einstellung."
-msgstr[1] "Überschreibt %1-Einstellungen."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
-msgctxt "@action:button"
-msgid "Marketplace"
-msgstr "Marktplatz"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Edit"
-msgstr "&Bearbeiten"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
-msgctxt "@title:menu menubar:toplevel"
-msgid "E&xtensions"
-msgstr "Er&weiterungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
-msgctxt "@title:menu menubar:toplevel"
-msgid "P&references"
-msgstr "E&instellungen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Help"
-msgstr "&Hilfe"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
-msgctxt "@title:window"
-msgid "New project"
-msgstr "Neues Projekt"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
-msgctxt "@info:question"
-msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
-msgstr "Möchten Sie wirklich ein neues Projekt beginnen? Damit werden das Druckbett und alle nicht gespeicherten Einstellungen gelöscht."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:257
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
msgctxt "@label"
-msgid "This package will be installed after restarting."
-msgstr "Dieses Paket wird nach einem Neustart installiert."
+msgid "Add printer by IP address"
+msgstr "Drucker nach IP-Adresse hinzufügen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:453
-msgctxt "@title:tab"
-msgid "Settings"
-msgstr "Einstellungen"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
+msgctxt "@text"
+msgid "Enter your printer's IP address."
+msgstr "Geben Sie die IP-Adresse Ihres Druckers ein."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:576
-msgctxt "@title:window %1 is the application name"
-msgid "Closing %1"
-msgstr "%1 wird geschlossen"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
+msgctxt "@button"
+msgid "Add"
+msgstr "Hinzufügen"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:577 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:589
-msgctxt "@label %1 is the application name"
-msgid "Are you sure you want to exit %1?"
-msgstr "Möchten Sie %1 wirklich beenden?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
+msgctxt "@label"
+msgid "Could not connect to device."
+msgstr "Verbindung mit Drucker nicht möglich."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:737
-msgctxt "@window:title"
-msgid "Install Package"
-msgstr "Paket installieren"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
+msgctxt "@label"
+msgid "Can't connect to your Ultimaker printer?"
+msgstr "Sie können keine Verbindung zu Ihrem Ultimaker-Drucker herstellen?"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:745
-msgctxt "@title:window"
-msgid "Open File(s)"
-msgstr "Datei(en) öffnen"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
+msgctxt "@label"
+msgid "The printer at this address has not responded yet."
+msgstr "Der Drucker unter dieser Adresse hat noch nicht reagiert."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:748
-msgctxt "@text:window"
-msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
-msgstr "Es wurden eine oder mehrere G-Code-Datei(en) innerhalb der von Ihnen gewählten Dateien gefunden. Sie können nur eine G-Code-Datei auf einmal öffnen. Wenn Sie eine G-Code-Datei öffnen möchten wählen Sie bitte nur eine Datei."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
+msgctxt "@label"
+msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
+msgstr "Dieser Drucker kann nicht hinzugefügt werden, weil es sich um einen unbekannten Drucker handelt oder er nicht im Host einer Gruppe enthalten ist."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:857
-msgctxt "@title:window"
-msgid "Add Printer"
-msgstr "Drucker hinzufügen"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
+msgctxt "@button"
+msgid "Back"
+msgstr "Zurück"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:865
-msgctxt "@title:window"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
+msgctxt "@button"
+msgid "Connect"
+msgstr "Verbinden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
+msgctxt "@label"
+msgid "Release Notes"
+msgstr "Versionshinweise"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124
+msgctxt "@text"
+msgid "Add material settings and plugins from the Marketplace"
+msgstr "Materialeinstellungen und Plug-ins aus dem Marketplace hinzufügen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154
+msgctxt "@text"
+msgid "Backup and sync your material settings and plugins"
+msgstr "Materialeinstellungen und Plug-ins sichern und synchronisieren"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184
+msgctxt "@text"
+msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
+msgstr "Ideenaustausch mit und Hilfe von mehr als 48.000 Benutzern in der Ultimaker Community"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217
+msgctxt "@text"
+msgid "Create a free Ultimaker Account"
+msgstr "Kostenloses Ultimaker-Konto erstellen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230
+msgctxt "@button"
+msgid "Skip"
+msgstr "Überspringen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
+msgctxt "@label"
+msgid "Help us to improve Ultimaker Cura"
+msgstr "Helfen Sie uns, Ultimaker Cura zu verbessern"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
+msgctxt "@text"
+msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
+msgstr "Ultimaker Cura erfasst anonyme Daten, um die Druckqualität und Benutzererfahrung zu steigern. Dazu gehören:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
+msgctxt "@text"
+msgid "Machine types"
+msgstr "Gerätetypen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
+msgctxt "@text"
+msgid "Material usage"
+msgstr "Materialverbrauch"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
+msgctxt "@text"
+msgid "Number of slices"
+msgstr "Anzahl der Slices"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
+msgctxt "@text"
+msgid "Print settings"
+msgstr "Druckeinstellungen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
+msgctxt "@text"
+msgid "Data collected by Ultimaker Cura will not contain any personal information."
+msgstr "Die von Ultimaker Cura erfassten Daten enthalten keine personenbezogenen Daten."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
+msgctxt "@text"
+msgid "More information"
+msgstr "Mehr Informationen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
+msgctxt "@label"
+msgid "Empty"
+msgstr "Leer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
+msgctxt "@label"
+msgid "User Agreement"
+msgstr "Benutzervereinbarung"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
+msgctxt "@button"
+msgid "Decline and close"
+msgstr "Ablehnen und schließen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
+msgctxt "@label"
+msgid "Welcome to Ultimaker Cura"
+msgstr "Willkommen bei Ultimaker Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
+msgctxt "@text"
+msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
+msgstr ""
+"Befolgen Sie bitte diese Schritte für das Einrichten von\n"
+"Ultimaker Cura. Dies dauert nur wenige Sekunden."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
+msgctxt "@button"
+msgid "Get started"
+msgstr "Erste Schritte"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
+msgctxt "@label"
msgid "What's New"
msgstr "Neuheiten"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
-msgctxt "@status"
-msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
-msgstr "Der Cloud-Drucker ist offline. Bitte prüfen Sie, ob der Drucker eingeschaltet und mit dem Internet verbunden ist."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
-msgctxt "@status"
-msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
-msgstr "Der Drucker ist nicht mit Ihrem Konto verbunden. Bitte besuchen Sie die Ultimaker Digital Factory, um eine Verbindung herzustellen."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
-msgctxt "@status"
-msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
-msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte melden Sie sich an, um sich mit dem Cloud-Drucker zu verbinden."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
-msgctxt "@status"
-msgid "The cloud connection is currently unavailable. Please check your internet connection."
-msgstr "Die Cloud-Verbindung ist aktuell nicht verfügbar. Bitte überprüfen Sie ihre Internetverbindung."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
-msgctxt "@button"
-msgid "Add printer"
-msgstr "Drucker hinzufügen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
-msgctxt "@button"
-msgid "Manage printers"
-msgstr "Drucker verwalten"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24
msgctxt "@label"
-msgid "Connected printers"
-msgstr "Verbundene Drucker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
-msgctxt "@label"
-msgid "Preset printers"
-msgstr "Voreingestellte Drucker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ExtruderButton.qml:16
-msgctxt "@label %1 is filled in with the name of an extruder"
-msgid "Print Selected Model with %1"
-msgid_plural "Print Selected Models with %1"
-msgstr[0] "Ausgewähltes Modell drucken mit %1"
-msgstr[1] "Ausgewählte Modelle drucken mit %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
-msgctxt "@label"
-msgid "Time estimation"
-msgstr "Zeitschätzung"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
-msgctxt "@label"
-msgid "Material estimation"
-msgstr "Materialschätzung"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
-msgctxt "@label m for meter"
-msgid "%1m"
-msgstr "%1 m"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
-msgctxt "@label g for grams"
-msgid "%1g"
-msgstr "%1 g"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
-msgctxt "@label:PrintjobStatus"
-msgid "Slicing..."
-msgstr "Das Slicing läuft..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
-msgctxt "@label:PrintjobStatus"
-msgid "Unable to slice"
-msgstr "Slicing nicht möglich"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Processing"
-msgstr "Verarbeitung läuft"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Slice"
-msgstr "Slice"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
-msgctxt "@label"
-msgid "Start the slicing process"
-msgstr "Slicing-Vorgang starten"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
-msgctxt "@button"
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
-msgctxt "@label"
-msgid "No time estimation available"
-msgstr "Keine Zeitschätzung verfügbar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
-msgctxt "@label"
-msgid "No cost estimation available"
-msgstr "Keine Kostenschätzung verfügbar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
-msgctxt "@button"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: RemovableDriveOutputDevice/plugin.json
-msgctxt "description"
-msgid "Provides removable drive hotplugging and writing support."
-msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben."
-
-#: RemovableDriveOutputDevice/plugin.json
-msgctxt "name"
-msgid "Removable Drive Output Device Plugin"
-msgstr "Ausgabegerät-Plugin für Wechseldatenträger"
-
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
-msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0."
-
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.5 to 4.0"
-msgstr "Upgrade von Version 3.5 auf 4.0"
-
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
-msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7."
-
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.6.2 to 4.7"
-msgstr "Upgrade von Version 4.6.2 auf 4.7"
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
-msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4."
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.2 to 2.4"
-msgstr "Upgrade von Version 2.2 auf 2.4"
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
-msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3."
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.2 to 4.3"
-msgstr "Upgrade von Version 4.2 auf 4.3"
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
-msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2."
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.6.0 to 4.6.2"
-msgstr "Upgrade von Version 4.6.0 auf 4.6.2"
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
-msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1."
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.0 to 3.1"
-msgstr "Upgrade von Version 3.0 auf 3.1"
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
-msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1."
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.0 to 4.1"
-msgstr "Upgrade von Version 4.0 auf 4.1"
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
-msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7."
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.6 to 2.7"
-msgstr "Upgrade von Version 2.6 auf 2.7"
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
-msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6."
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.5 to 2.6"
-msgstr "Upgrade von Version 2.5 auf 2.6"
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
-msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2."
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.1 to 4.2"
-msgstr "Upgrade von Version 4.1 auf 4.2"
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
-msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2."
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.1 to 2.2"
-msgstr "Upgrade von Version 2.1 auf 2.2"
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
-msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3."
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.2 to 3.3"
-msgstr "Upgrade von Version 3.2 auf 3.3"
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
-msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6."
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.5 to 4.6"
-msgstr "Upgrade von Version 4.5 auf 4.6"
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
-msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5."
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.4 to 4.5"
-msgstr "Upgrade von Version 4.4 auf 4.5"
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
-msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8."
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.7 to 4.8"
-msgstr "Upgrade von Version 4.7 auf 4.8"
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
-msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4."
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.3 to 3.4"
-msgstr "Upgrade von Version 3.3 auf 3.4"
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
-msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4."
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.3 to 4.4"
-msgstr "Upgrade von Version 4.3 auf 4.4"
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
-msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5."
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.4 to 3.5"
-msgstr "Upgrade von Version 3.4 auf 3.5"
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
-msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0."
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.7 to 3.0"
-msgstr "Upgrade von Version 2.7 auf 3.0"
-
-#: AMFReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading AMF files."
-msgstr "Ermöglicht das Lesen von AMF-Dateien."
-
-#: AMFReader/plugin.json
-msgctxt "name"
-msgid "AMF Reader"
-msgstr "AMF-Reader"
-
-#: GCodeProfileReader/plugin.json
-msgctxt "description"
-msgid "Provides support for importing profiles from g-code files."
-msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien."
-
-#: GCodeProfileReader/plugin.json
-msgctxt "name"
-msgid "G-code Profile Reader"
-msgstr "G-Code-Profil-Reader"
-
-#: FirmwareUpdater/plugin.json
-msgctxt "description"
-msgid "Provides a machine actions for updating firmware."
-msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware."
-
-#: FirmwareUpdater/plugin.json
-msgctxt "name"
-msgid "Firmware Updater"
-msgstr "Firmware-Aktualisierungsfunktion"
-
-#: X3DReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading X3D files."
-msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien."
-
-#: X3DReader/plugin.json
-msgctxt "name"
-msgid "X3D Reader"
-msgstr "X3D-Reader"
-
-#: Toolbox/plugin.json
-msgctxt "description"
-msgid "Find, manage and install new Cura packages."
-msgstr "Neue Cura Pakete finden, verwalten und installieren."
-
-#: Toolbox/plugin.json
-msgctxt "name"
-msgid "Toolbox"
-msgstr "Toolbox"
-
-#: PerObjectSettingsTool/plugin.json
-msgctxt "description"
-msgid "Provides the Per Model Settings."
-msgstr "Ermöglicht die Einstellungen pro Objekt."
-
-#: PerObjectSettingsTool/plugin.json
-msgctxt "name"
-msgid "Per Model Settings Tool"
-msgstr "Werkzeug „Einstellungen pro Objekt“"
-
-#: PostProcessingPlugin/plugin.json
-msgctxt "description"
-msgid "Extension that allows for user created scripts for post processing"
-msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden"
-
-#: PostProcessingPlugin/plugin.json
-msgctxt "name"
-msgid "Post Processing"
-msgstr "Nachbearbeitung"
-
-#: CuraEngineBackend/plugin.json
-msgctxt "description"
-msgid "Provides the link to the CuraEngine slicing backend."
-msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her."
-
-#: CuraEngineBackend/plugin.json
-msgctxt "name"
-msgid "CuraEngine Backend"
-msgstr "CuraEngine Backend"
-
-#: USBPrinting/plugin.json
-msgctxt "description"
-msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
-msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren."
-
-#: USBPrinting/plugin.json
-msgctxt "name"
-msgid "USB printing"
-msgstr "USB-Drucken"
-
-#: CuraProfileWriter/plugin.json
-msgctxt "description"
-msgid "Provides support for exporting Cura profiles."
-msgstr "Ermöglicht das Exportieren von Cura-Profilen."
-
-#: CuraProfileWriter/plugin.json
-msgctxt "name"
-msgid "Cura Profile Writer"
-msgstr "Cura-Profil-Writer"
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "description"
-msgid "Manages network connections to Ultimaker networked printers."
-msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern."
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "name"
-msgid "Ultimaker Network Connection"
-msgstr "Ultimaker-Netzwerkverbindung"
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "description"
-msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
-msgstr "Ermöglicht Maschinenabläufe für Ultimaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)"
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "name"
-msgid "Ultimaker machine actions"
-msgstr "Ultimaker-Maschinenabläufe"
-
-#: 3MFReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading 3MF files."
-msgstr "Ermöglicht das Lesen von 3MF-Dateien."
-
-#: 3MFReader/plugin.json
-msgctxt "name"
-msgid "3MF Reader"
-msgstr "3MF-Reader"
-
-#: GCodeGzWriter/plugin.json
-msgctxt "description"
-msgid "Writes g-code to a compressed archive."
-msgstr "G-Code wird in ein komprimiertes Archiv geschrieben."
-
-#: GCodeGzWriter/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Writer"
-msgstr "Writer für komprimierten G-Code"
-
-#: GCodeGzReader/plugin.json
-msgctxt "description"
-msgid "Reads g-code from a compressed archive."
-msgstr "Liest G-Code-Format aus einem komprimierten Archiv."
-
-#: GCodeGzReader/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Reader"
-msgstr "Reader für komprimierten G-Code"
+msgid "No items to select from"
+msgstr "Keine auswählbaren Einträge"
#: ModelChecker/plugin.json
msgctxt "description"
@@ -5670,105 +5502,15 @@ msgctxt "name"
msgid "Model Checker"
msgstr "Modell-Prüfer"
-#: FirmwareUpdateChecker/plugin.json
+#: 3MFReader/plugin.json
msgctxt "description"
-msgid "Checks for firmware updates."
-msgstr "Nach Firmware-Updates suchen."
+msgid "Provides support for reading 3MF files."
+msgstr "Ermöglicht das Lesen von 3MF-Dateien."
-#: FirmwareUpdateChecker/plugin.json
+#: 3MFReader/plugin.json
msgctxt "name"
-msgid "Firmware Update Checker"
-msgstr "Firmware-Update-Prüfer"
-
-#: GCodeReader/plugin.json
-msgctxt "description"
-msgid "Allows loading and displaying G-code files."
-msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien."
-
-#: GCodeReader/plugin.json
-msgctxt "name"
-msgid "G-code Reader"
-msgstr "G-Code-Reader"
-
-#: SupportEraser/plugin.json
-msgctxt "description"
-msgid "Creates an eraser mesh to block the printing of support in certain places"
-msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren"
-
-#: SupportEraser/plugin.json
-msgctxt "name"
-msgid "Support Eraser"
-msgstr "Stützstruktur-Radierer"
-
-#: TrimeshReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading model files."
-msgstr "Unterstützt das Lesen von Modelldateien."
-
-#: TrimeshReader/plugin.json
-msgctxt "name"
-msgid "Trimesh Reader"
-msgstr "Trimesh Reader"
-
-#: SentryLogger/plugin.json
-msgctxt "description"
-msgid "Logs certain events so that they can be used by the crash reporter"
-msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können"
-
-#: SentryLogger/plugin.json
-msgctxt "name"
-msgid "Sentry Logger"
-msgstr "Sentry-Protokolleinrichtung"
-
-#: UFPReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading Ultimaker Format Packages."
-msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages."
-
-#: UFPReader/plugin.json
-msgctxt "name"
-msgid "UFP Reader"
-msgstr "UFP-Reader"
-
-#: LegacyProfileReader/plugin.json
-msgctxt "description"
-msgid "Provides support for importing profiles from legacy Cura versions."
-msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura."
-
-#: LegacyProfileReader/plugin.json
-msgctxt "name"
-msgid "Legacy Cura Profile Reader"
-msgstr "Cura-Vorgängerprofil-Reader"
-
-#: PrepareStage/plugin.json
-msgctxt "description"
-msgid "Provides a prepare stage in Cura."
-msgstr "Bietet eine Vorbereitungsstufe in Cura."
-
-#: PrepareStage/plugin.json
-msgctxt "name"
-msgid "Prepare Stage"
-msgstr "Vorbereitungsstufe"
-
-#: MonitorStage/plugin.json
-msgctxt "description"
-msgid "Provides a monitor stage in Cura."
-msgstr "Bietet eine Überwachungsstufe in Cura."
-
-#: MonitorStage/plugin.json
-msgctxt "name"
-msgid "Monitor Stage"
-msgstr "Überwachungsstufe"
-
-#: XRayView/plugin.json
-msgctxt "description"
-msgid "Provides the X-Ray view."
-msgstr "Stellt die Röntgen-Ansicht bereit."
-
-#: XRayView/plugin.json
-msgctxt "name"
-msgid "X-Ray View"
-msgstr "Röntgen-Ansicht"
+msgid "3MF Reader"
+msgstr "3MF-Reader"
#: 3MFWriter/plugin.json
msgctxt "description"
@@ -5780,65 +5522,35 @@ msgctxt "name"
msgid "3MF Writer"
msgstr "3MF-Writer"
-#: SliceInfoPlugin/plugin.json
+#: AMFReader/plugin.json
msgctxt "description"
-msgid "Submits anonymous slice info. Can be disabled through preferences."
-msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden."
+msgid "Provides support for reading AMF files."
+msgstr "Ermöglicht das Lesen von AMF-Dateien."
-#: SliceInfoPlugin/plugin.json
+#: AMFReader/plugin.json
msgctxt "name"
-msgid "Slice info"
-msgstr "Slice-Informationen"
+msgid "AMF Reader"
+msgstr "AMF-Reader"
-#: PreviewStage/plugin.json
+#: CuraDrive/plugin.json
msgctxt "description"
-msgid "Provides a preview stage in Cura."
-msgstr "Bietet eine Vorschaustufe in Cura."
+msgid "Backup and restore your configuration."
+msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration."
-#: PreviewStage/plugin.json
+#: CuraDrive/plugin.json
msgctxt "name"
-msgid "Preview Stage"
-msgstr "Vorschaustufe"
+msgid "Cura Backups"
+msgstr "Cura-Backups"
-#: SimulationView/plugin.json
+#: CuraEngineBackend/plugin.json
msgctxt "description"
-msgid "Provides the Simulation view."
-msgstr "Ermöglicht die Simulationsansicht."
+msgid "Provides the link to the CuraEngine slicing backend."
+msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her."
-#: SimulationView/plugin.json
+#: CuraEngineBackend/plugin.json
msgctxt "name"
-msgid "Simulation View"
-msgstr "Simulationsansicht"
-
-#: MachineSettingsAction/plugin.json
-msgctxt "description"
-msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
-msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)"
-
-#: MachineSettingsAction/plugin.json
-msgctxt "name"
-msgid "Machine Settings Action"
-msgstr "Beschreibung Geräteeinstellungen"
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "description"
-msgid "Provides capabilities to read and write XML-based material profiles."
-msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben."
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "name"
-msgid "Material Profiles"
-msgstr "Materialprofile"
-
-#: SolidView/plugin.json
-msgctxt "description"
-msgid "Provides a normal solid mesh view."
-msgstr "Bietet eine normale, solide Netzansicht."
-
-#: SolidView/plugin.json
-msgctxt "name"
-msgid "Solid View"
-msgstr "Solide Ansicht"
+msgid "CuraEngine Backend"
+msgstr "CuraEngine Backend"
#: CuraProfileReader/plugin.json
msgctxt "description"
@@ -5850,15 +5562,85 @@ msgctxt "name"
msgid "Cura Profile Reader"
msgstr "Cura-Profil-Reader"
-#: UFPWriter/plugin.json
+#: CuraProfileWriter/plugin.json
msgctxt "description"
-msgid "Provides support for writing Ultimaker Format Packages."
-msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages."
+msgid "Provides support for exporting Cura profiles."
+msgstr "Ermöglicht das Exportieren von Cura-Profilen."
-#: UFPWriter/plugin.json
+#: CuraProfileWriter/plugin.json
msgctxt "name"
-msgid "UFP Writer"
-msgstr "UFP-Writer"
+msgid "Cura Profile Writer"
+msgstr "Cura-Profil-Writer"
+
+#: DigitalLibrary/plugin.json
+msgctxt "description"
+msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
+msgstr ""
+
+#: DigitalLibrary/plugin.json
+msgctxt "name"
+msgid "Ultimaker Digital Library"
+msgstr ""
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "description"
+msgid "Checks for firmware updates."
+msgstr "Nach Firmware-Updates suchen."
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "name"
+msgid "Firmware Update Checker"
+msgstr "Firmware-Update-Prüfer"
+
+#: FirmwareUpdater/plugin.json
+msgctxt "description"
+msgid "Provides a machine actions for updating firmware."
+msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware."
+
+#: FirmwareUpdater/plugin.json
+msgctxt "name"
+msgid "Firmware Updater"
+msgstr "Firmware-Aktualisierungsfunktion"
+
+#: GCodeGzReader/plugin.json
+msgctxt "description"
+msgid "Reads g-code from a compressed archive."
+msgstr "Liest G-Code-Format aus einem komprimierten Archiv."
+
+#: GCodeGzReader/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Reader"
+msgstr "Reader für komprimierten G-Code"
+
+#: GCodeGzWriter/plugin.json
+msgctxt "description"
+msgid "Writes g-code to a compressed archive."
+msgstr "G-Code wird in ein komprimiertes Archiv geschrieben."
+
+#: GCodeGzWriter/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Writer"
+msgstr "Writer für komprimierten G-Code"
+
+#: GCodeProfileReader/plugin.json
+msgctxt "description"
+msgid "Provides support for importing profiles from g-code files."
+msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien."
+
+#: GCodeProfileReader/plugin.json
+msgctxt "name"
+msgid "G-code Profile Reader"
+msgstr "G-Code-Profil-Reader"
+
+#: GCodeReader/plugin.json
+msgctxt "description"
+msgid "Allows loading and displaying G-code files."
+msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien."
+
+#: GCodeReader/plugin.json
+msgctxt "name"
+msgid "G-code Reader"
+msgstr "G-Code-Reader"
#: GCodeWriter/plugin.json
msgctxt "description"
@@ -5880,15 +5662,445 @@ msgctxt "name"
msgid "Image Reader"
msgstr "Bild-Reader"
-#: CuraDrive/plugin.json
+#: LegacyProfileReader/plugin.json
msgctxt "description"
-msgid "Backup and restore your configuration."
-msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration."
+msgid "Provides support for importing profiles from legacy Cura versions."
+msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura."
-#: CuraDrive/plugin.json
+#: LegacyProfileReader/plugin.json
msgctxt "name"
-msgid "Cura Backups"
-msgstr "Cura-Backups"
+msgid "Legacy Cura Profile Reader"
+msgstr "Cura-Vorgängerprofil-Reader"
+
+#: MachineSettingsAction/plugin.json
+msgctxt "description"
+msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
+msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)"
+
+#: MachineSettingsAction/plugin.json
+msgctxt "name"
+msgid "Machine Settings Action"
+msgstr "Beschreibung Geräteeinstellungen"
+
+#: MonitorStage/plugin.json
+msgctxt "description"
+msgid "Provides a monitor stage in Cura."
+msgstr "Bietet eine Überwachungsstufe in Cura."
+
+#: MonitorStage/plugin.json
+msgctxt "name"
+msgid "Monitor Stage"
+msgstr "Überwachungsstufe"
+
+#: PerObjectSettingsTool/plugin.json
+msgctxt "description"
+msgid "Provides the Per Model Settings."
+msgstr "Ermöglicht die Einstellungen pro Objekt."
+
+#: PerObjectSettingsTool/plugin.json
+msgctxt "name"
+msgid "Per Model Settings Tool"
+msgstr "Werkzeug „Einstellungen pro Objekt“"
+
+#: PostProcessingPlugin/plugin.json
+msgctxt "description"
+msgid "Extension that allows for user created scripts for post processing"
+msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden"
+
+#: PostProcessingPlugin/plugin.json
+msgctxt "name"
+msgid "Post Processing"
+msgstr "Nachbearbeitung"
+
+#: PrepareStage/plugin.json
+msgctxt "description"
+msgid "Provides a prepare stage in Cura."
+msgstr "Bietet eine Vorbereitungsstufe in Cura."
+
+#: PrepareStage/plugin.json
+msgctxt "name"
+msgid "Prepare Stage"
+msgstr "Vorbereitungsstufe"
+
+#: PreviewStage/plugin.json
+msgctxt "description"
+msgid "Provides a preview stage in Cura."
+msgstr "Bietet eine Vorschaustufe in Cura."
+
+#: PreviewStage/plugin.json
+msgctxt "name"
+msgid "Preview Stage"
+msgstr "Vorschaustufe"
+
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "description"
+msgid "Provides removable drive hotplugging and writing support."
+msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben."
+
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "name"
+msgid "Removable Drive Output Device Plugin"
+msgstr "Ausgabegerät-Plugin für Wechseldatenträger"
+
+#: SentryLogger/plugin.json
+msgctxt "description"
+msgid "Logs certain events so that they can be used by the crash reporter"
+msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können"
+
+#: SentryLogger/plugin.json
+msgctxt "name"
+msgid "Sentry Logger"
+msgstr "Sentry-Protokolleinrichtung"
+
+#: SimulationView/plugin.json
+msgctxt "description"
+msgid "Provides the Simulation view."
+msgstr "Ermöglicht die Simulationsansicht."
+
+#: SimulationView/plugin.json
+msgctxt "name"
+msgid "Simulation View"
+msgstr "Simulationsansicht"
+
+#: SliceInfoPlugin/plugin.json
+msgctxt "description"
+msgid "Submits anonymous slice info. Can be disabled through preferences."
+msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden."
+
+#: SliceInfoPlugin/plugin.json
+msgctxt "name"
+msgid "Slice info"
+msgstr "Slice-Informationen"
+
+#: SolidView/plugin.json
+msgctxt "description"
+msgid "Provides a normal solid mesh view."
+msgstr "Bietet eine normale, solide Netzansicht."
+
+#: SolidView/plugin.json
+msgctxt "name"
+msgid "Solid View"
+msgstr "Solide Ansicht"
+
+#: SupportEraser/plugin.json
+msgctxt "description"
+msgid "Creates an eraser mesh to block the printing of support in certain places"
+msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren"
+
+#: SupportEraser/plugin.json
+msgctxt "name"
+msgid "Support Eraser"
+msgstr "Stützstruktur-Radierer"
+
+#: Toolbox/plugin.json
+msgctxt "description"
+msgid "Find, manage and install new Cura packages."
+msgstr "Neue Cura Pakete finden, verwalten und installieren."
+
+#: Toolbox/plugin.json
+msgctxt "name"
+msgid "Toolbox"
+msgstr "Toolbox"
+
+#: TrimeshReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading model files."
+msgstr "Unterstützt das Lesen von Modelldateien."
+
+#: TrimeshReader/plugin.json
+msgctxt "name"
+msgid "Trimesh Reader"
+msgstr "Trimesh Reader"
+
+#: UFPReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading Ultimaker Format Packages."
+msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages."
+
+#: UFPReader/plugin.json
+msgctxt "name"
+msgid "UFP Reader"
+msgstr "UFP-Reader"
+
+#: UFPWriter/plugin.json
+msgctxt "description"
+msgid "Provides support for writing Ultimaker Format Packages."
+msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages."
+
+#: UFPWriter/plugin.json
+msgctxt "name"
+msgid "UFP Writer"
+msgstr "UFP-Writer"
+
+#: UltimakerMachineActions/plugin.json
+msgctxt "description"
+msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
+msgstr "Ermöglicht Maschinenabläufe für Ultimaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)"
+
+#: UltimakerMachineActions/plugin.json
+msgctxt "name"
+msgid "Ultimaker machine actions"
+msgstr "Ultimaker-Maschinenabläufe"
+
+#: UM3NetworkPrinting/plugin.json
+msgctxt "description"
+msgid "Manages network connections to Ultimaker networked printers."
+msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern."
+
+#: UM3NetworkPrinting/plugin.json
+msgctxt "name"
+msgid "Ultimaker Network Connection"
+msgstr "Ultimaker-Netzwerkverbindung"
+
+#: USBPrinting/plugin.json
+msgctxt "description"
+msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
+msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren."
+
+#: USBPrinting/plugin.json
+msgctxt "name"
+msgid "USB printing"
+msgstr "USB-Drucken"
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
+msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2."
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.1 to 2.2"
+msgstr "Upgrade von Version 2.1 auf 2.2"
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
+msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4."
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.2 to 2.4"
+msgstr "Upgrade von Version 2.2 auf 2.4"
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
+msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6."
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.5 to 2.6"
+msgstr "Upgrade von Version 2.5 auf 2.6"
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
+msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7."
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.6 to 2.7"
+msgstr "Upgrade von Version 2.6 auf 2.7"
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
+msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0."
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.7 to 3.0"
+msgstr "Upgrade von Version 2.7 auf 3.0"
+
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
+msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1."
+
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.0 to 3.1"
+msgstr "Upgrade von Version 3.0 auf 3.1"
+
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
+msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3."
+
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.2 to 3.3"
+msgstr "Upgrade von Version 3.2 auf 3.3"
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
+msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4."
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.3 to 3.4"
+msgstr "Upgrade von Version 3.3 auf 3.4"
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
+msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5."
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.4 to 3.5"
+msgstr "Upgrade von Version 3.4 auf 3.5"
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
+msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0."
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.5 to 4.0"
+msgstr "Upgrade von Version 3.5 auf 4.0"
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
+msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1."
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.0 to 4.1"
+msgstr "Upgrade von Version 4.0 auf 4.1"
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
+msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2."
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.1 to 4.2"
+msgstr "Upgrade von Version 4.1 auf 4.2"
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
+msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3."
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.2 to 4.3"
+msgstr "Upgrade von Version 4.2 auf 4.3"
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
+msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4."
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.3 to 4.4"
+msgstr "Upgrade von Version 4.3 auf 4.4"
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
+msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5."
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.4 to 4.5"
+msgstr "Upgrade von Version 4.4 auf 4.5"
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
+msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6."
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.5 to 4.6"
+msgstr "Upgrade von Version 4.5 auf 4.6"
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
+msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2."
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.0 to 4.6.2"
+msgstr "Upgrade von Version 4.6.0 auf 4.6.2"
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
+msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7."
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.2 to 4.7"
+msgstr "Upgrade von Version 4.6.2 auf 4.7"
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
+msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8."
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.7 to 4.8"
+msgstr "Upgrade von Version 4.7 auf 4.8"
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.8 to 4.9"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.9 to 4.10"
+msgstr ""
+
+#: X3DReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading X3D files."
+msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien."
+
+#: X3DReader/plugin.json
+msgctxt "name"
+msgid "X3D Reader"
+msgstr "X3D-Reader"
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "description"
+msgid "Provides capabilities to read and write XML-based material profiles."
+msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben."
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "name"
+msgid "Material Profiles"
+msgstr "Materialprofile"
+
+#: XRayView/plugin.json
+msgctxt "description"
+msgid "Provides the X-Ray view."
+msgstr "Stellt die Röntgen-Ansicht bereit."
+
+#: XRayView/plugin.json
+msgctxt "name"
+msgid "X-Ray View"
+msgstr "Röntgen-Ansicht"
#~ msgctxt "@info:status"
#~ msgid "Global stack is missing."
@@ -6727,8 +6939,7 @@ msgstr "Cura-Backups"
#~ "\n"
#~ "Select your printer from the list below:"
#~ msgstr ""
-#~ "Um über das Netzwerk direkt auf Ihrem Drucker zu drucken, stellen Sie bitte sicher, dass der Drucker mit dem Netzwerkkabel verbunden ist oder verbinden Sie Ihren Drucker mit Ihrem WLAN-Netzwerk. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie dennoch ein USB-Laufwerk für die Übertragung "
-#~ "von G-Code-Dateien auf Ihren Drucker verwenden.\n"
+#~ "Um über das Netzwerk direkt auf Ihrem Drucker zu drucken, stellen Sie bitte sicher, dass der Drucker mit dem Netzwerkkabel verbunden ist oder verbinden Sie Ihren Drucker mit Ihrem WLAN-Netzwerk. Wenn Sie Cura nicht mit Ihrem Drucker verbinden, können Sie dennoch ein USB-Laufwerk für die Übertragung von G-Code-Dateien auf Ihren Drucker verwenden.\n"
#~ "\n"
#~ "Wählen Sie Ihren Drucker aus der folgenden Liste:"
diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po
index 972425d36a..a0cc8d19be 100644
--- a/resources/i18n/de_DE/fdmextruder.def.json.po
+++ b/resources/i18n/de_DE/fdmextruder.def.json.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: 2021-04-16 15:15+0200\n"
"Last-Translator: Bothof \n"
"Language-Team: German\n"
diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po
index 2ef2ceaf82..379a069420 100644
--- a/resources/i18n/de_DE/fdmprinter.def.json.po
+++ b/resources/i18n/de_DE/fdmprinter.def.json.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: 2021-04-16 15:16+0200\n"
"Last-Translator: Lionbridge \n"
"Language-Team: German , German \n"
@@ -3200,8 +3200,8 @@ msgstr "Max. Kammentfernung ohne Einziehen"
#: fdmprinter.def.json
msgctxt "retraction_combing_max_distance description"
-msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
-msgstr "Bei Nicht-Null verwenden die Combing-Fahrbewegungen, die länger als die Distanz sind, die Einziehfunktion."
+msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
+msgstr ""
#: fdmprinter.def.json
msgctxt "travel_retract_before_outer_wall label"
@@ -6401,6 +6401,10 @@ msgctxt "mesh_rotation_matrix description"
msgid "Transformation matrix to be applied to the model when loading it from file."
msgstr "Transformationsmatrix, die beim Laden aus der Datei auf das Modell angewandt wird."
+#~ msgctxt "retraction_combing_max_distance description"
+#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
+#~ msgstr "Bei Nicht-Null verwenden die Combing-Fahrbewegungen, die länger als die Distanz sind, die Einziehfunktion."
+
#~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
#~ msgid "Apply the extruder offset to the coordinate system."
#~ msgstr "Verwenden Sie den Extruder-Versatz für das Koordinatensystem."
diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po
index 89a507a91f..983dea8dad 100644
--- a/resources/i18n/es_ES/cura.po
+++ b/resources/i18n/es_ES/cura.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:10+0200\n"
+"POT-Creation-Date: 2021-06-10 17:35+0200\n"
"PO-Revision-Date: 2021-04-16 15:15+0200\n"
"Last-Translator: Lionbridge \n"
"Language-Team: \n"
@@ -17,169 +17,180 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 2.4.1\n"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
-msgctxt "@info:progress"
-msgid "Loading machines..."
-msgstr "Cargando máquinas..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+msgctxt "@label"
+msgid "Unknown"
+msgstr "Desconocido"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
-msgctxt "@info:progress"
-msgid "Setting up preferences..."
-msgstr "Configurando preferencias...."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
+msgctxt "@label"
+msgid "The printer(s) below cannot be connected because they are part of a group"
+msgstr "Las siguientes impresoras no pueden conectarse porque forman parte de un grupo"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
-msgctxt "@info:progress"
-msgid "Initializing Active Machine..."
-msgstr "Iniciando la máquina activa..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
+msgctxt "@label"
+msgid "Available networked printers"
+msgstr "Impresoras en red disponibles"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
-msgctxt "@info:progress"
-msgid "Initializing machine manager..."
-msgstr "Iniciando el administrador de la máquina..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211
+msgctxt "@menuitem"
+msgid "Not overridden"
+msgstr "No reemplazado"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
-msgctxt "@info:progress"
-msgid "Initializing build volume..."
-msgstr "Iniciando el volumen de impresión..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
-msgctxt "@info:progress"
-msgid "Setting up scene..."
-msgstr "Configurando escena..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
-msgctxt "@info:progress"
-msgid "Loading interface..."
-msgstr "Cargando interfaz..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
-msgctxt "@info:progress"
-msgid "Initializing engine..."
-msgstr "Iniciando el motor..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
-#, 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"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
-msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800 /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188 /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
-msgctxt "@info:title"
-msgid "Warning"
-msgstr "Advertencia"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
-msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
-msgctxt "@info:title"
-msgid "Error"
-msgstr "Error"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
#, python-brace-format
msgctxt "@label {0} is the name of a printer that's about to be deleted."
msgid "Are you sure you wish to remove {0}? This cannot be undone!"
msgstr "¿Seguro que desea eliminar {0}? ¡Esta acción no se puede deshacer!"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
-msgctxt "@label"
-msgid "Custom Material"
-msgstr "Material personalizado"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227 /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
-msgctxt "@label"
-msgid "Custom"
-msgstr "Personalizado"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
msgctxt "@label"
msgid "Default"
msgstr "Default"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
msgctxt "@label"
-msgid "Unknown"
-msgstr "Desconocido"
+msgid "Visual"
+msgstr "Visual"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
+msgctxt "@text"
+msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
+msgstr "El perfil visual está diseñado para imprimir prototipos y modelos visuales con la intención de obtener una alta calidad visual y de superficies."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
+msgctxt "@label"
+msgid "Engineering"
+msgstr "Engineering"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
+msgctxt "@text"
+msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
+msgstr "El perfil de ingeniería ha sido diseñado para imprimir prototipos funcionales y piezas de uso final con la intención de obtener una mayor precisión y tolerancias más precisas."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
+msgctxt "@label"
+msgid "Draft"
+msgstr "Boceto"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
+msgctxt "@text"
+msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
+msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión de manera considerable."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234
+msgctxt "@label"
+msgid "Custom Material"
+msgstr "Material personalizado"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
+msgctxt "@label"
+msgid "Custom"
+msgstr "Personalizado"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
msgctxt "@label"
msgid "Custom profiles"
msgstr "Perfiles personalizados"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
#, python-brace-format
msgctxt "@item:inlistbox"
msgid "All Supported Types ({0})"
msgstr "Todos los tipos compatibles ({0})"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
msgctxt "@item:inlistbox"
msgid "All Files (*)"
msgstr "Todos los archivos (*)"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
-msgctxt "@label"
-msgid "Visual"
-msgstr "Visual"
+#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181
+msgctxt "@info:title"
+msgid "Login failed"
+msgstr "Fallo de inicio de sesión"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
-msgctxt "@text"
-msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
-msgstr "El perfil visual está diseñado para imprimir prototipos y modelos visuales con la intención de obtener una alta calidad visual y de superficies."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
+msgctxt "@info:status"
+msgid "Finding new location for objects"
+msgstr "Buscando nueva ubicación para los objetos"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
-msgctxt "@label"
-msgid "Engineering"
-msgstr "Engineering"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Finding Location"
+msgstr "Buscando ubicación"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
-msgctxt "@text"
-msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
-msgstr "El perfil de ingeniería ha sido diseñado para imprimir prototipos funcionales y piezas de uso final con la intención de obtener una mayor precisión y tolerancias más precisas."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76
+msgctxt "@info:status"
+msgid "Unable to find a location within the build volume for all objects"
+msgstr "No se puede encontrar una ubicación dentro del volumen de impresión para todos los objetos"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
-msgctxt "@label"
-msgid "Draft"
-msgstr "Boceto"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+msgctxt "@info:title"
+msgid "Can't Find Location"
+msgstr "No se puede encontrar la ubicación"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
-msgctxt "@text"
-msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
-msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión de manera considerable."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116
+msgctxt "@info:backup_failed"
+msgid "Could not create archive from user data directory: {}"
+msgstr "No se ha podido crear el archivo desde el directorio de datos de usuario: {}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
-msgctxt "@label"
-msgid "The printer(s) below cannot be connected because they are part of a group"
-msgstr "Las siguientes impresoras no pueden conectarse porque forman parte de un grupo"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
+msgctxt "@info:title"
+msgid "Backup"
+msgstr "Copia de seguridad"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
-msgctxt "@label"
-msgid "Available networked printers"
-msgstr "Impresoras en red disponibles"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup without having proper data or meta data."
+msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
-msgctxt "@menuitem"
-msgid "Not overridden"
-msgstr "No reemplazado"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup that is higher than the current version."
+msgstr "Se ha intentado restaurar una copia de seguridad de Cura superior a la versión actual."
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157
+msgctxt "@info:backup_failed"
+msgid "The following error occurred while trying to restore a Cura backup:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
+msgctxt "@info:status"
+msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
+msgstr "La altura del volumen de impresión se ha reducido debido al valor del ajuste «Secuencia de impresión» para evitar que el caballete colisione con los modelos impresos."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100
+msgctxt "@info:title"
+msgid "Build Volume"
+msgstr "Volumen de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
msgctxt "@title:window"
msgid "Cura can't start"
msgstr "Cura no puede iniciarse"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
msgctxt "@label crash message"
msgid ""
"Oops, Ultimaker Cura has encountered something that doesn't seem right.
\n"
@@ -194,32 +205,32 @@ msgstr ""
" Envíenos el informe de errores para que podamos solucionar el problema.
\n"
" "
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
msgctxt "@action:button"
msgid "Send crash report to Ultimaker"
msgstr "Enviar informe de errores a Ultimaker"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
msgctxt "@action:button"
msgid "Show detailed crash report"
msgstr "Mostrar informe de errores detallado"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
msgctxt "@action:button"
msgid "Show configuration folder"
msgstr "Mostrar carpeta de configuración"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
msgctxt "@action:button"
msgid "Backup and Reset Configuration"
msgstr "Realizar copia de seguridad y restablecer configuración"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
msgctxt "@title:window"
msgid "Crash Report"
msgstr "Informe del accidente"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
msgctxt "@label crash message"
msgid ""
"A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem
\n"
@@ -230,658 +241,676 @@ msgstr ""
" Utilice el botón \"Enviar informe\" para publicar automáticamente el informe de errores en nuestros servidores.
\n"
" "
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
msgctxt "@title:groupbox"
msgid "System information"
msgstr "Información del sistema"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
msgctxt "@label unknown version of Cura"
msgid "Unknown"
msgstr "Desconocido"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
msgctxt "@label Cura version number"
msgid "Cura version"
msgstr "Versión de Cura"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
msgctxt "@label"
msgid "Cura language"
msgstr "Idioma de Cura"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
msgctxt "@label"
msgid "OS language"
msgstr "Idioma del sistema operativo"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
msgctxt "@label Type of platform"
msgid "Platform"
msgstr "Plataforma"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
msgctxt "@label"
msgid "Qt version"
msgstr "Versión Qt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
msgctxt "@label"
msgid "PyQt version"
msgstr "Versión PyQt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
msgctxt "@label OpenGL version"
msgid "OpenGL"
msgstr "OpenGL"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
msgctxt "@label"
msgid "Not yet initialized
"
msgstr "Aún no se ha inicializado
"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
#, python-brace-format
msgctxt "@label OpenGL version"
msgid "OpenGL Version: {version}"
msgstr "Versión de OpenGL: {version}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
#, python-brace-format
msgctxt "@label OpenGL vendor"
msgid "OpenGL Vendor: {vendor}"
msgstr "Proveedor de OpenGL: {vendor}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
#, python-brace-format
msgctxt "@label OpenGL renderer"
msgid "OpenGL Renderer: {renderer}"
msgstr "Representador de OpenGL: {renderer}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
msgctxt "@title:groupbox"
msgid "Error traceback"
msgstr "Rastreabilidad de errores"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
msgctxt "@title:groupbox"
msgid "Logs"
msgstr "Registros"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
msgctxt "@action:button"
msgid "Send report"
msgstr "Enviar informe"
-#: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
-msgctxt "@info:title"
-msgid "Login failed"
-msgstr "Fallo de inicio de sesión"
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527
+msgctxt "@info:progress"
+msgid "Loading machines..."
+msgstr "Cargando máquinas..."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534
+msgctxt "@info:progress"
+msgid "Setting up preferences..."
+msgstr "Configurando preferencias...."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672
+msgctxt "@info:progress"
+msgid "Initializing Active Machine..."
+msgstr "Iniciando la máquina activa..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803
+msgctxt "@info:progress"
+msgid "Initializing machine manager..."
+msgstr "Iniciando el administrador de la máquina..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817
+msgctxt "@info:progress"
+msgid "Initializing build volume..."
+msgstr "Iniciando el volumen de impresión..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888
+msgctxt "@info:progress"
+msgid "Setting up scene..."
+msgstr "Configurando escena..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924
+msgctxt "@info:progress"
+msgid "Loading interface..."
+msgstr "Cargando interfaz..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929
+msgctxt "@info:progress"
+msgid "Initializing engine..."
+msgstr "Iniciando el motor..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246
+#, python-format
+msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
+msgid "%(width).1f x %(depth).1f x %(height).1f mm"
+msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
+msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+msgctxt "@info:title"
+msgid "Warning"
+msgstr "Advertencia"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
+msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
+msgctxt "@info:title"
+msgid "Error"
+msgstr "Error"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26
+msgctxt "@info:status"
+msgid "Multiplying and placing objects"
+msgstr "Multiplicar y colocar objetos"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Placing Objects"
+msgstr "Colocando objetos"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77
+msgctxt "@info:title"
+msgid "Placing Object"
+msgstr "Colocando objeto"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92
msgctxt "@message"
msgid "Could not read response."
msgstr "No se ha podido leer la respuesta."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
-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."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
-msgctxt "@info"
-msgid "Unable to reach the Ultimaker account server."
-msgstr "No se puede acceder al servidor de cuentas de Ultimaker."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
msgctxt "@message"
msgid "The provided state is not correct."
msgstr "El estado indicado no es correcto."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
msgctxt "@message"
msgid "Please give the required permissions when authorizing this application."
msgstr "Conceda los permisos necesarios al autorizar esta aplicación."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
msgctxt "@message"
msgid "Something unexpected happened when trying to log in, please try again."
msgstr "Se ha producido un problema al intentar iniciar sesión, vuelva a intentarlo."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189
+msgctxt "@info"
+msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
+msgstr "No se puede iniciar un nuevo proceso de inicio de sesión. Compruebe si todavía está activo otro intento de inicio de sesión."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+msgctxt "@info"
+msgid "Unable to reach the Ultimaker account server."
+msgstr "No se puede acceder al servidor de cuentas de Ultimaker."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132
msgctxt "@title:window"
msgid "File Already Exists"
msgstr "El archivo ya existe"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
#, 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?"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456 /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460
msgctxt "@info:status"
msgid "Invalid file URL:"
msgstr "URL del archivo no válida:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
-msgctxt "@label"
-msgid "Nozzle"
-msgstr "Tobera"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
-msgctxt "@info:message Followed by a list of settings."
-msgid "Settings have been changed to match the current availability of extruders:"
-msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
-msgctxt "@info:title"
-msgid "Settings updated"
-msgstr "Ajustes actualizados"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
-msgctxt "@info:title"
-msgid "Extruder(s) Disabled"
-msgstr "Extrusores deshabilitados"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
#, 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}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Exported profile to {0}"
msgstr "Perfil exportado a {0}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157
msgctxt "@info:title"
msgid "Export succeeded"
msgstr "Exportación correcta"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188
#, 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}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207
#, 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}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211
#, 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}:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338
#, 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}:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342
#, python-brace-format
msgctxt "@info:status"
msgid "Successfully imported profile {0}."
msgstr "Perfil {0} importado correctamente."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426
msgctxt "@label"
msgid "Custom profile"
msgstr "Perfil personalizado"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442
msgctxt "@info:status"
msgid "Profile is missing a quality type."
msgstr "Al perfil le falta un tipo de calidad."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446
msgctxt "@info:status"
msgid "There is no active printer yet."
msgstr "Todavía no hay ninguna impresora activa."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452
msgctxt "@info:status"
msgid "Unable to add the profile."
msgstr "No se puede añadir el perfil."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466
#, 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}'."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
msgctxt "@info:not supported profile"
msgid "Not supported"
msgstr "No compatible"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
msgctxt "@info:No intent profile selected"
msgid "Default"
msgstr "Default"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
-msgctxt "@info:status"
-msgid "Finding new location for objects"
-msgstr "Buscando nueva ubicación para los objetos"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
+msgctxt "@label"
+msgid "Nozzle"
+msgstr "Tobera"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856
+msgctxt "@info:message Followed by a list of settings."
+msgid "Settings have been changed to match the current availability of extruders:"
+msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858
msgctxt "@info:title"
-msgid "Finding Location"
-msgstr "Buscando ubicación"
+msgid "Settings updated"
+msgstr "Ajustes actualizados"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
-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"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478
msgctxt "@info:title"
-msgid "Can't Find Location"
-msgstr "No se puede encontrar la ubicación"
+msgid "Extruder(s) Disabled"
+msgstr "Extrusores deshabilitados"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
+msgctxt "@action:button"
+msgid "Add"
+msgstr "Agregar"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272
+msgctxt "@action:button"
+msgid "Finish"
+msgstr "Finalizar"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+msgctxt "@action:button"
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
#, python-brace-format
msgctxt "@label"
msgid "Group #{group_nr}"
msgstr "N.º de grupo {group_nr}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55 /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
-msgctxt "@action:button"
-msgid "Skip"
-msgstr "Omitir"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60 /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
-msgctxt "@action:button"
-msgid "Close"
-msgstr "Cerrar"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56 /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
-msgctxt "@action:button"
-msgid "Next"
-msgstr "Siguiente"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272 /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
-msgctxt "@action:button"
-msgid "Finish"
-msgstr "Finalizar"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82
msgctxt "@tooltip"
msgid "Outer Wall"
msgstr "Pared exterior"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
msgctxt "@tooltip"
msgid "Inner Walls"
msgstr "Paredes interiores"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
msgctxt "@tooltip"
msgid "Skin"
msgstr "Forro"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
msgctxt "@tooltip"
msgid "Infill"
msgstr "Relleno"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
msgctxt "@tooltip"
msgid "Support Infill"
msgstr "Relleno de soporte"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
msgctxt "@tooltip"
msgid "Support Interface"
msgstr "Interfaz de soporte"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
msgctxt "@tooltip"
msgid "Support"
msgstr "Soporte"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
msgctxt "@tooltip"
msgid "Skirt"
msgstr "Falda"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
msgctxt "@tooltip"
msgid "Prime Tower"
msgstr "Torre auxiliar"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
msgctxt "@tooltip"
msgid "Travel"
msgstr "Desplazamiento"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
msgctxt "@tooltip"
msgid "Retractions"
msgstr "Retracciones"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
msgctxt "@tooltip"
msgid "Other"
msgstr "Otro"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259
msgctxt "@action:button"
-msgid "Add"
-msgstr "Agregar"
+msgid "Next"
+msgstr "Siguiente"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55
msgctxt "@action:button"
-msgid "Cancel"
-msgstr "Cancelar"
+msgid "Skip"
+msgstr "Omitir"
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
-msgctxt "@info:status"
-msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
-msgstr "La altura del volumen de impresión se ha reducido debido al valor del ajuste «Secuencia de impresión» para evitar que el caballete colisione con los modelos impresos."
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
+msgctxt "@action:button"
+msgid "Close"
+msgstr "Cerrar"
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
msgctxt "@info:title"
-msgid "Build Volume"
-msgstr "Volumen de impresión"
+msgid "3D Model Assistant"
+msgstr "Asistente del modelo 3D"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
-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: {}"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
-msgctxt "@info:title"
-msgid "Backup"
-msgstr "Copia de seguridad"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup without having proper data or meta data."
-msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup that is higher than the current version."
-msgstr "Se ha intentado restaurar una copia de seguridad de Cura superior a la versión actual."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
-msgctxt "@info:status"
-msgid "Multiplying and placing objects"
-msgstr "Multiplicar y colocar objetos"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
-msgctxt "@info:title"
-msgid "Placing Objects"
-msgstr "Colocando objetos"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
-msgctxt "@info:title"
-msgid "Placing Object"
-msgstr "Colocando objeto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Save to Removable Drive"
-msgstr "Guardar en unidad extraíble"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96
#, python-brace-format
-msgctxt "@item:inlistbox"
-msgid "Save to Removable Drive {0}"
-msgstr "Guardar en unidad extraíble {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
msgctxt "@info:status"
-msgid "There are no file formats available to write with!"
-msgstr "¡No hay formatos de archivo disponibles con los que escribir!"
+msgid ""
+"One or more 3D models may not print optimally due to the model size and material configuration:
\n"
+"{model_names}
\n"
+"Find out how to ensure the best possible print quality and reliability.
\n"
+"View print quality guide
"
+msgstr ""
+"Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:
\n"
+"{model_names}
\n"
+"Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.
\n"
+"Ver guía de impresión de calidad
"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-#, python-brace-format
-msgctxt "@info:progress Don't translate the XML tags !"
-msgid "Saving to Removable Drive {0}"
-msgstr "Guardando en unidad extraíble {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-msgctxt "@info:title"
-msgid "Saving"
-msgstr "Guardando"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540
#, 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}"
+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."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
-#, python-brace-format
-msgctxt "@info:status Don't translate the tag {device}!"
-msgid "Could not find a file name when trying to write to {device}."
-msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Could not save to removable drive {0}: {1}"
-msgstr "No se pudo guardar en unidad extraíble {0}: {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Saved to Removable Drive {0} as {1}"
-msgstr "Guardado en unidad extraíble {0} como {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543
msgctxt "@info:title"
-msgid "File Saved"
-msgstr "Archivo guardado"
+msgid "Open Project File"
+msgstr "Abrir archivo de proyecto"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
-msgctxt "@action:button"
-msgid "Eject"
-msgstr "Expulsar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639
#, python-brace-format
-msgctxt "@action"
-msgid "Eject removable device {0}"
-msgstr "Expulsar dispositivo extraíble {0}"
+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}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Ejected {0}. You can now safely remove the drive."
-msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647
msgctxt "@info:title"
-msgid "Safely Remove Hardware"
-msgstr "Retirar de forma segura el hardware"
+msgid "Can't Open Project File"
+msgstr "No se puede abrir el archivo de proyecto"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646
#, 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."
+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}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
-msgctxt "@item:intext"
-msgid "Removable Drive"
-msgstr "Unidad extraíble"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698
+#, python-brace-format
+msgctxt "@info:error Don't translate the XML tag !"
+msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura."
+msgstr "El archivo de proyecto {0} se ha creado con perfiles desconocidos para esta versión de Ultimaker Cura."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203
+msgctxt "@title:tab"
+msgid "Recommended"
+msgstr "Recomendado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205
+msgctxt "@title:tab"
+msgid "Custom"
+msgstr "Personalizado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
+msgctxt "@item:inlistbox"
+msgid "3MF File"
+msgstr "Archivo 3MF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
+msgctxt "@error:zip"
+msgid "3MF Writer plug-in is corrupt."
+msgstr "El complemento del Escritor de 3MF está dañado."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
+msgctxt "@error:zip"
+msgid "No permission to write the workspace here."
+msgstr "No tiene permiso para escribir el espacio de trabajo aquí."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
+msgctxt "@error:zip"
+msgid "The operating system does not allow saving a project file to this location or with this file name."
+msgstr "El sistema operativo no permite guardar un archivo de proyecto en esta ubicación ni con este nombre de archivo."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
+msgctxt "@error:zip"
+msgid "Error writing 3mf file."
+msgstr "Error al escribir el archivo 3MF."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "3MF file"
+msgstr "Archivo 3MF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
+msgctxt "@item:inlistbox"
+msgid "Cura Project 3MF file"
+msgstr "Archivo 3MF del proyecto de Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
msgctxt "@item:inlistbox"
msgid "AMF File"
msgstr "Archivo AMF"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
-msgctxt "@item:inlistbox"
-msgid "G-code File"
-msgstr "Archivo GCode"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
-msgctxt "@action"
-msgid "Update Firmware"
-msgstr "Actualizar firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
-msgctxt "@item:inlistbox"
-msgid "X3D File"
-msgstr "Archivo X3D"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
-msgctxt "@button"
-msgid "Decline"
-msgstr "Rechazar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
-msgctxt "@button"
-msgid "Agree"
-msgstr "Estoy de acuerdo"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
-msgctxt "@title:window"
-msgid "Plugin License Agreement"
-msgstr "Acuerdo de licencia de complemento"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
-msgctxt "@button"
-msgid "Decline and remove from account"
-msgstr "Rechazar y eliminar de la cuenta"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
-msgctxt "@info:generic"
-msgid "{} plugins failed to download"
-msgstr "Error al descargar los complementos {}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
-msgctxt "@info:generic"
-msgid "Syncing..."
-msgstr "Sincronizando..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
msgctxt "@info:title"
-msgid "Changes detected from your Ultimaker account"
-msgstr "Se han detectado cambios desde su cuenta de Ultimaker"
+msgid "Backups"
+msgstr "Copias de seguridad"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
-msgctxt "@info:generic"
-msgid "You need to quit and restart {} before changes have effect."
-msgstr "Tiene que salir y reiniciar {} para que los cambios surtan efecto."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
+msgctxt "@info:backup_status"
+msgid "There was an error while uploading your backup."
+msgstr "Se ha producido un error al cargar su copia de seguridad."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
-msgctxt "@info:generic"
-msgid "Do you want to sync material and software packages with your account?"
-msgstr "¿Desea sincronizar el material y los paquetes de software con su cuenta?"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
+msgctxt "@info:backup_status"
+msgid "Creating your backup..."
+msgstr "Creando copia de seguridad..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
-msgctxt "@action:button"
-msgid "Sync"
-msgstr "Sincronizar"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
+msgctxt "@info:backup_status"
+msgid "There was an error while creating your backup."
+msgstr "Se ha producido un error al crear la copia de seguridad."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
-msgctxt "@label"
-msgid "Per Model Settings"
-msgstr "Ajustes por modelo"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
+msgctxt "@info:backup_status"
+msgid "Uploading your backup..."
+msgstr "Cargando su copia de seguridad..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
-msgctxt "@info:tooltip"
-msgid "Configure Per Model Settings"
-msgstr "Configurar ajustes por modelo"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
+msgctxt "@info:backup_status"
+msgid "Your backup has finished uploading."
+msgstr "Su copia de seguridad ha terminado de cargarse."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
+msgctxt "@error:file_size"
+msgid "The backup exceeds the maximum file size."
+msgstr "La copia de seguridad excede el tamaño máximo de archivo."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
+msgctxt "@info:backup_status"
+msgid "There was an error trying to restore your backup."
+msgstr "Se ha producido un error al intentar restaurar su copia de seguridad."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
msgctxt "@item:inmenu"
-msgid "Post Processing"
-msgstr "Posprocesamiento"
+msgid "Manage backups"
+msgstr "Administrar copias de seguridad"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
-msgctxt "@item:inmenu"
-msgid "Modify G-Code"
-msgstr "Modificar GCode"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
msgctxt "@info:status"
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
msgctxt "@info:title"
msgid "Unable to slice"
msgstr "No se puede segmentar"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
msgstr "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
msgctxt "@info:status"
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
#, python-format
msgctxt "@info:status"
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
msgctxt "@info:status"
msgid ""
"Please review settings and check if your models:\n"
@@ -894,75 +923,465 @@ msgstr ""
"- Están asignados a un extrusor activado\n"
" - No están todos definidos como mallas modificadoras"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:status"
msgid "Processing Layers"
msgstr "Procesando capas"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:title"
msgid "Information"
msgstr "Información"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
-msgctxt "@item:inmenu"
-msgid "USB printing"
-msgstr "Impresión USB"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Print via USB"
-msgstr "Imprimir mediante USB"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
-msgctxt "@info:tooltip"
-msgid "Print via USB"
-msgstr "Imprimir mediante USB"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
-msgctxt "@info:status"
-msgid "Connected via USB"
-msgstr "Conectado mediante USB"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
-msgctxt "@label"
-msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
-msgstr "Se está realizando una impresión con USB, si cierra Cura detendrá la impresión. ¿Desea continuar?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
-msgstr "Todavía hay una impresión en curso. Cura no puede iniciar otra impresión a través de USB hasta que se haya completado la impresión anterior."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "Print in Progress"
-msgstr "Impresión en curso"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
msgctxt "@item:inlistbox"
msgid "Cura Profile"
msgstr "Perfil de cura"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
-msgctxt "@action"
-msgid "Connect via Network"
-msgstr "Conectar a través de la red"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
+msgctxt "@info"
+msgid "Could not access update information."
+msgstr "No se pudo acceder a la información actualizada."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
+#, python-brace-format
+msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
+msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
+msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no tiene la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
+#, python-format
+msgctxt "@info:title The %s gets replaced with the printer name."
+msgid "New %s firmware available"
+msgstr "Nuevo firmware de %s disponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
+msgctxt "@action:button"
+msgid "How to update"
+msgstr "Cómo actualizar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
+msgctxt "@action"
+msgid "Update Firmware"
+msgstr "Actualizar firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
+msgctxt "@item:inlistbox"
+msgid "Compressed G-code File"
+msgstr "Archivo GCode comprimido"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
+msgctxt "@error:not supported"
+msgid "GCodeGzWriter does not support text mode."
+msgstr "GCodeGzWriter no es compatible con el modo texto."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
+msgctxt "@item:inlistbox"
+msgid "G-code File"
+msgstr "Archivo GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347
+msgctxt "@info:status"
+msgid "Parsing G-code"
+msgstr "Analizar GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503
+msgctxt "@info:title"
+msgid "G-code Details"
+msgstr "Datos de GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501
+msgctxt "@info:generic"
+msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
+msgstr "Asegúrese de que el GCode es adecuado para la impresora y para su configuración antes de enviar el archivo a la misma. Es posible que la representación del GCode no sea precisa."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "G File"
+msgstr "Archivo G"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74
+msgctxt "@error:not supported"
+msgid "GCodeWriter does not support non-text mode."
+msgstr "GCodeWriter no es compatible con el modo sin texto."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96
+msgctxt "@warning:status"
+msgid "Please prepare G-code before exporting."
+msgstr "Prepare el Gcode antes de la exportación."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "JPG Image"
+msgstr "Imagen JPG"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "JPEG Image"
+msgstr "Imagen JPEG"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
+msgctxt "@item:inlistbox"
+msgid "PNG Image"
+msgstr "Imagen PNG"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "BMP Image"
+msgstr "Imagen BMP"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
+msgctxt "@item:inlistbox"
+msgid "GIF Image"
+msgstr "Imagen GIF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "Cura 15.04 profiles"
+msgstr "Perfiles de Cura 15.04"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
+msgctxt "@action"
+msgid "Machine Settings"
+msgstr "Ajustes de la máquina"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
+msgctxt "@item:inmenu"
+msgid "Monitor"
+msgstr "Supervisar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
+msgctxt "@label"
+msgid "Per Model Settings"
+msgstr "Ajustes por modelo"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
+msgctxt "@info:tooltip"
+msgid "Configure Per Model Settings"
+msgstr "Configurar ajustes por modelo"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+msgctxt "@item:inmenu"
+msgid "Post Processing"
+msgstr "Posprocesamiento"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
+msgctxt "@item:inmenu"
+msgid "Modify G-Code"
+msgstr "Modificar GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Prepare"
+msgstr "Preparar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
+msgctxt "@item:inmenu"
+msgid "Preview"
+msgstr "Vista previa"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Save to Removable Drive"
+msgstr "Guardar en unidad extraíble"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
+#, python-brace-format
+msgctxt "@item:inlistbox"
+msgid "Save to Removable Drive {0}"
+msgstr "Guardar en unidad extraíble {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
+msgctxt "@info:status"
+msgid "There are no file formats available to write with!"
+msgstr "¡No hay formatos de archivo disponibles con los que escribir!"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+#, python-brace-format
+msgctxt "@info:progress Don't translate the XML tags !"
+msgid "Saving to Removable Drive {0}"
+msgstr "Guardando en unidad extraíble {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+msgctxt "@info:title"
+msgid "Saving"
+msgstr "Guardando"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#, python-brace-format
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid "Could not save to {0}: {1}"
+msgstr "No se pudo guardar en {0}: {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
+#, python-brace-format
+msgctxt "@info:status Don't translate the tag {device}!"
+msgid "Could not find a file name when trying to write to {device}."
+msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Could not save to removable drive {0}: {1}"
+msgstr "No se pudo guardar en unidad extraíble {0}: {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Saved to Removable Drive {0} as {1}"
+msgstr "Guardado en unidad extraíble {0} como {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+msgctxt "@info:title"
+msgid "File Saved"
+msgstr "Archivo guardado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+msgctxt "@action:button"
+msgid "Eject"
+msgstr "Expulsar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#, python-brace-format
+msgctxt "@action"
+msgid "Eject removable device {0}"
+msgstr "Expulsar dispositivo extraíble {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Ejected {0}. You can now safely remove the drive."
+msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+msgctxt "@info:title"
+msgid "Safely Remove Hardware"
+msgstr "Retirar de forma segura el hardware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Failed to eject {0}. Another program may be using the drive."
+msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
+msgctxt "@item:intext"
+msgid "Removable Drive"
+msgstr "Unidad extraíble"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128
+msgctxt "@info:status"
+msgid "Cura does not accurately display layers when Wire Printing is enabled."
+msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129
+msgctxt "@info:title"
+msgid "Simulation View"
+msgstr "Vista de simulación"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:status"
+msgid "Nothing is shown because you need to slice first."
+msgstr "No se muestra nada porque primero hay que cortar."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:title"
+msgid "No layers to show"
+msgstr "No hay capas para mostrar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74
+msgctxt "@info:option_text"
+msgid "Do not show this message again"
+msgstr "No volver a mostrar este mensaje"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
+msgctxt "@item:inlistbox"
+msgid "Layer view"
+msgstr "Vista de capas"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71
+msgctxt "@info:status"
+msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
+msgstr "Las áreas resaltadas indican que faltan superficies o son inusuales. Corrija los errores en el modelo y vuelva a abrirlo en Cura."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73
+msgctxt "@info:title"
+msgid "Model Errors"
+msgstr "Errores de modelo"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79
+msgctxt "@action:button"
+msgid "Learn more"
+msgstr "Más información"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Solid view"
+msgstr "Vista de sólidos"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
+msgctxt "@label"
+msgid "Support Blocker"
+msgstr "Bloqueador de soporte"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
+msgctxt "@info:tooltip"
+msgid "Create a volume in which supports are not printed."
+msgstr "Cree un volumen que no imprima los soportes."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
+msgctxt "@info:generic"
+msgid "Do you want to sync material and software packages with your account?"
+msgstr "¿Desea sincronizar el material y los paquetes de software con su cuenta?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
+msgctxt "@info:title"
+msgid "Changes detected from your Ultimaker account"
+msgstr "Se han detectado cambios desde su cuenta de Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
+msgctxt "@action:button"
+msgid "Sync"
+msgstr "Sincronizar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
+msgctxt "@info:generic"
+msgid "Syncing..."
+msgstr "Sincronizando..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
+msgctxt "@button"
+msgid "Decline"
+msgstr "Rechazar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
+msgctxt "@button"
+msgid "Agree"
+msgstr "Estoy de acuerdo"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
+msgctxt "@title:window"
+msgid "Plugin License Agreement"
+msgstr "Acuerdo de licencia de complemento"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
+msgctxt "@button"
+msgid "Decline and remove from account"
+msgstr "Rechazar y eliminar de la cuenta"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
+msgctxt "@info:generic"
+msgid "You need to quit and restart {} before changes have effect."
+msgstr "Tiene que salir y reiniciar {} para que los cambios surtan efecto."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
+msgctxt "@info:generic"
+msgid "{} plugins failed to download"
+msgstr "Error al descargar los complementos {}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
+msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
+msgid "Open Compressed Triangle Mesh"
+msgstr "Open Compressed Triangle Mesh"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
+msgctxt "@item:inlistbox"
+msgid "COLLADA Digital Asset Exchange"
+msgstr "COLLADA Digital Asset Exchange"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
+msgctxt "@item:inlistbox"
+msgid "glTF Binary"
+msgstr "glTF binario"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
+msgctxt "@item:inlistbox"
+msgid "glTF Embedded JSON"
+msgstr "glTF incrustado JSON"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
+msgctxt "@item:inlistbox"
+msgid "Stanford Triangle Format"
+msgstr "Stanford Triangle Format"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
+msgctxt "@item:inlistbox"
+msgid "Compressed COLLADA Digital Asset Exchange"
+msgstr "COLLADA Digital Asset Exchange comprimido"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
+msgctxt "@item:inlistbox"
+msgid "Ultimaker Format Package"
+msgstr "Paquete de formato Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159
+msgctxt "@info:error"
+msgid "Can't write to UFP file:"
+msgstr "No se puede escribir en el archivo UFP:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
+msgctxt "@action"
+msgid "Level build plate"
+msgstr "Nivelar placa de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+msgctxt "@action"
+msgid "Select upgrades"
+msgstr "Seleccionar actualizaciones"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
+msgctxt "@action:button"
+msgid "Print via cloud"
+msgstr "Imprimir mediante cloud"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
+msgctxt "@properties:tooltip"
+msgid "Print via cloud"
+msgstr "Imprimir mediante cloud"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
+msgctxt "@info:status"
+msgid "Connected via cloud"
+msgstr "Conectado mediante cloud"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270
+#, python-brace-format
+msgctxt "@error:send"
+msgid "Unknown error code when uploading print job: {0}"
+msgstr "Código de error desconocido al cargar el trabajo de impresión: {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
msgctxt "info:status"
msgid "New printer detected from your Ultimaker account"
msgid_plural "New printers detected from your Ultimaker account"
msgstr[0] "Se ha detectado una nueva impresora en su cuenta de Ultimaker"
msgstr[1] "Se han detectado nuevas impresoras en su cuenta de Ultimaker"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
#, python-brace-format
msgctxt "info:status Filled in with printer name and printer model."
msgid "Adding printer {name} ({model}) from your account"
msgstr "Añadiendo la impresora {name} ({model}) de su cuenta"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
#, python-brace-format
msgctxt "info:{0} gets replaced by a number of printers"
msgid "... and {0} other"
@@ -970,70 +1389,71 @@ msgid_plural "... and {0} others"
msgstr[0] "... y {0} más"
msgstr[1] "... y {0} más"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
msgctxt "info:status"
msgid "Printers added from Digital Factory:"
msgstr "Impresoras añadidas desde Digital Factory:"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
msgctxt "info:status"
msgid "A cloud connection is not available for a printer"
msgid_plural "A cloud connection is not available for some printers"
msgstr[0] "La conexión a la nube no está disponible para una impresora"
msgstr[1] "La conexión a la nube no está disponible para algunas impresoras"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
msgctxt "info:status"
msgid "This printer is not linked to the Digital Factory:"
msgid_plural "These printers are not linked to the Digital Factory:"
msgstr[0] "Esta impresora no está vinculada a Digital Factory:"
msgstr[1] "Estas impresoras no están vinculadas a Digital Factory:"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
msgctxt "info:name"
msgid "Ultimaker Digital Factory"
msgstr "Ultimaker Digital Factory"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
#, python-brace-format
msgctxt "info:status"
msgid "To establish a connection, please visit the {website_link}"
msgstr "Para establecer una conexión, visite {website_link}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
msgctxt "@action:button"
msgid "Keep printer configurations"
msgstr "Mantener las configuraciones de la impresora"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
msgctxt "@action:button"
msgid "Remove printers"
msgstr "Eliminar impresoras"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "{printer_name} will be removed until the next account sync."
msgstr "{printer_name} se eliminará hasta la próxima sincronización de la cuenta."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
msgstr "Para eliminar {printer_name} permanentemente, visite {digital_factory_link}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "Are you sure you want to remove {printer_name} temporarily?"
msgstr "¿Seguro que desea eliminar {printer_name} temporalmente?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
msgctxt "@title:window"
msgid "Remove printers?"
msgstr "¿Eliminar impresoras?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
#, python-brace-format
msgctxt "@label"
msgid ""
@@ -1049,1537 +1469,768 @@ msgstr[1] ""
"Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n"
"¿Seguro que desea continuar?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
msgctxt "@label"
msgid ""
"You are about to remove all printers from Cura. This action cannot be undone.\n"
"Are you sure you want to continue?"
msgstr "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.¿Seguro que desea continuar?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
-msgctxt "@action:button"
-msgid "Print via cloud"
-msgstr "Imprimir mediante cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
-msgctxt "@properties:tooltip"
-msgid "Print via cloud"
-msgstr "Imprimir mediante cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
-msgctxt "@info:status"
-msgid "Connected via cloud"
-msgstr "Conectado mediante cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
-#, 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}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
-msgctxt "@info:status"
-msgid "tomorrow"
-msgstr "mañana"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
-msgctxt "@info:status"
-msgid "today"
-msgstr "hoy"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
-msgctxt "@info:status"
-msgid "Sending Print Job"
-msgstr "Enviando trabajo de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
-msgctxt "@info:status"
-msgid "Uploading print job to printer."
-msgstr "Cargando el trabajo de impresión a la impresora."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
-#, python-brace-format
-msgctxt "@info:status"
-msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
-msgstr "Está intentando conectarse a {0} pero ese no es el host de un grupo. Puede visitar la página web para configurarlo como host de grupo."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
-msgctxt "@info:title"
-msgid "Not a group host"
-msgstr "No es un host de grupo"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
-msgctxt "@action"
-msgid "Configure group"
-msgstr "Configurar grupo"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
msgctxt "@info:status"
msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
msgstr "Envíe y supervise sus trabajos de impresión desde cualquier lugar a través de su cuenta de Ultimaker."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
msgctxt "@info:status Ultimaker Cloud should not be translated."
msgid "Connect to Ultimaker Digital Factory"
msgstr "Conectar con Ultimaker Digital Factory"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
msgctxt "@action"
msgid "Get started"
msgstr "Empezar"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
msgctxt "@info:status"
-msgid "Please wait until the current job has been sent."
-msgstr "Espere hasta que se envíe el trabajo actual."
+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."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
msgctxt "@info:title"
-msgid "Print error"
-msgstr "Error de impresión"
+msgid "Update your printer"
+msgstr "Actualice su impresora"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
-msgctxt "@info:text"
-msgid "Could not upload the data to the printer."
-msgstr "No se han podido cargar los datos en la impresora."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
-msgctxt "@info:title"
-msgid "Network error"
-msgstr "Error de red"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
#, python-brace-format
msgctxt "@info:status"
msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
msgstr "Cura ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
msgctxt "@info:title"
msgid "Sending materials to printer"
msgstr "Enviando materiales a la impresora"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
+#, python-brace-format
+msgctxt "@info:status"
+msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
+msgstr "Está intentando conectarse a {0} pero ese no es el host de un grupo. Puede visitar la página web para configurarlo como host de grupo."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
+msgctxt "@info:title"
+msgid "Not a group host"
+msgstr "No es un host de grupo"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
+msgctxt "@action"
+msgid "Configure group"
+msgstr "Configurar grupo"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+msgctxt "@info:status"
+msgid "Please wait until the current job has been sent."
+msgstr "Espere hasta que se envíe el trabajo actual."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+msgctxt "@info:title"
+msgid "Print error"
+msgstr "Error de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
+msgctxt "@info:text"
+msgid "Could not upload the data to the printer."
+msgstr "No se han podido cargar los datos en la impresora."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
+msgctxt "@info:title"
+msgid "Network error"
+msgstr "Error de red"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
+msgctxt "@info:status"
+msgid "Sending Print Job"
+msgstr "Enviando trabajo de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
+msgctxt "@info:status"
+msgid "Uploading print job to printer."
+msgstr "Cargando el trabajo de impresión a la impresora."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
msgctxt "@info:status"
msgid "Print job queue is full. The printer can't accept a new job."
msgstr "La cola de trabajos de impresión está llena. La impresora no puede aceptar trabajos nuevos."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
msgctxt "@info:title"
msgid "Queue Full"
msgstr "Cola llena"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
msgctxt "@info:status"
msgid "Print job was successfully sent to the printer."
msgstr "El trabajo de impresión se ha enviado correctamente a la impresora."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
msgctxt "@info:title"
msgid "Data Sent"
msgstr "Fecha de envío"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
-msgctxt "@info:status"
-msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
-msgstr "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
-msgctxt "@info:title"
-msgid "Update your printer"
-msgstr "Actualice su impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
msgctxt "@action:button Preceded by 'Ready to'."
msgid "Print over network"
msgstr "Imprimir a través de la red"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr "Imprime a través de la red"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
msgctxt "@info:status"
msgid "Connected over the network"
msgstr "Conectado a través de la red"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
msgctxt "@action"
-msgid "Select upgrades"
-msgstr "Seleccionar actualizaciones"
+msgid "Connect via Network"
+msgstr "Conectar a través de la red"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
-msgctxt "@action"
-msgid "Level build plate"
-msgstr "Nivelar placa de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
-msgctxt "@title:tab"
-msgid "Recommended"
-msgstr "Recomendado"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
-msgctxt "@title:tab"
-msgid "Custom"
-msgstr "Personalizado"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
-#, 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."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
-msgctxt "@info:title"
-msgid "Open Project File"
-msgstr "Abrir archivo de proyecto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
-#, 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}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
-msgctxt "@info:title"
-msgid "Can't Open Project File"
-msgstr "No se puede abrir el archivo de proyecto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
-#, 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}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:693
-#, 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."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:27 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:33
-msgctxt "@item:inlistbox"
-msgid "3MF File"
-msgstr "Archivo 3MF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/__init__.py:17 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzReader/__init__.py:17
-msgctxt "@item:inlistbox"
-msgid "Compressed G-code File"
-msgstr "Archivo GCode comprimido"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
-msgctxt "@error:not supported"
-msgid "GCodeGzWriter does not support text mode."
-msgstr "GCodeGzWriter no es compatible con el modo texto."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:31
-msgctxt "@info:title"
-msgid "3D Model Assistant"
-msgstr "Asistente del modelo 3D"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:96
-#, python-brace-format
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
msgctxt "@info:status"
-msgid ""
-"One or more 3D models may not print optimally due to the model size and material configuration:
\n"
-"{model_names}
\n"
-"Find out how to ensure the best possible print quality and reliability.
\n"
-"View print quality guide
"
-msgstr ""
-"Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:
\n"
-"{model_names}
\n"
-"Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.
\n"
-"Ver guía de impresión de calidad
"
+msgid "tomorrow"
+msgstr "mañana"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
-msgctxt "@info"
-msgid "Could not access update information."
-msgstr "No se pudo acceder a la información actualizada."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
-#, python-brace-format
-msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
-msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
-msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no tiene la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
-#, python-format
-msgctxt "@info:title The %s gets replaced with the printer name."
-msgid "New %s firmware available"
-msgstr "Nuevo firmware de %s disponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
-msgctxt "@action:button"
-msgid "How to update"
-msgstr "Cómo actualizar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "G File"
-msgstr "Archivo G"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:347
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
msgctxt "@info:status"
-msgid "Parsing G-code"
-msgstr "Analizar GCode"
+msgid "today"
+msgstr "hoy"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:349 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:503
-msgctxt "@info:title"
-msgid "G-code Details"
-msgstr "Datos de GCode"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
+msgctxt "@item:inmenu"
+msgid "USB printing"
+msgstr "Impresión USB"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:501
-msgctxt "@info:generic"
-msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
-msgstr "Asegúrese de que el GCode es adecuado para la impresora y para su configuración antes de enviar el archivo a la misma. Es posible que la representación del GCode no sea precisa."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Print via USB"
+msgstr "Imprimir mediante USB"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:12
-msgctxt "@label"
-msgid "Support Blocker"
-msgstr "Bloqueador de soporte"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:13
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
msgctxt "@info:tooltip"
-msgid "Create a volume in which supports are not printed."
-msgstr "Cree un volumen que no imprima los soportes."
+msgid "Print via USB"
+msgstr "Imprimir mediante USB"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:15
-msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
-msgid "Open Compressed Triangle Mesh"
-msgstr "Open Compressed Triangle Mesh"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
+msgctxt "@info:status"
+msgid "Connected via USB"
+msgstr "Conectado mediante USB"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
+msgctxt "@label"
+msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
+msgstr "Se está realizando una impresión con USB, si cierra Cura detendrá la impresión. ¿Desea continuar?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
+msgstr "Todavía hay una impresión en curso. Cura no puede iniciar otra impresión a través de USB hasta que se haya completado la impresión anterior."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid "Print in Progress"
+msgstr "Impresión en curso"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
msgctxt "@item:inlistbox"
-msgid "COLLADA Digital Asset Exchange"
-msgstr "COLLADA Digital Asset Exchange"
+msgid "X3D File"
+msgstr "Archivo X3D"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:23
-msgctxt "@item:inlistbox"
-msgid "glTF Binary"
-msgstr "glTF binario"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:27
-msgctxt "@item:inlistbox"
-msgid "glTF Embedded JSON"
-msgstr "glTF incrustado JSON"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:36
-msgctxt "@item:inlistbox"
-msgid "Stanford Triangle Format"
-msgstr "Stanford Triangle Format"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:40
-msgctxt "@item:inlistbox"
-msgid "Compressed COLLADA Digital Asset Exchange"
-msgstr "COLLADA Digital Asset Exchange comprimido"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPReader/__init__.py:22 /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/__init__.py:28
-msgctxt "@item:inlistbox"
-msgid "Ultimaker Format Package"
-msgstr "Paquete de formato Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/LegacyProfileReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "Cura 15.04 profiles"
-msgstr "Perfiles de Cura 15.04"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PrepareStage/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Prepare"
-msgstr "Preparar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/__init__.py:14
-msgctxt "@item:inmenu"
-msgid "Monitor"
-msgstr "Supervisar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/XRayView/__init__.py:12
+#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
msgctxt "@item:inlistbox"
msgid "X-Ray view"
msgstr "Vista de rayos X"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
-msgctxt "@error:zip"
-msgid "Error writing 3mf file."
-msgstr "Error al escribir el archivo 3MF."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "3MF file"
-msgstr "Archivo 3MF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:34
-msgctxt "@item:inlistbox"
-msgid "Cura Project 3MF file"
-msgstr "Archivo 3MF del proyecto de Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
-msgctxt "@error:zip"
-msgid "3MF Writer plug-in is corrupt."
-msgstr "El complemento del Escritor de 3MF está dañado."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
-msgctxt "@error:zip"
-msgid "No permission to write the workspace here."
-msgstr "No tiene permiso para escribir el espacio de trabajo aquí."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
-msgctxt "@error:zip"
-msgid "The operating system does not allow saving a project file to this location or with this file name."
-msgstr "El sistema operativo no permite guardar un archivo de proyecto en esta ubicación ni con este nombre de archivo."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PreviewStage/__init__.py:13
-msgctxt "@item:inmenu"
-msgid "Preview"
-msgstr "Vista previa"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/__init__.py:15
-msgctxt "@item:inlistbox"
-msgid "Layer view"
-msgstr "Vista de capas"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:124
-msgctxt "@info:status"
-msgid "Cura does not accurately display layers when Wire Printing is enabled."
-msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:125
-msgctxt "@info:title"
-msgid "Simulation View"
-msgstr "Vista de simulación"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:status"
-msgid "Nothing is shown because you need to slice first."
-msgstr "No se muestra nada porque primero hay que cortar."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:title"
-msgid "No layers to show"
-msgstr "No hay capas para mostrar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:127 /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:74
-msgctxt "@info:option_text"
-msgid "Do not show this message again"
-msgstr "No volver a mostrar este mensaje"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
-msgctxt "@action"
-msgid "Machine Settings"
-msgstr "Ajustes de la máquina"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Solid view"
-msgstr "Vista de sólidos"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:71
-msgctxt "@info:status"
-msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
-msgstr "Las áreas resaltadas indican que faltan superficies o son inusuales. Corrija los errores en el modelo y vuelva a abrirlo en Cura."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:73
-msgctxt "@info:title"
-msgid "Model Errors"
-msgstr "Errores de modelo"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:79
-msgctxt "@action:button"
-msgid "Learn more"
-msgstr "Más información"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/UFPWriter.py:134
-msgctxt "@info:error"
-msgid "Can't write to UFP file:"
-msgstr "No se puede escribir en el archivo UFP:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:74
-msgctxt "@error:not supported"
-msgid "GCodeWriter does not support non-text mode."
-msgstr "GCodeWriter no es compatible con el modo sin texto."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:96
-msgctxt "@warning:status"
-msgid "Please prepare G-code before exporting."
-msgstr "Prepare el Gcode antes de la exportación."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "JPG Image"
-msgstr "Imagen JPG"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "JPEG Image"
-msgstr "Imagen JPEG"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:22
-msgctxt "@item:inlistbox"
-msgid "PNG Image"
-msgstr "Imagen PNG"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "BMP Image"
-msgstr "Imagen BMP"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:30
-msgctxt "@item:inlistbox"
-msgid "GIF Image"
-msgstr "Imagen GIF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DriveApiService.py:86 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
-msgctxt "@info:backup_status"
-msgid "There was an error trying to restore your backup."
-msgstr "Se ha producido un error al intentar restaurar su copia de seguridad."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
-msgctxt "@info:title"
-msgid "Backups"
-msgstr "Copias de seguridad"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
-msgctxt "@info:backup_status"
-msgid "There was an error while uploading your backup."
-msgstr "Se ha producido un error al cargar su copia de seguridad."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
-msgctxt "@info:backup_status"
-msgid "Creating your backup..."
-msgstr "Creando copia de seguridad..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
-msgctxt "@info:backup_status"
-msgid "There was an error while creating your backup."
-msgstr "Se ha producido un error al crear la copia de seguridad."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
-msgctxt "@info:backup_status"
-msgid "Uploading your backup..."
-msgstr "Cargando su copia de seguridad..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
-msgctxt "@info:backup_status"
-msgid "Your backup has finished uploading."
-msgstr "Su copia de seguridad ha terminado de cargarse."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
-msgctxt "@error:file_size"
-msgid "The backup exceeds the maximum file size."
-msgstr "La copia de seguridad excede el tamaño máximo de archivo."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
-msgctxt "@item:inmenu"
-msgid "Manage backups"
-msgstr "Administrar copias de seguridad"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
-msgctxt "@title"
-msgid "Update Firmware"
-msgstr "Actualizar firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
-msgctxt "@label"
-msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
-msgstr "El firmware es la parte del software que se ejecuta directamente en la impresora 3D. Este firmware controla los motores de pasos, regula la temperatura y, finalmente, hace que funcione la impresora."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
-msgctxt "@label"
-msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
-msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
-msgctxt "@action:button"
-msgid "Automatically upgrade Firmware"
-msgstr "Actualización de firmware automática"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
-msgctxt "@action:button"
-msgid "Upload custom Firmware"
-msgstr "Cargar firmware personalizado"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
-msgctxt "@label"
-msgid "Firmware can not be updated because there is no connection with the printer."
-msgstr "No se puede actualizar el firmware porque no hay conexión con la impresora."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
-msgctxt "@label"
-msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
-msgstr "No se puede actualizar el firmware porque la conexión con la impresora no permite actualizaciones de firmware."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
-msgctxt "@title:window"
-msgid "Select custom firmware"
-msgstr "Seleccionar firmware personalizado"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
-msgctxt "@title:window"
-msgid "Firmware Update"
-msgstr "Actualización del firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
-msgctxt "@label"
-msgid "Updating firmware."
-msgstr "Actualización del firmware."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
-msgctxt "@label"
-msgid "Firmware update completed."
-msgstr "Actualización del firmware completada."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
-msgctxt "@label"
-msgid "Firmware update failed due to an unknown error."
-msgstr "Se ha producido un error al actualizar el firmware debido a un error desconocido."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
-msgctxt "@label"
-msgid "Firmware update failed due to an communication error."
-msgstr "Se ha producido un error al actualizar el firmware debido a un error de comunicación."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
-msgctxt "@label"
-msgid "Firmware update failed due to an input/output error."
-msgstr "Se ha producido un error al actualizar el firmware debido a un error de entrada/salida."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
-msgctxt "@label"
-msgid "Firmware update failed due to missing firmware."
-msgstr "Se ha producido un error al actualizar el firmware porque falta el firmware."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
-msgctxt "@title"
-msgid "Marketplace"
-msgstr "Marketplace"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
-msgctxt "@label"
-msgid "You need to accept the license to install the package"
-msgstr "Tiene que aceptar la licencia para instalar el paquete"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
-msgctxt "@title"
-msgid "Changes from your account"
-msgstr "Cambios desde su cuenta"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
-msgctxt "@button"
-msgid "Dismiss"
-msgstr "Descartar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:182
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
-msgctxt "@button"
-msgid "Next"
-msgstr "Siguiente"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
-msgctxt "@label"
-msgid "The following packages will be added:"
-msgstr "Se añadirán los siguientes paquetes:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
-msgctxt "@label"
-msgid "The following packages can not be installed because of an incompatible Cura version:"
-msgstr "Los siguientes paquetes no se pueden instalar debido a una versión no compatible de Cura:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
-msgctxt "@title:window"
-msgid "Confirm uninstall"
-msgstr "Confirmar desinstalación"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
-msgctxt "@text:window"
-msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
-msgstr "Va a desinstalar materiales o perfiles que todavía están en uso. Si confirma la desinstalación, los siguientes materiales o perfiles volverán a sus valores predeterminados."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
-msgctxt "@text:window"
-msgid "Materials"
-msgstr "Materiales"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
-msgctxt "@text:window"
-msgid "Profiles"
-msgstr "Perfiles"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
-msgctxt "@action:button"
-msgid "Confirm"
-msgstr "Confirmar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
-msgctxt "@info"
-msgid "Could not connect to the Cura Package database. Please check your connection."
-msgstr "No se ha podido conectar con la base de datos del Paquete Cura. Compruebe la conexión."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Contributions"
-msgstr "Contribuciones de la comunidad"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Plugins"
-msgstr "Complementos de la comunidad"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
-msgctxt "@label"
-msgid "Generic Materials"
-msgstr "Materiales genéricos"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
-msgctxt "@label"
-msgid "Version"
-msgstr "Versión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
-msgctxt "@label"
-msgid "Last updated"
-msgstr "Última actualización"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
-msgctxt "@label"
-msgid "Brand"
-msgstr "Marca"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
-msgctxt "@label"
-msgid "Downloads"
-msgstr "Descargas"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
-msgctxt "@title:tab"
-msgid "Installed plugins"
-msgstr "Complementos instalados"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
-msgctxt "@info"
-msgid "No plugin has been installed."
-msgstr "No se ha instalado ningún complemento."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
-msgctxt "@title:tab"
-msgid "Installed materials"
-msgstr "Materiales instalados"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
-msgctxt "@info"
-msgid "No material has been installed."
-msgstr "No se ha instalado ningún material."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
-msgctxt "@title:tab"
-msgid "Bundled plugins"
-msgstr "Complementos agrupados"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
-msgctxt "@title:tab"
-msgid "Bundled materials"
-msgstr "Materiales agrupados"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
-msgctxt "@label"
-msgid "Website"
-msgstr "Sitio web"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
-msgctxt "@label"
-msgid "Email"
-msgstr "Correo electrónico"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
-msgctxt "@description"
-msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
-msgstr "Inicie sesión para obtener complementos y materiales verificados para Ultimaker Cura Enterprise"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:199 /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:53
-msgctxt "@button"
-msgid "Sign in"
-msgstr "Iniciar sesión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
-msgctxt "@info"
-msgid "Fetching packages..."
-msgstr "Buscando paquetes..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
-msgctxt "@label"
-msgid "Compatibility"
-msgstr "Compatibilidad"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
-msgctxt "@label:table_header"
-msgid "Machine"
-msgstr "Máquina"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
-msgctxt "@label:table_header"
-msgid "Build Plate"
-msgstr "Placa de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
-msgctxt "@label:table_header"
-msgid "Support"
-msgstr "Soporte"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
-msgctxt "@label:table_header"
-msgid "Quality"
-msgstr "Calidad"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
-msgctxt "@action:label"
-msgid "Technical Data Sheet"
-msgstr "Especificaciones técnicas"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
-msgctxt "@action:label"
-msgid "Safety Data Sheet"
-msgstr "Especificaciones de seguridad"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
-msgctxt "@action:label"
-msgid "Printing Guidelines"
-msgstr "Directrices de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
-msgctxt "@action:label"
-msgid "Website"
-msgstr "Sitio web"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
-msgctxt "@title:tab"
-msgid "Plugins"
-msgstr "Complementos"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:457
-msgctxt "@title:tab"
-msgid "Materials"
-msgstr "Materiales"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
-msgctxt "@title:tab"
-msgid "Installed"
-msgstr "Instalado"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
msgctxt "@info:tooltip"
-msgid "Go to Web Marketplace"
-msgstr "Ir a Web Marketplace"
+msgid "Some things could be problematic in this print. Click to see tips for adjustment."
+msgstr "Algunos elementos pueden causar problemas durante la impresión. Haga clic para ver consejos sobre cómo ajustarlos."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
-msgctxt "@label"
-msgid "Will install upon restarting"
-msgstr "Se instalará después de reiniciar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
-msgctxt "@action:button"
-msgid "Update"
-msgstr "Actualizar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
-msgctxt "@action:button"
-msgid "Updating"
-msgstr "Actualizando"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
-msgctxt "@action:button"
-msgid "Updated"
-msgstr "Actualizado"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to update"
-msgstr "Inicie sesión para realizar la actualización"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Downgrade"
-msgstr "Degradar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Uninstall"
-msgstr "Desinstalar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
-msgctxt "@action:button"
-msgid "Installed"
-msgstr "Instalado"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to install or update"
-msgstr "Inicie sesión para realizar la instalación o la actualización"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Buy material spools"
-msgstr "Comprar bobinas de material"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
-msgctxt "@label"
-msgid "Premium"
-msgstr "Prémium"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
-msgctxt "@label"
-msgid "Search materials"
-msgstr "Buscar materiales"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
-msgctxt "@info"
-msgid "You will need to restart Cura before changes in packages have effect."
-msgstr "Tendrá que reiniciar Cura para que los cambios de los paquetes surtan efecto."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
-msgctxt "@info:button, %1 is the application name"
-msgid "Quit %1"
-msgstr "Salir de %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
-msgctxt "@action:button"
-msgid "Back"
-msgstr "Atrás"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
-msgctxt "@action:button"
-msgid "Install"
-msgstr "Instalar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
-msgctxt "@label"
-msgid "Mesh Type"
-msgstr "Tipo de malla"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
-msgctxt "@label"
-msgid "Normal model"
-msgstr "Modelo normal"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
-msgctxt "@label"
-msgid "Print as support"
-msgstr "Imprimir como soporte"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
-msgctxt "@label"
-msgid "Modify settings for overlaps"
-msgstr "Modificar los ajustes de las superposiciones"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
-msgctxt "@label"
-msgid "Don't support overlaps"
-msgstr "No es compatible con superposiciones"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
-msgctxt "@item:inlistbox"
-msgid "Infill mesh only"
-msgstr "Solo malla de relleno"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
-msgctxt "@item:inlistbox"
-msgid "Cutting mesh"
-msgstr "Cortar malla"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
-msgctxt "@action:button"
-msgid "Select settings"
-msgstr "Seleccionar ajustes"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
-msgctxt "@title:window"
-msgid "Select Settings to Customize for this model"
-msgstr "Seleccionar ajustes o personalizar este modelo"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
-msgctxt "@label:textbox"
-msgid "Filter..."
-msgstr "Filtrar..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
-msgctxt "@label:checkbox"
-msgid "Show all"
-msgstr "Mostrar todo"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
-msgctxt "@title:window"
-msgid "Post Processing Plugin"
-msgstr "Complemento de posprocesamiento"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
-msgctxt "@label"
-msgid "Post Processing Scripts"
-msgstr "Secuencias de comandos de posprocesamiento"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
-msgctxt "@action"
-msgid "Add a script"
-msgstr "Añadir secuencia de comando"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
-msgctxt "@label"
-msgid "Settings"
-msgstr "Ajustes"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
-msgctxt "@info:tooltip"
-msgid "Change active post-processing scripts."
-msgstr "Cambiar las secuencias de comandos de posprocesamiento."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
-msgctxt "@info:tooltip"
-msgid "The following script is active:"
-msgid_plural "The following scripts are active:"
-msgstr[0] "La siguiente secuencia de comandos está activa:"
-msgstr[1] "Las siguientes secuencias de comandos están activas:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
-msgctxt "@label"
-msgid "Queued"
-msgstr "En cola"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
-msgctxt "@label link to connect manager"
-msgid "Manage in browser"
-msgstr "Gestionar en el navegador"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
-msgctxt "@label"
-msgid "There are no print jobs in the queue. Slice and send a job to add one."
-msgstr "No hay trabajos de impresión en la cola. Segmentar y enviar un trabajo para añadir uno."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
-msgctxt "@label"
-msgid "Print jobs"
-msgstr "Trabajos de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
-msgctxt "@label"
-msgid "Total print time"
-msgstr "Tiempo de impresión total"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
-msgctxt "@label"
-msgid "Waiting for"
-msgstr "Esperando"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
-msgctxt "@title:window"
-msgid "Configuration Changes"
-msgstr "Cambios de configuración"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
-msgctxt "@action:button"
-msgid "Override"
-msgstr "Anular"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
-msgctxt "@label"
-msgid "The assigned printer, %1, requires the following configuration change:"
-msgid_plural "The assigned printer, %1, requires the following configuration changes:"
-msgstr[0] "Es necesario realizar el siguiente cambio de configuración en la impresora asignada %1:"
-msgstr[1] "Es necesario realizar los siguientes cambios de configuración en la impresora asignada %1:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
-msgctxt "@label"
-msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
-msgstr "Se ha asignado la impresora %1, pero el trabajo tiene una configuración de material desconocido."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
-msgctxt "@label"
-msgid "Change material %1 from %2 to %3."
-msgstr "Cambiar material %1, de %2 a %3."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
-msgctxt "@label"
-msgid "Load %3 as material %1 (This cannot be overridden)."
-msgstr "Cargar %3 como material %1 (no se puede anular)."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
-msgctxt "@label"
-msgid "Change print core %1 from %2 to %3."
-msgstr "Cambiar print core %1, de %2 a %3."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
-msgctxt "@label"
-msgid "Change build plate to %1 (This cannot be overridden)."
-msgstr "Cambiar la placa de impresión a %1 (no se puede anular)."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
-msgctxt "@label"
-msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
-msgstr "Al sobrescribir la configuración se usarán los ajustes especificados con la configuración de impresora existente. Esto podría provocar un fallo en la impresión."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
-msgctxt "@label"
-msgid "Glass"
-msgstr "Vidrio"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
-msgctxt "@label"
-msgid "Aluminum"
-msgstr "Aluminio"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
-msgctxt "@label"
-msgid "Unavailable printer"
-msgstr "Impresora no disponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
-msgctxt "@label"
-msgid "First available"
-msgstr "Primera disponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
-msgctxt "@info"
-msgid "Please update your printer's firmware to manage the queue remotely."
-msgstr "Actualice el firmware de la impresora para gestionar la cola de forma remota."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
-msgctxt "@title:window"
-msgid "Connect to Networked Printer"
-msgstr "Conectar con la impresora en red"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
-msgctxt "@label"
-msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
-msgstr "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
-msgctxt "@label"
-msgid "Select your printer from the list below:"
-msgstr "Seleccione la impresora en la lista siguiente:"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
-msgctxt "@action:button"
-msgid "Edit"
-msgstr "Editar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:55
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:138
-msgctxt "@action:button"
-msgid "Remove"
-msgstr "Eliminar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
-msgctxt "@action:button"
-msgid "Refresh"
-msgstr "Actualizar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
-msgctxt "@label"
-msgid "If your printer is not listed, read the network printing troubleshooting guide"
-msgstr "Si la impresora no aparece en la lista, lea la guía de solución de problemas de impresión y red"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
-msgctxt "@label"
-msgid "Type"
-msgstr "Tipo"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
-msgctxt "@label"
-msgid "Firmware version"
-msgstr "Versión de firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
-msgctxt "@label"
-msgid "Address"
-msgstr "Dirección"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
-msgctxt "@label"
-msgid "This printer is not set up to host a group of printers."
-msgstr "Esta impresora no está configurada para alojar un grupo de impresoras."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
-msgctxt "@label"
-msgid "This printer is the host for a group of %1 printers."
-msgstr "Esta impresora aloja un grupo de %1 impresoras."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
-msgctxt "@label"
-msgid "The printer at this address has not yet responded."
-msgstr "La impresora todavía no ha respondido en esta dirección."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
-msgctxt "@action:button"
-msgid "Connect"
-msgstr "Conectar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
-msgctxt "@title:window"
-msgid "Invalid IP address"
-msgstr "Dirección IP no válida"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
-msgctxt "@text"
-msgid "Please enter a valid IP address."
-msgstr "Introduzca una dirección IP válida."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
-msgctxt "@title:window"
-msgid "Printer Address"
-msgstr "Dirección de la impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
-msgctxt "@label"
-msgid "Enter the IP address of your printer on the network."
-msgstr "Introduzca la dirección IP de la impresora en la red."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:227
-msgctxt "@action:button"
-msgid "OK"
-msgstr "Aceptar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
-msgctxt "@title:window"
-msgid "Print over network"
-msgstr "Imprimir a través de la red"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
-msgctxt "@action:button"
-msgid "Print"
-msgstr "Imprimir"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
-msgctxt "@label"
-msgid "Printer selection"
-msgstr "Selección de la impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
-msgctxt "@label"
-msgid "Move to top"
-msgstr "Mover al principio"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
-msgctxt "@label"
-msgid "Delete"
-msgstr "Borrar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:290
-msgctxt "@label"
-msgid "Resume"
-msgstr "Reanudar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
-msgctxt "@label"
-msgid "Pausing..."
-msgstr "Pausando..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
-msgctxt "@label"
-msgid "Resuming..."
-msgstr "Reanudando..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:285 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:294
-msgctxt "@label"
-msgid "Pause"
-msgstr "Pausar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
-msgctxt "@label"
-msgid "Aborting..."
-msgstr "Cancelando..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
-msgctxt "@label"
-msgid "Abort"
-msgstr "Cancelar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to move %1 to the top of the queue?"
-msgstr "¿Seguro que desea mover %1 al principio de la cola?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
-msgctxt "@window:title"
-msgid "Move print job to top"
-msgstr "Mover trabajo de impresión al principio"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to delete %1?"
-msgstr "¿Seguro que desea borrar %1?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
-msgctxt "@window:title"
-msgid "Delete print job"
-msgstr "Borrar trabajo de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to abort %1?"
-msgstr "¿Seguro que desea cancelar %1?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:336
-msgctxt "@window:title"
-msgid "Abort print"
-msgstr "Cancela la impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
-msgctxt "@label:status"
-msgid "Aborted"
-msgstr "Cancelado"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
-msgctxt "@label:status"
-msgid "Finished"
-msgstr "Terminado"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
-msgctxt "@label:status"
-msgid "Preparing..."
-msgstr "Preparando..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
-msgctxt "@label:status"
-msgid "Aborting..."
-msgstr "Cancelando..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
-msgctxt "@label:status"
-msgid "Pausing..."
-msgstr "Pausando..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
-msgctxt "@label:status"
-msgid "Paused"
-msgstr "En pausa"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
-msgctxt "@label:status"
-msgid "Resuming..."
-msgstr "Reanudando..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
-msgctxt "@label:status"
-msgid "Action required"
-msgstr "Acción requerida"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
-msgctxt "@label:status"
-msgid "Finishes %1 at %2"
-msgstr "Termina el %1 a las %2"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
-msgctxt "@label link to Connect and Cloud interfaces"
-msgid "Manage printer"
-msgstr "Administrar impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
-msgctxt "@label:status"
-msgid "Loading..."
-msgstr "Cargando..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
-msgctxt "@label:status"
-msgid "Unavailable"
-msgstr "No disponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
-msgctxt "@label:status"
-msgid "Unreachable"
-msgstr "No se puede conectar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
-msgctxt "@label:status"
-msgid "Idle"
-msgstr "Sin actividad"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
-msgctxt "@label:status"
-msgid "Printing"
-msgstr "Imprimiendo"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
-msgctxt "@label"
-msgid "Untitled"
-msgstr "Sin título"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
-msgctxt "@label"
-msgid "Anonymous"
-msgstr "Anónimo"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
-msgctxt "@label:status"
-msgid "Requires configuration changes"
-msgstr "Debe cambiar la configuración"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
-msgctxt "@action:button"
-msgid "Details"
-msgstr "Detalles"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
-msgctxt "@label"
-msgid "Please select any upgrades made to this Ultimaker Original"
-msgstr "Seleccione cualquier actualización de Ultimaker Original"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
-msgctxt "@label"
-msgid "Heated Build Plate (official kit or self-built)"
-msgstr "Placa de impresión caliente (kit oficial o construida por usted mismo)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
-msgctxt "@title"
-msgid "Build Plate Leveling"
-msgstr "Nivelación de la placa de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
-msgctxt "@label"
-msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
-msgstr "Ahora puede ajustar la placa de impresión para asegurarse de que sus impresiones salgan muy bien. Al hacer clic en 'Mover a la siguiente posición', la tobera se trasladará a las diferentes posiciones que se pueden ajustar."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
-msgctxt "@label"
-msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
-msgstr "Para cada posición: inserte una hoja de papel debajo de la tobera y ajuste la altura de la placa de impresión. La altura de la placa de impresión es correcta cuando el papel queda ligeramente sujeto por la punta de la tobera."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
-msgctxt "@action:button"
-msgid "Start Build Plate Leveling"
-msgstr "Iniciar nivelación de la placa de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
-msgctxt "@action:button"
-msgid "Move to Next Position"
-msgstr "Mover a la siguiente posición"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
msgctxt "@title:window"
msgid "Open Project"
msgstr "Abrir proyecto"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
msgctxt "@action:ComboBox Update/override existing profile"
msgid "Update existing"
msgstr "Actualizar existente"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
msgctxt "@action:ComboBox Save settings in a new profile"
msgid "Create new"
msgstr "Crear nuevo"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
msgctxt "@action:title"
msgid "Summary - Cura Project"
msgstr "Resumen: proyecto de Cura"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
msgctxt "@action:label"
msgid "Printer settings"
msgstr "Ajustes de la impresora"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
msgctxt "@info:tooltip"
msgid "How should the conflict in the machine be resolved?"
msgstr "¿Cómo debería solucionarse el conflicto en la máquina?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
msgctxt "@action:label"
msgid "Type"
msgstr "Tipo"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
msgctxt "@action:label"
msgid "Printer Group"
msgstr "Grupo de impresoras"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
msgctxt "@action:label"
msgid "Profile settings"
msgstr "Ajustes del perfil"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
msgctxt "@info:tooltip"
msgid "How should the conflict in the profile be resolved?"
msgstr "¿Cómo debería solucionarse el conflicto en el perfil?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
msgctxt "@action:label"
msgid "Name"
msgstr "Nombre"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
msgctxt "@action:label"
msgid "Intent"
msgstr "Intent"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
msgctxt "@action:label"
msgid "Not in profile"
msgstr "No está en el perfil"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
msgctxt "@action:label"
msgid "%1 override"
msgid_plural "%1 overrides"
msgstr[0] "%1 sobrescrito"
msgstr[1] "%1 sobrescritos"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
msgctxt "@action:label"
msgid "Derivative from"
msgstr "Derivado de"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
msgctxt "@action:label"
msgid "%1, %2 override"
msgid_plural "%1, %2 overrides"
msgstr[0] "%1, %2 sobrescrito"
msgstr[1] "%1, %2 sobrescritos"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
msgctxt "@action:label"
msgid "Material settings"
msgstr "Ajustes del material"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
msgctxt "@info:tooltip"
msgid "How should the conflict in the material be resolved?"
msgstr "¿Cómo debería solucionarse el conflicto en el material?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
msgctxt "@action:label"
msgid "Setting visibility"
msgstr "Visibilidad de los ajustes"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
msgctxt "@action:label"
msgid "Mode"
msgstr "Modo"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
msgctxt "@action:label"
msgid "Visible settings:"
msgstr "Ajustes visibles:"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
msgctxt "@action:label"
msgid "%1 out of %2"
msgstr "%1 de un total de %2"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
msgctxt "@action:warning"
msgid "Loading a project will clear all models on the build plate."
msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
msgctxt "@action:button"
msgid "Open"
msgstr "Abrir"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.qml:22
-msgctxt "@info:tooltip"
-msgid "Some things could be problematic in this print. Click to see tips for adjustment."
-msgstr "Algunos elementos pueden causar problemas durante la impresión. Haga clic para ver consejos sobre cómo ajustarlos."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
+msgctxt "@button"
+msgid "Want more?"
+msgstr "¿Desea obtener más información?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:100
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
+msgctxt "@button"
+msgid "Backup Now"
+msgstr "Realizar copia de seguridad ahora"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
+msgctxt "@checkbox:description"
+msgid "Auto Backup"
+msgstr "Copia de seguridad automática"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
+msgctxt "@checkbox:description"
+msgid "Automatically create a backup each day that Cura is started."
+msgstr "Crea una copia de seguridad de forma automática cada día que inicia Cura."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
+msgctxt "@button"
+msgid "Restore"
+msgstr "Restaurar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
+msgctxt "@dialog:title"
+msgid "Delete Backup"
+msgstr "Eliminar copia de seguridad"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
+msgctxt "@dialog:info"
+msgid "Are you sure you want to delete this backup? This cannot be undone."
+msgstr "¿Seguro que desea eliminar esta copia de seguridad? Esta acción no se puede deshacer."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
+msgctxt "@dialog:title"
+msgid "Restore Backup"
+msgstr "Restaurar copia de seguridad"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
+msgctxt "@dialog:info"
+msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
+msgstr "Deberá reiniciar Cura para restaurar su copia de seguridad. ¿Desea cerrar Cura ahora?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
+msgctxt "@backuplist:label"
+msgid "Cura Version"
+msgstr "Versión de Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
+msgctxt "@backuplist:label"
+msgid "Machines"
+msgstr "Máquinas"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
+msgctxt "@backuplist:label"
+msgid "Materials"
+msgstr "Materiales"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
+msgctxt "@backuplist:label"
+msgid "Profiles"
+msgstr "Perfiles"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
+msgctxt "@backuplist:label"
+msgid "Plugins"
+msgstr "Complementos"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
+msgctxt "@title:window"
+msgid "Cura Backups"
+msgstr "Copias de seguridad de Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
+msgctxt "@title"
+msgid "My Backups"
+msgstr "Mis copias de seguridad"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
+msgctxt "@empty_state"
+msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
+msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Realizar copia de seguridad ahora para crear una."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
+msgctxt "@backup_limit_info"
+msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
+msgstr "Durante la fase de vista previa, solo se mostrarán 5 copias de seguridad. Elimine una copia de seguridad para ver copias de seguridad antiguas."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
+msgctxt "@description"
+msgid "Backup and synchronize your Cura settings."
+msgstr "Realice una copia de seguridad y sincronice sus ajustes de Cura."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199
+msgctxt "@button"
+msgid "Sign in"
+msgstr "Iniciar sesión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
+msgctxt "@title"
+msgid "Update Firmware"
+msgstr "Actualizar firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
+msgctxt "@label"
+msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
+msgstr "El firmware es la parte del software que se ejecuta directamente en la impresora 3D. Este firmware controla los motores de pasos, regula la temperatura y, finalmente, hace que funcione la impresora."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
+msgctxt "@label"
+msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
+msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
+msgctxt "@action:button"
+msgid "Automatically upgrade Firmware"
+msgstr "Actualización de firmware automática"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
+msgctxt "@action:button"
+msgid "Upload custom Firmware"
+msgstr "Cargar firmware personalizado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
+msgctxt "@label"
+msgid "Firmware can not be updated because there is no connection with the printer."
+msgstr "No se puede actualizar el firmware porque no hay conexión con la impresora."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
+msgctxt "@label"
+msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
+msgstr "No se puede actualizar el firmware porque la conexión con la impresora no permite actualizaciones de firmware."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
+msgctxt "@title:window"
+msgid "Select custom firmware"
+msgstr "Seleccionar firmware personalizado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
+msgctxt "@title:window"
+msgid "Firmware Update"
+msgstr "Actualización del firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
+msgctxt "@label"
+msgid "Updating firmware."
+msgstr "Actualización del firmware."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
+msgctxt "@label"
+msgid "Firmware update completed."
+msgstr "Actualización del firmware completada."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
+msgctxt "@label"
+msgid "Firmware update failed due to an unknown error."
+msgstr "Se ha producido un error al actualizar el firmware debido a un error desconocido."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
+msgctxt "@label"
+msgid "Firmware update failed due to an communication error."
+msgstr "Se ha producido un error al actualizar el firmware debido a un error de comunicación."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
+msgctxt "@label"
+msgid "Firmware update failed due to an input/output error."
+msgstr "Se ha producido un error al actualizar el firmware debido a un error de entrada/salida."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
+msgctxt "@label"
+msgid "Firmware update failed due to missing firmware."
+msgstr "Se ha producido un error al actualizar el firmware porque falta el firmware."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
+msgctxt "@title:window"
+msgid "Convert Image..."
+msgstr "Convertir imagen..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
+msgctxt "@info:tooltip"
+msgid "The maximum distance of each pixel from \"Base.\""
+msgstr "La distancia máxima de cada píxel desde la \"Base\"."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
+msgctxt "@action:label"
+msgid "Height (mm)"
+msgstr "Altura (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
+msgctxt "@info:tooltip"
+msgid "The base height from the build plate in millimeters."
+msgstr "La altura de la base desde la placa de impresión en milímetros."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
+msgctxt "@action:label"
+msgid "Base (mm)"
+msgstr "Base (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
+msgctxt "@info:tooltip"
+msgid "The width in millimeters on the build plate."
+msgstr "La anchura en milímetros en la placa de impresión."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
+msgctxt "@action:label"
+msgid "Width (mm)"
+msgstr "Anchura (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
+msgctxt "@info:tooltip"
+msgid "The depth in millimeters on the build plate"
+msgstr "La profundidad en milímetros en la placa de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
+msgctxt "@action:label"
+msgid "Depth (mm)"
+msgstr "Profundidad (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
+msgctxt "@info:tooltip"
+msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
+msgstr "Para las litofanías, los píxeles oscuros deben coincidir con ubicaciones más gruesas para bloquear la entrada de más luz. En los mapas de altura, los píxeles más claros se corresponden con un terreno más alto, por lo que dichos píxeles deben coincidir con ubicaciones más gruesas en el modelo 3D generado."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Darker is higher"
+msgstr "Cuanto más oscuro más alto"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Lighter is higher"
+msgstr "Cuanto más claro más alto"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
+msgctxt "@info:tooltip"
+msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
+msgstr "Para las litofanías hay disponible un modelo logarítmico simple para la translucidez. En los mapas de altura, los valores de los píxeles corresponden a las alturas linealmente."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+msgctxt "@item:inlistbox"
+msgid "Linear"
+msgstr "Lineal"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
+msgctxt "@item:inlistbox"
+msgid "Translucency"
+msgstr "Translucidez"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
+msgctxt "@info:tooltip"
+msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
+msgstr "El porcentaje de luz que penetra en una impresión con un grosor de 1 milímetro. Bajar este valor aumenta el contraste en las regiones oscuras y disminuye el contraste en las regiones claras de la imagen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
+msgctxt "@action:label"
+msgid "1mm Transmittance (%)"
+msgstr "Transmitancia de 1 mm (%)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
+msgctxt "@info:tooltip"
+msgid "The amount of smoothing to apply to the image."
+msgstr "La cantidad de suavizado que se aplica a la imagen."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
+msgctxt "@action:label"
+msgid "Smoothing"
+msgstr "Suavizado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
+msgctxt "@action:button"
+msgid "OK"
+msgstr "Aceptar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
+msgctxt "@title:tab"
+msgid "Printer"
+msgstr "Impresora"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
+msgctxt "@title:label"
+msgid "Nozzle Settings"
+msgstr "Ajustes de la tobera"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
+msgctxt "@label"
+msgid "Nozzle size"
+msgstr "Tamaño de la tobera"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
+msgctxt "@label"
+msgid "mm"
+msgstr "mm"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
+msgctxt "@label"
+msgid "Compatible material diameter"
+msgstr "Diámetro del material compatible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
+msgctxt "@label"
+msgid "Nozzle offset X"
+msgstr "Desplazamiento de la tobera sobre el eje X"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
+msgctxt "@label"
+msgid "Nozzle offset Y"
+msgstr "Desplazamiento de la tobera sobre el eje Y"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
+msgctxt "@label"
+msgid "Cooling Fan Number"
+msgstr "Número de ventilador de enfriamiento"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
+msgctxt "@title:label"
+msgid "Extruder Start G-code"
+msgstr "GCode inicial del extrusor"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
+msgctxt "@title:label"
+msgid "Extruder End G-code"
+msgstr "GCode final del extrusor"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
+msgctxt "@title:label"
+msgid "Printer Settings"
+msgstr "Ajustes de la impresora"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
+msgctxt "@label"
+msgid "X (Width)"
+msgstr "X (anchura)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
+msgctxt "@label"
+msgid "Y (Depth)"
+msgstr "Y (profundidad)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
+msgctxt "@label"
+msgid "Z (Height)"
+msgstr "Z (altura)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
+msgctxt "@label"
+msgid "Build plate shape"
+msgstr "Forma de la placa de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
+msgctxt "@label"
+msgid "Origin at center"
+msgstr "Origen en el centro"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
+msgctxt "@label"
+msgid "Heated bed"
+msgstr "Plataforma calentada"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
+msgctxt "@label"
+msgid "Heated build volume"
+msgstr "Volumen de impresión calentado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
+msgctxt "@label"
+msgid "G-code flavor"
+msgstr "Tipo de GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
+msgctxt "@title:label"
+msgid "Printhead Settings"
+msgstr "Ajustes del cabezal de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
+msgctxt "@label"
+msgid "X min"
+msgstr "X mín."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
+msgctxt "@label"
+msgid "Y min"
+msgstr "Y mín."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
+msgctxt "@label"
+msgid "X max"
+msgstr "X máx."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
+msgctxt "@label"
+msgid "Y max"
+msgstr "Y máx."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
+msgctxt "@label"
+msgid "Gantry Height"
+msgstr "Altura del puente"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
+msgctxt "@label"
+msgid "Number of Extruders"
+msgstr "Número de extrusores"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
+msgctxt "@label"
+msgid "Apply Extruder offsets to GCode"
+msgstr "Aplicar compensaciones del extrusor a GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
+msgctxt "@title:label"
+msgid "Start G-code"
+msgstr "Iniciar GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
+msgctxt "@title:label"
+msgid "End G-code"
+msgstr "Finalizar GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
msgctxt "@info"
msgid ""
"Please make sure your printer has a connection:\n"
@@ -2592,1364 +2243,971 @@ msgstr ""
"- Compruebe que la impresora está conectada a la red.\n"
"- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
msgctxt "@info"
msgid "Please connect your printer to the network."
msgstr "Conecte su impresora a la red."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:155
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155
msgctxt "@label link to technical assistance"
msgid "View user manuals online"
msgstr "Ver manuales de usuario en línea"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172
+msgctxt "@info"
+msgid "In order to monitor your print from Cura, please connect the printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
+msgctxt "@label"
+msgid "Mesh Type"
+msgstr "Tipo de malla"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
+msgctxt "@label"
+msgid "Normal model"
+msgstr "Modelo normal"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
+msgctxt "@label"
+msgid "Print as support"
+msgstr "Imprimir como soporte"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
+msgctxt "@label"
+msgid "Modify settings for overlaps"
+msgstr "Modificar los ajustes de las superposiciones"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
+msgctxt "@label"
+msgid "Don't support overlaps"
+msgstr "No es compatible con superposiciones"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
+msgctxt "@item:inlistbox"
+msgid "Infill mesh only"
+msgstr "Solo malla de relleno"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
+msgctxt "@item:inlistbox"
+msgid "Cutting mesh"
+msgstr "Cortar malla"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
+msgctxt "@action:button"
+msgid "Select settings"
+msgstr "Seleccionar ajustes"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
msgctxt "@title:window"
-msgid "More information on anonymous data collection"
-msgstr "Más información sobre la recopilación de datos anónimos"
+msgid "Select Settings to Customize for this model"
+msgstr "Seleccionar ajustes o personalizar este modelo"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
-msgctxt "@text:window"
-msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
-msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario. A continuación, hay un ejemplo de todos los datos que se comparten:"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96
+msgctxt "@label:textbox"
+msgid "Filter..."
+msgstr "Filtrar..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
-msgctxt "@text:window"
-msgid "I don't want to send anonymous data"
-msgstr "No deseo enviar datos anónimos"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
+msgctxt "@label:checkbox"
+msgid "Show all"
+msgstr "Mostrar todo"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
-msgctxt "@text:window"
-msgid "Allow sending anonymous data"
-msgstr "Permitir el envío de datos anónimos"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20
+msgctxt "@title:window"
+msgid "Post Processing Plugin"
+msgstr "Complemento de posprocesamiento"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59
+msgctxt "@label"
+msgid "Post Processing Scripts"
+msgstr "Secuencias de comandos de posprocesamiento"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235
+msgctxt "@action"
+msgid "Add a script"
+msgstr "Añadir secuencia de comando"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282
+msgctxt "@label"
+msgid "Settings"
+msgstr "Ajustes"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502
+msgctxt "@info:tooltip"
+msgid "Change active post-processing scripts."
+msgstr "Cambiar las secuencias de comandos de posprocesamiento."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506
+msgctxt "@info:tooltip"
+msgid "The following script is active:"
+msgid_plural "The following scripts are active:"
+msgstr[0] "La siguiente secuencia de comandos está activa:"
+msgstr[1] "Las siguientes secuencias de comandos están activas:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
msgctxt "@label"
msgid "Color scheme"
msgstr "Combinación de colores"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110
msgctxt "@label:listbox"
msgid "Material Color"
msgstr "Color del material"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114
msgctxt "@label:listbox"
msgid "Line Type"
msgstr "Tipo de línea"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118
msgctxt "@label:listbox"
msgid "Speed"
msgstr "Velocidad"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122
msgctxt "@label:listbox"
msgid "Layer Thickness"
msgstr "Grosor de la capa"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126
msgctxt "@label:listbox"
msgid "Line Width"
msgstr "Ancho de línea"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130
+msgctxt "@label:listbox"
+msgid "Flow"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171
msgctxt "@label"
msgid "Compatibility Mode"
msgstr "Modo de compatibilidad"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245
msgctxt "@label"
msgid "Travels"
msgstr "Desplazamientos"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251
msgctxt "@label"
msgid "Helpers"
msgstr "Asistentes"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
msgctxt "@label"
msgid "Shell"
msgstr "Perímetro"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:255 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
msgctxt "@label"
msgid "Infill"
msgstr "Relleno"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271
msgctxt "@label"
msgid "Starts"
msgstr "Inicios"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:314
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
msgctxt "@label"
msgid "Only Show Top Layers"
msgstr "Mostrar solo capas superiores"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:324
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332
msgctxt "@label"
msgid "Show 5 Detailed Layers On Top"
msgstr "Mostrar cinco capas detalladas en la parte superior"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:338
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346
msgctxt "@label"
msgid "Top / Bottom"
msgstr "Superior o inferior"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:342
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350
msgctxt "@label"
msgid "Inner Wall"
msgstr "Pared interior"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:405
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419
msgctxt "@label"
msgid "min"
msgstr "mín."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:464
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488
msgctxt "@label"
msgid "max"
msgstr "máx."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
-msgctxt "@title:label"
-msgid "Nozzle Settings"
-msgstr "Ajustes de la tobera"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
-msgctxt "@label"
-msgid "Nozzle size"
-msgstr "Tamaño de la tobera"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
-msgctxt "@label"
-msgid "mm"
-msgstr "mm"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
-msgctxt "@label"
-msgid "Compatible material diameter"
-msgstr "Diámetro del material compatible"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
-msgctxt "@label"
-msgid "Nozzle offset X"
-msgstr "Desplazamiento de la tobera sobre el eje X"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
-msgctxt "@label"
-msgid "Nozzle offset Y"
-msgstr "Desplazamiento de la tobera sobre el eje Y"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
-msgctxt "@label"
-msgid "Cooling Fan Number"
-msgstr "Número de ventilador de enfriamiento"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
-msgctxt "@title:label"
-msgid "Extruder Start G-code"
-msgstr "GCode inicial del extrusor"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
-msgctxt "@title:label"
-msgid "Extruder End G-code"
-msgstr "GCode final del extrusor"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
-msgctxt "@title:tab"
-msgid "Printer"
-msgstr "Impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
-msgctxt "@title:label"
-msgid "Printer Settings"
-msgstr "Ajustes de la impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
-msgctxt "@label"
-msgid "X (Width)"
-msgstr "X (anchura)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
-msgctxt "@label"
-msgid "Y (Depth)"
-msgstr "Y (profundidad)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
-msgctxt "@label"
-msgid "Z (Height)"
-msgstr "Z (altura)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
-msgctxt "@label"
-msgid "Build plate shape"
-msgstr "Forma de la placa de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
-msgctxt "@label"
-msgid "Origin at center"
-msgstr "Origen en el centro"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
-msgctxt "@label"
-msgid "Heated bed"
-msgstr "Plataforma calentada"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
-msgctxt "@label"
-msgid "Heated build volume"
-msgstr "Volumen de impresión calentado"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
-msgctxt "@label"
-msgid "G-code flavor"
-msgstr "Tipo de GCode"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
-msgctxt "@title:label"
-msgid "Printhead Settings"
-msgstr "Ajustes del cabezal de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
-msgctxt "@label"
-msgid "X min"
-msgstr "X mín."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
-msgctxt "@label"
-msgid "Y min"
-msgstr "Y mín."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
-msgctxt "@label"
-msgid "X max"
-msgstr "X máx."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
-msgctxt "@label"
-msgid "Y max"
-msgstr "Y máx."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
-msgctxt "@label"
-msgid "Gantry Height"
-msgstr "Altura del puente"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
-msgctxt "@label"
-msgid "Number of Extruders"
-msgstr "Número de extrusores"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
-msgctxt "@label"
-msgid "Apply Extruder offsets to GCode"
-msgstr "Aplicar compensaciones del extrusor a GCode"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
-msgctxt "@title:label"
-msgid "Start G-code"
-msgstr "Iniciar GCode"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
-msgctxt "@title:label"
-msgid "End G-code"
-msgstr "Finalizar GCode"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
msgctxt "@title:window"
-msgid "Convert Image..."
-msgstr "Convertir imagen..."
+msgid "More information on anonymous data collection"
+msgstr "Más información sobre la recopilación de datos anónimos"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:33
-msgctxt "@info:tooltip"
-msgid "The maximum distance of each pixel from \"Base.\""
-msgstr "La distancia máxima de cada píxel desde la \"Base\"."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:38
-msgctxt "@action:label"
-msgid "Height (mm)"
-msgstr "Altura (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:56
-msgctxt "@info:tooltip"
-msgid "The base height from the build plate in millimeters."
-msgstr "La altura de la base desde la placa de impresión en milímetros."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:61
-msgctxt "@action:label"
-msgid "Base (mm)"
-msgstr "Base (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:79
-msgctxt "@info:tooltip"
-msgid "The width in millimeters on the build plate."
-msgstr "La anchura en milímetros en la placa de impresión."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:84
-msgctxt "@action:label"
-msgid "Width (mm)"
-msgstr "Anchura (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:103
-msgctxt "@info:tooltip"
-msgid "The depth in millimeters on the build plate"
-msgstr "La profundidad en milímetros en la placa de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:108
-msgctxt "@action:label"
-msgid "Depth (mm)"
-msgstr "Profundidad (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:126
-msgctxt "@info:tooltip"
-msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
-msgstr "Para las litofanías, los píxeles oscuros deben coincidir con ubicaciones más gruesas para bloquear la entrada de más luz. En los mapas de altura, los píxeles más claros se corresponden con un terreno más alto, por lo que dichos píxeles deben coincidir con ubicaciones más gruesas en el modelo 3D generado."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Darker is higher"
-msgstr "Cuanto más oscuro más alto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Lighter is higher"
-msgstr "Cuanto más claro más alto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:149
-msgctxt "@info:tooltip"
-msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
-msgstr "Para las litofanías hay disponible un modelo logarítmico simple para la translucidez. En los mapas de altura, los valores de los píxeles corresponden a las alturas linealmente."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
-msgctxt "@item:inlistbox"
-msgid "Linear"
-msgstr "Lineal"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:172
-msgctxt "@item:inlistbox"
-msgid "Translucency"
-msgstr "Translucidez"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:171
-msgctxt "@info:tooltip"
-msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
-msgstr "El porcentaje de luz que penetra en una impresión con un grosor de 1 milímetro. Bajar este valor aumenta el contraste en las regiones oscuras y disminuye el contraste en las regiones claras de la imagen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:177
-msgctxt "@action:label"
-msgid "1mm Transmittance (%)"
-msgstr "Transmitancia de 1 mm (%)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:195
-msgctxt "@info:tooltip"
-msgid "The amount of smoothing to apply to the image."
-msgstr "La cantidad de suavizado que se aplica a la imagen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:200
-msgctxt "@action:label"
-msgid "Smoothing"
-msgstr "Suavizado"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
-msgctxt "@title"
-msgid "My Backups"
-msgstr "Mis copias de seguridad"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
-msgctxt "@empty_state"
-msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
-msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Realizar copia de seguridad ahora para crear una."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
-msgctxt "@backup_limit_info"
-msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
-msgstr "Durante la fase de vista previa, solo se mostrarán 5 copias de seguridad. Elimine una copia de seguridad para ver copias de seguridad antiguas."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
-msgctxt "@description"
-msgid "Backup and synchronize your Cura settings."
-msgstr "Realice una copia de seguridad y sincronice sus ajustes de Cura."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
-msgctxt "@button"
-msgid "Want more?"
-msgstr "¿Desea obtener más información?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
-msgctxt "@button"
-msgid "Backup Now"
-msgstr "Realizar copia de seguridad ahora"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
-msgctxt "@checkbox:description"
-msgid "Auto Backup"
-msgstr "Copia de seguridad automática"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
-msgctxt "@checkbox:description"
-msgid "Automatically create a backup each day that Cura is started."
-msgstr "Crea una copia de seguridad de forma automática cada día que inicia Cura."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
-msgctxt "@backuplist:label"
-msgid "Cura Version"
-msgstr "Versión de Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
-msgctxt "@backuplist:label"
-msgid "Machines"
-msgstr "Máquinas"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
-msgctxt "@backuplist:label"
-msgid "Materials"
-msgstr "Materiales"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
-msgctxt "@backuplist:label"
-msgid "Profiles"
-msgstr "Perfiles"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
-msgctxt "@backuplist:label"
-msgid "Plugins"
-msgstr "Complementos"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
-msgctxt "@button"
-msgid "Restore"
-msgstr "Restaurar"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
-msgctxt "@dialog:title"
-msgid "Delete Backup"
-msgstr "Eliminar copia de seguridad"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
-msgctxt "@dialog:info"
-msgid "Are you sure you want to delete this backup? This cannot be undone."
-msgstr "¿Seguro que desea eliminar esta copia de seguridad? Esta acción no se puede deshacer."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
-msgctxt "@dialog:title"
-msgid "Restore Backup"
-msgstr "Restaurar copia de seguridad"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
-msgctxt "@dialog:info"
-msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
-msgstr "Deberá reiniciar Cura para restaurar su copia de seguridad. ¿Desea cerrar Cura ahora?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/main.qml:25
-msgctxt "@title:window"
-msgid "Cura Backups"
-msgstr "Copias de seguridad de Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:13
-msgctxt "@label:category menu label"
-msgid "Material"
-msgstr "Material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:54
-msgctxt "@label:category menu label"
-msgid "Favorites"
-msgstr "Favoritos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:79
-msgctxt "@label:category menu label"
-msgid "Generic"
-msgstr "Genérico"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:13 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
-msgctxt "@title:menu menubar:toplevel"
-msgid "&File"
-msgstr "&Archivo"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:41
-msgctxt "@title:menu menubar:file"
-msgid "&Save Project..."
-msgstr "&Guardar proyecto..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:74
-msgctxt "@title:menu menubar:file"
-msgid "&Export..."
-msgstr "&Exportar..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:85
-msgctxt "@action:inmenu menubar:file"
-msgid "Export Selection..."
-msgstr "Exportar selección..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Open &Recent"
-msgstr "Abrir &reciente"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
-msgctxt "@label"
-msgid "Select configuration"
-msgstr "Seleccionar configuración"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
-msgctxt "@label"
-msgid "Configurations"
-msgstr "Configuraciones"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
-msgctxt "@header"
-msgid "Configurations"
-msgstr "Configuraciones"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
-msgctxt "@header"
-msgid "Custom"
-msgstr "Personalizado"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
-msgctxt "@label"
-msgid "Printer"
-msgstr "Impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
-msgctxt "@label"
-msgid "Enabled"
-msgstr "Habilitado"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
-msgctxt "@label"
-msgid "Material"
-msgstr "Material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
-msgctxt "@label"
-msgid "Use glue for better adhesion with this material combination."
-msgstr "Utilice pegamento con esta combinación de materiales para lograr una mejor adhesión."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
-msgctxt "@label"
-msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
-msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
-msgctxt "@label"
-msgid "Marketplace"
-msgstr "Marketplace"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
-msgctxt "@label"
-msgid "Loading available configurations from the printer..."
-msgstr "Cargando configuraciones disponibles desde la impresora..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
-msgctxt "@label"
-msgid "The configurations are not available because the printer is disconnected."
-msgstr "Las configuraciones no se encuentran disponibles porque la impresora no está conectada."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:12 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
-msgctxt "@title:menu menubar:toplevel"
-msgid "&View"
-msgstr "&Ver"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:19
-msgctxt "@action:inmenu menubar:view"
-msgid "&Camera position"
-msgstr "&Posición de la cámara"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:44
-msgctxt "@action:inmenu menubar:view"
-msgid "Camera view"
-msgstr "Vista de cámara"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:47
-msgctxt "@action:inmenu menubar:view"
-msgid "Perspective"
-msgstr "Perspectiva"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:59
-msgctxt "@action:inmenu menubar:view"
-msgid "Orthographic"
-msgstr "Ortográfica"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:80
-msgctxt "@action:inmenu menubar:view"
-msgid "&Build plate"
-msgstr "P&laca de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:25
-msgctxt "@label:category menu label"
-msgid "Network enabled printers"
-msgstr "Impresoras de red habilitadas"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:42
-msgctxt "@label:category menu label"
-msgid "Local printers"
-msgstr "Impresoras locales"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
-msgctxt "@action:inmenu"
-msgid "Visible Settings"
-msgstr "Ajustes visibles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
-msgctxt "@action:inmenu"
-msgid "Collapse All Categories"
-msgstr "Contraer todas las categorías"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
-msgctxt "@action:inmenu"
-msgid "Manage Setting Visibility..."
-msgstr "Gestionar visibilidad de los ajustes..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:13 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Settings"
-msgstr "A&justes"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:15
-msgctxt "@title:menu menubar:settings"
-msgid "&Printer"
-msgstr "&Impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:29
-msgctxt "@title:menu"
-msgid "&Material"
-msgstr "&Material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:44
-msgctxt "@action:inmenu"
-msgid "Set as Active Extruder"
-msgstr "Definir como extrusor activo"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:50
-msgctxt "@action:inmenu"
-msgid "Enable Extruder"
-msgstr "Habilitar extrusor"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:57
-msgctxt "@action:inmenu"
-msgid "Disable Extruder"
-msgstr "Deshabilitar extrusor"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Save Project..."
-msgstr "Guardar proyecto..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:27
-msgctxt "@label"
-msgid "Print Selected Model With:"
-msgid_plural "Print Selected Models With:"
-msgstr[0] "Imprimir modelo seleccionado con:"
-msgstr[1] "Imprimir modelos seleccionados con:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:116
-msgctxt "@title:window"
-msgid "Multiply Selected Model"
-msgid_plural "Multiply Selected Models"
-msgstr[0] "Multiplicar modelo seleccionado"
-msgstr[1] "Multiplicar modelos seleccionados"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:141
-msgctxt "@label"
-msgid "Number of Copies"
-msgstr "Número de copias"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Open File(s)..."
-msgstr "Abrir archivo(s)..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
-msgctxt "@label:header"
-msgid "Custom profiles"
-msgstr "Perfiles personalizados"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:564
-msgctxt "@action:button"
-msgid "Discard current changes"
-msgstr "Descartar cambios actuales"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
-msgctxt "@label"
-msgid "Profile"
-msgstr "Perfil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
-msgctxt "@tooltip"
-msgid ""
-"Some setting/override values are different from the values stored in the profile.\n"
-"\n"
-"Click to open the profile manager."
-msgstr ""
-"Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n"
-"\n"
-"Haga clic para abrir el administrador de perfiles."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
-msgctxt "@label:Should be short"
-msgid "On"
-msgstr "Encendido"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
-msgctxt "@label:Should be short"
-msgid "Off"
-msgstr "Apagado"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
-msgctxt "@label"
-msgid "Experimental"
-msgstr "Experimental"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
-msgctxt "@button"
-msgid "Recommended"
-msgstr "Recomendado"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
-msgctxt "@button"
-msgid "Custom"
-msgstr "Personalizado"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
-msgctxt "@label"
-msgid "Print settings"
-msgstr "Ajustes de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
-msgctxt "@label shown when we load a Gcode file"
-msgid "Print setup disabled. G-code file can not be modified."
-msgstr "Configuración de impresión deshabilitada. No se puede modificar el archivo GCode."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
-msgctxt "@label"
-msgid "Gradual infill"
-msgstr "Relleno gradual"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
-msgctxt "@label"
-msgid "Gradual infill will gradually increase the amount of infill towards the top."
-msgstr "Un relleno gradual aumentará gradualmente la cantidad de relleno hacia arriba."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:728
-msgctxt "@label"
-msgid "Profiles"
-msgstr "Perfiles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
-msgctxt "@tooltip"
-msgid "You have modified some profile settings. If you want to change these go to custom mode."
-msgstr "Ha modificado algunos ajustes del perfil. Si desea cambiarlos, hágalo en el modo personalizado."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
-msgctxt "@label"
-msgid "Support"
-msgstr "Soporte"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
-msgctxt "@label"
-msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
-msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
-msgctxt "@label"
-msgid "Adhesion"
-msgstr "Adherencia"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
-msgctxt "@label"
-msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
-msgstr "Habilita la impresión de un borde o una balsa. Esta opción agregará un área plana alrededor del objeto, que es fácil de cortar después."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
-msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
-msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
-msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
-msgstr[0] "No hay ningún perfil %1 para configuración en %2 extrusor. En su lugar se utilizará la opción predeterminada"
-msgstr[1] "No hay ningún perfil %1 para configuraciones en %2 extrusores. En su lugar se utilizará la opción predeterminada"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Widgets/ComboBox.qml:24
-msgctxt "@label"
-msgid "No items to select from"
-msgstr "No hay elementos para seleccionar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:140
-msgctxt "@label"
-msgid "Active print"
-msgstr "Activar impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:148
-msgctxt "@label"
-msgid "Job Name"
-msgstr "Nombre del trabajo"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:156
-msgctxt "@label"
-msgid "Printing Time"
-msgstr "Tiempo de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:164
-msgctxt "@label"
-msgid "Estimated time left"
-msgstr "Tiempo restante estimado"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
-msgctxt "@title:window"
-msgid "Discard or Keep changes"
-msgstr "Descartar o guardar cambios"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
-msgctxt "@text:window, %1 is a profile name"
-msgid ""
-"You have customized some profile settings.\n"
-"Would you like to Keep these changed settings after switching profiles?\n"
-"Alternatively, you can discard the changes to load the defaults from '%1'."
-msgstr ""
-"Ha personalizado algunos ajustes del perfil.\n"
-"¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\n"
-"También puede descartar los cambios para cargar los valores predeterminados de'%1'."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
-msgctxt "@title:column"
-msgid "Profile settings"
-msgstr "Ajustes del perfil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
-msgctxt "@title:column"
-msgid "Current changes"
-msgstr "Cambios actuales"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:747
-msgctxt "@option:discardOrKeep"
-msgid "Always ask me this"
-msgstr "Preguntar siempre"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
-msgctxt "@option:discardOrKeep"
-msgid "Discard and never ask again"
-msgstr "Descartar y no volver a preguntar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
-msgctxt "@option:discardOrKeep"
-msgid "Keep and never ask again"
-msgstr "Guardar y no volver a preguntar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
-msgctxt "@action:button"
-msgid "Discard changes"
-msgstr "Descartar los cambios"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
-msgctxt "@action:button"
-msgid "Keep changes"
-msgstr "Mantener los cambios"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:15
-msgctxt "@title:window The argument is the application name."
-msgid "About %1"
-msgstr "Acerca de %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:57
-msgctxt "@label"
-msgid "version: %1"
-msgstr "versión: %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:72
-msgctxt "@label"
-msgid "End-to-end solution for fused filament 3D printing."
-msgstr "Solución completa para la impresión 3D de filamento fundido."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:85
-msgctxt "@info:credit"
-msgid ""
-"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
-"Cura proudly uses the following open source projects:"
-msgstr ""
-"Ultimaker B.V. ha desarrollado Cura en cooperación con la comunidad.\n"
-"Cura se enorgullece de utilizar los siguientes proyectos de código abierto:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:135
-msgctxt "@label"
-msgid "Graphical user interface"
-msgstr "Interfaz gráfica de usuario (GUI)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:136
-msgctxt "@label"
-msgid "Application framework"
-msgstr "Entorno de la aplicación"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:137
-msgctxt "@label"
-msgid "G-code generator"
-msgstr "Generador de GCode"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:138
-msgctxt "@label"
-msgid "Interprocess communication library"
-msgstr "Biblioteca de comunicación entre procesos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:140
-msgctxt "@label"
-msgid "Programming language"
-msgstr "Lenguaje de programación"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:141
-msgctxt "@label"
-msgid "GUI framework"
-msgstr "Entorno de la GUI"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:142
-msgctxt "@label"
-msgid "GUI framework bindings"
-msgstr "Enlaces del entorno de la GUI"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:143
-msgctxt "@label"
-msgid "C/C++ Binding library"
-msgstr "Biblioteca de enlaces C/C++"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:144
-msgctxt "@label"
-msgid "Data interchange format"
-msgstr "Formato de intercambio de datos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:145
-msgctxt "@label"
-msgid "Support library for scientific computing"
-msgstr "Biblioteca de apoyo para cálculos científicos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:146
-msgctxt "@label"
-msgid "Support library for faster math"
-msgstr "Biblioteca de apoyo para cálculos más rápidos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:147
-msgctxt "@label"
-msgid "Support library for handling STL files"
-msgstr "Biblioteca de apoyo para gestionar archivos STL"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:148
-msgctxt "@label"
-msgid "Support library for handling planar objects"
-msgstr "Biblioteca de compatibilidad para trabajar con objetos planos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:149
-msgctxt "@label"
-msgid "Support library for handling triangular meshes"
-msgstr "Biblioteca de compatibilidad para trabajar con mallas triangulares"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:150
-msgctxt "@label"
-msgid "Support library for handling 3MF files"
-msgstr "Biblioteca de compatibilidad para trabajar con archivos 3MF"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:151
-msgctxt "@label"
-msgid "Support library for file metadata and streaming"
-msgstr "Biblioteca de compatibilidad para metadatos y transmisión de archivos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:152
-msgctxt "@label"
-msgid "Serial communication library"
-msgstr "Biblioteca de comunicación en serie"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:153
-msgctxt "@label"
-msgid "ZeroConf discovery library"
-msgstr "Biblioteca de detección para Zeroconf"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:154
-msgctxt "@label"
-msgid "Polygon clipping library"
-msgstr "Biblioteca de recorte de polígonos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:155
-msgctxt "@Label"
-msgid "Static type checker for Python"
-msgstr "Comprobador de tipo estático para Python"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:157
-msgctxt "@Label"
-msgid "Root Certificates for validating SSL trustworthiness"
-msgstr "Certificados de raíz para validar la fiabilidad del SSL"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:158
-msgctxt "@Label"
-msgid "Python Error tracking library"
-msgstr "Biblioteca de seguimiento de errores de Python"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:159
-msgctxt "@label"
-msgid "Polygon packing library, developed by Prusa Research"
-msgstr "Biblioteca de empaquetado de polígonos, desarrollada por Prusa Research"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:160
-msgctxt "@label"
-msgid "Python bindings for libnest2d"
-msgstr "Enlaces de Python para libnest2d"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:161
-msgctxt "@label"
-msgid "Support library for system keyring access"
-msgstr "Biblioteca de soporte para el acceso al llavero del sistema"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:162
-msgctxt "@label"
-msgid "Python extensions for Microsoft Windows"
-msgstr "Extensiones Python para Microsoft Windows"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:163
-msgctxt "@label"
-msgid "Font"
-msgstr "Fuente"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:164
-msgctxt "@label"
-msgid "SVG icons"
-msgstr "Iconos SVG"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:165
-msgctxt "@label"
-msgid "Linux cross-distribution application deployment"
-msgstr "Implementación de la aplicación de distribución múltiple de Linux"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:627
-msgctxt "@title:window"
-msgid "Open file(s)"
-msgstr "Abrir archivo(s)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
msgctxt "@text:window"
-msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
-msgstr "Hemos encontrado uno o más archivos del proyecto entre los archivos que ha seleccionado. Solo puede abrir los archivos de proyecto de uno en uno. Le recomendamos que solo importe modelos de esos archivos. ¿Desea continuar?"
+msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
+msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario. A continuación, hay un ejemplo de todos los datos que se comparten:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
-msgctxt "@action:button"
-msgid "Import all as models"
-msgstr "Importar todos como modelos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
-msgctxt "@title:window"
-msgid "Save Project"
-msgstr "Guardar proyecto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
-msgctxt "@action:label"
-msgid "Extruder %1"
-msgstr "Extrusor %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
-msgctxt "@action:label"
-msgid "%1 & material"
-msgstr "%1 y material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
-msgctxt "@action:label"
-msgid "Material"
-msgstr "Material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
-msgctxt "@action:label"
-msgid "Don't show project summary on save again"
-msgstr "No mostrar resumen de proyecto al guardar de nuevo"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
-msgctxt "@action:button"
-msgid "Save"
-msgstr "Guardar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
-msgctxt "@title:window"
-msgid "Open project file"
-msgstr "Abrir archivo de proyecto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
msgctxt "@text:window"
-msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
-msgstr "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?"
+msgid "I don't want to send anonymous data"
+msgstr "No deseo enviar datos anónimos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
msgctxt "@text:window"
-msgid "Remember my choice"
-msgstr "Recordar mi selección"
+msgid "Allow sending anonymous data"
+msgstr "Permitir el envío de datos anónimos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
msgctxt "@action:button"
-msgid "Open as project"
-msgstr "Abrir como proyecto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
-msgctxt "@action:button"
-msgid "Import models"
-msgstr "Importar modelos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/JobSpecs.qml:99
-msgctxt "@text Print job name"
-msgid "Untitled"
-msgstr "Sin título"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
-msgctxt "@label"
-msgid "Welcome to Ultimaker Cura"
-msgstr "Le damos la bienvenida a Ultimaker Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
-msgctxt "@text"
-msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
-msgstr ""
-"Siga estos pasos para configurar\n"
-"Ultimaker Cura. Solo le llevará unos minutos."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
-msgctxt "@button"
-msgid "Get started"
-msgstr "Empezar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
-msgctxt "@label"
-msgid "Empty"
-msgstr "Vacío"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
-msgctxt "@label"
-msgid "Help us to improve Ultimaker Cura"
-msgstr "Ayúdenos a mejorar Ultimaker Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
-msgctxt "@text"
-msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
-msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario, entre otros:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
-msgctxt "@text"
-msgid "Machine types"
-msgstr "Tipos de máquina"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
-msgctxt "@text"
-msgid "Material usage"
-msgstr "Uso de material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
-msgctxt "@text"
-msgid "Number of slices"
-msgstr "Número de segmentos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
-msgctxt "@text"
-msgid "Print settings"
-msgstr "Ajustes de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
-msgctxt "@text"
-msgid "Data collected by Ultimaker Cura will not contain any personal information."
-msgstr "Los datos recopilados por Ultimaker Cura no contendrán información personal."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
-msgctxt "@text"
-msgid "More information"
-msgstr "Más información"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
-msgctxt "@label"
-msgid "Add printer by IP address"
-msgstr "Agregar impresora por dirección IP"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
-msgctxt "@text"
-msgid "Enter your printer's IP address."
-msgstr "Introduzca la dirección IP de su impresora."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
-msgctxt "@button"
-msgid "Add"
-msgstr "Agregar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
-msgctxt "@label"
-msgid "Could not connect to device."
-msgstr "No se ha podido conectar al dispositivo."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
-msgctxt "@label"
-msgid "Can't connect to your Ultimaker printer?"
-msgstr "¿No puede conectarse a la impresora Ultimaker?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
-msgctxt "@label"
-msgid "The printer at this address has not responded yet."
-msgstr "La impresora todavía no ha respondido en esta dirección."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
-msgctxt "@label"
-msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
-msgstr "No se puede agregar la impresora porque es desconocida o no aloja un grupo."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
-msgctxt "@button"
msgid "Back"
msgstr "Atrás"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
+msgctxt "@label"
+msgid "Compatibility"
+msgstr "Compatibilidad"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
+msgctxt "@label:table_header"
+msgid "Machine"
+msgstr "Máquina"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
+msgctxt "@label:table_header"
+msgid "Build Plate"
+msgstr "Placa de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
+msgctxt "@label:table_header"
+msgid "Support"
+msgstr "Soporte"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
+msgctxt "@label:table_header"
+msgid "Quality"
+msgstr "Calidad"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
+msgctxt "@action:label"
+msgid "Technical Data Sheet"
+msgstr "Especificaciones técnicas"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
+msgctxt "@action:label"
+msgid "Safety Data Sheet"
+msgstr "Especificaciones de seguridad"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
+msgctxt "@action:label"
+msgid "Printing Guidelines"
+msgstr "Directrices de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
+msgctxt "@action:label"
+msgid "Website"
+msgstr "Sitio web"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
+msgctxt "@action:button"
+msgid "Installed"
+msgstr "Instalado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to install or update"
+msgstr "Inicie sesión para realizar la instalación o la actualización"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Buy material spools"
+msgstr "Comprar bobinas de material"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
+msgctxt "@action:button"
+msgid "Update"
+msgstr "Actualizar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
+msgctxt "@action:button"
+msgid "Updating"
+msgstr "Actualizando"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
+msgctxt "@action:button"
+msgid "Updated"
+msgstr "Actualizado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
+msgctxt "@label"
+msgid "Premium"
+msgstr "Prémium"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
+msgctxt "@info:tooltip"
+msgid "Go to Web Marketplace"
+msgstr "Ir a Web Marketplace"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
+msgctxt "@label"
+msgid "Search materials"
+msgstr "Buscar materiales"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
+msgctxt "@info"
+msgid "You will need to restart Cura before changes in packages have effect."
+msgstr "Tendrá que reiniciar Cura para que los cambios de los paquetes surtan efecto."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
+msgctxt "@info:button, %1 is the application name"
+msgid "Quit %1"
+msgstr "Salir de %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
+msgctxt "@title:tab"
+msgid "Plugins"
+msgstr "Complementos"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
+msgctxt "@title:tab"
+msgid "Materials"
+msgstr "Materiales"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
+msgctxt "@title:tab"
+msgid "Installed"
+msgstr "Instalado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
+msgctxt "@label"
+msgid "Will install upon restarting"
+msgstr "Se instalará después de reiniciar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to update"
+msgstr "Inicie sesión para realizar la actualización"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Downgrade"
+msgstr "Degradar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Uninstall"
+msgstr "Desinstalar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
+msgctxt "@action:button"
+msgid "Install"
+msgstr "Instalar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
+msgctxt "@title"
+msgid "Changes from your account"
+msgstr "Cambios desde su cuenta"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
msgctxt "@button"
+msgid "Dismiss"
+msgstr "Descartar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178
+msgctxt "@button"
+msgid "Next"
+msgstr "Siguiente"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
+msgctxt "@label"
+msgid "The following packages will be added:"
+msgstr "Se añadirán los siguientes paquetes:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
+msgctxt "@label"
+msgid "The following packages can not be installed because of an incompatible Cura version:"
+msgstr "Los siguientes paquetes no se pueden instalar debido a una versión no compatible de Cura:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
+msgctxt "@title:window"
+msgid "Confirm uninstall"
+msgstr "Confirmar desinstalación"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
+msgctxt "@text:window"
+msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
+msgstr "Va a desinstalar materiales o perfiles que todavía están en uso. Si confirma la desinstalación, los siguientes materiales o perfiles volverán a sus valores predeterminados."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
+msgctxt "@text:window"
+msgid "Materials"
+msgstr "Materiales"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
+msgctxt "@text:window"
+msgid "Profiles"
+msgstr "Perfiles"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
+msgctxt "@action:button"
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
+msgctxt "@label"
+msgid "You need to accept the license to install the package"
+msgstr "Tiene que aceptar la licencia para instalar el paquete"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
+msgctxt "@label"
+msgid "Website"
+msgstr "Sitio web"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
+msgctxt "@label"
+msgid "Email"
+msgstr "Correo electrónico"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
+msgctxt "@label"
+msgid "Version"
+msgstr "Versión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
+msgctxt "@label"
+msgid "Last updated"
+msgstr "Última actualización"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
+msgctxt "@label"
+msgid "Brand"
+msgstr "Marca"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
+msgctxt "@label"
+msgid "Downloads"
+msgstr "Descargas"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Contributions"
+msgstr "Contribuciones de la comunidad"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Plugins"
+msgstr "Complementos de la comunidad"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
+msgctxt "@label"
+msgid "Generic Materials"
+msgstr "Materiales genéricos"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
+msgctxt "@info"
+msgid "Could not connect to the Cura Package database. Please check your connection."
+msgstr "No se ha podido conectar con la base de datos del Paquete Cura. Compruebe la conexión."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
+msgctxt "@title:tab"
+msgid "Installed plugins"
+msgstr "Complementos instalados"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
+msgctxt "@info"
+msgid "No plugin has been installed."
+msgstr "No se ha instalado ningún complemento."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
+msgctxt "@title:tab"
+msgid "Installed materials"
+msgstr "Materiales instalados"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
+msgctxt "@info"
+msgid "No material has been installed."
+msgstr "No se ha instalado ningún material."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
+msgctxt "@title:tab"
+msgid "Bundled plugins"
+msgstr "Complementos agrupados"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
+msgctxt "@title:tab"
+msgid "Bundled materials"
+msgstr "Materiales agrupados"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
+msgctxt "@info"
+msgid "Fetching packages..."
+msgstr "Buscando paquetes..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
+msgctxt "@description"
+msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
+msgstr "Inicie sesión para obtener complementos y materiales verificados para Ultimaker Cura Enterprise"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
+msgctxt "@title"
+msgid "Marketplace"
+msgstr "Marketplace"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
+msgctxt "@title"
+msgid "Build Plate Leveling"
+msgstr "Nivelación de la placa de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
+msgctxt "@label"
+msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
+msgstr "Ahora puede ajustar la placa de impresión para asegurarse de que sus impresiones salgan muy bien. Al hacer clic en 'Mover a la siguiente posición', la tobera se trasladará a las diferentes posiciones que se pueden ajustar."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
+msgctxt "@label"
+msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
+msgstr "Para cada posición: inserte una hoja de papel debajo de la tobera y ajuste la altura de la placa de impresión. La altura de la placa de impresión es correcta cuando el papel queda ligeramente sujeto por la punta de la tobera."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
+msgctxt "@action:button"
+msgid "Start Build Plate Leveling"
+msgstr "Iniciar nivelación de la placa de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
+msgctxt "@action:button"
+msgid "Move to Next Position"
+msgstr "Mover a la siguiente posición"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
+msgctxt "@label"
+msgid "Please select any upgrades made to this Ultimaker Original"
+msgstr "Seleccione cualquier actualización de Ultimaker Original"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
+msgctxt "@label"
+msgid "Heated Build Plate (official kit or self-built)"
+msgstr "Placa de impresión caliente (kit oficial o construida por usted mismo)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
+msgctxt "@title:window"
+msgid "Connect to Networked Printer"
+msgstr "Conectar con la impresora en red"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+msgctxt "@label"
+msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
+msgstr "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+msgctxt "@label"
+msgid "Select your printer from the list below:"
+msgstr "Seleccione la impresora en la lista siguiente:"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
+msgctxt "@action:button"
+msgid "Edit"
+msgstr "Editar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
+msgctxt "@action:button"
+msgid "Remove"
+msgstr "Eliminar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
+msgctxt "@action:button"
+msgid "Refresh"
+msgstr "Actualizar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
+msgctxt "@label"
+msgid "If your printer is not listed, read the network printing troubleshooting guide"
+msgstr "Si la impresora no aparece en la lista, lea la guía de solución de problemas de impresión y red"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
+msgctxt "@label"
+msgid "Type"
+msgstr "Tipo"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
+msgctxt "@label"
+msgid "Firmware version"
+msgstr "Versión de firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
+msgctxt "@label"
+msgid "Address"
+msgstr "Dirección"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
+msgctxt "@label"
+msgid "This printer is not set up to host a group of printers."
+msgstr "Esta impresora no está configurada para alojar un grupo de impresoras."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
+msgctxt "@label"
+msgid "This printer is the host for a group of %1 printers."
+msgstr "Esta impresora aloja un grupo de %1 impresoras."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
+msgctxt "@label"
+msgid "The printer at this address has not yet responded."
+msgstr "La impresora todavía no ha respondido en esta dirección."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
+msgctxt "@action:button"
msgid "Connect"
msgstr "Conectar"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
+msgctxt "@title:window"
+msgid "Invalid IP address"
+msgstr "Dirección IP no válida"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
+msgctxt "@text"
+msgid "Please enter a valid IP address."
+msgstr "Introduzca una dirección IP válida."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
+msgctxt "@title:window"
+msgid "Printer Address"
+msgstr "Dirección de la impresora"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
msgctxt "@label"
-msgid "Add a printer"
-msgstr "Agregar una impresora"
+msgid "Enter the IP address of your printer on the network."
+msgstr "Introduzca la dirección IP de la impresora en la red."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
+msgctxt "@title:window"
+msgid "Configuration Changes"
+msgstr "Cambios de configuración"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
+msgctxt "@action:button"
+msgid "Override"
+msgstr "Anular"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
msgctxt "@label"
-msgid "Add a networked printer"
-msgstr "Agregar una impresora en red"
+msgid "The assigned printer, %1, requires the following configuration change:"
+msgid_plural "The assigned printer, %1, requires the following configuration changes:"
+msgstr[0] "Es necesario realizar el siguiente cambio de configuración en la impresora asignada %1:"
+msgstr[1] "Es necesario realizar los siguientes cambios de configuración en la impresora asignada %1:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
msgctxt "@label"
-msgid "Add a non-networked printer"
-msgstr "Agregar una impresora fuera de red"
+msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
+msgstr "Se ha asignado la impresora %1, pero el trabajo tiene una configuración de material desconocido."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
msgctxt "@label"
-msgid "What's New"
-msgstr "Novedades"
+msgid "Change material %1 from %2 to %3."
+msgstr "Cambiar material %1, de %2 a %3."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
msgctxt "@label"
-msgid "Add a Cloud printer"
-msgstr "Añadir una impresora a la nube"
+msgid "Load %3 as material %1 (This cannot be overridden)."
+msgstr "Cargar %3 como material %1 (no se puede anular)."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
msgctxt "@label"
-msgid "Waiting for Cloud response"
-msgstr "Esperando la respuesta de la nube"
+msgid "Change print core %1 from %2 to %3."
+msgstr "Cambiar print core %1, de %2 a %3."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
msgctxt "@label"
-msgid "No printers found in your account?"
-msgstr "¿No se han encontrado impresoras en su cuenta?"
+msgid "Change build plate to %1 (This cannot be overridden)."
+msgstr "Cambiar la placa de impresión a %1 (no se puede anular)."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
msgctxt "@label"
-msgid "The following printers in your account have been added in Cura:"
-msgstr "Las siguientes impresoras de su cuenta se han añadido en Cura:"
+msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
+msgstr "Al sobrescribir la configuración se usarán los ajustes especificados con la configuración de impresora existente. Esto podría provocar un fallo en la impresión."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
-msgctxt "@button"
-msgid "Add printer manually"
-msgstr "Añadir impresora manualmente"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
+msgctxt "@label"
+msgid "Glass"
+msgstr "Vidrio"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
+msgctxt "@label"
+msgid "Aluminum"
+msgstr "Aluminio"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
+msgctxt "@label"
+msgid "Move to top"
+msgstr "Mover al principio"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
+msgctxt "@label"
+msgid "Delete"
+msgstr "Borrar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290
+msgctxt "@label"
+msgid "Resume"
+msgstr "Reanudar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
+msgctxt "@label"
+msgid "Pausing..."
+msgstr "Pausando..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
+msgctxt "@label"
+msgid "Resuming..."
+msgstr "Reanudando..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294
+msgctxt "@label"
+msgid "Pause"
+msgstr "Pausar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+msgctxt "@label"
+msgid "Aborting..."
+msgstr "Cancelando..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+msgctxt "@label"
+msgid "Abort"
+msgstr "Cancelar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to move %1 to the top of the queue?"
+msgstr "¿Seguro que desea mover %1 al principio de la cola?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
+msgctxt "@window:title"
+msgid "Move print job to top"
+msgstr "Mover trabajo de impresión al principio"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to delete %1?"
+msgstr "¿Seguro que desea borrar %1?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
+msgctxt "@window:title"
+msgid "Delete print job"
+msgstr "Borrar trabajo de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to abort %1?"
+msgstr "¿Seguro que desea cancelar %1?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336
+msgctxt "@window:title"
+msgid "Abort print"
+msgstr "Cancela la impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
+msgctxt "@label link to Connect and Cloud interfaces"
+msgid "Manage printer"
+msgstr "Administrar impresora"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
+msgctxt "@info"
+msgid "Please update your printer's firmware to manage the queue remotely."
+msgstr "Actualice el firmware de la impresora para gestionar la cola de forma remota."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
+msgctxt "@label:status"
+msgid "Loading..."
+msgstr "Cargando..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
+msgctxt "@label:status"
+msgid "Unavailable"
+msgstr "No disponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
+msgctxt "@label:status"
+msgid "Unreachable"
+msgstr "No se puede conectar"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
+msgctxt "@label:status"
+msgid "Idle"
+msgstr "Sin actividad"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
+msgctxt "@label:status"
+msgid "Preparing..."
+msgstr "Preparando..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
+msgctxt "@label:status"
+msgid "Printing"
+msgstr "Imprimiendo"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
+msgctxt "@label"
+msgid "Untitled"
+msgstr "Sin título"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
+msgctxt "@label"
+msgid "Anonymous"
+msgstr "Anónimo"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
+msgctxt "@label:status"
+msgid "Requires configuration changes"
+msgstr "Debe cambiar la configuración"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
+msgctxt "@action:button"
+msgid "Details"
+msgstr "Detalles"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
+msgctxt "@label"
+msgid "Unavailable printer"
+msgstr "Impresora no disponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
+msgctxt "@label"
+msgid "First available"
+msgstr "Primera disponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
+msgctxt "@label:status"
+msgid "Aborted"
+msgstr "Cancelado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
+msgctxt "@label:status"
+msgid "Finished"
+msgstr "Terminado"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
+msgctxt "@label:status"
+msgid "Aborting..."
+msgstr "Cancelando..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
+msgctxt "@label:status"
+msgid "Pausing..."
+msgstr "Pausando..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
+msgctxt "@label:status"
+msgid "Paused"
+msgstr "En pausa"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
+msgctxt "@label:status"
+msgid "Resuming..."
+msgstr "Reanudando..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
+msgctxt "@label:status"
+msgid "Action required"
+msgstr "Acción requerida"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
+msgctxt "@label:status"
+msgid "Finishes %1 at %2"
+msgstr "Termina el %1 a las %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
+msgctxt "@label"
+msgid "Queued"
+msgstr "En cola"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
+msgctxt "@label link to connect manager"
+msgid "Manage in browser"
+msgstr "Gestionar en el navegador"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
+msgctxt "@label"
+msgid "There are no print jobs in the queue. Slice and send a job to add one."
+msgstr "No hay trabajos de impresión en la cola. Segmentar y enviar un trabajo para añadir uno."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
+msgctxt "@label"
+msgid "Print jobs"
+msgstr "Trabajos de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
+msgctxt "@label"
+msgid "Total print time"
+msgstr "Tiempo de impresión total"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
+msgctxt "@label"
+msgid "Waiting for"
+msgstr "Esperando"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
+msgctxt "@title:window"
+msgid "Print over network"
+msgstr "Imprimir a través de la red"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
+msgctxt "@action:button"
+msgid "Print"
+msgstr "Imprimir"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
+msgctxt "@label"
+msgid "Printer selection"
+msgstr "Selección de la impresora"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
+msgctxt "@action:button"
+msgid "Sign in"
+msgstr "Iniciar sesión"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64
msgctxt "@label"
msgid "Sign in to the Ultimaker platform"
msgstr "Inicie sesión en la plataforma Ultimaker"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:124
-msgctxt "@text"
-msgid "Add material settings and plugins from the Marketplace"
-msgstr "Añada ajustes de material y complementos desde Marketplace"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:154
-msgctxt "@text"
-msgid "Backup and sync your material settings and plugins"
-msgstr "Realice copias de seguridad y sincronice los ajustes y complementos de sus materiales"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:184
-msgctxt "@text"
-msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
-msgstr "Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:217
-msgctxt "@text"
-msgid "Create a free Ultimaker Account"
-msgstr "Cree una cuenta gratuita de Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:230
-msgctxt "@button"
-msgid "Skip"
-msgstr "Omitir"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
-msgctxt "@label"
-msgid "User Agreement"
-msgstr "Acuerdo de usuario"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
-msgctxt "@button"
-msgid "Decline and close"
-msgstr "Rechazar y cerrar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
-msgctxt "@label"
-msgid "Release Notes"
-msgstr "Notas de la versión"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
-msgctxt "@label"
-msgid "There is no printer found over your network."
-msgstr "No se ha encontrado ninguna impresora en su red."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
-msgctxt "@label"
-msgid "Refresh"
-msgstr "Actualizar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
-msgctxt "@label"
-msgid "Add printer by IP"
-msgstr "Agregar impresora por IP"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
-msgctxt "@label"
-msgid "Add cloud printer"
-msgstr "Añadir impresora a la nube"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
-msgctxt "@label"
-msgid "Troubleshooting"
-msgstr "Solución de problemas"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
-msgctxt "@label"
-msgid "Manufacturer"
-msgstr "Fabricante"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
-msgctxt "@label"
-msgid "Profile author"
-msgstr "Autor del perfil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
-msgctxt "@label"
-msgid "Printer name"
-msgstr "Nombre de la impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
-msgctxt "@text"
-msgid "Please name your printer"
-msgstr "Asigne un nombre a su impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:81
-msgctxt "@label The argument is a timestamp"
-msgid "Last update: %1"
-msgstr "Última actualización: %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:109
-msgctxt "@button"
-msgid "Ultimaker Account"
-msgstr "Cuenta de Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:125
-msgctxt "@button"
-msgid "Sign Out"
-msgstr "Cerrar sesión"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42
msgctxt "@text"
msgid ""
"- Add material profiles and plug-ins from the Marketplace\n"
@@ -3960,935 +3218,1921 @@ msgstr ""
"- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales \n"
"- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad Ultimaker"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:62
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62
msgctxt "@button"
msgid "Create a free Ultimaker account"
msgstr "Cree una cuenta gratuita de Ultimaker"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/AccountWidget.qml:24
-msgctxt "@action:button"
-msgid "Sign in"
-msgstr "Iniciar sesión"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:28
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28
msgctxt "@label"
msgid "Checking..."
msgstr "Comprobando..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:35
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35
msgctxt "@label"
msgid "Account synced"
msgstr "Cuenta sincronizada"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42
msgctxt "@label"
msgid "Something went wrong..."
msgstr "Se ha producido un error..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:96
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96
msgctxt "@button"
msgid "Install pending updates"
msgstr "Instalar actualizaciones pendientes"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:118
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118
msgctxt "@button"
msgid "Check for account updates"
msgstr "Buscar actualizaciones de la cuenta"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectSelector.qml:59
-msgctxt "@label"
-msgid "Object list"
-msgstr "Lista de objetos"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81
+msgctxt "@label The argument is a timestamp"
+msgid "Last update: %1"
+msgstr "Última actualización: %1"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:82
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109
+msgctxt "@button"
+msgid "Ultimaker Account"
+msgstr "Cuenta de Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125
+msgctxt "@button"
+msgid "Sign Out"
+msgstr "Cerrar sesión"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
+msgctxt "@label"
+msgid "No time estimation available"
+msgstr "Ningún cálculo de tiempo disponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
+msgctxt "@label"
+msgid "No cost estimation available"
+msgstr "Ningún cálculo de costes disponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
+msgctxt "@button"
+msgid "Preview"
+msgstr "Vista previa"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
+msgctxt "@label"
+msgid "Time estimation"
+msgstr "Estimación de tiempos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
+msgctxt "@label"
+msgid "Material estimation"
+msgstr "Estimación de material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
+msgctxt "@label m for meter"
+msgid "%1m"
+msgstr "%1 m"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
+msgctxt "@label g for grams"
+msgid "%1g"
+msgstr "%1 g"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
+msgctxt "@label:PrintjobStatus"
+msgid "Slicing..."
+msgstr "Segmentando..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
+msgctxt "@label:PrintjobStatus"
+msgid "Unable to slice"
+msgstr "No se puede segmentar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Processing"
+msgstr "Procesando"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Slice"
+msgstr "Segmentación"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
+msgctxt "@label"
+msgid "Start the slicing process"
+msgstr "Iniciar el proceso de segmentación"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
+msgctxt "@button"
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83
msgctxt "@action:inmenu"
msgid "Show Online Troubleshooting Guide"
msgstr "Mostrar Guía de resolución de problemas en línea"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:89
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90
msgctxt "@action:inmenu"
msgid "Toggle Full Screen"
msgstr "Alternar pantalla completa"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98
msgctxt "@action:inmenu"
msgid "Exit Full Screen"
msgstr "Salir de modo de pantalla completa"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:104
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105
msgctxt "@action:inmenu menubar:edit"
msgid "&Undo"
msgstr "Des&hacer"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:114
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115
msgctxt "@action:inmenu menubar:edit"
msgid "&Redo"
msgstr "&Rehacer"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:124
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125
msgctxt "@action:inmenu menubar:file"
msgid "&Quit"
msgstr "&Salir"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:132
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133
msgctxt "@action:inmenu menubar:view"
msgid "3D View"
msgstr "Vista en 3D"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:139
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140
msgctxt "@action:inmenu menubar:view"
msgid "Front View"
msgstr "Vista frontal"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:146
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147
msgctxt "@action:inmenu menubar:view"
msgid "Top View"
msgstr "Vista superior"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:153
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154
+msgctxt "@action:inmenu menubar:view"
+msgid "Bottom View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161
msgctxt "@action:inmenu menubar:view"
msgid "Left Side View"
msgstr "Vista del lado izquierdo"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:160
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168
msgctxt "@action:inmenu menubar:view"
msgid "Right Side View"
msgstr "Vista del lado derecho"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:167
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175
msgctxt "@action:inmenu"
msgid "Configure Cura..."
msgstr "Configurar Cura..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:174
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182
msgctxt "@action:inmenu menubar:printer"
msgid "&Add Printer..."
msgstr "&Agregar impresora..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:180
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188
msgctxt "@action:inmenu menubar:printer"
msgid "Manage Pr&inters..."
msgstr "Adm&inistrar impresoras ..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:187
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195
msgctxt "@action:inmenu"
msgid "Manage Materials..."
msgstr "Administrar materiales..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:195
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203
msgctxt "@action:inmenu"
msgid "Add more materials from Marketplace"
msgstr "Añadir más materiales de Marketplace"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:202
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
msgctxt "@action:inmenu menubar:profile"
msgid "&Update profile with current settings/overrides"
msgstr "&Actualizar perfil con ajustes o sobrescrituras actuales"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:210
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218
msgctxt "@action:inmenu menubar:profile"
msgid "&Discard current changes"
msgstr "&Descartar cambios actuales"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:222
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230
msgctxt "@action:inmenu menubar:profile"
msgid "&Create profile from current settings/overrides..."
msgstr "&Crear perfil a partir de ajustes o sobrescrituras actuales..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:228
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236
msgctxt "@action:inmenu menubar:profile"
msgid "Manage Profiles..."
msgstr "Administrar perfiles..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:236
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244
msgctxt "@action:inmenu menubar:help"
msgid "Show Online &Documentation"
msgstr "Mostrar &documentación en línea"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:244
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252
msgctxt "@action:inmenu menubar:help"
msgid "Report a &Bug"
msgstr "Informar de un &error"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:252
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260
msgctxt "@action:inmenu menubar:help"
msgid "What's New"
msgstr "Novedades"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:258
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266
msgctxt "@action:inmenu menubar:help"
msgid "About..."
msgstr "Acerca de..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:265
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273
msgctxt "@action:inmenu menubar:edit"
msgid "Delete Selected"
msgstr "Eliminar selección"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:275
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283
msgctxt "@action:inmenu menubar:edit"
msgid "Center Selected"
msgstr "Centrar selección"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:284
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292
msgctxt "@action:inmenu menubar:edit"
msgid "Multiply Selected"
msgstr "Multiplicar selección"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:293
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301
msgctxt "@action:inmenu"
msgid "Delete Model"
msgstr "Eliminar modelo"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:301
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309
msgctxt "@action:inmenu"
msgid "Ce&nter Model on Platform"
msgstr "Ce&ntrar modelo en plataforma"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:307
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315
msgctxt "@action:inmenu menubar:edit"
msgid "&Group Models"
msgstr "A&grupar modelos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:327
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335
msgctxt "@action:inmenu menubar:edit"
msgid "Ungroup Models"
msgstr "Desagrupar modelos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:337
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345
msgctxt "@action:inmenu menubar:edit"
msgid "&Merge Models"
msgstr "Co&mbinar modelos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:347
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355
msgctxt "@action:inmenu"
msgid "&Multiply Model..."
msgstr "&Multiplicar modelo..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:354
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362
msgctxt "@action:inmenu menubar:edit"
msgid "Select All Models"
msgstr "Seleccionar todos los modelos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:364
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372
msgctxt "@action:inmenu menubar:edit"
msgid "Clear Build Plate"
msgstr "Borrar placa de impresión"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:374
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382
msgctxt "@action:inmenu menubar:file"
msgid "Reload All Models"
msgstr "Recargar todos los modelos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:383
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391
msgctxt "@action:inmenu menubar:edit"
msgid "Arrange All Models To All Build Plates"
msgstr "Organizar todos los modelos en todas las placas de impresión"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:390
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398
msgctxt "@action:inmenu menubar:edit"
msgid "Arrange All Models"
msgstr "Organizar todos los modelos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:398
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406
msgctxt "@action:inmenu menubar:edit"
msgid "Arrange Selection"
msgstr "Organizar selección"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:405
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413
msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Model Positions"
msgstr "Restablecer las posiciones de todos los modelos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:412
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420
msgctxt "@action:inmenu menubar:edit"
msgid "Reset All Model Transformations"
msgstr "Restablecer las transformaciones de todos los modelos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:421
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429
msgctxt "@action:inmenu menubar:file"
msgid "&Open File(s)..."
msgstr "&Abrir archivo(s)..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:431
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439
msgctxt "@action:inmenu menubar:file"
msgid "&New Project..."
msgstr "&Nuevo proyecto..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:438
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446
msgctxt "@action:inmenu menubar:help"
msgid "Show Configuration Folder"
msgstr "Mostrar carpeta de configuración"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:445 /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:538
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550
msgctxt "@action:menu"
msgid "Configure setting visibility..."
msgstr "Configurar visibilidad de los ajustes..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:452
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460
msgctxt "@action:menu"
msgid "&Marketplace"
msgstr "&Marketplace"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:61
-msgctxt "@info:status"
-msgid "Calculated"
-msgstr "Calculado"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:75
-msgctxt "@title:column"
-msgid "Setting"
-msgstr "Ajustes"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:82
-msgctxt "@title:column"
-msgid "Profile"
-msgstr "Perfil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:89
-msgctxt "@title:column"
-msgid "Current"
-msgstr "Actual"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:97
-msgctxt "@title:column"
-msgid "Unit"
-msgstr "Unidad"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
-msgctxt "@title"
-msgid "Information"
-msgstr "Información"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
-msgctxt "@title:window"
-msgid "Confirm Diameter Change"
-msgstr "Confirmar cambio de diámetro"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
-msgctxt "@label (%1 is a number)"
-msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
-msgstr "El nuevo diámetro del filamento está ajustado en %1 mm y no es compatible con el extrusor actual. ¿Desea continuar?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257
msgctxt "@label"
-msgid "Display Name"
-msgstr "Mostrar nombre"
+msgid "This package will be installed after restarting."
+msgstr "Este paquete se instalará después de reiniciar."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
-msgctxt "@label"
-msgid "Material Type"
-msgstr "Tipo de material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
-msgctxt "@label"
-msgid "Color"
-msgstr "Color"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
-msgctxt "@label"
-msgid "Properties"
-msgstr "Propiedades"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
-msgctxt "@label"
-msgid "Density"
-msgstr "Densidad"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
-msgctxt "@label"
-msgid "Diameter"
-msgstr "Diámetro"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
-msgctxt "@label"
-msgid "Filament Cost"
-msgstr "Coste del filamento"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
-msgctxt "@label"
-msgid "Filament weight"
-msgstr "Peso del filamento"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
-msgctxt "@label"
-msgid "Filament length"
-msgstr "Longitud del filamento"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
-msgctxt "@label"
-msgid "Cost per Meter"
-msgstr "Coste por metro"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
-msgctxt "@label"
-msgid "This material is linked to %1 and shares some of its properties."
-msgstr "Este material está vinculado a %1 y comparte alguna de sus propiedades."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
-msgctxt "@label"
-msgid "Unlink Material"
-msgstr "Desvincular material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
-msgctxt "@label"
-msgid "Description"
-msgstr "Descripción"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
-msgctxt "@label"
-msgid "Adhesion Information"
-msgstr "Información sobre adherencia"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:40 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:84
-msgctxt "@action:button"
-msgid "Activate"
-msgstr "Activar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
-msgctxt "@action:button"
-msgid "Create"
-msgstr "Crear"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
-msgctxt "@action:button"
-msgid "Duplicate"
-msgstr "Duplicado"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:167
-msgctxt "@action:button"
-msgid "Import"
-msgstr "Importar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:179
-msgctxt "@action:button"
-msgid "Export"
-msgstr "Exportar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
-msgctxt "@action:label"
-msgid "Printer"
-msgstr "Impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:277
-msgctxt "@title:window"
-msgid "Confirm Remove"
-msgstr "Confirmar eliminación"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:278
-msgctxt "@label (%1 is object name)"
-msgid "Are you sure you wish to remove %1? This cannot be undone!"
-msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
-msgctxt "@title:window"
-msgid "Import Material"
-msgstr "Importar material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
-msgctxt "@info:status Don't translate the XML tags or !"
-msgid "Could not import material %1: %2"
-msgstr "No se pudo importar el material en %1: %2"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully imported material %1"
-msgstr "El material se ha importado correctamente en %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
-msgctxt "@title:window"
-msgid "Export Material"
-msgstr "Exportar material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
-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"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully exported material to %1"
-msgstr "El material se ha exportado correctamente a %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:16 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:455
-msgctxt "@title:tab"
-msgid "Printers"
-msgstr "Impresoras"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:63 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:152
-msgctxt "@action:button"
-msgid "Rename"
-msgstr "Cambiar nombre"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:459
-msgctxt "@title:tab"
-msgid "Profiles"
-msgstr "Perfiles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:104
-msgctxt "@label"
-msgid "Create"
-msgstr "Crear"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:121
-msgctxt "@label"
-msgid "Duplicate"
-msgstr "Duplicado"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:202
-msgctxt "@title:window"
-msgid "Create Profile"
-msgstr "Crear perfil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:204
-msgctxt "@info"
-msgid "Please provide a name for this profile."
-msgstr "Introduzca un nombre para este perfil."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:263
-msgctxt "@title:window"
-msgid "Duplicate Profile"
-msgstr "Duplicar perfil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:294
-msgctxt "@title:window"
-msgid "Rename Profile"
-msgstr "Cambiar nombre de perfil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:307
-msgctxt "@title:window"
-msgid "Import Profile"
-msgstr "Importar perfil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:336
-msgctxt "@title:window"
-msgid "Export Profile"
-msgstr "Exportar perfil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:399
-msgctxt "@label %1 is printer name"
-msgid "Printer: %1"
-msgstr "Impresora: %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:557
-msgctxt "@action:button"
-msgid "Update profile with current settings/overrides"
-msgstr "Actualizar perfil con ajustes o sobrescrituras actuales"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:583
-msgctxt "@action:label"
-msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
-msgstr "Este perfil utiliza los ajustes predeterminados especificados por la impresora, por eso no aparece ningún ajuste o sobrescritura en la lista que se ve a continuación."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:591
-msgctxt "@action:label"
-msgid "Your current settings match the selected profile."
-msgstr "Los ajustes actuales coinciden con el perfil seleccionado."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:609
-msgctxt "@title:tab"
-msgid "Global Settings"
-msgstr "Ajustes globales"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
-msgctxt "@title:tab"
-msgid "Setting Visibility"
-msgstr "Visibilidad de los ajustes"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
-msgctxt "@label:textbox"
-msgid "Check all"
-msgstr "Comprobar todo"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:15 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:450
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17
msgctxt "@title:tab"
msgid "General"
msgstr "General"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:137
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453
+msgctxt "@title:tab"
+msgid "Settings"
+msgstr "Ajustes"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
+msgctxt "@title:tab"
+msgid "Printers"
+msgstr "Impresoras"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
+msgctxt "@title:tab"
+msgid "Profiles"
+msgstr "Perfiles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576
+msgctxt "@title:window %1 is the application name"
+msgid "Closing %1"
+msgstr "Cerrando %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589
+msgctxt "@label %1 is the application name"
+msgid "Are you sure you want to exit %1?"
+msgstr "¿Seguro que desea salir de %1?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
+msgctxt "@title:window"
+msgid "Open file(s)"
+msgstr "Abrir archivo(s)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737
+msgctxt "@window:title"
+msgid "Install Package"
+msgstr "Instalar paquete"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745
+msgctxt "@title:window"
+msgid "Open File(s)"
+msgstr "Abrir archivo(s)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748
+msgctxt "@text:window"
+msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
+msgstr "Hemos encontrado uno o más archivos de GCode entre los archivos que ha seleccionado. Solo puede abrir los archivos GCode de uno en uno. Si desea abrir un archivo GCode, seleccione solo uno."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857
+msgctxt "@title:window"
+msgid "Add Printer"
+msgstr "Agregar impresora"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865
+msgctxt "@title:window"
+msgid "What's New"
+msgstr "Novedades"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
+msgctxt "@title:window The argument is the application name."
+msgid "About %1"
+msgstr "Acerca de %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
msgctxt "@label"
-msgid "Interface"
-msgstr "Interfaz"
+msgid "version: %1"
+msgstr "versión: %1"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:216
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
msgctxt "@label"
-msgid "Currency:"
-msgstr "Moneda:"
+msgid "End-to-end solution for fused filament 3D printing."
+msgstr "Solución completa para la impresión 3D de filamento fundido."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:229
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
+msgctxt "@info:credit"
+msgid ""
+"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
+"Cura proudly uses the following open source projects:"
+msgstr ""
+"Ultimaker B.V. ha desarrollado Cura en cooperación con la comunidad.\n"
+"Cura se enorgullece de utilizar los siguientes proyectos de código abierto:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
msgctxt "@label"
-msgid "Theme:"
-msgstr "Tema:"
+msgid "Graphical user interface"
+msgstr "Interfaz gráfica de usuario (GUI)"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:285
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
msgctxt "@label"
-msgid "You will need to restart the application for these changes to have effect."
-msgstr "Tendrá que reiniciar la aplicación para que estos cambios tengan efecto."
+msgid "Application framework"
+msgstr "Entorno de la aplicación"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:302
-msgctxt "@info:tooltip"
-msgid "Slice automatically when changing settings."
-msgstr "Segmentar automáticamente al cambiar los ajustes."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:310
-msgctxt "@option:check"
-msgid "Slice automatically"
-msgstr "Segmentar automáticamente"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:324
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
msgctxt "@label"
-msgid "Viewport behavior"
-msgstr "Comportamiento de la ventanilla"
+msgid "G-code generator"
+msgstr "Generador de GCode"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:332
-msgctxt "@info:tooltip"
-msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
-msgstr "Resaltar en rojo las áreas del modelo sin soporte. Sin soporte, estas áreas no se imprimirán correctamente."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
+msgctxt "@label"
+msgid "Interprocess communication library"
+msgstr "Biblioteca de comunicación entre procesos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:341
-msgctxt "@option:check"
-msgid "Display overhang"
-msgstr "Mostrar voladizos"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
+msgctxt "@label"
+msgid "Programming language"
+msgstr "Lenguaje de programación"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:351
-msgctxt "@info:tooltip"
-msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
-msgstr "Resalta las superficies que faltan o son extrañas del modelo usando señales de advertencia. A las trayectorias de herramientas les faltarán a menudo partes de la geometría prevista."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
+msgctxt "@label"
+msgid "GUI framework"
+msgstr "Entorno de la GUI"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:360
-msgctxt "@option:check"
-msgid "Display model errors"
-msgstr "Mostrar errores de modelo"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
+msgctxt "@label"
+msgid "GUI framework bindings"
+msgstr "Enlaces del entorno de la GUI"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:368
-msgctxt "@info:tooltip"
-msgid "Moves the camera so the model is in the center of the view when a model is selected"
-msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
+msgctxt "@label"
+msgid "C/C++ Binding library"
+msgstr "Biblioteca de enlaces C/C++"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:373
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
+msgctxt "@label"
+msgid "Data interchange format"
+msgstr "Formato de intercambio de datos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
+msgctxt "@label"
+msgid "Support library for scientific computing"
+msgstr "Biblioteca de apoyo para cálculos científicos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
+msgctxt "@label"
+msgid "Support library for faster math"
+msgstr "Biblioteca de apoyo para cálculos más rápidos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
+msgctxt "@label"
+msgid "Support library for handling STL files"
+msgstr "Biblioteca de apoyo para gestionar archivos STL"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
+msgctxt "@label"
+msgid "Support library for handling planar objects"
+msgstr "Biblioteca de compatibilidad para trabajar con objetos planos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
+msgctxt "@label"
+msgid "Support library for handling triangular meshes"
+msgstr "Biblioteca de compatibilidad para trabajar con mallas triangulares"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
+msgctxt "@label"
+msgid "Support library for handling 3MF files"
+msgstr "Biblioteca de compatibilidad para trabajar con archivos 3MF"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
+msgctxt "@label"
+msgid "Support library for file metadata and streaming"
+msgstr "Biblioteca de compatibilidad para metadatos y transmisión de archivos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
+msgctxt "@label"
+msgid "Serial communication library"
+msgstr "Biblioteca de comunicación en serie"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
+msgctxt "@label"
+msgid "ZeroConf discovery library"
+msgstr "Biblioteca de detección para Zeroconf"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
+msgctxt "@label"
+msgid "Polygon clipping library"
+msgstr "Biblioteca de recorte de polígonos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
+msgctxt "@Label"
+msgid "Static type checker for Python"
+msgstr "Comprobador de tipo estático para Python"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
+msgctxt "@Label"
+msgid "Root Certificates for validating SSL trustworthiness"
+msgstr "Certificados de raíz para validar la fiabilidad del SSL"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
+msgctxt "@Label"
+msgid "Python Error tracking library"
+msgstr "Biblioteca de seguimiento de errores de Python"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
+msgctxt "@label"
+msgid "Polygon packing library, developed by Prusa Research"
+msgstr "Biblioteca de empaquetado de polígonos, desarrollada por Prusa Research"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
+msgctxt "@label"
+msgid "Python bindings for libnest2d"
+msgstr "Enlaces de Python para libnest2d"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161
+msgctxt "@label"
+msgid "Support library for system keyring access"
+msgstr "Biblioteca de soporte para el acceso al llavero del sistema"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162
+msgctxt "@label"
+msgid "Python extensions for Microsoft Windows"
+msgstr "Extensiones Python para Microsoft Windows"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163
+msgctxt "@label"
+msgid "Font"
+msgstr "Fuente"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164
+msgctxt "@label"
+msgid "SVG icons"
+msgstr "Iconos SVG"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165
+msgctxt "@label"
+msgid "Linux cross-distribution application deployment"
+msgstr "Implementación de la aplicación de distribución múltiple de Linux"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
+msgctxt "@title:window"
+msgid "Open project file"
+msgstr "Abrir archivo de proyecto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
+msgctxt "@text:window"
+msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
+msgstr "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
+msgctxt "@text:window"
+msgid "Remember my choice"
+msgstr "Recordar mi selección"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
msgctxt "@action:button"
-msgid "Center camera when item is selected"
-msgstr "Centrar cámara cuando se selecciona elemento"
+msgid "Open as project"
+msgstr "Abrir como proyecto"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:383
-msgctxt "@info:tooltip"
-msgid "Should the default zoom behavior of cura be inverted?"
-msgstr "¿Se debería invertir el comportamiento predeterminado del zoom de cura?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:388
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
msgctxt "@action:button"
-msgid "Invert the direction of camera zoom."
-msgstr "Invertir la dirección del zoom de la cámara."
+msgid "Import models"
+msgstr "Importar modelos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid "Should zooming move in the direction of the mouse?"
-msgstr "¿Debería moverse el zoom en la dirección del ratón?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
+msgctxt "@title:window"
+msgid "Discard or Keep changes"
+msgstr "Descartar o guardar cambios"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid "Zooming towards the mouse is not supported in the orthographic perspective."
-msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortográfica."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
+msgctxt "@text:window, %1 is a profile name"
+msgid ""
+"You have customized some profile settings.\n"
+"Would you like to Keep these changed settings after switching profiles?\n"
+"Alternatively, you can discard the changes to load the defaults from '%1'."
+msgstr ""
+"Ha personalizado algunos ajustes del perfil.\n"
+"¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\n"
+"También puede descartar los cambios para cargar los valores predeterminados de'%1'."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:409
-msgctxt "@action:button"
-msgid "Zoom toward mouse direction"
-msgstr "Hacer zoom en la dirección del ratón"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
+msgctxt "@title:column"
+msgid "Profile settings"
+msgstr "Ajustes del perfil"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:435
-msgctxt "@info:tooltip"
-msgid "Should models on the platform be moved so that they no longer intersect?"
-msgstr "¿Deben moverse los modelos en la plataforma de modo que no se crucen?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
+msgctxt "@title:column"
+msgid "Current changes"
+msgstr "Cambios actuales"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:440
-msgctxt "@option:check"
-msgid "Ensure models are kept apart"
-msgstr "Asegúrese de que los modelos están separados"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:449
-msgctxt "@info:tooltip"
-msgid "Should models on the platform be moved down to touch the build plate?"
-msgstr "¿Deben moverse los modelos del área de impresión de modo que no toquen la placa de impresión?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:454
-msgctxt "@option:check"
-msgid "Automatically drop models to the build plate"
-msgstr "Arrastrar modelos a la placa de impresión de forma automática"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:466
-msgctxt "@info:tooltip"
-msgid "Show caution message in g-code reader."
-msgstr "Se muestra el mensaje de advertencia en el lector de GCode."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:475
-msgctxt "@option:check"
-msgid "Caution message in g-code reader"
-msgstr "Mensaje de advertencia en el lector de GCode"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:483
-msgctxt "@info:tooltip"
-msgid "Should layer be forced into compatibility mode?"
-msgstr "¿Debe forzarse el modo de compatibilidad de la capa?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:488
-msgctxt "@option:check"
-msgid "Force layer view compatibility mode (restart required)"
-msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:498
-msgctxt "@info:tooltip"
-msgid "Should Cura open at the location it was closed?"
-msgstr "¿Debería abrirse Cura en el lugar donde se cerró?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:503
-msgctxt "@option:check"
-msgid "Restore window position on start"
-msgstr "Restaurar la posición de la ventana al inicio"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:513
-msgctxt "@info:tooltip"
-msgid "What type of camera rendering should be used?"
-msgstr "¿Qué tipo de renderizado de cámara debería usarse?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:520
-msgctxt "@window:text"
-msgid "Camera rendering:"
-msgstr "Renderizado de cámara:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:531
-msgid "Perspective"
-msgstr "Perspectiva"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:532
-msgid "Orthographic"
-msgstr "Ortográfica"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:563
-msgctxt "@label"
-msgid "Opening and saving files"
-msgstr "Abrir y guardar archivos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:570
-msgctxt "@info:tooltip"
-msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
-msgstr "¿Debería abrir los archivos del escritorio o las aplicaciones externas en la misma instancia de Cura?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:575
-msgctxt "@option:check"
-msgid "Use a single instance of Cura"
-msgstr "Utilizar una sola instancia de Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:585
-msgctxt "@info:tooltip"
-msgid "Should models be scaled to the build volume if they are too large?"
-msgstr "¿Deben ajustarse los modelos al volumen de impresión si son demasiado grandes?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:590
-msgctxt "@option:check"
-msgid "Scale large models"
-msgstr "Escalar modelos de gran tamaño"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:600
-msgctxt "@info:tooltip"
-msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
-msgstr "Un modelo puede mostrarse demasiado pequeño si su unidad son metros en lugar de milímetros, por ejemplo. ¿Deben escalarse estos modelos?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:605
-msgctxt "@option:check"
-msgid "Scale extremely small models"
-msgstr "Escalar modelos demasiado pequeños"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:615
-msgctxt "@info:tooltip"
-msgid "Should models be selected after they are loaded?"
-msgstr "¿Se deberían seleccionar los modelos después de haberse cargado?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:620
-msgctxt "@option:check"
-msgid "Select models when loaded"
-msgstr "Seleccionar modelos al abrirlos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:630
-msgctxt "@info:tooltip"
-msgid "Should a prefix based on the printer name be added to the print job name automatically?"
-msgstr "¿Debe añadirse automáticamente un prefijo basado en el nombre de la impresora al nombre del trabajo de impresión?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:635
-msgctxt "@option:check"
-msgid "Add machine prefix to job name"
-msgstr "Agregar prefijo de la máquina al nombre del trabajo"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:645
-msgctxt "@info:tooltip"
-msgid "Should a summary be shown when saving a project file?"
-msgstr "¿Mostrar un resumen al guardar un archivo de proyecto?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:649
-msgctxt "@option:check"
-msgid "Show summary dialog when saving project"
-msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:659
-msgctxt "@info:tooltip"
-msgid "Default behavior when opening a project file"
-msgstr "Comportamiento predeterminado al abrir un archivo del proyecto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:667
-msgctxt "@window:text"
-msgid "Default behavior when opening a project file: "
-msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: "
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:681
-msgctxt "@option:openProject"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733
+msgctxt "@option:discardOrKeep"
msgid "Always ask me this"
msgstr "Preguntar siempre"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:682
-msgctxt "@option:openProject"
-msgid "Always open as a project"
-msgstr "Abrir siempre como un proyecto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:683
-msgctxt "@option:openProject"
-msgid "Always import models"
-msgstr "Importar modelos siempre"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:719
-msgctxt "@info:tooltip"
-msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
-msgstr "Si ha realizado cambios en un perfil y, a continuación, ha cambiado a otro, aparecerá un cuadro de diálogo que le preguntará si desea guardar o descartar los cambios. También puede elegir el comportamiento predeterminado, así ese cuadro de diálogo no volverá a aparecer."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:733
-msgctxt "@window:text"
-msgid "Default behavior for changed setting values when switching to a different profile: "
-msgstr "Comportamiento predeterminado para los valores modificados al cambiar a otro perfil: "
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:748
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
msgctxt "@option:discardOrKeep"
-msgid "Always discard changed settings"
-msgstr "Descartar siempre los ajustes modificados"
+msgid "Discard and never ask again"
+msgstr "Descartar y no volver a preguntar"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:749
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
msgctxt "@option:discardOrKeep"
-msgid "Always transfer changed settings to new profile"
-msgstr "Transferir siempre los ajustes modificados al nuevo perfil"
+msgid "Keep and never ask again"
+msgstr "Guardar y no volver a preguntar"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:783
-msgctxt "@label"
-msgid "Privacy"
-msgstr "Privacidad"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:790
-msgctxt "@info:tooltip"
-msgid "Should Cura check for updates when the program is started?"
-msgstr "¿Debe Cura buscar actualizaciones cuando se abre el programa?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:795
-msgctxt "@option:check"
-msgid "Check for updates on start"
-msgstr "Buscar actualizaciones al iniciar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:805
-msgctxt "@info:tooltip"
-msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
-msgstr "¿Deben enviarse datos anónimos sobre la impresión a Ultimaker? Tenga en cuenta que no se envían ni almacenan modelos, direcciones IP ni otra información de identificación personal."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:810
-msgctxt "@option:check"
-msgid "Send (anonymous) print information"
-msgstr "Enviar información (anónima) de impresión"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:819
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
msgctxt "@action:button"
-msgid "More information"
-msgstr "Más información"
+msgid "Discard changes"
+msgstr "Descartar los cambios"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewsSelector.qml:50
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
+msgctxt "@action:button"
+msgid "Keep changes"
+msgstr "Mantener los cambios"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
+msgctxt "@text:window"
+msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
+msgstr "Hemos encontrado uno o más archivos del proyecto entre los archivos que ha seleccionado. Solo puede abrir los archivos de proyecto de uno en uno. Le recomendamos que solo importe modelos de esos archivos. ¿Desea continuar?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
+msgctxt "@action:button"
+msgid "Import all as models"
+msgstr "Importar todos como modelos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
+msgctxt "@title:window"
+msgid "Save Project"
+msgstr "Guardar proyecto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
+msgctxt "@action:label"
+msgid "Extruder %1"
+msgstr "Extrusor %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
+msgctxt "@action:label"
+msgid "%1 & material"
+msgstr "%1 y material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
+msgctxt "@action:label"
+msgid "Material"
+msgstr "Material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
+msgctxt "@action:label"
+msgid "Don't show project summary on save again"
+msgstr "No mostrar resumen de proyecto al guardar de nuevo"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
+msgctxt "@action:button"
+msgid "Save"
+msgstr "Guardar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
+msgctxt "@label %1 is filled in with the name of an extruder"
+msgid "Print Selected Model with %1"
+msgid_plural "Print Selected Models with %1"
+msgstr[0] "Imprimir modelo seleccionado con %1"
+msgstr[1] "Imprimir modelos seleccionados con %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
+msgctxt "@text Print job name"
+msgid "Untitled"
+msgstr "Sin título"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
+msgctxt "@title:menu menubar:toplevel"
+msgid "&File"
+msgstr "&Archivo"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Edit"
+msgstr "&Edición"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
+msgctxt "@title:menu menubar:toplevel"
+msgid "&View"
+msgstr "&Ver"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Settings"
+msgstr "A&justes"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
+msgctxt "@title:menu menubar:toplevel"
+msgid "E&xtensions"
+msgstr "E&xtensiones"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
+msgctxt "@title:menu menubar:toplevel"
+msgid "P&references"
+msgstr "Pre&ferencias"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Help"
+msgstr "A&yuda"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
+msgctxt "@title:window"
+msgid "New project"
+msgstr "Nuevo proyecto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
+msgctxt "@info:question"
+msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
+msgstr "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
+msgctxt "@action:button"
+msgid "Marketplace"
+msgstr "Marketplace"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
+msgctxt "@header"
+msgid "Configurations"
+msgstr "Configuraciones"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
msgctxt "@label"
-msgid "View type"
-msgstr "Ver tipo"
+msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
+msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:119
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
+msgctxt "@label"
+msgid "Marketplace"
+msgstr "Marketplace"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
+msgctxt "@label"
+msgid "Loading available configurations from the printer..."
+msgstr "Cargando configuraciones disponibles desde la impresora..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
+msgctxt "@label"
+msgid "The configurations are not available because the printer is disconnected."
+msgstr "Las configuraciones no se encuentran disponibles porque la impresora no está conectada."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
+msgctxt "@label"
+msgid "Select configuration"
+msgstr "Seleccionar configuración"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
+msgctxt "@label"
+msgid "Configurations"
+msgstr "Configuraciones"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
+msgctxt "@header"
+msgid "Custom"
+msgstr "Personalizado"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
+msgctxt "@label"
+msgid "Printer"
+msgstr "Impresora"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
+msgctxt "@label"
+msgid "Enabled"
+msgstr "Habilitado"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
+msgctxt "@label"
+msgid "Material"
+msgstr "Material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407
+msgctxt "@label"
+msgid "Use glue for better adhesion with this material combination."
+msgstr "Utilice pegamento con esta combinación de materiales para lograr una mejor adhesión."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
+msgctxt "@label"
+msgid "Print Selected Model With:"
+msgid_plural "Print Selected Models With:"
+msgstr[0] "Imprimir modelo seleccionado con:"
+msgstr[1] "Imprimir modelos seleccionados con:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
+msgctxt "@title:window"
+msgid "Multiply Selected Model"
+msgid_plural "Multiply Selected Models"
+msgstr[0] "Multiplicar modelo seleccionado"
+msgstr[1] "Multiplicar modelos seleccionados"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
+msgctxt "@label"
+msgid "Number of Copies"
+msgstr "Número de copias"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41
+msgctxt "@title:menu menubar:file"
+msgid "&Save Project..."
+msgstr "&Guardar proyecto..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74
+msgctxt "@title:menu menubar:file"
+msgid "&Export..."
+msgstr "&Exportar..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85
+msgctxt "@action:inmenu menubar:file"
+msgid "Export Selection..."
+msgstr "Exportar selección..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
+msgctxt "@label:category menu label"
+msgid "Material"
+msgstr "Material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
+msgctxt "@label:category menu label"
+msgid "Favorites"
+msgstr "Favoritos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
+msgctxt "@label:category menu label"
+msgid "Generic"
+msgstr "Genérico"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Open File(s)..."
+msgstr "Abrir archivo(s)..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
+msgctxt "@label:category menu label"
+msgid "Network enabled printers"
+msgstr "Impresoras de red habilitadas"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
+msgctxt "@label:category menu label"
+msgid "Local printers"
+msgstr "Impresoras locales"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Open &Recent"
+msgstr "Abrir &reciente"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Save Project..."
+msgstr "Guardar proyecto..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
+msgctxt "@title:menu menubar:settings"
+msgid "&Printer"
+msgstr "&Impresora"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29
+msgctxt "@title:menu"
+msgid "&Material"
+msgstr "&Material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44
+msgctxt "@action:inmenu"
+msgid "Set as Active Extruder"
+msgstr "Definir como extrusor activo"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50
+msgctxt "@action:inmenu"
+msgid "Enable Extruder"
+msgstr "Habilitar extrusor"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57
+msgctxt "@action:inmenu"
+msgid "Disable Extruder"
+msgstr "Deshabilitar extrusor"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
+msgctxt "@action:inmenu"
+msgid "Visible Settings"
+msgstr "Ajustes visibles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
+msgctxt "@action:inmenu"
+msgid "Collapse All Categories"
+msgstr "Contraer todas las categorías"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
+msgctxt "@action:inmenu"
+msgid "Manage Setting Visibility..."
+msgstr "Gestionar visibilidad de los ajustes..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
+msgctxt "@action:inmenu menubar:view"
+msgid "&Camera position"
+msgstr "&Posición de la cámara"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45
+msgctxt "@action:inmenu menubar:view"
+msgid "Camera view"
+msgstr "Vista de cámara"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48
+msgctxt "@action:inmenu menubar:view"
+msgid "Perspective"
+msgstr "Perspectiva"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60
+msgctxt "@action:inmenu menubar:view"
+msgid "Orthographic"
+msgstr "Ortográfica"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81
+msgctxt "@action:inmenu menubar:view"
+msgid "&Build plate"
+msgstr "P&laca de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
msgctxt "@label:MonitorStatus"
msgid "Not connected to a printer"
msgstr "No está conectado a ninguna impresora"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
msgctxt "@label:MonitorStatus"
msgid "Printer does not accept commands"
msgstr "La impresora no acepta comandos"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:133
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
msgctxt "@label:MonitorStatus"
msgid "In maintenance. Please check the printer"
msgstr "En mantenimiento. Compruebe la impresora"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:144
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
msgctxt "@label:MonitorStatus"
msgid "Lost connection with the printer"
msgstr "Se ha perdido la conexión con la impresora"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:146
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
msgctxt "@label:MonitorStatus"
msgid "Printing..."
msgstr "Imprimiendo..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:149
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
msgctxt "@label:MonitorStatus"
msgid "Paused"
msgstr "En pausa"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:152
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
msgctxt "@label:MonitorStatus"
msgid "Preparing..."
msgstr "Preparando..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:154
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
msgctxt "@label:MonitorStatus"
msgid "Please remove the print"
msgstr "Retire la impresión"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:326
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326
msgctxt "@label"
msgid "Abort Print"
msgstr "Cancelar impresión"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:338
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338
msgctxt "@label"
msgid "Are you sure you want to abort the print?"
msgstr "¿Está seguro de que desea cancelar la impresión?"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:68
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114
+msgctxt "@label"
+msgid "Is printed as support."
+msgstr "Se imprime como soporte."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117
+msgctxt "@label"
+msgid "Other models overlapping with this model are modified."
+msgstr "Se han modificado otros modelos que se superponen con este modelo."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120
+msgctxt "@label"
+msgid "Infill overlapping with this model is modified."
+msgstr "Se ha modificado la superposición del relleno con este modelo."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123
+msgctxt "@label"
+msgid "Overlaps with this model are not supported."
+msgstr "No se admiten superposiciones con este modelo."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130
+msgctxt "@label %1 is the number of settings it overrides."
+msgid "Overrides %1 setting."
+msgid_plural "Overrides %1 settings."
+msgstr[0] "%1 sobrescrito."
+msgstr[1] "%1 sobrescritos."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
+msgctxt "@label"
+msgid "Object list"
+msgstr "Lista de objetos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137
+msgctxt "@label"
+msgid "Interface"
+msgstr "Interfaz"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209
+msgctxt "@label"
+msgid "Currency:"
+msgstr "Moneda:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222
+msgctxt "@label"
+msgid "Theme:"
+msgstr "Tema:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267
+msgctxt "@label"
+msgid "You will need to restart the application for these changes to have effect."
+msgstr "Tendrá que reiniciar la aplicación para que estos cambios tengan efecto."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284
+msgctxt "@info:tooltip"
+msgid "Slice automatically when changing settings."
+msgstr "Segmentar automáticamente al cambiar los ajustes."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292
+msgctxt "@option:check"
+msgid "Slice automatically"
+msgstr "Segmentar automáticamente"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306
+msgctxt "@label"
+msgid "Viewport behavior"
+msgstr "Comportamiento de la ventanilla"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314
+msgctxt "@info:tooltip"
+msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
+msgstr "Resaltar en rojo las áreas del modelo sin soporte. Sin soporte, estas áreas no se imprimirán correctamente."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323
+msgctxt "@option:check"
+msgid "Display overhang"
+msgstr "Mostrar voladizos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333
+msgctxt "@info:tooltip"
+msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
+msgstr "Resalta las superficies que faltan o son extrañas del modelo usando señales de advertencia. A las trayectorias de herramientas les faltarán a menudo partes de la geometría prevista."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342
+msgctxt "@option:check"
+msgid "Display model errors"
+msgstr "Mostrar errores de modelo"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350
+msgctxt "@info:tooltip"
+msgid "Moves the camera so the model is in the center of the view when a model is selected"
+msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355
+msgctxt "@action:button"
+msgid "Center camera when item is selected"
+msgstr "Centrar cámara cuando se selecciona elemento"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365
+msgctxt "@info:tooltip"
+msgid "Should the default zoom behavior of cura be inverted?"
+msgstr "¿Se debería invertir el comportamiento predeterminado del zoom de cura?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370
+msgctxt "@action:button"
+msgid "Invert the direction of camera zoom."
+msgstr "Invertir la dirección del zoom de la cámara."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid "Should zooming move in the direction of the mouse?"
+msgstr "¿Debería moverse el zoom en la dirección del ratón?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid "Zooming towards the mouse is not supported in the orthographic perspective."
+msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortográfica."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391
+msgctxt "@action:button"
+msgid "Zoom toward mouse direction"
+msgstr "Hacer zoom en la dirección del ratón"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417
+msgctxt "@info:tooltip"
+msgid "Should models on the platform be moved so that they no longer intersect?"
+msgstr "¿Deben moverse los modelos en la plataforma de modo que no se crucen?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422
+msgctxt "@option:check"
+msgid "Ensure models are kept apart"
+msgstr "Asegúrese de que los modelos están separados"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431
+msgctxt "@info:tooltip"
+msgid "Should models on the platform be moved down to touch the build plate?"
+msgstr "¿Deben moverse los modelos del área de impresión de modo que no toquen la placa de impresión?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436
+msgctxt "@option:check"
+msgid "Automatically drop models to the build plate"
+msgstr "Arrastrar modelos a la placa de impresión de forma automática"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448
+msgctxt "@info:tooltip"
+msgid "Show caution message in g-code reader."
+msgstr "Se muestra el mensaje de advertencia en el lector de GCode."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457
+msgctxt "@option:check"
+msgid "Caution message in g-code reader"
+msgstr "Mensaje de advertencia en el lector de GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465
+msgctxt "@info:tooltip"
+msgid "Should layer be forced into compatibility mode?"
+msgstr "¿Debe forzarse el modo de compatibilidad de la capa?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470
+msgctxt "@option:check"
+msgid "Force layer view compatibility mode (restart required)"
+msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480
+msgctxt "@info:tooltip"
+msgid "Should Cura open at the location it was closed?"
+msgstr "¿Debería abrirse Cura en el lugar donde se cerró?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485
+msgctxt "@option:check"
+msgid "Restore window position on start"
+msgstr "Restaurar la posición de la ventana al inicio"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495
+msgctxt "@info:tooltip"
+msgid "What type of camera rendering should be used?"
+msgstr "¿Qué tipo de renderizado de cámara debería usarse?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502
+msgctxt "@window:text"
+msgid "Camera rendering:"
+msgstr "Renderizado de cámara:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509
+msgid "Perspective"
+msgstr "Perspectiva"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510
+msgid "Orthographic"
+msgstr "Ortográfica"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548
+msgctxt "@label"
+msgid "Opening and saving files"
+msgstr "Abrir y guardar archivos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555
+msgctxt "@info:tooltip"
+msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
+msgstr "¿Debería abrir los archivos del escritorio o las aplicaciones externas en la misma instancia de Cura?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560
+msgctxt "@option:check"
+msgid "Use a single instance of Cura"
+msgstr "Utilizar una sola instancia de Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570
+msgctxt "@info:tooltip"
+msgid "Should models be scaled to the build volume if they are too large?"
+msgstr "¿Deben ajustarse los modelos al volumen de impresión si son demasiado grandes?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
+msgctxt "@option:check"
+msgid "Scale large models"
+msgstr "Escalar modelos de gran tamaño"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585
+msgctxt "@info:tooltip"
+msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
+msgstr "Un modelo puede mostrarse demasiado pequeño si su unidad son metros en lugar de milímetros, por ejemplo. ¿Deben escalarse estos modelos?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
+msgctxt "@option:check"
+msgid "Scale extremely small models"
+msgstr "Escalar modelos demasiado pequeños"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600
+msgctxt "@info:tooltip"
+msgid "Should models be selected after they are loaded?"
+msgstr "¿Se deberían seleccionar los modelos después de haberse cargado?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605
+msgctxt "@option:check"
+msgid "Select models when loaded"
+msgstr "Seleccionar modelos al abrirlos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615
+msgctxt "@info:tooltip"
+msgid "Should a prefix based on the printer name be added to the print job name automatically?"
+msgstr "¿Debe añadirse automáticamente un prefijo basado en el nombre de la impresora al nombre del trabajo de impresión?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
+msgctxt "@option:check"
+msgid "Add machine prefix to job name"
+msgstr "Agregar prefijo de la máquina al nombre del trabajo"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630
+msgctxt "@info:tooltip"
+msgid "Should a summary be shown when saving a project file?"
+msgstr "¿Mostrar un resumen al guardar un archivo de proyecto?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634
+msgctxt "@option:check"
+msgid "Show summary dialog when saving project"
+msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644
+msgctxt "@info:tooltip"
+msgid "Default behavior when opening a project file"
+msgstr "Comportamiento predeterminado al abrir un archivo del proyecto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652
+msgctxt "@window:text"
+msgid "Default behavior when opening a project file: "
+msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: "
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666
+msgctxt "@option:openProject"
+msgid "Always ask me this"
+msgstr "Preguntar siempre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667
+msgctxt "@option:openProject"
+msgid "Always open as a project"
+msgstr "Abrir siempre como un proyecto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668
+msgctxt "@option:openProject"
+msgid "Always import models"
+msgstr "Importar modelos siempre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705
+msgctxt "@info:tooltip"
+msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
+msgstr "Si ha realizado cambios en un perfil y, a continuación, ha cambiado a otro, aparecerá un cuadro de diálogo que le preguntará si desea guardar o descartar los cambios. También puede elegir el comportamiento predeterminado, así ese cuadro de diálogo no volverá a aparecer."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
+msgctxt "@label"
+msgid "Profiles"
+msgstr "Perfiles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719
+msgctxt "@window:text"
+msgid "Default behavior for changed setting values when switching to a different profile: "
+msgstr "Comportamiento predeterminado para los valores modificados al cambiar a otro perfil: "
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734
+msgctxt "@option:discardOrKeep"
+msgid "Always discard changed settings"
+msgstr "Descartar siempre los ajustes modificados"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735
+msgctxt "@option:discardOrKeep"
+msgid "Always transfer changed settings to new profile"
+msgstr "Transferir siempre los ajustes modificados al nuevo perfil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770
+msgctxt "@label"
+msgid "Privacy"
+msgstr "Privacidad"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777
+msgctxt "@info:tooltip"
+msgid "Should Cura check for updates when the program is started?"
+msgstr "¿Debe Cura buscar actualizaciones cuando se abre el programa?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782
+msgctxt "@option:check"
+msgid "Check for updates on start"
+msgstr "Buscar actualizaciones al iniciar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792
+msgctxt "@info:tooltip"
+msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
+msgstr "¿Deben enviarse datos anónimos sobre la impresión a Ultimaker? Tenga en cuenta que no se envían ni almacenan modelos, direcciones IP ni otra información de identificación personal."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797
+msgctxt "@option:check"
+msgid "Send (anonymous) print information"
+msgstr "Enviar información (anónima) de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806
+msgctxt "@action:button"
+msgid "More information"
+msgstr "Más información"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
+msgctxt "@action:button"
+msgid "Activate"
+msgstr "Activar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
+msgctxt "@action:button"
+msgid "Rename"
+msgstr "Cambiar nombre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
+msgctxt "@action:button"
+msgid "Create"
+msgstr "Crear"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
+msgctxt "@action:button"
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
+msgctxt "@action:button"
+msgid "Import"
+msgstr "Importar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
+msgctxt "@action:button"
+msgid "Export"
+msgstr "Exportar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199
+msgctxt "@action:button Sending materials to printers"
+msgid "Sync with Printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248
+msgctxt "@action:label"
+msgid "Printer"
+msgstr "Impresora"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277
+msgctxt "@title:window"
+msgid "Confirm Remove"
+msgstr "Confirmar eliminación"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278
+msgctxt "@label (%1 is object name)"
+msgid "Are you sure you wish to remove %1? This cannot be undone!"
+msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337
+msgctxt "@title:window"
+msgid "Import Material"
+msgstr "Importar material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid "Could not import material %1: %2"
+msgstr "No se pudo importar el material en %1: %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully imported material %1"
+msgstr "El material se ha importado correctamente en %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368
+msgctxt "@title:window"
+msgid "Export Material"
+msgstr "Exportar material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372
+msgctxt "@info:status Don't translate the XML tags and !"
+msgid "Failed to export material to %1: %2"
+msgstr "Se ha producido un error al exportar el material a %1: %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully exported material to %1"
+msgstr "El material se ha exportado correctamente a %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388
+msgctxt "@title:window"
+msgid "Export All Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
+msgctxt "@title"
+msgid "Information"
+msgstr "Información"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
+msgctxt "@title:window"
+msgid "Confirm Diameter Change"
+msgstr "Confirmar cambio de diámetro"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
+msgctxt "@label (%1 is a number)"
+msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
+msgstr "El nuevo diámetro del filamento está ajustado en %1 mm y no es compatible con el extrusor actual. ¿Desea continuar?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
+msgctxt "@label"
+msgid "Display Name"
+msgstr "Mostrar nombre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
+msgctxt "@label"
+msgid "Material Type"
+msgstr "Tipo de material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
+msgctxt "@label"
+msgid "Color"
+msgstr "Color"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
+msgctxt "@label"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
+msgctxt "@label"
+msgid "Density"
+msgstr "Densidad"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
+msgctxt "@label"
+msgid "Diameter"
+msgstr "Diámetro"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
+msgctxt "@label"
+msgid "Filament Cost"
+msgstr "Coste del filamento"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
+msgctxt "@label"
+msgid "Filament weight"
+msgstr "Peso del filamento"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
+msgctxt "@label"
+msgid "Filament length"
+msgstr "Longitud del filamento"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
+msgctxt "@label"
+msgid "Cost per Meter"
+msgstr "Coste por metro"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
+msgctxt "@label"
+msgid "This material is linked to %1 and shares some of its properties."
+msgstr "Este material está vinculado a %1 y comparte alguna de sus propiedades."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
+msgctxt "@label"
+msgid "Unlink Material"
+msgstr "Desvincular material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
+msgctxt "@label"
+msgid "Description"
+msgstr "Descripción"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
+msgctxt "@label"
+msgid "Adhesion Information"
+msgstr "Información sobre adherencia"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
+msgctxt "@label"
+msgid "Print settings"
+msgstr "Ajustes de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
+msgctxt "@label"
+msgid "Create"
+msgstr "Crear"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
+msgctxt "@label"
+msgid "Duplicate"
+msgstr "Duplicado"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
+msgctxt "@title:window"
+msgid "Create Profile"
+msgstr "Crear perfil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
+msgctxt "@info"
+msgid "Please provide a name for this profile."
+msgstr "Introduzca un nombre para este perfil."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263
+msgctxt "@title:window"
+msgid "Duplicate Profile"
+msgstr "Duplicar perfil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294
+msgctxt "@title:window"
+msgid "Rename Profile"
+msgstr "Cambiar nombre de perfil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307
+msgctxt "@title:window"
+msgid "Import Profile"
+msgstr "Importar perfil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336
+msgctxt "@title:window"
+msgid "Export Profile"
+msgstr "Exportar perfil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399
+msgctxt "@label %1 is printer name"
+msgid "Printer: %1"
+msgstr "Impresora: %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557
+msgctxt "@action:button"
+msgid "Update profile with current settings/overrides"
+msgstr "Actualizar perfil con ajustes o sobrescrituras actuales"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
+msgctxt "@action:button"
+msgid "Discard current changes"
+msgstr "Descartar cambios actuales"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583
+msgctxt "@action:label"
+msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
+msgstr "Este perfil utiliza los ajustes predeterminados especificados por la impresora, por eso no aparece ningún ajuste o sobrescritura en la lista que se ve a continuación."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591
+msgctxt "@action:label"
+msgid "Your current settings match the selected profile."
+msgstr "Los ajustes actuales coinciden con el perfil seleccionado."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609
+msgctxt "@title:tab"
+msgid "Global Settings"
+msgstr "Ajustes globales"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
+msgctxt "@info:status"
+msgid "Calculated"
+msgstr "Calculado"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
+msgctxt "@title:column"
+msgid "Setting"
+msgstr "Ajustes"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
+msgctxt "@title:column"
+msgid "Profile"
+msgstr "Perfil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
+msgctxt "@title:column"
+msgid "Current"
+msgstr "Actual"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
+msgctxt "@title:column"
+msgid "Unit"
+msgstr "Unidad"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16
+msgctxt "@title:tab"
+msgid "Setting Visibility"
+msgstr "Visibilidad de los ajustes"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48
msgctxt "@label:textbox"
-msgid "Search settings"
-msgstr "Buscar ajustes"
+msgid "Check all"
+msgstr "Comprobar todo"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:456
-msgctxt "@action:menu"
-msgid "Copy value to all extruders"
-msgstr "Copiar valor en todos los extrusores"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+msgctxt "@label"
+msgid "Extruder"
+msgstr "Extrusor"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:465
-msgctxt "@action:menu"
-msgid "Copy all changed values to all extruders"
-msgstr "Copiar todos los valores cambiados en todos los extrusores"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
+msgctxt "@tooltip"
+msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
+msgstr "Temperatura objetivo del extremo caliente. El extremo caliente se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento del extremo caliente se desactivará."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:502
-msgctxt "@action:menu"
-msgid "Hide this setting"
-msgstr "Ocultar este ajuste"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
+msgctxt "@tooltip"
+msgid "The current temperature of this hotend."
+msgstr "Temperatura actual de este extremo caliente."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:515
-msgctxt "@action:menu"
-msgid "Don't show this setting"
-msgstr "No mostrar este ajuste"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the hotend to."
+msgstr "Temperatura a la que se va a precalentar el extremo caliente."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:519
-msgctxt "@action:menu"
-msgid "Keep this setting visible"
-msgstr "Mostrar este ajuste"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
+msgctxt "@button Cancel pre-heating"
+msgid "Cancel"
+msgstr "Cancelar"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingCategory.qml:200
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+msgctxt "@button"
+msgid "Pre-heat"
+msgstr "Precalentar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
+msgctxt "@tooltip of pre-heat"
+msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
+msgstr "Caliente el extremo caliente antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que el extremo caliente se caliente para poder imprimir."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
+msgctxt "@tooltip"
+msgid "The colour of the material in this extruder."
+msgstr "Color del material en este extrusor."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
+msgctxt "@tooltip"
+msgid "The material in this extruder."
+msgstr "Material en este extrusor."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
+msgctxt "@tooltip"
+msgid "The nozzle inserted in this extruder."
+msgstr "Tobera insertada en este extrusor."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+msgctxt "@label"
+msgid "Build plate"
+msgstr "Placa de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
+msgctxt "@tooltip"
+msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
+msgstr "Temperatura objetivo de la plataforma calentada. La plataforma se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento de la plataforma se desactivará."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
+msgctxt "@tooltip"
+msgid "The current temperature of the heated bed."
+msgstr "Temperatura actual de la plataforma caliente."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the bed to."
+msgstr "Temperatura a la que se va a precalentar la plataforma."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
+msgctxt "@tooltip of pre-heat"
+msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
+msgstr "Caliente la plataforma antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que la plataforma se caliente para poder imprimir."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+msgctxt "@label"
+msgid "Printer control"
+msgstr "Control de impresoras"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+msgctxt "@label"
+msgid "Jog Position"
+msgstr "Posición de desplazamiento"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+msgctxt "@label"
+msgid "X/Y"
+msgstr "X/Y"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
+msgctxt "@label"
+msgid "Z"
+msgstr "Z"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
+msgctxt "@label"
+msgid "Jog Distance"
+msgstr "Distancia de desplazamiento"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
+msgctxt "@label"
+msgid "Send G-code"
+msgstr "Enviar GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
+msgctxt "@tooltip of G-code command input"
+msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
+msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
+msgctxt "@info:status"
+msgid "The printer is not connected."
+msgstr "La impresora no está conectada."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
+msgctxt "@status"
+msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
+msgstr "La impresora de la nube está sin conexión. Compruebe si la impresora está encendida y conectada a Internet."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
+msgctxt "@status"
+msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
+msgstr "Esta impresora no está vinculada a su cuenta. Vaya a Ultimaker Digital Factory para establecer una conexión."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
+msgctxt "@status"
+msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
+msgstr "La conexión de la nube no está disponible actualmente. Inicie sesión para conectarse a la impresora de la nube."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
+msgctxt "@status"
+msgid "The cloud connection is currently unavailable. Please check your internet connection."
+msgstr "La conexión de la nube no está disponible actualmente. Compruebe la conexión a Internet."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
+msgctxt "@button"
+msgid "Add printer"
+msgstr "Agregar impresora"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
+msgctxt "@button"
+msgid "Manage printers"
+msgstr "Administrar impresoras"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Connected printers"
+msgstr "Impresoras conectadas"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Preset printers"
+msgstr "Impresoras preconfiguradas"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
+msgctxt "@label"
+msgid "Active print"
+msgstr "Activar impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
+msgctxt "@label"
+msgid "Job Name"
+msgstr "Nombre del trabajo"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
+msgctxt "@label"
+msgid "Printing Time"
+msgstr "Tiempo de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
+msgctxt "@label"
+msgid "Estimated time left"
+msgstr "Tiempo restante estimado"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
+msgctxt "@label"
+msgid "Profile"
+msgstr "Perfil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
+msgctxt "@tooltip"
+msgid ""
+"Some setting/override values are different from the values stored in the profile.\n"
+"\n"
+"Click to open the profile manager."
+msgstr ""
+"Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n"
+"\n"
+"Haga clic para abrir el administrador de perfiles."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
+msgctxt "@label:header"
+msgid "Custom profiles"
+msgstr "Perfiles personalizados"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
+msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
+msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
+msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
+msgstr[0] "No hay ningún perfil %1 para configuración en %2 extrusor. En su lugar se utilizará la opción predeterminada"
+msgstr[1] "No hay ningún perfil %1 para configuraciones en %2 extrusores. En su lugar se utilizará la opción predeterminada"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
+msgctxt "@label shown when we load a Gcode file"
+msgid "Print setup disabled. G-code file can not be modified."
+msgstr "Configuración de impresión deshabilitada. No se puede modificar el archivo GCode."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
+msgctxt "@button"
+msgid "Recommended"
+msgstr "Recomendado"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
+msgctxt "@button"
+msgid "Custom"
+msgstr "Personalizado"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
+msgctxt "@label:Should be short"
+msgid "On"
+msgstr "Encendido"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
+msgctxt "@label:Should be short"
+msgid "Off"
+msgstr "Apagado"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
+msgctxt "@label"
+msgid "Experimental"
+msgstr "Experimental"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
+msgctxt "@label"
+msgid "Adhesion"
+msgstr "Adherencia"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
+msgctxt "@label"
+msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
+msgstr "Habilita la impresión de un borde o una balsa. Esta opción agregará un área plana alrededor del objeto, que es fácil de cortar después."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
+msgctxt "@label"
+msgid "Gradual infill"
+msgstr "Relleno gradual"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
+msgctxt "@label"
+msgid "Gradual infill will gradually increase the amount of infill towards the top."
+msgstr "Un relleno gradual aumentará gradualmente la cantidad de relleno hacia arriba."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
+msgctxt "@tooltip"
+msgid "You have modified some profile settings. If you want to change these go to custom mode."
+msgstr "Ha modificado algunos ajustes del perfil. Si desea cambiarlos, hágalo en el modo personalizado."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
+msgctxt "@label"
+msgid "Support"
+msgstr "Soporte"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
+msgctxt "@label"
+msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
+msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200
msgctxt "@label"
msgid ""
"Some hidden settings use values different from their normal calculated value.\n"
@@ -4899,32 +5143,32 @@ msgstr ""
"\n"
"Haga clic para mostrar estos ajustes."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
msgctxt "@label"
msgid "This setting is not used because all the settings that it influences are overridden."
msgstr "Este ajuste no se utiliza porque los ajustes a los que afecta están sobrescritos."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:86
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
msgctxt "@label Header for list of settings."
msgid "Affects"
msgstr "Afecta a"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:91
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
msgctxt "@label Header for list of settings."
msgid "Affected By"
msgstr "Afectado por"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:187
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
msgctxt "@label"
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
msgctxt "@label"
msgid "This setting is resolved from conflicting extruder-specific values:"
msgstr "Este valor se resuelve a partir de valores en conflicto específicos del extrusor:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:230
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
msgctxt "@label"
msgid ""
"This setting has a value that is different from the profile.\n"
@@ -4935,7 +5179,7 @@ msgstr ""
"\n"
"Haga clic para restaurar el valor del perfil."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
msgctxt "@label"
msgid ""
"This setting is normally calculated, but it currently has an absolute value set.\n"
@@ -4946,714 +5190,308 @@ msgstr ""
"\n"
"Haga clic para restaurar el valor calculado."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68
+msgctxt "@label:textbox"
+msgid "Search settings"
+msgstr "Buscar ajustes"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468
+msgctxt "@action:menu"
+msgid "Copy value to all extruders"
+msgstr "Copiar valor en todos los extrusores"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477
+msgctxt "@action:menu"
+msgid "Copy all changed values to all extruders"
+msgstr "Copiar todos los valores cambiados en todos los extrusores"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514
+msgctxt "@action:menu"
+msgid "Hide this setting"
+msgstr "Ocultar este ajuste"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527
+msgctxt "@action:menu"
+msgid "Don't show this setting"
+msgstr "No mostrar este ajuste"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531
+msgctxt "@action:menu"
+msgid "Keep this setting visible"
+msgstr "Mostrar este ajuste"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
msgctxt "@info:tooltip"
msgid "3D View"
msgstr "Vista en 3D"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
msgctxt "@info:tooltip"
msgid "Front View"
msgstr "Vista frontal"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
msgctxt "@info:tooltip"
msgid "Top View"
msgstr "Vista superior"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:66
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
msgctxt "@info:tooltip"
msgid "Left View"
msgstr "Vista del lado izquierdo"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
msgctxt "@info:tooltip"
msgid "Right View"
msgstr "Vista del lado derecho"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
msgctxt "@label"
-msgid "Extruder"
-msgstr "Extrusor"
+msgid "View type"
+msgstr "Ver tipo"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
-msgctxt "@tooltip"
-msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
-msgstr "Temperatura objetivo del extremo caliente. El extremo caliente se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento del extremo caliente se desactivará."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
+msgctxt "@label"
+msgid "Add a Cloud printer"
+msgstr "Añadir una impresora a la nube"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
-msgctxt "@tooltip"
-msgid "The current temperature of this hotend."
-msgstr "Temperatura actual de este extremo caliente."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
+msgctxt "@label"
+msgid "Waiting for Cloud response"
+msgstr "Esperando la respuesta de la nube"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the hotend to."
-msgstr "Temperatura a la que se va a precalentar el extremo caliente."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
+msgctxt "@label"
+msgid "No printers found in your account?"
+msgstr "¿No se han encontrado impresoras en su cuenta?"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
-msgctxt "@button Cancel pre-heating"
-msgid "Cancel"
-msgstr "Cancelar"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
+msgctxt "@label"
+msgid "The following printers in your account have been added in Cura:"
+msgstr "Las siguientes impresoras de su cuenta se han añadido en Cura:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
msgctxt "@button"
-msgid "Pre-heat"
-msgstr "Precalentar"
+msgid "Add printer manually"
+msgstr "Añadir impresora manualmente"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
-msgctxt "@tooltip of pre-heat"
-msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
-msgstr "Caliente el extremo caliente antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que el extremo caliente se caliente para poder imprimir."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
-msgctxt "@tooltip"
-msgid "The colour of the material in this extruder."
-msgstr "Color del material en este extrusor."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
-msgctxt "@tooltip"
-msgid "The material in this extruder."
-msgstr "Material en este extrusor."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
-msgctxt "@tooltip"
-msgid "The nozzle inserted in this extruder."
-msgstr "Tobera insertada en este extrusor."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
msgctxt "@label"
-msgid "Build plate"
-msgstr "Placa de impresión"
+msgid "Manufacturer"
+msgstr "Fabricante"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
-msgctxt "@tooltip"
-msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
-msgstr "Temperatura objetivo de la plataforma calentada. La plataforma se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento de la plataforma se desactivará."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
-msgctxt "@tooltip"
-msgid "The current temperature of the heated bed."
-msgstr "Temperatura actual de la plataforma caliente."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the bed to."
-msgstr "Temperatura a la que se va a precalentar la plataforma."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
-msgctxt "@tooltip of pre-heat"
-msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
-msgstr "Caliente la plataforma antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que la plataforma se caliente para poder imprimir."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
msgctxt "@label"
-msgid "Printer control"
-msgstr "Control de impresoras"
+msgid "Profile author"
+msgstr "Autor del perfil"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
msgctxt "@label"
-msgid "Jog Position"
-msgstr "Posición de desplazamiento"
+msgid "Printer name"
+msgstr "Nombre de la impresora"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
+msgctxt "@text"
+msgid "Please name your printer"
+msgstr "Asigne un nombre a su impresora"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
msgctxt "@label"
-msgid "X/Y"
-msgstr "X/Y"
+msgid "Add a printer"
+msgstr "Agregar una impresora"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
msgctxt "@label"
-msgid "Z"
-msgstr "Z"
+msgid "Add a networked printer"
+msgstr "Agregar una impresora en red"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
msgctxt "@label"
-msgid "Jog Distance"
-msgstr "Distancia de desplazamiento"
+msgid "Add a non-networked printer"
+msgstr "Agregar una impresora fuera de red"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
msgctxt "@label"
-msgid "Send G-code"
-msgstr "Enviar GCode"
+msgid "There is no printer found over your network."
+msgstr "No se ha encontrado ninguna impresora en su red."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
-msgctxt "@tooltip of G-code command input"
-msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
-msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
-msgctxt "@info:status"
-msgid "The printer is not connected."
-msgstr "La impresora no está conectada."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:114
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
msgctxt "@label"
-msgid "Is printed as support."
-msgstr "Se imprime como soporte."
+msgid "Refresh"
+msgstr "Actualizar"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
msgctxt "@label"
-msgid "Other models overlapping with this model are modified."
-msgstr "Se han modificado otros modelos que se superponen con este modelo."
+msgid "Add printer by IP"
+msgstr "Agregar impresora por IP"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:120
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
msgctxt "@label"
-msgid "Infill overlapping with this model is modified."
-msgstr "Se ha modificado la superposición del relleno con este modelo."
+msgid "Add cloud printer"
+msgstr "Añadir impresora a la nube"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
msgctxt "@label"
-msgid "Overlaps with this model are not supported."
-msgstr "No se admiten superposiciones con este modelo."
+msgid "Troubleshooting"
+msgstr "Solución de problemas"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:130
-msgctxt "@label %1 is the number of settings it overrides."
-msgid "Overrides %1 setting."
-msgid_plural "Overrides %1 settings."
-msgstr[0] "%1 sobrescrito."
-msgstr[1] "%1 sobrescritos."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
-msgctxt "@action:button"
-msgid "Marketplace"
-msgstr "Marketplace"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Edit"
-msgstr "&Edición"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
-msgctxt "@title:menu menubar:toplevel"
-msgid "E&xtensions"
-msgstr "E&xtensiones"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
-msgctxt "@title:menu menubar:toplevel"
-msgid "P&references"
-msgstr "Pre&ferencias"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Help"
-msgstr "A&yuda"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
-msgctxt "@title:window"
-msgid "New project"
-msgstr "Nuevo proyecto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
-msgctxt "@info:question"
-msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
-msgstr "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:257
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
msgctxt "@label"
-msgid "This package will be installed after restarting."
-msgstr "Este paquete se instalará después de reiniciar."
+msgid "Add printer by IP address"
+msgstr "Agregar impresora por dirección IP"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:453
-msgctxt "@title:tab"
-msgid "Settings"
-msgstr "Ajustes"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
+msgctxt "@text"
+msgid "Enter your printer's IP address."
+msgstr "Introduzca la dirección IP de su impresora."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:576
-msgctxt "@title:window %1 is the application name"
-msgid "Closing %1"
-msgstr "Cerrando %1"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
+msgctxt "@button"
+msgid "Add"
+msgstr "Agregar"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:577 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:589
-msgctxt "@label %1 is the application name"
-msgid "Are you sure you want to exit %1?"
-msgstr "¿Seguro que desea salir de %1?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
+msgctxt "@label"
+msgid "Could not connect to device."
+msgstr "No se ha podido conectar al dispositivo."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:737
-msgctxt "@window:title"
-msgid "Install Package"
-msgstr "Instalar paquete"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
+msgctxt "@label"
+msgid "Can't connect to your Ultimaker printer?"
+msgstr "¿No puede conectarse a la impresora Ultimaker?"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:745
-msgctxt "@title:window"
-msgid "Open File(s)"
-msgstr "Abrir archivo(s)"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
+msgctxt "@label"
+msgid "The printer at this address has not responded yet."
+msgstr "La impresora todavía no ha respondido en esta dirección."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:748
-msgctxt "@text:window"
-msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
-msgstr "Hemos encontrado uno o más archivos de GCode entre los archivos que ha seleccionado. Solo puede abrir los archivos GCode de uno en uno. Si desea abrir un archivo GCode, seleccione solo uno."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
+msgctxt "@label"
+msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
+msgstr "No se puede agregar la impresora porque es desconocida o no aloja un grupo."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:857
-msgctxt "@title:window"
-msgid "Add Printer"
-msgstr "Agregar impresora"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
+msgctxt "@button"
+msgid "Back"
+msgstr "Atrás"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:865
-msgctxt "@title:window"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
+msgctxt "@button"
+msgid "Connect"
+msgstr "Conectar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
+msgctxt "@label"
+msgid "Release Notes"
+msgstr "Notas de la versión"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124
+msgctxt "@text"
+msgid "Add material settings and plugins from the Marketplace"
+msgstr "Añada ajustes de material y complementos desde Marketplace"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154
+msgctxt "@text"
+msgid "Backup and sync your material settings and plugins"
+msgstr "Realice copias de seguridad y sincronice los ajustes y complementos de sus materiales"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184
+msgctxt "@text"
+msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
+msgstr "Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217
+msgctxt "@text"
+msgid "Create a free Ultimaker Account"
+msgstr "Cree una cuenta gratuita de Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230
+msgctxt "@button"
+msgid "Skip"
+msgstr "Omitir"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
+msgctxt "@label"
+msgid "Help us to improve Ultimaker Cura"
+msgstr "Ayúdenos a mejorar Ultimaker Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
+msgctxt "@text"
+msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
+msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario, entre otros:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
+msgctxt "@text"
+msgid "Machine types"
+msgstr "Tipos de máquina"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
+msgctxt "@text"
+msgid "Material usage"
+msgstr "Uso de material"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
+msgctxt "@text"
+msgid "Number of slices"
+msgstr "Número de segmentos"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
+msgctxt "@text"
+msgid "Print settings"
+msgstr "Ajustes de impresión"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
+msgctxt "@text"
+msgid "Data collected by Ultimaker Cura will not contain any personal information."
+msgstr "Los datos recopilados por Ultimaker Cura no contendrán información personal."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
+msgctxt "@text"
+msgid "More information"
+msgstr "Más información"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
+msgctxt "@label"
+msgid "Empty"
+msgstr "Vacío"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
+msgctxt "@label"
+msgid "User Agreement"
+msgstr "Acuerdo de usuario"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
+msgctxt "@button"
+msgid "Decline and close"
+msgstr "Rechazar y cerrar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
+msgctxt "@label"
+msgid "Welcome to Ultimaker Cura"
+msgstr "Le damos la bienvenida a Ultimaker Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
+msgctxt "@text"
+msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
+msgstr ""
+"Siga estos pasos para configurar\n"
+"Ultimaker Cura. Solo le llevará unos minutos."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
+msgctxt "@button"
+msgid "Get started"
+msgstr "Empezar"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
+msgctxt "@label"
msgid "What's New"
msgstr "Novedades"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
-msgctxt "@status"
-msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
-msgstr "La impresora de la nube está sin conexión. Compruebe si la impresora está encendida y conectada a Internet."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
-msgctxt "@status"
-msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
-msgstr "Esta impresora no está vinculada a su cuenta. Vaya a Ultimaker Digital Factory para establecer una conexión."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
-msgctxt "@status"
-msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
-msgstr "La conexión de la nube no está disponible actualmente. Inicie sesión para conectarse a la impresora de la nube."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
-msgctxt "@status"
-msgid "The cloud connection is currently unavailable. Please check your internet connection."
-msgstr "La conexión de la nube no está disponible actualmente. Compruebe la conexión a Internet."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
-msgctxt "@button"
-msgid "Add printer"
-msgstr "Agregar impresora"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
-msgctxt "@button"
-msgid "Manage printers"
-msgstr "Administrar impresoras"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24
msgctxt "@label"
-msgid "Connected printers"
-msgstr "Impresoras conectadas"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
-msgctxt "@label"
-msgid "Preset printers"
-msgstr "Impresoras preconfiguradas"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ExtruderButton.qml:16
-msgctxt "@label %1 is filled in with the name of an extruder"
-msgid "Print Selected Model with %1"
-msgid_plural "Print Selected Models with %1"
-msgstr[0] "Imprimir modelo seleccionado con %1"
-msgstr[1] "Imprimir modelos seleccionados con %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
-msgctxt "@label"
-msgid "Time estimation"
-msgstr "Estimación de tiempos"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
-msgctxt "@label"
-msgid "Material estimation"
-msgstr "Estimación de material"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
-msgctxt "@label m for meter"
-msgid "%1m"
-msgstr "%1 m"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
-msgctxt "@label g for grams"
-msgid "%1g"
-msgstr "%1 g"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
-msgctxt "@label:PrintjobStatus"
-msgid "Slicing..."
-msgstr "Segmentando..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
-msgctxt "@label:PrintjobStatus"
-msgid "Unable to slice"
-msgstr "No se puede segmentar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Processing"
-msgstr "Procesando"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Slice"
-msgstr "Segmentación"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
-msgctxt "@label"
-msgid "Start the slicing process"
-msgstr "Iniciar el proceso de segmentación"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
-msgctxt "@button"
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
-msgctxt "@label"
-msgid "No time estimation available"
-msgstr "Ningún cálculo de tiempo disponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
-msgctxt "@label"
-msgid "No cost estimation available"
-msgstr "Ningún cálculo de costes disponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
-msgctxt "@button"
-msgid "Preview"
-msgstr "Vista previa"
-
-#: RemovableDriveOutputDevice/plugin.json
-msgctxt "description"
-msgid "Provides removable drive hotplugging and writing support."
-msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
-
-#: RemovableDriveOutputDevice/plugin.json
-msgctxt "name"
-msgid "Removable Drive Output Device Plugin"
-msgstr "Complemento de dispositivo de salida de unidad extraíble"
-
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
-msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0."
-
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.5 to 4.0"
-msgstr "Actualización de la versión 3.5 a la 4.0"
-
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
-msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7."
-
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.6.2 to 4.7"
-msgstr "Actualización de la versión 4.6.2 a la 4.7"
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
-msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4."
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.2 to 2.4"
-msgstr "Actualización de la versión 2.2 a la 2.4"
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
-msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3."
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.2 to 4.3"
-msgstr "Actualización de la versión 4.2 a la 4.3"
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
-msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2."
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.6.0 to 4.6.2"
-msgstr "Actualización de la versión 4.6.0 a la 4.6.2"
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
-msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1."
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.0 to 3.1"
-msgstr "Actualización de la versión 3.0 a la 3.1"
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
-msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1."
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.0 to 4.1"
-msgstr "Actualización de la versión 4.0 a la 4.1"
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
-msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7."
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.6 to 2.7"
-msgstr "Actualización de la versión 2.6 a la 2.7"
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
-msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6."
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.5 to 2.6"
-msgstr "Actualización de la versión 2.5 a la 2.6"
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
-msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2."
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.1 to 4.2"
-msgstr "Actualización de la versión 4.1 a la 4.2"
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
-msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2."
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.1 to 2.2"
-msgstr "Actualización de la versión 2.1 a la 2.2"
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
-msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3."
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.2 to 3.3"
-msgstr "Actualización de la versión 3.2 a la 3.3"
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
-msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6."
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.5 to 4.6"
-msgstr "Actualización de la versión 4.5 a la 4.6"
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
-msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5."
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.4 to 4.5"
-msgstr "Actualización de la versión 4.4 a la 4.5"
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
-msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8."
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.7 to 4.8"
-msgstr "Actualización de la versión 4.7 a la 4.8"
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
-msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4."
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.3 to 3.4"
-msgstr "Actualización de la versión 3.3 a la 3.4"
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
-msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4."
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.3 to 4.4"
-msgstr "Actualización de la versión 4.3 a la 4.4"
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
-msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5."
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.4 to 3.5"
-msgstr "Actualización de la versión 3.4 a la 3.5"
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
-msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0."
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.7 to 3.0"
-msgstr "Actualización de la versión 2.7 a la 3.0"
-
-#: AMFReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading AMF files."
-msgstr "Proporciona asistencia para leer archivos AMF."
-
-#: AMFReader/plugin.json
-msgctxt "name"
-msgid "AMF Reader"
-msgstr "Lector de AMF"
-
-#: GCodeProfileReader/plugin.json
-msgctxt "description"
-msgid "Provides support for importing profiles from g-code files."
-msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode."
-
-#: GCodeProfileReader/plugin.json
-msgctxt "name"
-msgid "G-code Profile Reader"
-msgstr "Lector de perfiles GCode"
-
-#: FirmwareUpdater/plugin.json
-msgctxt "description"
-msgid "Provides a machine actions for updating firmware."
-msgstr "Proporciona opciones a la máquina para actualizar el firmware."
-
-#: FirmwareUpdater/plugin.json
-msgctxt "name"
-msgid "Firmware Updater"
-msgstr "Actualizador de firmware"
-
-#: X3DReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading X3D files."
-msgstr "Proporciona asistencia para leer archivos X3D."
-
-#: X3DReader/plugin.json
-msgctxt "name"
-msgid "X3D Reader"
-msgstr "Lector de X3D"
-
-#: Toolbox/plugin.json
-msgctxt "description"
-msgid "Find, manage and install new Cura packages."
-msgstr "Buscar, administrar e instalar nuevos paquetes de Cura."
-
-#: Toolbox/plugin.json
-msgctxt "name"
-msgid "Toolbox"
-msgstr "Cuadro de herramientas"
-
-#: PerObjectSettingsTool/plugin.json
-msgctxt "description"
-msgid "Provides the Per Model Settings."
-msgstr "Proporciona los ajustes por modelo."
-
-#: PerObjectSettingsTool/plugin.json
-msgctxt "name"
-msgid "Per Model Settings Tool"
-msgstr "Herramienta de ajustes por modelo"
-
-#: PostProcessingPlugin/plugin.json
-msgctxt "description"
-msgid "Extension that allows for user created scripts for post processing"
-msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios"
-
-#: PostProcessingPlugin/plugin.json
-msgctxt "name"
-msgid "Post Processing"
-msgstr "Posprocesamiento"
-
-#: CuraEngineBackend/plugin.json
-msgctxt "description"
-msgid "Provides the link to the CuraEngine slicing backend."
-msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
-
-#: CuraEngineBackend/plugin.json
-msgctxt "name"
-msgid "CuraEngine Backend"
-msgstr "Backend de CuraEngine"
-
-#: USBPrinting/plugin.json
-msgctxt "description"
-msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
-msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware."
-
-#: USBPrinting/plugin.json
-msgctxt "name"
-msgid "USB printing"
-msgstr "Impresión USB"
-
-#: CuraProfileWriter/plugin.json
-msgctxt "description"
-msgid "Provides support for exporting Cura profiles."
-msgstr "Proporciona asistencia para exportar perfiles de Cura."
-
-#: CuraProfileWriter/plugin.json
-msgctxt "name"
-msgid "Cura Profile Writer"
-msgstr "Escritor de perfiles de Cura"
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "description"
-msgid "Manages network connections to Ultimaker networked printers."
-msgstr "Gestiona las conexiones de red de las impresoras Ultimaker conectadas."
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "name"
-msgid "Ultimaker Network Connection"
-msgstr "Conexión en red de Ultimaker"
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "description"
-msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
-msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)."
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "name"
-msgid "Ultimaker machine actions"
-msgstr "Acciones de la máquina Ultimaker"
-
-#: 3MFReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading 3MF files."
-msgstr "Proporciona asistencia para leer archivos 3MF."
-
-#: 3MFReader/plugin.json
-msgctxt "name"
-msgid "3MF Reader"
-msgstr "Lector de 3MF"
-
-#: GCodeGzWriter/plugin.json
-msgctxt "description"
-msgid "Writes g-code to a compressed archive."
-msgstr "Escribe GCode en un archivo comprimido."
-
-#: GCodeGzWriter/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Writer"
-msgstr "Escritor de GCode comprimido"
-
-#: GCodeGzReader/plugin.json
-msgctxt "description"
-msgid "Reads g-code from a compressed archive."
-msgstr "Lee GCode de un archivo comprimido."
-
-#: GCodeGzReader/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Reader"
-msgstr "Lector de GCode comprimido"
+msgid "No items to select from"
+msgstr "No hay elementos para seleccionar"
#: ModelChecker/plugin.json
msgctxt "description"
@@ -5665,105 +5503,15 @@ msgctxt "name"
msgid "Model Checker"
msgstr "Comprobador de modelos"
-#: FirmwareUpdateChecker/plugin.json
+#: 3MFReader/plugin.json
msgctxt "description"
-msgid "Checks for firmware updates."
-msgstr "Busca actualizaciones de firmware."
+msgid "Provides support for reading 3MF files."
+msgstr "Proporciona asistencia para leer archivos 3MF."
-#: FirmwareUpdateChecker/plugin.json
+#: 3MFReader/plugin.json
msgctxt "name"
-msgid "Firmware Update Checker"
-msgstr "Buscador de actualizaciones de firmware"
-
-#: GCodeReader/plugin.json
-msgctxt "description"
-msgid "Allows loading and displaying G-code files."
-msgstr "Permite cargar y visualizar archivos GCode."
-
-#: GCodeReader/plugin.json
-msgctxt "name"
-msgid "G-code Reader"
-msgstr "Lector de GCode"
-
-#: SupportEraser/plugin.json
-msgctxt "description"
-msgid "Creates an eraser mesh to block the printing of support in certain places"
-msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares"
-
-#: SupportEraser/plugin.json
-msgctxt "name"
-msgid "Support Eraser"
-msgstr "Borrador de soporte"
-
-#: TrimeshReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading model files."
-msgstr "Proporciona asistencia para leer archivos 3D."
-
-#: TrimeshReader/plugin.json
-msgctxt "name"
-msgid "Trimesh Reader"
-msgstr "Lector Trimesh"
-
-#: SentryLogger/plugin.json
-msgctxt "description"
-msgid "Logs certain events so that they can be used by the crash reporter"
-msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente"
-
-#: SentryLogger/plugin.json
-msgctxt "name"
-msgid "Sentry Logger"
-msgstr "Registro de Sentry"
-
-#: UFPReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading Ultimaker Format Packages."
-msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker."
-
-#: UFPReader/plugin.json
-msgctxt "name"
-msgid "UFP Reader"
-msgstr "Lector de UFP"
-
-#: LegacyProfileReader/plugin.json
-msgctxt "description"
-msgid "Provides support for importing profiles from legacy Cura versions."
-msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura."
-
-#: LegacyProfileReader/plugin.json
-msgctxt "name"
-msgid "Legacy Cura Profile Reader"
-msgstr "Lector de perfiles antiguos de Cura"
-
-#: PrepareStage/plugin.json
-msgctxt "description"
-msgid "Provides a prepare stage in Cura."
-msgstr "Proporciona una fase de preparación en Cura."
-
-#: PrepareStage/plugin.json
-msgctxt "name"
-msgid "Prepare Stage"
-msgstr "Fase de preparación"
-
-#: MonitorStage/plugin.json
-msgctxt "description"
-msgid "Provides a monitor stage in Cura."
-msgstr "Proporciona una fase de supervisión en Cura."
-
-#: MonitorStage/plugin.json
-msgctxt "name"
-msgid "Monitor Stage"
-msgstr "Fase de supervisión"
-
-#: XRayView/plugin.json
-msgctxt "description"
-msgid "Provides the X-Ray view."
-msgstr "Proporciona la vista de rayos X."
-
-#: XRayView/plugin.json
-msgctxt "name"
-msgid "X-Ray View"
-msgstr "Vista de rayos X"
+msgid "3MF Reader"
+msgstr "Lector de 3MF"
#: 3MFWriter/plugin.json
msgctxt "description"
@@ -5775,65 +5523,35 @@ msgctxt "name"
msgid "3MF Writer"
msgstr "Escritor de 3MF"
-#: SliceInfoPlugin/plugin.json
+#: AMFReader/plugin.json
msgctxt "description"
-msgid "Submits anonymous slice info. Can be disabled through preferences."
-msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias."
+msgid "Provides support for reading AMF files."
+msgstr "Proporciona asistencia para leer archivos AMF."
-#: SliceInfoPlugin/plugin.json
+#: AMFReader/plugin.json
msgctxt "name"
-msgid "Slice info"
-msgstr "Info de la segmentación"
+msgid "AMF Reader"
+msgstr "Lector de AMF"
-#: PreviewStage/plugin.json
+#: CuraDrive/plugin.json
msgctxt "description"
-msgid "Provides a preview stage in Cura."
-msgstr "Proporciona una fase de vista previa en Cura."
+msgid "Backup and restore your configuration."
+msgstr "Realice una copia de seguridad de su configuración y restáurela."
-#: PreviewStage/plugin.json
+#: CuraDrive/plugin.json
msgctxt "name"
-msgid "Preview Stage"
-msgstr "Fase de vista previa"
+msgid "Cura Backups"
+msgstr "Copias de seguridad de Cura"
-#: SimulationView/plugin.json
+#: CuraEngineBackend/plugin.json
msgctxt "description"
-msgid "Provides the Simulation view."
-msgstr "Abre la vista de simulación."
+msgid "Provides the link to the CuraEngine slicing backend."
+msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
-#: SimulationView/plugin.json
+#: CuraEngineBackend/plugin.json
msgctxt "name"
-msgid "Simulation View"
-msgstr "Vista de simulación"
-
-#: MachineSettingsAction/plugin.json
-msgctxt "description"
-msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
-msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
-
-#: MachineSettingsAction/plugin.json
-msgctxt "name"
-msgid "Machine Settings Action"
-msgstr "Acción Ajustes de la máquina"
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "description"
-msgid "Provides capabilities to read and write XML-based material profiles."
-msgstr "Permite leer y escribir perfiles de material basados en XML."
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "name"
-msgid "Material Profiles"
-msgstr "Perfiles de material"
-
-#: SolidView/plugin.json
-msgctxt "description"
-msgid "Provides a normal solid mesh view."
-msgstr "Proporciona una vista de malla sólida normal."
-
-#: SolidView/plugin.json
-msgctxt "name"
-msgid "Solid View"
-msgstr "Vista de sólidos"
+msgid "CuraEngine Backend"
+msgstr "Backend de CuraEngine"
#: CuraProfileReader/plugin.json
msgctxt "description"
@@ -5845,15 +5563,85 @@ msgctxt "name"
msgid "Cura Profile Reader"
msgstr "Lector de perfiles de Cura"
-#: UFPWriter/plugin.json
+#: CuraProfileWriter/plugin.json
msgctxt "description"
-msgid "Provides support for writing Ultimaker Format Packages."
-msgstr "Permite la escritura de paquetes de formato Ultimaker."
+msgid "Provides support for exporting Cura profiles."
+msgstr "Proporciona asistencia para exportar perfiles de Cura."
-#: UFPWriter/plugin.json
+#: CuraProfileWriter/plugin.json
msgctxt "name"
-msgid "UFP Writer"
-msgstr "Escritor de UFP"
+msgid "Cura Profile Writer"
+msgstr "Escritor de perfiles de Cura"
+
+#: DigitalLibrary/plugin.json
+msgctxt "description"
+msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
+msgstr ""
+
+#: DigitalLibrary/plugin.json
+msgctxt "name"
+msgid "Ultimaker Digital Library"
+msgstr ""
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "description"
+msgid "Checks for firmware updates."
+msgstr "Busca actualizaciones de firmware."
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "name"
+msgid "Firmware Update Checker"
+msgstr "Buscador de actualizaciones de firmware"
+
+#: FirmwareUpdater/plugin.json
+msgctxt "description"
+msgid "Provides a machine actions for updating firmware."
+msgstr "Proporciona opciones a la máquina para actualizar el firmware."
+
+#: FirmwareUpdater/plugin.json
+msgctxt "name"
+msgid "Firmware Updater"
+msgstr "Actualizador de firmware"
+
+#: GCodeGzReader/plugin.json
+msgctxt "description"
+msgid "Reads g-code from a compressed archive."
+msgstr "Lee GCode de un archivo comprimido."
+
+#: GCodeGzReader/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Reader"
+msgstr "Lector de GCode comprimido"
+
+#: GCodeGzWriter/plugin.json
+msgctxt "description"
+msgid "Writes g-code to a compressed archive."
+msgstr "Escribe GCode en un archivo comprimido."
+
+#: GCodeGzWriter/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Writer"
+msgstr "Escritor de GCode comprimido"
+
+#: GCodeProfileReader/plugin.json
+msgctxt "description"
+msgid "Provides support for importing profiles from g-code files."
+msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode."
+
+#: GCodeProfileReader/plugin.json
+msgctxt "name"
+msgid "G-code Profile Reader"
+msgstr "Lector de perfiles GCode"
+
+#: GCodeReader/plugin.json
+msgctxt "description"
+msgid "Allows loading and displaying G-code files."
+msgstr "Permite cargar y visualizar archivos GCode."
+
+#: GCodeReader/plugin.json
+msgctxt "name"
+msgid "G-code Reader"
+msgstr "Lector de GCode"
#: GCodeWriter/plugin.json
msgctxt "description"
@@ -5875,15 +5663,445 @@ msgctxt "name"
msgid "Image Reader"
msgstr "Lector de imágenes"
-#: CuraDrive/plugin.json
+#: LegacyProfileReader/plugin.json
msgctxt "description"
-msgid "Backup and restore your configuration."
-msgstr "Realice una copia de seguridad de su configuración y restáurela."
+msgid "Provides support for importing profiles from legacy Cura versions."
+msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura."
-#: CuraDrive/plugin.json
+#: LegacyProfileReader/plugin.json
msgctxt "name"
-msgid "Cura Backups"
-msgstr "Copias de seguridad de Cura"
+msgid "Legacy Cura Profile Reader"
+msgstr "Lector de perfiles antiguos de Cura"
+
+#: MachineSettingsAction/plugin.json
+msgctxt "description"
+msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
+msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
+
+#: MachineSettingsAction/plugin.json
+msgctxt "name"
+msgid "Machine Settings Action"
+msgstr "Acción Ajustes de la máquina"
+
+#: MonitorStage/plugin.json
+msgctxt "description"
+msgid "Provides a monitor stage in Cura."
+msgstr "Proporciona una fase de supervisión en Cura."
+
+#: MonitorStage/plugin.json
+msgctxt "name"
+msgid "Monitor Stage"
+msgstr "Fase de supervisión"
+
+#: PerObjectSettingsTool/plugin.json
+msgctxt "description"
+msgid "Provides the Per Model Settings."
+msgstr "Proporciona los ajustes por modelo."
+
+#: PerObjectSettingsTool/plugin.json
+msgctxt "name"
+msgid "Per Model Settings Tool"
+msgstr "Herramienta de ajustes por modelo"
+
+#: PostProcessingPlugin/plugin.json
+msgctxt "description"
+msgid "Extension that allows for user created scripts for post processing"
+msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios"
+
+#: PostProcessingPlugin/plugin.json
+msgctxt "name"
+msgid "Post Processing"
+msgstr "Posprocesamiento"
+
+#: PrepareStage/plugin.json
+msgctxt "description"
+msgid "Provides a prepare stage in Cura."
+msgstr "Proporciona una fase de preparación en Cura."
+
+#: PrepareStage/plugin.json
+msgctxt "name"
+msgid "Prepare Stage"
+msgstr "Fase de preparación"
+
+#: PreviewStage/plugin.json
+msgctxt "description"
+msgid "Provides a preview stage in Cura."
+msgstr "Proporciona una fase de vista previa en Cura."
+
+#: PreviewStage/plugin.json
+msgctxt "name"
+msgid "Preview Stage"
+msgstr "Fase de vista previa"
+
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "description"
+msgid "Provides removable drive hotplugging and writing support."
+msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
+
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "name"
+msgid "Removable Drive Output Device Plugin"
+msgstr "Complemento de dispositivo de salida de unidad extraíble"
+
+#: SentryLogger/plugin.json
+msgctxt "description"
+msgid "Logs certain events so that they can be used by the crash reporter"
+msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente"
+
+#: SentryLogger/plugin.json
+msgctxt "name"
+msgid "Sentry Logger"
+msgstr "Registro de Sentry"
+
+#: SimulationView/plugin.json
+msgctxt "description"
+msgid "Provides the Simulation view."
+msgstr "Abre la vista de simulación."
+
+#: SimulationView/plugin.json
+msgctxt "name"
+msgid "Simulation View"
+msgstr "Vista de simulación"
+
+#: SliceInfoPlugin/plugin.json
+msgctxt "description"
+msgid "Submits anonymous slice info. Can be disabled through preferences."
+msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias."
+
+#: SliceInfoPlugin/plugin.json
+msgctxt "name"
+msgid "Slice info"
+msgstr "Info de la segmentación"
+
+#: SolidView/plugin.json
+msgctxt "description"
+msgid "Provides a normal solid mesh view."
+msgstr "Proporciona una vista de malla sólida normal."
+
+#: SolidView/plugin.json
+msgctxt "name"
+msgid "Solid View"
+msgstr "Vista de sólidos"
+
+#: SupportEraser/plugin.json
+msgctxt "description"
+msgid "Creates an eraser mesh to block the printing of support in certain places"
+msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares"
+
+#: SupportEraser/plugin.json
+msgctxt "name"
+msgid "Support Eraser"
+msgstr "Borrador de soporte"
+
+#: Toolbox/plugin.json
+msgctxt "description"
+msgid "Find, manage and install new Cura packages."
+msgstr "Buscar, administrar e instalar nuevos paquetes de Cura."
+
+#: Toolbox/plugin.json
+msgctxt "name"
+msgid "Toolbox"
+msgstr "Cuadro de herramientas"
+
+#: TrimeshReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading model files."
+msgstr "Proporciona asistencia para leer archivos 3D."
+
+#: TrimeshReader/plugin.json
+msgctxt "name"
+msgid "Trimesh Reader"
+msgstr "Lector Trimesh"
+
+#: UFPReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading Ultimaker Format Packages."
+msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker."
+
+#: UFPReader/plugin.json
+msgctxt "name"
+msgid "UFP Reader"
+msgstr "Lector de UFP"
+
+#: UFPWriter/plugin.json
+msgctxt "description"
+msgid "Provides support for writing Ultimaker Format Packages."
+msgstr "Permite la escritura de paquetes de formato Ultimaker."
+
+#: UFPWriter/plugin.json
+msgctxt "name"
+msgid "UFP Writer"
+msgstr "Escritor de UFP"
+
+#: UltimakerMachineActions/plugin.json
+msgctxt "description"
+msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
+msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)."
+
+#: UltimakerMachineActions/plugin.json
+msgctxt "name"
+msgid "Ultimaker machine actions"
+msgstr "Acciones de la máquina Ultimaker"
+
+#: UM3NetworkPrinting/plugin.json
+msgctxt "description"
+msgid "Manages network connections to Ultimaker networked printers."
+msgstr "Gestiona las conexiones de red de las impresoras Ultimaker conectadas."
+
+#: UM3NetworkPrinting/plugin.json
+msgctxt "name"
+msgid "Ultimaker Network Connection"
+msgstr "Conexión en red de Ultimaker"
+
+#: USBPrinting/plugin.json
+msgctxt "description"
+msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
+msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware."
+
+#: USBPrinting/plugin.json
+msgctxt "name"
+msgid "USB printing"
+msgstr "Impresión USB"
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
+msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2."
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.1 to 2.2"
+msgstr "Actualización de la versión 2.1 a la 2.2"
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
+msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4."
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.2 to 2.4"
+msgstr "Actualización de la versión 2.2 a la 2.4"
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
+msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6."
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.5 to 2.6"
+msgstr "Actualización de la versión 2.5 a la 2.6"
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
+msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7."
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.6 to 2.7"
+msgstr "Actualización de la versión 2.6 a la 2.7"
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
+msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0."
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.7 to 3.0"
+msgstr "Actualización de la versión 2.7 a la 3.0"
+
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
+msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1."
+
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.0 to 3.1"
+msgstr "Actualización de la versión 3.0 a la 3.1"
+
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
+msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3."
+
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.2 to 3.3"
+msgstr "Actualización de la versión 3.2 a la 3.3"
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
+msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4."
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.3 to 3.4"
+msgstr "Actualización de la versión 3.3 a la 3.4"
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
+msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5."
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.4 to 3.5"
+msgstr "Actualización de la versión 3.4 a la 3.5"
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
+msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0."
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.5 to 4.0"
+msgstr "Actualización de la versión 3.5 a la 4.0"
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
+msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1."
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.0 to 4.1"
+msgstr "Actualización de la versión 4.0 a la 4.1"
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
+msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2."
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.1 to 4.2"
+msgstr "Actualización de la versión 4.1 a la 4.2"
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
+msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3."
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.2 to 4.3"
+msgstr "Actualización de la versión 4.2 a la 4.3"
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
+msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4."
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.3 to 4.4"
+msgstr "Actualización de la versión 4.3 a la 4.4"
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
+msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5."
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.4 to 4.5"
+msgstr "Actualización de la versión 4.4 a la 4.5"
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
+msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6."
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.5 to 4.6"
+msgstr "Actualización de la versión 4.5 a la 4.6"
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
+msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2."
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.0 to 4.6.2"
+msgstr "Actualización de la versión 4.6.0 a la 4.6.2"
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
+msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7."
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.2 to 4.7"
+msgstr "Actualización de la versión 4.6.2 a la 4.7"
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
+msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8."
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.7 to 4.8"
+msgstr "Actualización de la versión 4.7 a la 4.8"
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.8 to 4.9"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.9 to 4.10"
+msgstr ""
+
+#: X3DReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading X3D files."
+msgstr "Proporciona asistencia para leer archivos X3D."
+
+#: X3DReader/plugin.json
+msgctxt "name"
+msgid "X3D Reader"
+msgstr "Lector de X3D"
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "description"
+msgid "Provides capabilities to read and write XML-based material profiles."
+msgstr "Permite leer y escribir perfiles de material basados en XML."
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "name"
+msgid "Material Profiles"
+msgstr "Perfiles de material"
+
+#: XRayView/plugin.json
+msgctxt "description"
+msgid "Provides the X-Ray view."
+msgstr "Proporciona la vista de rayos X."
+
+#: XRayView/plugin.json
+msgctxt "name"
+msgid "X-Ray View"
+msgstr "Vista de rayos X"
#~ msgctxt "@info:status"
#~ msgid "Global stack is missing."
diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po
index ada6f688e6..c9d4b0a656 100644
--- a/resources/i18n/es_ES/fdmextruder.def.json.po
+++ b/resources/i18n/es_ES/fdmextruder.def.json.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
"Last-Translator: Bothof \n"
"Language-Team: Spanish\n"
diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po
index ece07a04e6..a12430cf6c 100644
--- a/resources/i18n/es_ES/fdmprinter.def.json.po
+++ b/resources/i18n/es_ES/fdmprinter.def.json.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: 2021-04-16 15:15+0200\n"
"Last-Translator: Lionbridge \n"
"Language-Team: Spanish , Spanish \n"
@@ -3200,8 +3200,8 @@ msgstr "Distancia de peinada máxima sin retracción"
#: fdmprinter.def.json
msgctxt "retraction_combing_max_distance description"
-msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
-msgstr "Si no es cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción."
+msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
+msgstr ""
#: fdmprinter.def.json
msgctxt "travel_retract_before_outer_wall label"
@@ -6401,6 +6401,10 @@ msgctxt "mesh_rotation_matrix description"
msgid "Transformation matrix to be applied to the model when loading it from file."
msgstr "Matriz de transformación que se aplicará al modelo cuando se cargue desde el archivo."
+#~ msgctxt "retraction_combing_max_distance description"
+#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
+#~ msgstr "Si no es cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción."
+
#~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
#~ msgid "Apply the extruder offset to the coordinate system."
#~ msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas."
diff --git a/resources/i18n/fdmextruder.def.json.pot b/resources/i18n/fdmextruder.def.json.pot
index 7d41511e0b..cdbf81ab6b 100644
--- a/resources/i18n/fdmextruder.def.json.pot
+++ b/resources/i18n/fdmextruder.def.json.pot
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Uranium json setting files\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE\n"
diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot
index e87da5b620..085e7e837f 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: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE\n"
@@ -3656,8 +3656,9 @@ msgstr ""
#: fdmprinter.def.json
msgctxt "retraction_combing_max_distance description"
msgid ""
-"When non-zero, combing travel moves that are longer than this distance will "
-"use retraction."
+"When greater than zero, combing travel moves that are longer than this "
+"distance will use retraction. If set to zero, there is no maximum and "
+"combing moves will not use retraction."
msgstr ""
#: fdmprinter.def.json
diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po
index c4dcbb7a62..d8aaa50cbf 100644
--- a/resources/i18n/fi_FI/cura.po
+++ b/resources/i18n/fi_FI/cura.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:10+0200\n"
+"POT-Creation-Date: 2021-06-10 17:35+0200\n"
"PO-Revision-Date: 2017-09-27 12:27+0200\n"
"Last-Translator: Bothof \n"
"Language-Team: Finnish\n"
@@ -15,188 +15,180 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
-msgctxt "@info:progress"
-msgid "Loading machines..."
-msgstr "Ladataan laitteita..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+msgctxt "@label"
+msgid "Unknown"
+msgstr "Tuntematon"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
-msgctxt "@info:progress"
-msgid "Setting up preferences..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
+msgctxt "@label"
+msgid "The printer(s) below cannot be connected because they are part of a group"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
-msgctxt "@info:progress"
-msgid "Initializing Active Machine..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
+msgctxt "@label"
+msgid "Available networked printers"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
-msgctxt "@info:progress"
-msgid "Initializing machine manager..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211
+msgctxt "@menuitem"
+msgid "Not overridden"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
-msgctxt "@info:progress"
-msgid "Initializing build volume..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
-msgctxt "@info:progress"
-msgid "Setting up scene..."
-msgstr "Asetetaan näkymää..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
-msgctxt "@info:progress"
-msgid "Loading interface..."
-msgstr "Ladataan käyttöliittymää..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
-msgctxt "@info:progress"
-msgid "Initializing engine..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
-#, 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"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
-msgstr "Vain yksi G-code-tiedosto voidaan ladata kerralla. Tiedoston {0} tuonti ohitettiin."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
-msgctxt "@info:title"
-msgid "Warning"
-msgstr "Varoitus"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
-msgstr "Muita tiedostoja ei voida ladata, kun G-code latautuu. Tiedoston {0} tuonti ohitettiin."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
-msgctxt "@info:title"
-msgid "Error"
-msgstr "Virhe"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
#, python-brace-format
msgctxt "@label {0} is the name of a printer that's about to be deleted."
msgid "Are you sure you wish to remove {0}? This cannot be undone!"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
-msgctxt "@label"
-msgid "Custom Material"
-msgstr "Mukautettu materiaali"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
-msgctxt "@label"
-msgid "Custom"
-msgstr "Mukautettu"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
msgctxt "@label"
msgid "Default"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
msgctxt "@label"
-msgid "Unknown"
-msgstr "Tuntematon"
+msgid "Visual"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
+msgctxt "@text"
+msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
+msgctxt "@label"
+msgid "Engineering"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
+msgctxt "@text"
+msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
+msgctxt "@label"
+msgid "Draft"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
+msgctxt "@text"
+msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234
+msgctxt "@label"
+msgid "Custom Material"
+msgstr "Mukautettu materiaali"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
+msgctxt "@label"
+msgid "Custom"
+msgstr "Mukautettu"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
msgctxt "@label"
msgid "Custom profiles"
msgstr "Mukautetut profiilit"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
#, python-brace-format
msgctxt "@item:inlistbox"
msgid "All Supported Types ({0})"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
msgctxt "@item:inlistbox"
msgid "All Files (*)"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
-msgctxt "@label"
-msgid "Visual"
+#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181
+msgctxt "@info:title"
+msgid "Login failed"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
-msgctxt "@text"
-msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
+msgctxt "@info:status"
+msgid "Finding new location for objects"
+msgstr "Uusien paikkojen etsiminen kappaleille"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Finding Location"
+msgstr "Etsitään paikkaa"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76
+msgctxt "@info:status"
+msgid "Unable to find a location within the build volume for all objects"
+msgstr "Kaikille kappaleille ei löydy paikkaa tulostustilavuudessa."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+msgctxt "@info:title"
+msgid "Can't Find Location"
+msgstr "Paikkaa ei löydy"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116
+msgctxt "@info:backup_failed"
+msgid "Could not create archive from user data directory: {}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
-msgctxt "@label"
-msgid "Engineering"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
+msgctxt "@info:title"
+msgid "Backup"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
-msgctxt "@text"
-msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup without having proper data or meta data."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
-msgctxt "@label"
-msgid "Draft"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup that is higher than the current version."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
-msgctxt "@text"
-msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157
+msgctxt "@info:backup_failed"
+msgid "The following error occurred while trying to restore a Cura backup:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
-msgctxt "@label"
-msgid "The printer(s) below cannot be connected because they are part of a group"
-msgstr ""
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
+msgctxt "@info:status"
+msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
+msgstr "Tulostustilavuuden korkeutta on vähennetty tulostusjärjestysasetuksen vuoksi, jotta koroke ei osuisi tulostettuihin malleihin."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
-msgctxt "@label"
-msgid "Available networked printers"
-msgstr ""
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100
+msgctxt "@info:title"
+msgid "Build Volume"
+msgstr "Tulostustilavuus"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
-msgctxt "@menuitem"
-msgid "Not overridden"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
msgctxt "@title:window"
msgid "Cura can't start"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
msgctxt "@label crash message"
msgid ""
"Oops, Ultimaker Cura has encountered something that doesn't seem right.
\n"
@@ -206,32 +198,32 @@ msgid ""
" "
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
msgctxt "@action:button"
msgid "Send crash report to Ultimaker"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
msgctxt "@action:button"
msgid "Show detailed crash report"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
msgctxt "@action:button"
msgid "Show configuration folder"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
msgctxt "@action:button"
msgid "Backup and Reset Configuration"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
msgctxt "@title:window"
msgid "Crash Report"
msgstr "Kaatumisraportti"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
msgctxt "@label crash message"
msgid ""
"A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem
\n"
@@ -239,697 +231,672 @@ msgid ""
" "
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
msgctxt "@title:groupbox"
msgid "System information"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
msgctxt "@label unknown version of Cura"
msgid "Unknown"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
msgctxt "@label Cura version number"
msgid "Cura version"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
msgctxt "@label"
msgid "Cura language"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
msgctxt "@label"
msgid "OS language"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
msgctxt "@label Type of platform"
msgid "Platform"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
msgctxt "@label"
msgid "Qt version"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
msgctxt "@label"
msgid "PyQt version"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
msgctxt "@label OpenGL version"
msgid "OpenGL"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
msgctxt "@label"
msgid "Not yet initialized
"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
#, python-brace-format
msgctxt "@label OpenGL version"
msgid "OpenGL Version: {version}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
#, python-brace-format
msgctxt "@label OpenGL vendor"
msgid "OpenGL Vendor: {vendor}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
#, python-brace-format
msgctxt "@label OpenGL renderer"
msgid "OpenGL Renderer: {renderer}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
msgctxt "@title:groupbox"
msgid "Error traceback"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
msgctxt "@title:groupbox"
msgid "Logs"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
msgctxt "@action:button"
msgid "Send report"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
-msgctxt "@info:title"
-msgid "Login failed"
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527
+msgctxt "@info:progress"
+msgid "Loading machines..."
+msgstr "Ladataan laitteita..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534
+msgctxt "@info:progress"
+msgid "Setting up preferences..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672
+msgctxt "@info:progress"
+msgid "Initializing Active Machine..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803
+msgctxt "@info:progress"
+msgid "Initializing machine manager..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817
+msgctxt "@info:progress"
+msgid "Initializing build volume..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888
+msgctxt "@info:progress"
+msgid "Setting up scene..."
+msgstr "Asetetaan näkymää..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924
+msgctxt "@info:progress"
+msgid "Loading interface..."
+msgstr "Ladataan käyttöliittymää..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929
+msgctxt "@info:progress"
+msgid "Initializing engine..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246
+#, python-format
+msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
+msgid "%(width).1f x %(depth).1f x %(height).1f mm"
+msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
+msgstr "Vain yksi G-code-tiedosto voidaan ladata kerralla. Tiedoston {0} tuonti ohitettiin."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+msgctxt "@info:title"
+msgid "Warning"
+msgstr "Varoitus"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
+msgstr "Muita tiedostoja ei voida ladata, kun G-code latautuu. Tiedoston {0} tuonti ohitettiin."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
+msgctxt "@info:title"
+msgid "Error"
+msgstr "Virhe"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26
+msgctxt "@info:status"
+msgid "Multiplying and placing objects"
+msgstr "Kappaleiden kertominen ja sijoittelu"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Placing Objects"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77
+msgctxt "@info:title"
+msgid "Placing Object"
+msgstr "Sijoitetaan kappaletta"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92
msgctxt "@message"
msgid "Could not read response."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
-msgctxt "@info"
-msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
-msgctxt "@info"
-msgid "Unable to reach the Ultimaker account server."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
msgctxt "@message"
msgid "The provided state is not correct."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
msgctxt "@message"
msgid "Please give the required permissions when authorizing this application."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
msgctxt "@message"
msgid "Something unexpected happened when trying to log in, please try again."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189
+msgctxt "@info"
+msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+msgctxt "@info"
+msgid "Unable to reach the Ultimaker account server."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132
msgctxt "@title:window"
msgid "File Already Exists"
msgstr "Tiedosto on jo olemassa"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
#, python-brace-format
msgctxt "@label Don't translate the XML tag !"
msgid "The file {0} already exists. Are you sure you want to overwrite it?"
msgstr "Tiedosto {0} on jo olemassa. Haluatko varmasti kirjoittaa sen päälle?"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460
msgctxt "@info:status"
msgid "Invalid file URL:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
-msgctxt "@label"
-msgid "Nozzle"
-msgstr "Suutin"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
-msgctxt "@info:message Followed by a list of settings."
-msgid "Settings have been changed to match the current availability of extruders:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
-msgctxt "@info:title"
-msgid "Settings updated"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
-msgctxt "@info:title"
-msgid "Extruder(s) Disabled"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags or !"
msgid "Failed to export profile to {0}: {1}"
msgstr "Profiilin vienti epäonnistui tiedostoon {0}: {1}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Failed to export profile to {0}: Writer plugin reported failure."
msgstr "Profiilin vienti epäonnistui tiedostoon {0}: Kirjoitin-lisäosa ilmoitti virheestä."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Exported profile to {0}"
msgstr "Profiili viety tiedostoon {0}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157
msgctxt "@info:title"
msgid "Export succeeded"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "Failed to import profile from {0}: {1}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192
#, 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 ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "No custom profile to import in file {0}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "Failed to import profile from {0}:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "This profile {0} contains incorrect data, could not import it."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Failed to import profile from {0}:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342
#, python-brace-format
msgctxt "@info:status"
msgid "Successfully imported profile {0}."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349
#, python-brace-format
msgctxt "@info:status"
msgid "File {0} does not contain any valid profile."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352
#, python-brace-format
msgctxt "@info:status"
msgid "Profile {0} has an unknown file type or is corrupted."
msgstr "Profiililla {0} on tuntematon tiedostotyyppi tai se on vioittunut."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426
msgctxt "@label"
msgid "Custom profile"
msgstr "Mukautettu profiili"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442
msgctxt "@info:status"
msgid "Profile is missing a quality type."
msgstr "Profiilista puuttuu laatutyyppi."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446
msgctxt "@info:status"
msgid "There is no active printer yet."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452
msgctxt "@info:status"
msgid "Unable to add the profile."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466
#, python-brace-format
msgctxt "@info:status"
msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471
#, 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 ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
msgctxt "@info:not supported profile"
msgid "Not supported"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
msgctxt "@info:No intent profile selected"
msgid "Default"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
-msgctxt "@info:status"
-msgid "Finding new location for objects"
-msgstr "Uusien paikkojen etsiminen kappaleille"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
+msgctxt "@label"
+msgid "Nozzle"
+msgstr "Suutin"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856
+msgctxt "@info:message Followed by a list of settings."
+msgid "Settings have been changed to match the current availability of extruders:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858
msgctxt "@info:title"
-msgid "Finding Location"
-msgstr "Etsitään paikkaa"
+msgid "Settings updated"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
-msgctxt "@info:status"
-msgid "Unable to find a location within the build volume for all objects"
-msgstr "Kaikille kappaleille ei löydy paikkaa tulostustilavuudessa."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478
msgctxt "@info:title"
-msgid "Can't Find Location"
-msgstr "Paikkaa ei löydy"
+msgid "Extruder(s) Disabled"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
+msgctxt "@action:button"
+msgid "Add"
+msgstr "Lisää"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272
+msgctxt "@action:button"
+msgid "Finish"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+msgctxt "@action:button"
+msgid "Cancel"
+msgstr "Peruuta"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
#, python-brace-format
msgctxt "@label"
msgid "Group #{group_nr}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
-msgctxt "@action:button"
-msgid "Skip"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
-msgctxt "@action:button"
-msgid "Close"
-msgstr "Sulje"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
-msgctxt "@action:button"
-msgid "Next"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
-msgctxt "@action:button"
-msgid "Finish"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82
msgctxt "@tooltip"
msgid "Outer Wall"
msgstr "Ulkoseinämä"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
msgctxt "@tooltip"
msgid "Inner Walls"
msgstr "Sisäseinämät"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
msgctxt "@tooltip"
msgid "Skin"
msgstr "Pintakalvo"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
msgctxt "@tooltip"
msgid "Infill"
msgstr "Täyttö"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
msgctxt "@tooltip"
msgid "Support Infill"
msgstr "Tuen täyttö"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
msgctxt "@tooltip"
msgid "Support Interface"
msgstr "Tukiliittymä"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
msgctxt "@tooltip"
msgid "Support"
msgstr "Tuki"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
msgctxt "@tooltip"
msgid "Skirt"
msgstr "Helma"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
msgctxt "@tooltip"
msgid "Prime Tower"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
msgctxt "@tooltip"
msgid "Travel"
msgstr "Siirtoliike"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
msgctxt "@tooltip"
msgid "Retractions"
msgstr "Takaisinvedot"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
msgctxt "@tooltip"
msgid "Other"
msgstr "Muu"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259
msgctxt "@action:button"
-msgid "Add"
-msgstr "Lisää"
+msgid "Next"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55
msgctxt "@action:button"
-msgid "Cancel"
-msgstr "Peruuta"
+msgid "Skip"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
-msgctxt "@info:status"
-msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
-msgstr "Tulostustilavuuden korkeutta on vähennetty tulostusjärjestysasetuksen vuoksi, jotta koroke ei osuisi tulostettuihin malleihin."
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
+msgctxt "@action:button"
+msgid "Close"
+msgstr "Sulje"
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
msgctxt "@info:title"
-msgid "Build Volume"
-msgstr "Tulostustilavuus"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
-msgctxt "@info:backup_failed"
-msgid "Could not create archive from user data directory: {}"
+msgid "3D Model Assistant"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
-msgctxt "@info:title"
-msgid "Backup"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup without having proper data or meta data."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup that is higher than the current version."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
-msgctxt "@info:status"
-msgid "Multiplying and placing objects"
-msgstr "Kappaleiden kertominen ja sijoittelu"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
-msgctxt "@info:title"
-msgid "Placing Objects"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
-msgctxt "@info:title"
-msgid "Placing Object"
-msgstr "Sijoitetaan kappaletta"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Save to Removable Drive"
-msgstr "Tallenna siirrettävälle asemalle"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96
#, python-brace-format
-msgctxt "@item:inlistbox"
-msgid "Save to Removable Drive {0}"
-msgstr "Tallenna siirrettävälle asemalle {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
msgctxt "@info:status"
-msgid "There are no file formats available to write with!"
+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 ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-#, python-brace-format
-msgctxt "@info:progress Don't translate the XML tags !"
-msgid "Saving to Removable Drive {0}"
-msgstr "Tallennetaan siirrettävälle asemalle {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-msgctxt "@info:title"
-msgid "Saving"
-msgstr "Tallennetaan"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags or !"
-msgid "Could not save to {0}: {1}"
-msgstr "Ei voitu tallentaa tiedostoon {0}: {1}"
+msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead."
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
-#, python-brace-format
-msgctxt "@info:status Don't translate the tag {device}!"
-msgid "Could not find a file name when trying to write to {device}."
-msgstr "Ei löydetty tiedostonimeä yritettäessä kirjoittaa laitteeseen {device}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Could not save to removable drive {0}: {1}"
-msgstr "Ei voitu tallentaa siirrettävälle asemalle {0}: {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Saved to Removable Drive {0} as {1}"
-msgstr "Tallennettu siirrettävälle asemalle {0} nimellä {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543
msgctxt "@info:title"
-msgid "File Saved"
-msgstr "Tiedosto tallennettu"
+msgid "Open Project File"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
-msgctxt "@action:button"
-msgid "Eject"
-msgstr "Poista"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639
#, python-brace-format
-msgctxt "@action"
-msgid "Eject removable device {0}"
-msgstr "Poista siirrettävä asema {0}"
+msgctxt "@info:error Don't translate the XML tags or !"
+msgid "Project file {0} is suddenly inaccessible: {1}."
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Ejected {0}. You can now safely remove the drive."
-msgstr "Poistettu {0}. Voit nyt poistaa aseman turvallisesti."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647
msgctxt "@info:title"
-msgid "Safely Remove Hardware"
-msgstr "Poista laite turvallisesti"
+msgid "Can't Open Project File"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646
#, python-brace-format
-msgctxt "@info:status"
-msgid "Failed to eject {0}. Another program may be using the drive."
-msgstr "Kohteen {0} poistaminen epäonnistui. Asema saattaa olla toisen ohjelman käytössä."
+msgctxt "@info:error Don't translate the XML tags or !"
+msgid "Project file {0} is corrupt: {1}."
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
-msgctxt "@item:intext"
-msgid "Removable Drive"
-msgstr "Siirrettävä asema"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698
+#, python-brace-format
+msgctxt "@info:error Don't translate the XML tag !"
+msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura."
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203
+msgctxt "@title:tab"
+msgid "Recommended"
+msgstr "Suositeltu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205
+msgctxt "@title:tab"
+msgid "Custom"
+msgstr "Mukautettu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
+msgctxt "@item:inlistbox"
+msgid "3MF File"
+msgstr "3MF-tiedosto"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
+msgctxt "@error:zip"
+msgid "3MF Writer plug-in is corrupt."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
+msgctxt "@error:zip"
+msgid "No permission to write the workspace here."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
+msgctxt "@error:zip"
+msgid "The operating system does not allow saving a project file to this location or with this file name."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
+msgctxt "@error:zip"
+msgid "Error writing 3mf file."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "3MF file"
+msgstr "3MF-tiedosto"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
+msgctxt "@item:inlistbox"
+msgid "Cura Project 3MF file"
+msgstr "Cura-projektin 3MF-tiedosto"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
msgctxt "@item:inlistbox"
msgid "AMF File"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
-msgctxt "@item:inlistbox"
-msgid "G-code File"
-msgstr "GCode-tiedosto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
-msgctxt "@action"
-msgid "Update Firmware"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
-msgctxt "@item:inlistbox"
-msgid "X3D File"
-msgstr "X3D-tiedosto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
-msgctxt "@button"
-msgid "Decline"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
-msgctxt "@button"
-msgid "Agree"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
-msgctxt "@title:window"
-msgid "Plugin License Agreement"
-msgstr "Lisäosan lisenssisopimus"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
-msgctxt "@button"
-msgid "Decline and remove from account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
-msgctxt "@info:generic"
-msgid "{} plugins failed to download"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
-msgctxt "@info:generic"
-msgid "Syncing..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
msgctxt "@info:title"
-msgid "Changes detected from your Ultimaker account"
+msgid "Backups"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
-msgctxt "@info:generic"
-msgid "You need to quit and restart {} before changes have effect."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
+msgctxt "@info:backup_status"
+msgid "There was an error while uploading your backup."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
-msgctxt "@info:generic"
-msgid "Do you want to sync material and software packages with your account?"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
+msgctxt "@info:backup_status"
+msgid "Creating your backup..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
-msgctxt "@action:button"
-msgid "Sync"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
+msgctxt "@info:backup_status"
+msgid "There was an error while creating your backup."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
-msgctxt "@label"
-msgid "Per Model Settings"
-msgstr "Mallikohtaiset asetukset"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
+msgctxt "@info:backup_status"
+msgid "Uploading your backup..."
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
-msgctxt "@info:tooltip"
-msgid "Configure Per Model Settings"
-msgstr "Määritä mallikohtaiset asetukset"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
+msgctxt "@info:backup_status"
+msgid "Your backup has finished uploading."
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
+msgctxt "@error:file_size"
+msgid "The backup exceeds the maximum file size."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
+msgctxt "@info:backup_status"
+msgid "There was an error trying to restore your backup."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
msgctxt "@item:inmenu"
-msgid "Post Processing"
+msgid "Manage backups"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
-msgctxt "@item:inmenu"
-msgid "Modify G-Code"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
msgctxt "@info:status"
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
msgstr "Viipalointi ei onnistu nykyisellä materiaalilla, sillä se ei sovellu käytettäväksi valitun laitteen tai kokoonpanon kanssa."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
msgctxt "@info:title"
msgid "Unable to slice"
msgstr "Viipalointi ei onnistu"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
msgstr "Viipalointi ei onnistu nykyisten asetuksien ollessa voimassa. Seuraavissa asetuksissa on virheitä: {0}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
msgctxt "@info:status"
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
msgstr "Viipalointi ei onnistu, koska esitäyttötorni tai esitäytön sijainti tai sijainnit eivät kelpaa."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
#, python-format
msgctxt "@info:status"
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
msgctxt "@info:status"
msgid ""
"Please review settings and check if your models:\n"
@@ -938,77 +905,465 @@ msgid ""
"- Are not all set as modifier meshes"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:status"
msgid "Processing Layers"
msgstr "Käsitellään kerroksia"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:title"
msgid "Information"
msgstr "Tiedot"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
-msgctxt "@item:inmenu"
-msgid "USB printing"
-msgstr "USB-tulostus"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Print via USB"
-msgstr "Tulosta USB:n kautta"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
-msgctxt "@info:tooltip"
-msgid "Print via USB"
-msgstr "Tulosta USB:n kautta"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
-msgctxt "@info:status"
-msgid "Connected via USB"
-msgstr "Yhdistetty USB:n kautta"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
-msgctxt "@label"
-msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "Print in Progress"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
msgctxt "@item:inlistbox"
msgid "Cura Profile"
msgstr "Cura-profiili"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
-msgctxt "@action"
-msgid "Connect via Network"
-msgstr "Yhdistä verkon kautta"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
+msgctxt "@info"
+msgid "Could not access update information."
+msgstr "Päivitystietoja ei löytynyt."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
+#, python-brace-format
+msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
+msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
+#, python-format
+msgctxt "@info:title The %s gets replaced with the printer name."
+msgid "New %s firmware available"
+msgstr "Uusi tulostimen %s laiteohjelmisto saatavilla"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
+msgctxt "@action:button"
+msgid "How to update"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
+msgctxt "@action"
+msgid "Update Firmware"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
+msgctxt "@item:inlistbox"
+msgid "Compressed G-code File"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
+msgctxt "@error:not supported"
+msgid "GCodeGzWriter does not support text mode."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
+msgctxt "@item:inlistbox"
+msgid "G-code File"
+msgstr "GCode-tiedosto"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347
+msgctxt "@info:status"
+msgid "Parsing G-code"
+msgstr "G-coden jäsennys"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503
+msgctxt "@info:title"
+msgid "G-code Details"
+msgstr "G-coden tiedot"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501
+msgctxt "@info:generic"
+msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
+msgstr "Varmista, että G-code on tulostimelle ja sen tulostusasetuksille soveltuva, ennen kuin lähetät tiedoston siihen. G-coden esitys ei välttämättä ole tarkka."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "G File"
+msgstr "G File -tiedosto"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74
+msgctxt "@error:not supported"
+msgid "GCodeWriter does not support non-text mode."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96
+msgctxt "@warning:status"
+msgid "Please prepare G-code before exporting."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "JPG Image"
+msgstr "JPG-kuva"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "JPEG Image"
+msgstr "JPEG-kuva"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
+msgctxt "@item:inlistbox"
+msgid "PNG Image"
+msgstr "PNG-kuva"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "BMP Image"
+msgstr "BMP-kuva"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
+msgctxt "@item:inlistbox"
+msgid "GIF Image"
+msgstr "GIF-kuva"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "Cura 15.04 profiles"
+msgstr "Cura 15.04 -profiilit"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
+msgctxt "@action"
+msgid "Machine Settings"
+msgstr "Laitteen asetukset"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
+msgctxt "@item:inmenu"
+msgid "Monitor"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
+msgctxt "@label"
+msgid "Per Model Settings"
+msgstr "Mallikohtaiset asetukset"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
+msgctxt "@info:tooltip"
+msgid "Configure Per Model Settings"
+msgstr "Määritä mallikohtaiset asetukset"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+msgctxt "@item:inmenu"
+msgid "Post Processing"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
+msgctxt "@item:inmenu"
+msgid "Modify G-Code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Prepare"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
+msgctxt "@item:inmenu"
+msgid "Preview"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Save to Removable Drive"
+msgstr "Tallenna siirrettävälle asemalle"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
+#, python-brace-format
+msgctxt "@item:inlistbox"
+msgid "Save to Removable Drive {0}"
+msgstr "Tallenna siirrettävälle asemalle {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
+msgctxt "@info:status"
+msgid "There are no file formats available to write with!"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+#, python-brace-format
+msgctxt "@info:progress Don't translate the XML tags !"
+msgid "Saving to Removable Drive {0}"
+msgstr "Tallennetaan siirrettävälle asemalle {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+msgctxt "@info:title"
+msgid "Saving"
+msgstr "Tallennetaan"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#, python-brace-format
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid "Could not save to {0}: {1}"
+msgstr "Ei voitu tallentaa tiedostoon {0}: {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
+#, python-brace-format
+msgctxt "@info:status Don't translate the tag {device}!"
+msgid "Could not find a file name when trying to write to {device}."
+msgstr "Ei löydetty tiedostonimeä yritettäessä kirjoittaa laitteeseen {device}."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Could not save to removable drive {0}: {1}"
+msgstr "Ei voitu tallentaa siirrettävälle asemalle {0}: {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Saved to Removable Drive {0} as {1}"
+msgstr "Tallennettu siirrettävälle asemalle {0} nimellä {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+msgctxt "@info:title"
+msgid "File Saved"
+msgstr "Tiedosto tallennettu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+msgctxt "@action:button"
+msgid "Eject"
+msgstr "Poista"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#, python-brace-format
+msgctxt "@action"
+msgid "Eject removable device {0}"
+msgstr "Poista siirrettävä asema {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Ejected {0}. You can now safely remove the drive."
+msgstr "Poistettu {0}. Voit nyt poistaa aseman turvallisesti."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+msgctxt "@info:title"
+msgid "Safely Remove Hardware"
+msgstr "Poista laite turvallisesti"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Failed to eject {0}. Another program may be using the drive."
+msgstr "Kohteen {0} poistaminen epäonnistui. Asema saattaa olla toisen ohjelman käytössä."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
+msgctxt "@item:intext"
+msgid "Removable Drive"
+msgstr "Siirrettävä asema"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128
+msgctxt "@info:status"
+msgid "Cura does not accurately display layers when Wire Printing is enabled."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129
+msgctxt "@info:title"
+msgid "Simulation View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:status"
+msgid "Nothing is shown because you need to slice first."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:title"
+msgid "No layers to show"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74
+msgctxt "@info:option_text"
+msgid "Do not show this message again"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
+msgctxt "@item:inlistbox"
+msgid "Layer view"
+msgstr "Kerrosnäkymä"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71
+msgctxt "@info:status"
+msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73
+msgctxt "@info:title"
+msgid "Model Errors"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79
+msgctxt "@action:button"
+msgid "Learn more"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Solid view"
+msgstr "Kiinteä näkymä"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
+msgctxt "@label"
+msgid "Support Blocker"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
+msgctxt "@info:tooltip"
+msgid "Create a volume in which supports are not printed."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
+msgctxt "@info:generic"
+msgid "Do you want to sync material and software packages with your account?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
+msgctxt "@info:title"
+msgid "Changes detected from your Ultimaker account"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
+msgctxt "@action:button"
+msgid "Sync"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
+msgctxt "@info:generic"
+msgid "Syncing..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
+msgctxt "@button"
+msgid "Decline"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
+msgctxt "@button"
+msgid "Agree"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
+msgctxt "@title:window"
+msgid "Plugin License Agreement"
+msgstr "Lisäosan lisenssisopimus"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
+msgctxt "@button"
+msgid "Decline and remove from account"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
+msgctxt "@info:generic"
+msgid "You need to quit and restart {} before changes have effect."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
+msgctxt "@info:generic"
+msgid "{} plugins failed to download"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
+msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
+msgid "Open Compressed Triangle Mesh"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
+msgctxt "@item:inlistbox"
+msgid "COLLADA Digital Asset Exchange"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
+msgctxt "@item:inlistbox"
+msgid "glTF Binary"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
+msgctxt "@item:inlistbox"
+msgid "glTF Embedded JSON"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
+msgctxt "@item:inlistbox"
+msgid "Stanford Triangle Format"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
+msgctxt "@item:inlistbox"
+msgid "Compressed COLLADA Digital Asset Exchange"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
+msgctxt "@item:inlistbox"
+msgid "Ultimaker Format Package"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159
+msgctxt "@info:error"
+msgid "Can't write to UFP file:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
+msgctxt "@action"
+msgid "Level build plate"
+msgstr "Tasaa alusta"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+msgctxt "@action"
+msgid "Select upgrades"
+msgstr "Valitse päivitykset"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
+msgctxt "@action:button"
+msgid "Print via cloud"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
+msgctxt "@properties:tooltip"
+msgid "Print via cloud"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
+msgctxt "@info:status"
+msgid "Connected via cloud"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270
+#, python-brace-format
+msgctxt "@error:send"
+msgid "Unknown error code when uploading print job: {0}"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
msgctxt "info:status"
msgid "New printer detected from your Ultimaker account"
msgid_plural "New printers detected from your Ultimaker account"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
#, python-brace-format
msgctxt "info:status Filled in with printer name and printer model."
msgid "Adding printer {name} ({model}) from your account"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
#, python-brace-format
msgctxt "info:{0} gets replaced by a number of printers"
msgid "... and {0} other"
@@ -1016,71 +1371,71 @@ msgid_plural "... and {0} others"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
msgctxt "info:status"
msgid "Printers added from Digital Factory:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
msgctxt "info:status"
msgid "A cloud connection is not available for a printer"
msgid_plural "A cloud connection is not available for some printers"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
msgctxt "info:status"
msgid "This printer is not linked to the Digital Factory:"
msgid_plural "These printers are not linked to the Digital Factory:"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
msgctxt "info:name"
msgid "Ultimaker Digital Factory"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
#, python-brace-format
msgctxt "info:status"
msgid "To establish a connection, please visit the {website_link}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
msgctxt "@action:button"
msgid "Keep printer configurations"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
msgctxt "@action:button"
msgid "Remove printers"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "{printer_name} will be removed until the next account sync."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "Are you sure you want to remove {printer_name} temporarily?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
msgctxt "@title:window"
msgid "Remove printers?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
#, python-brace-format
msgctxt "@label"
msgid ""
@@ -1092,1588 +1447,768 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
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 ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
-msgctxt "@action:button"
-msgid "Print via cloud"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
-msgctxt "@properties:tooltip"
-msgid "Print via cloud"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
-msgctxt "@info:status"
-msgid "Connected via cloud"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
-#, python-brace-format
-msgctxt "@error:send"
-msgid "Unknown error code when uploading print job: {0}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
-msgctxt "@info:status"
-msgid "tomorrow"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
-msgctxt "@info:status"
-msgid "today"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
-msgctxt "@info:status"
-msgid "Sending Print Job"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
-msgctxt "@info:status"
-msgid "Uploading print job to printer."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
-#, python-brace-format
-msgctxt "@info:status"
-msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
-msgctxt "@info:title"
-msgid "Not a group host"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
-msgctxt "@action"
-msgid "Configure group"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
msgctxt "@info:status"
msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
msgctxt "@info:status Ultimaker Cloud should not be translated."
msgid "Connect to Ultimaker Digital Factory"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
msgctxt "@action"
msgid "Get started"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
msgctxt "@info:status"
-msgid "Please wait until the current job has been sent."
+msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
msgctxt "@info:title"
-msgid "Print error"
+msgid "Update your printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
-msgctxt "@info:text"
-msgid "Could not upload the data to the printer."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
-msgctxt "@info:title"
-msgid "Network error"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
#, python-brace-format
msgctxt "@info:status"
msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
msgctxt "@info:title"
msgid "Sending materials to printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
+#, python-brace-format
+msgctxt "@info:status"
+msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
+msgctxt "@info:title"
+msgid "Not a group host"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
+msgctxt "@action"
+msgid "Configure group"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+msgctxt "@info:status"
+msgid "Please wait until the current job has been sent."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+msgctxt "@info:title"
+msgid "Print error"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
+msgctxt "@info:text"
+msgid "Could not upload the data to the printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
+msgctxt "@info:title"
+msgid "Network error"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
+msgctxt "@info:status"
+msgid "Sending Print Job"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
+msgctxt "@info:status"
+msgid "Uploading print job to printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
msgctxt "@info:status"
msgid "Print job queue is full. The printer can't accept a new job."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
msgctxt "@info:title"
msgid "Queue Full"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
msgctxt "@info:status"
msgid "Print job was successfully sent to the printer."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
msgctxt "@info:title"
msgid "Data Sent"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
-msgctxt "@info:status"
-msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
-msgctxt "@info:title"
-msgid "Update your printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
msgctxt "@action:button Preceded by 'Ready to'."
msgid "Print over network"
msgstr "Tulosta verkon kautta"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr "Tulosta verkon kautta"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
msgctxt "@info:status"
msgid "Connected over the network"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
msgctxt "@action"
-msgid "Select upgrades"
-msgstr "Valitse päivitykset"
+msgid "Connect via Network"
+msgstr "Yhdistä verkon kautta"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
-msgctxt "@action"
-msgid "Level build plate"
-msgstr "Tasaa alusta"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
-msgctxt "@title:tab"
-msgid "Recommended"
-msgstr "Suositeltu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
-msgctxt "@title:tab"
-msgid "Custom"
-msgstr "Mukautettu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
-#, 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 ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
-msgctxt "@info:title"
-msgid "Open Project File"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
-#, python-brace-format
-msgctxt "@info:error Don't translate the XML tags or !"
-msgid "Project file {0} is suddenly inaccessible: {1}."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
-msgctxt "@info:title"
-msgid "Can't Open Project File"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
-#, python-brace-format
-msgctxt "@info:error Don't translate the XML tags or !"
-msgid "Project file {0} is corrupt: {1}."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:693
-#, 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 ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:27
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:33
-msgctxt "@item:inlistbox"
-msgid "3MF File"
-msgstr "3MF-tiedosto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/__init__.py:17
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzReader/__init__.py:17
-msgctxt "@item:inlistbox"
-msgid "Compressed G-code File"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
-msgctxt "@error:not supported"
-msgid "GCodeGzWriter does not support text mode."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:31
-msgctxt "@info:title"
-msgid "3D Model Assistant"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:96
-#, python-brace-format
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
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 "tomorrow"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
-msgctxt "@info"
-msgid "Could not access update information."
-msgstr "Päivitystietoja ei löytynyt."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
-#, python-brace-format
-msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
-msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
-#, python-format
-msgctxt "@info:title The %s gets replaced with the printer name."
-msgid "New %s firmware available"
-msgstr "Uusi tulostimen %s laiteohjelmisto saatavilla"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
-msgctxt "@action:button"
-msgid "How to update"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "G File"
-msgstr "G File -tiedosto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:347
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
msgctxt "@info:status"
-msgid "Parsing G-code"
-msgstr "G-coden jäsennys"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:349
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:503
-msgctxt "@info:title"
-msgid "G-code Details"
-msgstr "G-coden tiedot"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:501
-msgctxt "@info:generic"
-msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
-msgstr "Varmista, että G-code on tulostimelle ja sen tulostusasetuksille soveltuva, ennen kuin lähetät tiedoston siihen. G-coden esitys ei välttämättä ole tarkka."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:12
-msgctxt "@label"
-msgid "Support Blocker"
+msgid "today"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:13
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
+msgctxt "@item:inmenu"
+msgid "USB printing"
+msgstr "USB-tulostus"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Print via USB"
+msgstr "Tulosta USB:n kautta"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
msgctxt "@info:tooltip"
-msgid "Create a volume in which supports are not printed."
+msgid "Print via USB"
+msgstr "Tulosta USB:n kautta"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
+msgctxt "@info:status"
+msgid "Connected via USB"
+msgstr "Yhdistetty USB:n kautta"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
+msgctxt "@label"
+msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:15
-msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
-msgid "Open Compressed Triangle Mesh"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid "Print in Progress"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
msgctxt "@item:inlistbox"
-msgid "COLLADA Digital Asset Exchange"
-msgstr ""
+msgid "X3D File"
+msgstr "X3D-tiedosto"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:23
-msgctxt "@item:inlistbox"
-msgid "glTF Binary"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:27
-msgctxt "@item:inlistbox"
-msgid "glTF Embedded JSON"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:36
-msgctxt "@item:inlistbox"
-msgid "Stanford Triangle Format"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:40
-msgctxt "@item:inlistbox"
-msgid "Compressed COLLADA Digital Asset Exchange"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPReader/__init__.py:22
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/__init__.py:28
-msgctxt "@item:inlistbox"
-msgid "Ultimaker Format Package"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/LegacyProfileReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "Cura 15.04 profiles"
-msgstr "Cura 15.04 -profiilit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PrepareStage/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Prepare"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/__init__.py:14
-msgctxt "@item:inmenu"
-msgid "Monitor"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/XRayView/__init__.py:12
+#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
msgctxt "@item:inlistbox"
msgid "X-Ray view"
msgstr "Kerrosnäkymä"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
-msgctxt "@error:zip"
-msgid "Error writing 3mf file."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "3MF file"
-msgstr "3MF-tiedosto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:34
-msgctxt "@item:inlistbox"
-msgid "Cura Project 3MF file"
-msgstr "Cura-projektin 3MF-tiedosto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
-msgctxt "@error:zip"
-msgid "3MF Writer plug-in is corrupt."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
-msgctxt "@error:zip"
-msgid "No permission to write the workspace here."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
-msgctxt "@error:zip"
-msgid "The operating system does not allow saving a project file to this location or with this file name."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PreviewStage/__init__.py:13
-msgctxt "@item:inmenu"
-msgid "Preview"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/__init__.py:15
-msgctxt "@item:inlistbox"
-msgid "Layer view"
-msgstr "Kerrosnäkymä"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:124
-msgctxt "@info:status"
-msgid "Cura does not accurately display layers when Wire Printing is enabled."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:125
-msgctxt "@info:title"
-msgid "Simulation View"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:status"
-msgid "Nothing is shown because you need to slice first."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:title"
-msgid "No layers to show"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:127
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:74
-msgctxt "@info:option_text"
-msgid "Do not show this message again"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
-msgctxt "@action"
-msgid "Machine Settings"
-msgstr "Laitteen asetukset"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Solid view"
-msgstr "Kiinteä näkymä"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:71
-msgctxt "@info:status"
-msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:73
-msgctxt "@info:title"
-msgid "Model Errors"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:79
-msgctxt "@action:button"
-msgid "Learn more"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/UFPWriter.py:134
-msgctxt "@info:error"
-msgid "Can't write to UFP file:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:74
-msgctxt "@error:not supported"
-msgid "GCodeWriter does not support non-text mode."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:80
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:96
-msgctxt "@warning:status"
-msgid "Please prepare G-code before exporting."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "JPG Image"
-msgstr "JPG-kuva"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "JPEG Image"
-msgstr "JPEG-kuva"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:22
-msgctxt "@item:inlistbox"
-msgid "PNG Image"
-msgstr "PNG-kuva"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "BMP Image"
-msgstr "BMP-kuva"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:30
-msgctxt "@item:inlistbox"
-msgid "GIF Image"
-msgstr "GIF-kuva"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DriveApiService.py:86
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
-msgctxt "@info:backup_status"
-msgid "There was an error trying to restore your backup."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
-msgctxt "@info:title"
-msgid "Backups"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
-msgctxt "@info:backup_status"
-msgid "There was an error while uploading your backup."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
-msgctxt "@info:backup_status"
-msgid "Creating your backup..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
-msgctxt "@info:backup_status"
-msgid "There was an error while creating your backup."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
-msgctxt "@info:backup_status"
-msgid "Uploading your backup..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
-msgctxt "@info:backup_status"
-msgid "Your backup has finished uploading."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
-msgctxt "@error:file_size"
-msgid "The backup exceeds the maximum file size."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
-msgctxt "@item:inmenu"
-msgid "Manage backups"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
-msgctxt "@title"
-msgid "Update Firmware"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
-msgctxt "@label"
-msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
-msgstr "Laiteohjelmisto on suoraan 3D-tulostimessa toimiva ohjelma. Laiteohjelmisto ohjaa askelmoottoreita, säätää lämpötilaa ja saa tulostimen toimimaan."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
-msgctxt "@label"
-msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
-msgstr "Uusien tulostimien mukana toimitettava laiteohjelmisto toimii, mutta uusissa versioissa on yleensä enemmän toimintoja ja parannuksia."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
-msgctxt "@action:button"
-msgid "Automatically upgrade Firmware"
-msgstr "Päivitä laiteohjelmisto automaattisesti"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
-msgctxt "@action:button"
-msgid "Upload custom Firmware"
-msgstr "Lataa mukautettu laiteohjelmisto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
-msgctxt "@label"
-msgid "Firmware can not be updated because there is no connection with the printer."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
-msgctxt "@label"
-msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
-msgctxt "@title:window"
-msgid "Select custom firmware"
-msgstr "Valitse mukautettu laiteohjelmisto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
-msgctxt "@title:window"
-msgid "Firmware Update"
-msgstr "Laiteohjelmiston päivitys"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
-msgctxt "@label"
-msgid "Updating firmware."
-msgstr "Päivitetään laiteohjelmistoa."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
-msgctxt "@label"
-msgid "Firmware update completed."
-msgstr "Laiteohjelmiston päivitys suoritettu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
-msgctxt "@label"
-msgid "Firmware update failed due to an unknown error."
-msgstr "Laiteohjelmiston päivitys epäonnistui tuntemattoman virheen takia."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
-msgctxt "@label"
-msgid "Firmware update failed due to an communication error."
-msgstr "Laiteohjelmiston päivitys epäonnistui tietoliikennevirheen takia."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
-msgctxt "@label"
-msgid "Firmware update failed due to an input/output error."
-msgstr "Laiteohjelmiston päivitys epäonnistui tiedoston lukemiseen tai kirjoittamiseen liittyvän virheen takia."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
-msgctxt "@label"
-msgid "Firmware update failed due to missing firmware."
-msgstr "Laiteohjelmiston päivitys epäonnistui puuttuvan laiteohjelmiston takia."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
-msgctxt "@title"
-msgid "Marketplace"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
-msgctxt "@label"
-msgid "You need to accept the license to install the package"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
-msgctxt "@title"
-msgid "Changes from your account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
-msgctxt "@button"
-msgid "Dismiss"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:182
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
-msgctxt "@button"
-msgid "Next"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
-msgctxt "@label"
-msgid "The following packages will be added:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
-msgctxt "@label"
-msgid "The following packages can not be installed because of an incompatible Cura version:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
-msgctxt "@title:window"
-msgid "Confirm uninstall"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
-msgctxt "@text:window"
-msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
-msgctxt "@text:window"
-msgid "Materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
-msgctxt "@text:window"
-msgid "Profiles"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
-msgctxt "@action:button"
-msgid "Confirm"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
-msgctxt "@info"
-msgid "Could not connect to the Cura Package database. Please check your connection."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Contributions"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Plugins"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
-msgctxt "@label"
-msgid "Generic Materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
-msgctxt "@label"
-msgid "Version"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
-msgctxt "@label"
-msgid "Last updated"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
-msgctxt "@label"
-msgid "Brand"
-msgstr "Merkki"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
-msgctxt "@label"
-msgid "Downloads"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
-msgctxt "@title:tab"
-msgid "Installed plugins"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
-msgctxt "@info"
-msgid "No plugin has been installed."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
-msgctxt "@title:tab"
-msgid "Installed materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
-msgctxt "@info"
-msgid "No material has been installed."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
-msgctxt "@title:tab"
-msgid "Bundled plugins"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
-msgctxt "@title:tab"
-msgid "Bundled materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
-msgctxt "@label"
-msgid "Website"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
-msgctxt "@label"
-msgid "Email"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
-msgctxt "@description"
-msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:199
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:53
-msgctxt "@button"
-msgid "Sign in"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
-msgctxt "@info"
-msgid "Fetching packages..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
-msgctxt "@label"
-msgid "Compatibility"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
-msgctxt "@label:table_header"
-msgid "Machine"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
-msgctxt "@label:table_header"
-msgid "Build Plate"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
-msgctxt "@label:table_header"
-msgid "Support"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
-msgctxt "@label:table_header"
-msgid "Quality"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
-msgctxt "@action:label"
-msgid "Technical Data Sheet"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
-msgctxt "@action:label"
-msgid "Safety Data Sheet"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
-msgctxt "@action:label"
-msgid "Printing Guidelines"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
-msgctxt "@action:label"
-msgid "Website"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
-msgctxt "@title:tab"
-msgid "Plugins"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:457
-msgctxt "@title:tab"
-msgid "Materials"
-msgstr "Materiaalit"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
-msgctxt "@title:tab"
-msgid "Installed"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
msgctxt "@info:tooltip"
-msgid "Go to Web Marketplace"
+msgid "Some things could be problematic in this print. Click to see tips for adjustment."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
-msgctxt "@label"
-msgid "Will install upon restarting"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
-msgctxt "@action:button"
-msgid "Update"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
-msgctxt "@action:button"
-msgid "Updating"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
-msgctxt "@action:button"
-msgid "Updated"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to update"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Downgrade"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Uninstall"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
-msgctxt "@action:button"
-msgid "Installed"
-msgstr "Asennettu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to install or update"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Buy material spools"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
-msgctxt "@label"
-msgid "Premium"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
-msgctxt "@label"
-msgid "Search materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
-msgctxt "@info"
-msgid "You will need to restart Cura before changes in packages have effect."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
-msgctxt "@info:button, %1 is the application name"
-msgid "Quit %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
-msgctxt "@action:button"
-msgid "Back"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
-msgctxt "@action:button"
-msgid "Install"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
-msgctxt "@label"
-msgid "Mesh Type"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
-msgctxt "@label"
-msgid "Normal model"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
-msgctxt "@label"
-msgid "Print as support"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
-msgctxt "@label"
-msgid "Modify settings for overlaps"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
-msgctxt "@label"
-msgid "Don't support overlaps"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
-msgctxt "@item:inlistbox"
-msgid "Infill mesh only"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
-msgctxt "@item:inlistbox"
-msgid "Cutting mesh"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
-msgctxt "@action:button"
-msgid "Select settings"
-msgstr "Valitse asetukset"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
-msgctxt "@title:window"
-msgid "Select Settings to Customize for this model"
-msgstr "Valitse tätä mallia varten mukautettavat asetukset"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
-msgctxt "@label:textbox"
-msgid "Filter..."
-msgstr "Suodatin..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
-msgctxt "@label:checkbox"
-msgid "Show all"
-msgstr "Näytä kaikki"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
-msgctxt "@title:window"
-msgid "Post Processing Plugin"
-msgstr "Jälkikäsittelylisäosa"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
-msgctxt "@label"
-msgid "Post Processing Scripts"
-msgstr "Jälkikäsittelykomentosarjat"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
-msgctxt "@action"
-msgid "Add a script"
-msgstr "Lisää komentosarja"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
-msgctxt "@label"
-msgid "Settings"
-msgstr "Asetukset"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
-msgctxt "@info:tooltip"
-msgid "Change active post-processing scripts."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
-msgctxt "@info:tooltip"
-msgid "The following script is active:"
-msgid_plural "The following scripts are active:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
-msgctxt "@label"
-msgid "Queued"
-msgstr "Jonossa"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
-msgctxt "@label link to connect manager"
-msgid "Manage in browser"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
-msgctxt "@label"
-msgid "There are no print jobs in the queue. Slice and send a job to add one."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
-msgctxt "@label"
-msgid "Print jobs"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
-msgctxt "@label"
-msgid "Total print time"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
-msgctxt "@label"
-msgid "Waiting for"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
-msgctxt "@title:window"
-msgid "Configuration Changes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
-msgctxt "@action:button"
-msgid "Override"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
-msgctxt "@label"
-msgid "The assigned printer, %1, requires the following configuration change:"
-msgid_plural "The assigned printer, %1, requires the following configuration changes:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
-msgctxt "@label"
-msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
-msgctxt "@label"
-msgid "Change material %1 from %2 to %3."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
-msgctxt "@label"
-msgid "Load %3 as material %1 (This cannot be overridden)."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
-msgctxt "@label"
-msgid "Change print core %1 from %2 to %3."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
-msgctxt "@label"
-msgid "Change build plate to %1 (This cannot be overridden)."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
-msgctxt "@label"
-msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
-msgctxt "@label"
-msgid "Glass"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
-msgctxt "@label"
-msgid "Aluminum"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
-msgctxt "@label"
-msgid "Unavailable printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
-msgctxt "@label"
-msgid "First available"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
-msgctxt "@info"
-msgid "Please update your printer's firmware to manage the queue remotely."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
-msgctxt "@title:window"
-msgid "Connect to Networked Printer"
-msgstr "Yhdistä verkkotulostimeen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
-msgctxt "@label"
-msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
-msgctxt "@label"
-msgid "Select your printer from the list below:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
-msgctxt "@action:button"
-msgid "Edit"
-msgstr "Muokkaa"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:55
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:138
-msgctxt "@action:button"
-msgid "Remove"
-msgstr "Poista"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
-msgctxt "@action:button"
-msgid "Refresh"
-msgstr "Päivitä"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
-msgctxt "@label"
-msgid "If your printer is not listed, read the network printing troubleshooting guide"
-msgstr "Jos tulostinta ei ole luettelossa, lue verkkotulostuksen vianetsintäopas"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
-msgctxt "@label"
-msgid "Type"
-msgstr "Tyyppi"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
-msgctxt "@label"
-msgid "Firmware version"
-msgstr "Laiteohjelmistoversio"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
-msgctxt "@label"
-msgid "Address"
-msgstr "Osoite"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
-msgctxt "@label"
-msgid "This printer is not set up to host a group of printers."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
-msgctxt "@label"
-msgid "This printer is the host for a group of %1 printers."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
-msgctxt "@label"
-msgid "The printer at this address has not yet responded."
-msgstr "Tämän osoitteen tulostin ei ole vielä vastannut."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
-msgctxt "@action:button"
-msgid "Connect"
-msgstr "Yhdistä"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
-msgctxt "@title:window"
-msgid "Invalid IP address"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
-msgctxt "@text"
-msgid "Please enter a valid IP address."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
-msgctxt "@title:window"
-msgid "Printer Address"
-msgstr "Tulostimen osoite"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
-msgctxt "@label"
-msgid "Enter the IP address of your printer on the network."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:227
-msgctxt "@action:button"
-msgid "OK"
-msgstr "OK"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
-msgctxt "@title:window"
-msgid "Print over network"
-msgstr "Tulosta verkon kautta"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
-msgctxt "@action:button"
-msgid "Print"
-msgstr "Tulosta"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
-msgctxt "@label"
-msgid "Printer selection"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
-msgctxt "@label"
-msgid "Move to top"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
-msgctxt "@label"
-msgid "Delete"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:290
-msgctxt "@label"
-msgid "Resume"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
-msgctxt "@label"
-msgid "Pausing..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
-msgctxt "@label"
-msgid "Resuming..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:285
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:294
-msgctxt "@label"
-msgid "Pause"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
-msgctxt "@label"
-msgid "Aborting..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
-msgctxt "@label"
-msgid "Abort"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to move %1 to the top of the queue?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
-msgctxt "@window:title"
-msgid "Move print job to top"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to delete %1?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
-msgctxt "@window:title"
-msgid "Delete print job"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to abort %1?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:336
-msgctxt "@window:title"
-msgid "Abort print"
-msgstr "Keskeytä tulostus"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
-msgctxt "@label:status"
-msgid "Aborted"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
-msgctxt "@label:status"
-msgid "Finished"
-msgstr "Valmis"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
-msgctxt "@label:status"
-msgid "Preparing..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
-msgctxt "@label:status"
-msgid "Aborting..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
-msgctxt "@label:status"
-msgid "Pausing..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
-msgctxt "@label:status"
-msgid "Paused"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
-msgctxt "@label:status"
-msgid "Resuming..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
-msgctxt "@label:status"
-msgid "Action required"
-msgstr "Vaatii toimenpiteitä"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
-msgctxt "@label:status"
-msgid "Finishes %1 at %2"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
-msgctxt "@label link to Connect and Cloud interfaces"
-msgid "Manage printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
-msgctxt "@label:status"
-msgid "Loading..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
-msgctxt "@label:status"
-msgid "Unavailable"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
-msgctxt "@label:status"
-msgid "Unreachable"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
-msgctxt "@label:status"
-msgid "Idle"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
-msgctxt "@label:status"
-msgid "Printing"
-msgstr "Tulostetaan"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
-msgctxt "@label"
-msgid "Untitled"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
-msgctxt "@label"
-msgid "Anonymous"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
-msgctxt "@label:status"
-msgid "Requires configuration changes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
-msgctxt "@action:button"
-msgid "Details"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
-msgctxt "@label"
-msgid "Please select any upgrades made to this Ultimaker Original"
-msgstr "Valitse tähän Ultimaker Original -laitteeseen tehdyt päivitykset"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
-msgctxt "@label"
-msgid "Heated Build Plate (official kit or self-built)"
-msgstr "Lämmitettävä alusta (virallinen sarja tai itse rakennettu)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
-msgctxt "@title"
-msgid "Build Plate Leveling"
-msgstr "Alustan tasaaminen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
-msgctxt "@label"
-msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
-msgstr "Voit säätää alustaa, jotta tulosteista tulisi hyviä. Kun napsautat \"Siirry seuraavaan positioon\", suutin siirtyy eri positioihin, joita voidaan säätää."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
-msgctxt "@label"
-msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
-msgstr "Laita paperinpala kussakin positiossa suuttimen alle ja säädä tulostusalustan korkeus. Tulostusalustan korkeus on oikea, kun suuttimen kärki juuri ja juuri osuu paperiin."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
-msgctxt "@action:button"
-msgid "Start Build Plate Leveling"
-msgstr "Aloita alustan tasaaminen"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
-msgctxt "@action:button"
-msgid "Move to Next Position"
-msgstr "Siirry seuraavaan positioon"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
msgctxt "@title:window"
msgid "Open Project"
msgstr "Avaa projekti"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
msgctxt "@action:ComboBox Update/override existing profile"
msgid "Update existing"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
msgctxt "@action:ComboBox Save settings in a new profile"
msgid "Create new"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
msgctxt "@action:title"
msgid "Summary - Cura Project"
msgstr "Yhteenveto – Cura-projekti"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
msgctxt "@action:label"
msgid "Printer settings"
msgstr "Tulostimen asetukset"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
msgctxt "@info:tooltip"
msgid "How should the conflict in the machine be resolved?"
msgstr "Miten laitteen ristiriita pitäisi ratkaista?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
msgctxt "@action:label"
msgid "Type"
msgstr "Tyyppi"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
msgctxt "@action:label"
msgid "Printer Group"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
msgctxt "@action:label"
msgid "Profile settings"
msgstr "Profiilin asetukset"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
msgctxt "@info:tooltip"
msgid "How should the conflict in the profile be resolved?"
msgstr "Miten profiilin ristiriita pitäisi ratkaista?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
msgctxt "@action:label"
msgid "Name"
msgstr "Nimi"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
msgctxt "@action:label"
msgid "Intent"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
msgctxt "@action:label"
msgid "Not in profile"
msgstr "Ei profiilissa"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
msgctxt "@action:label"
msgid "%1 override"
msgid_plural "%1 overrides"
msgstr[0] "%1 ohitus"
msgstr[1] "%1 ohitusta"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
msgctxt "@action:label"
msgid "Derivative from"
msgstr "Johdettu seuraavista"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
msgctxt "@action:label"
msgid "%1, %2 override"
msgid_plural "%1, %2 overrides"
msgstr[0] "%1, %2 ohitus"
msgstr[1] "%1, %2 ohitusta"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
msgctxt "@action:label"
msgid "Material settings"
msgstr "Materiaaliasetukset"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
msgctxt "@info:tooltip"
msgid "How should the conflict in the material be resolved?"
msgstr "Miten materiaalin ristiriita pitäisi ratkaista?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
msgctxt "@action:label"
msgid "Setting visibility"
msgstr "Asetusten näkyvyys"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
msgctxt "@action:label"
msgid "Mode"
msgstr "Tila"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
msgctxt "@action:label"
msgid "Visible settings:"
msgstr "Näkyvät asetukset:"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
msgctxt "@action:label"
msgid "%1 out of %2"
msgstr "%1/%2"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
msgctxt "@action:warning"
msgid "Loading a project will clear all models on the build plate."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
msgctxt "@action:button"
msgid "Open"
msgstr "Avaa"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.qml:22
-msgctxt "@info:tooltip"
-msgid "Some things could be problematic in this print. Click to see tips for adjustment."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
+msgctxt "@button"
+msgid "Want more?"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:100
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
+msgctxt "@button"
+msgid "Backup Now"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
+msgctxt "@checkbox:description"
+msgid "Auto Backup"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
+msgctxt "@checkbox:description"
+msgid "Automatically create a backup each day that Cura is started."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
+msgctxt "@button"
+msgid "Restore"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
+msgctxt "@dialog:title"
+msgid "Delete Backup"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
+msgctxt "@dialog:info"
+msgid "Are you sure you want to delete this backup? This cannot be undone."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
+msgctxt "@dialog:title"
+msgid "Restore Backup"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
+msgctxt "@dialog:info"
+msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
+msgctxt "@backuplist:label"
+msgid "Cura Version"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
+msgctxt "@backuplist:label"
+msgid "Machines"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
+msgctxt "@backuplist:label"
+msgid "Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
+msgctxt "@backuplist:label"
+msgid "Profiles"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
+msgctxt "@backuplist:label"
+msgid "Plugins"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
+msgctxt "@title:window"
+msgid "Cura Backups"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
+msgctxt "@title"
+msgid "My Backups"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
+msgctxt "@empty_state"
+msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
+msgctxt "@backup_limit_info"
+msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
+msgctxt "@description"
+msgid "Backup and synchronize your Cura settings."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199
+msgctxt "@button"
+msgid "Sign in"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
+msgctxt "@title"
+msgid "Update Firmware"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
+msgctxt "@label"
+msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
+msgstr "Laiteohjelmisto on suoraan 3D-tulostimessa toimiva ohjelma. Laiteohjelmisto ohjaa askelmoottoreita, säätää lämpötilaa ja saa tulostimen toimimaan."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
+msgctxt "@label"
+msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
+msgstr "Uusien tulostimien mukana toimitettava laiteohjelmisto toimii, mutta uusissa versioissa on yleensä enemmän toimintoja ja parannuksia."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
+msgctxt "@action:button"
+msgid "Automatically upgrade Firmware"
+msgstr "Päivitä laiteohjelmisto automaattisesti"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
+msgctxt "@action:button"
+msgid "Upload custom Firmware"
+msgstr "Lataa mukautettu laiteohjelmisto"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
+msgctxt "@label"
+msgid "Firmware can not be updated because there is no connection with the printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
+msgctxt "@label"
+msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
+msgctxt "@title:window"
+msgid "Select custom firmware"
+msgstr "Valitse mukautettu laiteohjelmisto"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
+msgctxt "@title:window"
+msgid "Firmware Update"
+msgstr "Laiteohjelmiston päivitys"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
+msgctxt "@label"
+msgid "Updating firmware."
+msgstr "Päivitetään laiteohjelmistoa."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
+msgctxt "@label"
+msgid "Firmware update completed."
+msgstr "Laiteohjelmiston päivitys suoritettu."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
+msgctxt "@label"
+msgid "Firmware update failed due to an unknown error."
+msgstr "Laiteohjelmiston päivitys epäonnistui tuntemattoman virheen takia."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
+msgctxt "@label"
+msgid "Firmware update failed due to an communication error."
+msgstr "Laiteohjelmiston päivitys epäonnistui tietoliikennevirheen takia."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
+msgctxt "@label"
+msgid "Firmware update failed due to an input/output error."
+msgstr "Laiteohjelmiston päivitys epäonnistui tiedoston lukemiseen tai kirjoittamiseen liittyvän virheen takia."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
+msgctxt "@label"
+msgid "Firmware update failed due to missing firmware."
+msgstr "Laiteohjelmiston päivitys epäonnistui puuttuvan laiteohjelmiston takia."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
+msgctxt "@title:window"
+msgid "Convert Image..."
+msgstr "Muunna kuva..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
+msgctxt "@info:tooltip"
+msgid "The maximum distance of each pixel from \"Base.\""
+msgstr "Kunkin pikselin suurin etäisyys \"Pohja\"-arvosta."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
+msgctxt "@action:label"
+msgid "Height (mm)"
+msgstr "Korkeus (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
+msgctxt "@info:tooltip"
+msgid "The base height from the build plate in millimeters."
+msgstr "Pohjan korkeus alustasta millimetreinä."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
+msgctxt "@action:label"
+msgid "Base (mm)"
+msgstr "Pohja (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
+msgctxt "@info:tooltip"
+msgid "The width in millimeters on the build plate."
+msgstr "Leveys millimetreinä alustalla."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
+msgctxt "@action:label"
+msgid "Width (mm)"
+msgstr "Leveys (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
+msgctxt "@info:tooltip"
+msgid "The depth in millimeters on the build plate"
+msgstr "Syvyys millimetreinä alustalla"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
+msgctxt "@action:label"
+msgid "Depth (mm)"
+msgstr "Syvyys (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
+msgctxt "@info:tooltip"
+msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Darker is higher"
+msgstr "Tummempi on korkeampi"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Lighter is higher"
+msgstr "Vaaleampi on korkeampi"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
+msgctxt "@info:tooltip"
+msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+msgctxt "@item:inlistbox"
+msgid "Linear"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
+msgctxt "@item:inlistbox"
+msgid "Translucency"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
+msgctxt "@info:tooltip"
+msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
+msgctxt "@action:label"
+msgid "1mm Transmittance (%)"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
+msgctxt "@info:tooltip"
+msgid "The amount of smoothing to apply to the image."
+msgstr "Kuvassa käytettävän tasoituksen määrä."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
+msgctxt "@action:label"
+msgid "Smoothing"
+msgstr "Tasoitus"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
+msgctxt "@action:button"
+msgid "OK"
+msgstr "OK"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
+msgctxt "@title:tab"
+msgid "Printer"
+msgstr "Tulostin"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
+msgctxt "@title:label"
+msgid "Nozzle Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
+msgctxt "@label"
+msgid "Nozzle size"
+msgstr "Suuttimen koko"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
+msgctxt "@label"
+msgid "mm"
+msgstr "mm"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
+msgctxt "@label"
+msgid "Compatible material diameter"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
+msgctxt "@label"
+msgid "Nozzle offset X"
+msgstr "Suuttimen X-siirtymä"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
+msgctxt "@label"
+msgid "Nozzle offset Y"
+msgstr "Suuttimen Y-siirtymä"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
+msgctxt "@label"
+msgid "Cooling Fan Number"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
+msgctxt "@title:label"
+msgid "Extruder Start G-code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
+msgctxt "@title:label"
+msgid "Extruder End G-code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
+msgctxt "@title:label"
+msgid "Printer Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
+msgctxt "@label"
+msgid "X (Width)"
+msgstr "X (leveys)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
+msgctxt "@label"
+msgid "Y (Depth)"
+msgstr "Y (syvyys)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
+msgctxt "@label"
+msgid "Z (Height)"
+msgstr "Z (korkeus)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
+msgctxt "@label"
+msgid "Build plate shape"
+msgstr "Alustan muoto"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
+msgctxt "@label"
+msgid "Origin at center"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
+msgctxt "@label"
+msgid "Heated bed"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
+msgctxt "@label"
+msgid "Heated build volume"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
+msgctxt "@label"
+msgid "G-code flavor"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
+msgctxt "@title:label"
+msgid "Printhead Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
+msgctxt "@label"
+msgid "X min"
+msgstr "X väh."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
+msgctxt "@label"
+msgid "Y min"
+msgstr "Y väh."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
+msgctxt "@label"
+msgid "X max"
+msgstr "X enint."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
+msgctxt "@label"
+msgid "Y max"
+msgstr "Y enint."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
+msgctxt "@label"
+msgid "Gantry Height"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
+msgctxt "@label"
+msgid "Number of Extruders"
+msgstr "Suulakkeiden määrä"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
+msgctxt "@label"
+msgid "Apply Extruder offsets to GCode"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
+msgctxt "@title:label"
+msgid "Start G-code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
+msgctxt "@title:label"
+msgid "End G-code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
msgctxt "@info"
msgid ""
"Please make sure your printer has a connection:\n"
@@ -2682,709 +2217,2802 @@ msgid ""
"- Check if you are signed in to discover cloud-connected printers."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
msgctxt "@info"
msgid "Please connect your printer to the network."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:155
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155
msgctxt "@label link to technical assistance"
msgid "View user manuals online"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172
+msgctxt "@info"
+msgid "In order to monitor your print from Cura, please connect the printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
+msgctxt "@label"
+msgid "Mesh Type"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
+msgctxt "@label"
+msgid "Normal model"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
+msgctxt "@label"
+msgid "Print as support"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
+msgctxt "@label"
+msgid "Modify settings for overlaps"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
+msgctxt "@label"
+msgid "Don't support overlaps"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
+msgctxt "@item:inlistbox"
+msgid "Infill mesh only"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
+msgctxt "@item:inlistbox"
+msgid "Cutting mesh"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
+msgctxt "@action:button"
+msgid "Select settings"
+msgstr "Valitse asetukset"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
msgctxt "@title:window"
-msgid "More information on anonymous data collection"
+msgid "Select Settings to Customize for this model"
+msgstr "Valitse tätä mallia varten mukautettavat asetukset"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96
+msgctxt "@label:textbox"
+msgid "Filter..."
+msgstr "Suodatin..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
+msgctxt "@label:checkbox"
+msgid "Show all"
+msgstr "Näytä kaikki"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20
+msgctxt "@title:window"
+msgid "Post Processing Plugin"
+msgstr "Jälkikäsittelylisäosa"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59
+msgctxt "@label"
+msgid "Post Processing Scripts"
+msgstr "Jälkikäsittelykomentosarjat"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235
+msgctxt "@action"
+msgid "Add a script"
+msgstr "Lisää komentosarja"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282
+msgctxt "@label"
+msgid "Settings"
+msgstr "Asetukset"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502
+msgctxt "@info:tooltip"
+msgid "Change active post-processing scripts."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
-msgctxt "@text:window"
-msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
-msgstr ""
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506
+msgctxt "@info:tooltip"
+msgid "The following script is active:"
+msgid_plural "The following scripts are active:"
+msgstr[0] ""
+msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
-msgctxt "@text:window"
-msgid "I don't want to send anonymous data"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
-msgctxt "@text:window"
-msgid "Allow sending anonymous data"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
msgctxt "@label"
msgid "Color scheme"
msgstr "Värimalli"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110
msgctxt "@label:listbox"
msgid "Material Color"
msgstr "Materiaalin väri"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114
msgctxt "@label:listbox"
msgid "Line Type"
msgstr "Linjojen tyyppi"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118
msgctxt "@label:listbox"
msgid "Speed"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122
msgctxt "@label:listbox"
msgid "Layer Thickness"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126
msgctxt "@label:listbox"
msgid "Line Width"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130
+msgctxt "@label:listbox"
+msgid "Flow"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171
msgctxt "@label"
msgid "Compatibility Mode"
msgstr "Yhteensopivuustila"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245
msgctxt "@label"
msgid "Travels"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251
msgctxt "@label"
msgid "Helpers"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
msgctxt "@label"
msgid "Shell"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:255
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
msgctxt "@label"
msgid "Infill"
msgstr "Täyttö"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271
msgctxt "@label"
msgid "Starts"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:314
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
msgctxt "@label"
msgid "Only Show Top Layers"
msgstr "Näytä vain yläkerrokset"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:324
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332
msgctxt "@label"
msgid "Show 5 Detailed Layers On Top"
msgstr "Näytä 5 yksityiskohtaista kerrosta ylhäällä"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:338
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346
msgctxt "@label"
msgid "Top / Bottom"
msgstr "Yläosa/alaosa"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:342
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350
msgctxt "@label"
msgid "Inner Wall"
msgstr "Sisäseinämä"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:405
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419
msgctxt "@label"
msgid "min"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:464
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488
msgctxt "@label"
msgid "max"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
-msgctxt "@title:label"
-msgid "Nozzle Settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
-msgctxt "@label"
-msgid "Nozzle size"
-msgstr "Suuttimen koko"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
-msgctxt "@label"
-msgid "mm"
-msgstr "mm"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
-msgctxt "@label"
-msgid "Compatible material diameter"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
-msgctxt "@label"
-msgid "Nozzle offset X"
-msgstr "Suuttimen X-siirtymä"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
-msgctxt "@label"
-msgid "Nozzle offset Y"
-msgstr "Suuttimen Y-siirtymä"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
-msgctxt "@label"
-msgid "Cooling Fan Number"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
-msgctxt "@title:label"
-msgid "Extruder Start G-code"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
-msgctxt "@title:label"
-msgid "Extruder End G-code"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
-msgctxt "@title:tab"
-msgid "Printer"
-msgstr "Tulostin"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
-msgctxt "@title:label"
-msgid "Printer Settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
-msgctxt "@label"
-msgid "X (Width)"
-msgstr "X (leveys)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
-msgctxt "@label"
-msgid "Y (Depth)"
-msgstr "Y (syvyys)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
-msgctxt "@label"
-msgid "Z (Height)"
-msgstr "Z (korkeus)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
-msgctxt "@label"
-msgid "Build plate shape"
-msgstr "Alustan muoto"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
-msgctxt "@label"
-msgid "Origin at center"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
-msgctxt "@label"
-msgid "Heated bed"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
-msgctxt "@label"
-msgid "Heated build volume"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
-msgctxt "@label"
-msgid "G-code flavor"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
-msgctxt "@title:label"
-msgid "Printhead Settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
-msgctxt "@label"
-msgid "X min"
-msgstr "X väh."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
-msgctxt "@label"
-msgid "Y min"
-msgstr "Y väh."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
-msgctxt "@label"
-msgid "X max"
-msgstr "X enint."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
-msgctxt "@label"
-msgid "Y max"
-msgstr "Y enint."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
-msgctxt "@label"
-msgid "Gantry Height"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
-msgctxt "@label"
-msgid "Number of Extruders"
-msgstr "Suulakkeiden määrä"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
-msgctxt "@label"
-msgid "Apply Extruder offsets to GCode"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
-msgctxt "@title:label"
-msgid "Start G-code"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
-msgctxt "@title:label"
-msgid "End G-code"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
msgctxt "@title:window"
-msgid "Convert Image..."
-msgstr "Muunna kuva..."
+msgid "More information on anonymous data collection"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:33
-msgctxt "@info:tooltip"
-msgid "The maximum distance of each pixel from \"Base.\""
-msgstr "Kunkin pikselin suurin etäisyys \"Pohja\"-arvosta."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
+msgctxt "@text:window"
+msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:38
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
+msgctxt "@text:window"
+msgid "I don't want to send anonymous data"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
+msgctxt "@text:window"
+msgid "Allow sending anonymous data"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
+msgctxt "@action:button"
+msgid "Back"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
+msgctxt "@label"
+msgid "Compatibility"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
+msgctxt "@label:table_header"
+msgid "Machine"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
+msgctxt "@label:table_header"
+msgid "Build Plate"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
+msgctxt "@label:table_header"
+msgid "Support"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
+msgctxt "@label:table_header"
+msgid "Quality"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
msgctxt "@action:label"
-msgid "Height (mm)"
-msgstr "Korkeus (mm)"
+msgid "Technical Data Sheet"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:56
-msgctxt "@info:tooltip"
-msgid "The base height from the build plate in millimeters."
-msgstr "Pohjan korkeus alustasta millimetreinä."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:61
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
msgctxt "@action:label"
-msgid "Base (mm)"
-msgstr "Pohja (mm)"
+msgid "Safety Data Sheet"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:79
-msgctxt "@info:tooltip"
-msgid "The width in millimeters on the build plate."
-msgstr "Leveys millimetreinä alustalla."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:84
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
msgctxt "@action:label"
-msgid "Width (mm)"
-msgstr "Leveys (mm)"
+msgid "Printing Guidelines"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:103
-msgctxt "@info:tooltip"
-msgid "The depth in millimeters on the build plate"
-msgstr "Syvyys millimetreinä alustalla"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:108
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
msgctxt "@action:label"
-msgid "Depth (mm)"
-msgstr "Syvyys (mm)"
+msgid "Website"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:126
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
+msgctxt "@action:button"
+msgid "Installed"
+msgstr "Asennettu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to install or update"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Buy material spools"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
+msgctxt "@action:button"
+msgid "Update"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
+msgctxt "@action:button"
+msgid "Updating"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
+msgctxt "@action:button"
+msgid "Updated"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
+msgctxt "@label"
+msgid "Premium"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
msgctxt "@info:tooltip"
-msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
+msgid "Go to Web Marketplace"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Darker is higher"
-msgstr "Tummempi on korkeampi"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Lighter is higher"
-msgstr "Vaaleampi on korkeampi"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:149
-msgctxt "@info:tooltip"
-msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
+msgctxt "@label"
+msgid "Search materials"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
-msgctxt "@item:inlistbox"
-msgid "Linear"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
+msgctxt "@info"
+msgid "You will need to restart Cura before changes in packages have effect."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:172
-msgctxt "@item:inlistbox"
-msgid "Translucency"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
+msgctxt "@info:button, %1 is the application name"
+msgid "Quit %1"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:171
-msgctxt "@info:tooltip"
-msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:177
-msgctxt "@action:label"
-msgid "1mm Transmittance (%)"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:195
-msgctxt "@info:tooltip"
-msgid "The amount of smoothing to apply to the image."
-msgstr "Kuvassa käytettävän tasoituksen määrä."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:200
-msgctxt "@action:label"
-msgid "Smoothing"
-msgstr "Tasoitus"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
-msgctxt "@title"
-msgid "My Backups"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
-msgctxt "@empty_state"
-msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
-msgctxt "@backup_limit_info"
-msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
-msgctxt "@description"
-msgid "Backup and synchronize your Cura settings."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
-msgctxt "@button"
-msgid "Want more?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
-msgctxt "@button"
-msgid "Backup Now"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
-msgctxt "@checkbox:description"
-msgid "Auto Backup"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
-msgctxt "@checkbox:description"
-msgid "Automatically create a backup each day that Cura is started."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
-msgctxt "@backuplist:label"
-msgid "Cura Version"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
-msgctxt "@backuplist:label"
-msgid "Machines"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
-msgctxt "@backuplist:label"
-msgid "Materials"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
-msgctxt "@backuplist:label"
-msgid "Profiles"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
-msgctxt "@backuplist:label"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
+msgctxt "@title:tab"
msgid "Plugins"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
+msgctxt "@title:tab"
+msgid "Materials"
+msgstr "Materiaalit"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
+msgctxt "@title:tab"
+msgid "Installed"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
+msgctxt "@label"
+msgid "Will install upon restarting"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to update"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Downgrade"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Uninstall"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
+msgctxt "@action:button"
+msgid "Install"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
+msgctxt "@title"
+msgid "Changes from your account"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
msgctxt "@button"
-msgid "Restore"
+msgid "Dismiss"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
-msgctxt "@dialog:title"
-msgid "Delete Backup"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178
+msgctxt "@button"
+msgid "Next"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
-msgctxt "@dialog:info"
-msgid "Are you sure you want to delete this backup? This cannot be undone."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
+msgctxt "@label"
+msgid "The following packages will be added:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
-msgctxt "@dialog:title"
-msgid "Restore Backup"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
+msgctxt "@label"
+msgid "The following packages can not be installed because of an incompatible Cura version:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
-msgctxt "@dialog:info"
-msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/main.qml:25
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
msgctxt "@title:window"
-msgid "Cura Backups"
+msgid "Confirm uninstall"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:13
-msgctxt "@label:category menu label"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
+msgctxt "@text:window"
+msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
+msgctxt "@text:window"
+msgid "Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
+msgctxt "@text:window"
+msgid "Profiles"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
+msgctxt "@action:button"
+msgid "Confirm"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
+msgctxt "@label"
+msgid "You need to accept the license to install the package"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
+msgctxt "@label"
+msgid "Website"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
+msgctxt "@label"
+msgid "Email"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
+msgctxt "@label"
+msgid "Version"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
+msgctxt "@label"
+msgid "Last updated"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
+msgctxt "@label"
+msgid "Brand"
+msgstr "Merkki"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
+msgctxt "@label"
+msgid "Downloads"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Contributions"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Plugins"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
+msgctxt "@label"
+msgid "Generic Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
+msgctxt "@info"
+msgid "Could not connect to the Cura Package database. Please check your connection."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
+msgctxt "@title:tab"
+msgid "Installed plugins"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
+msgctxt "@info"
+msgid "No plugin has been installed."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
+msgctxt "@title:tab"
+msgid "Installed materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
+msgctxt "@info"
+msgid "No material has been installed."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
+msgctxt "@title:tab"
+msgid "Bundled plugins"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
+msgctxt "@title:tab"
+msgid "Bundled materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
+msgctxt "@info"
+msgid "Fetching packages..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
+msgctxt "@description"
+msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
+msgctxt "@title"
+msgid "Marketplace"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
+msgctxt "@title"
+msgid "Build Plate Leveling"
+msgstr "Alustan tasaaminen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
+msgctxt "@label"
+msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
+msgstr "Voit säätää alustaa, jotta tulosteista tulisi hyviä. Kun napsautat \"Siirry seuraavaan positioon\", suutin siirtyy eri positioihin, joita voidaan säätää."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
+msgctxt "@label"
+msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
+msgstr "Laita paperinpala kussakin positiossa suuttimen alle ja säädä tulostusalustan korkeus. Tulostusalustan korkeus on oikea, kun suuttimen kärki juuri ja juuri osuu paperiin."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
+msgctxt "@action:button"
+msgid "Start Build Plate Leveling"
+msgstr "Aloita alustan tasaaminen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
+msgctxt "@action:button"
+msgid "Move to Next Position"
+msgstr "Siirry seuraavaan positioon"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
+msgctxt "@label"
+msgid "Please select any upgrades made to this Ultimaker Original"
+msgstr "Valitse tähän Ultimaker Original -laitteeseen tehdyt päivitykset"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
+msgctxt "@label"
+msgid "Heated Build Plate (official kit or self-built)"
+msgstr "Lämmitettävä alusta (virallinen sarja tai itse rakennettu)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
+msgctxt "@title:window"
+msgid "Connect to Networked Printer"
+msgstr "Yhdistä verkkotulostimeen"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+msgctxt "@label"
+msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+msgctxt "@label"
+msgid "Select your printer from the list below:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
+msgctxt "@action:button"
+msgid "Edit"
+msgstr "Muokkaa"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
+msgctxt "@action:button"
+msgid "Remove"
+msgstr "Poista"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
+msgctxt "@action:button"
+msgid "Refresh"
+msgstr "Päivitä"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
+msgctxt "@label"
+msgid "If your printer is not listed, read the network printing troubleshooting guide"
+msgstr "Jos tulostinta ei ole luettelossa, lue verkkotulostuksen vianetsintäopas"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
+msgctxt "@label"
+msgid "Type"
+msgstr "Tyyppi"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
+msgctxt "@label"
+msgid "Firmware version"
+msgstr "Laiteohjelmistoversio"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
+msgctxt "@label"
+msgid "Address"
+msgstr "Osoite"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
+msgctxt "@label"
+msgid "This printer is not set up to host a group of printers."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
+msgctxt "@label"
+msgid "This printer is the host for a group of %1 printers."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
+msgctxt "@label"
+msgid "The printer at this address has not yet responded."
+msgstr "Tämän osoitteen tulostin ei ole vielä vastannut."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
+msgctxt "@action:button"
+msgid "Connect"
+msgstr "Yhdistä"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
+msgctxt "@title:window"
+msgid "Invalid IP address"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
+msgctxt "@text"
+msgid "Please enter a valid IP address."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
+msgctxt "@title:window"
+msgid "Printer Address"
+msgstr "Tulostimen osoite"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
+msgctxt "@label"
+msgid "Enter the IP address of your printer on the network."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
+msgctxt "@title:window"
+msgid "Configuration Changes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
+msgctxt "@action:button"
+msgid "Override"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
+msgctxt "@label"
+msgid "The assigned printer, %1, requires the following configuration change:"
+msgid_plural "The assigned printer, %1, requires the following configuration changes:"
+msgstr[0] ""
+msgstr[1] ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
+msgctxt "@label"
+msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
+msgctxt "@label"
+msgid "Change material %1 from %2 to %3."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
+msgctxt "@label"
+msgid "Load %3 as material %1 (This cannot be overridden)."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
+msgctxt "@label"
+msgid "Change print core %1 from %2 to %3."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
+msgctxt "@label"
+msgid "Change build plate to %1 (This cannot be overridden)."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
+msgctxt "@label"
+msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
+msgctxt "@label"
+msgid "Glass"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
+msgctxt "@label"
+msgid "Aluminum"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
+msgctxt "@label"
+msgid "Move to top"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
+msgctxt "@label"
+msgid "Delete"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290
+msgctxt "@label"
+msgid "Resume"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
+msgctxt "@label"
+msgid "Pausing..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
+msgctxt "@label"
+msgid "Resuming..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294
+msgctxt "@label"
+msgid "Pause"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+msgctxt "@label"
+msgid "Aborting..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+msgctxt "@label"
+msgid "Abort"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to move %1 to the top of the queue?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
+msgctxt "@window:title"
+msgid "Move print job to top"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to delete %1?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
+msgctxt "@window:title"
+msgid "Delete print job"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to abort %1?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336
+msgctxt "@window:title"
+msgid "Abort print"
+msgstr "Keskeytä tulostus"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
+msgctxt "@label link to Connect and Cloud interfaces"
+msgid "Manage printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
+msgctxt "@info"
+msgid "Please update your printer's firmware to manage the queue remotely."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
+msgctxt "@label:status"
+msgid "Loading..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
+msgctxt "@label:status"
+msgid "Unavailable"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
+msgctxt "@label:status"
+msgid "Unreachable"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
+msgctxt "@label:status"
+msgid "Idle"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
+msgctxt "@label:status"
+msgid "Preparing..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
+msgctxt "@label:status"
+msgid "Printing"
+msgstr "Tulostetaan"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
+msgctxt "@label"
+msgid "Untitled"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
+msgctxt "@label"
+msgid "Anonymous"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
+msgctxt "@label:status"
+msgid "Requires configuration changes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
+msgctxt "@action:button"
+msgid "Details"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
+msgctxt "@label"
+msgid "Unavailable printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
+msgctxt "@label"
+msgid "First available"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
+msgctxt "@label:status"
+msgid "Aborted"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
+msgctxt "@label:status"
+msgid "Finished"
+msgstr "Valmis"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
+msgctxt "@label:status"
+msgid "Aborting..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
+msgctxt "@label:status"
+msgid "Pausing..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
+msgctxt "@label:status"
+msgid "Paused"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
+msgctxt "@label:status"
+msgid "Resuming..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
+msgctxt "@label:status"
+msgid "Action required"
+msgstr "Vaatii toimenpiteitä"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
+msgctxt "@label:status"
+msgid "Finishes %1 at %2"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
+msgctxt "@label"
+msgid "Queued"
+msgstr "Jonossa"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
+msgctxt "@label link to connect manager"
+msgid "Manage in browser"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
+msgctxt "@label"
+msgid "There are no print jobs in the queue. Slice and send a job to add one."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
+msgctxt "@label"
+msgid "Print jobs"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
+msgctxt "@label"
+msgid "Total print time"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
+msgctxt "@label"
+msgid "Waiting for"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
+msgctxt "@title:window"
+msgid "Print over network"
+msgstr "Tulosta verkon kautta"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
+msgctxt "@action:button"
+msgid "Print"
+msgstr "Tulosta"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
+msgctxt "@label"
+msgid "Printer selection"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
+msgctxt "@action:button"
+msgid "Sign in"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64
+msgctxt "@label"
+msgid "Sign in to the Ultimaker platform"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42
+msgctxt "@text"
+msgid ""
+"- Add material profiles and plug-ins from the Marketplace\n"
+"- Back-up and sync your material profiles and plug-ins\n"
+"- Share ideas and get help from 48,000+ users in the Ultimaker community"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62
+msgctxt "@button"
+msgid "Create a free Ultimaker account"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28
+msgctxt "@label"
+msgid "Checking..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35
+msgctxt "@label"
+msgid "Account synced"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42
+msgctxt "@label"
+msgid "Something went wrong..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96
+msgctxt "@button"
+msgid "Install pending updates"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118
+msgctxt "@button"
+msgid "Check for account updates"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81
+msgctxt "@label The argument is a timestamp"
+msgid "Last update: %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109
+msgctxt "@button"
+msgid "Ultimaker Account"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125
+msgctxt "@button"
+msgid "Sign Out"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
+msgctxt "@label"
+msgid "No time estimation available"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
+msgctxt "@label"
+msgid "No cost estimation available"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
+msgctxt "@button"
+msgid "Preview"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
+msgctxt "@label"
+msgid "Time estimation"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
+msgctxt "@label"
+msgid "Material estimation"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
+msgctxt "@label m for meter"
+msgid "%1m"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
+msgctxt "@label g for grams"
+msgid "%1g"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
+msgctxt "@label:PrintjobStatus"
+msgid "Slicing..."
+msgstr "Viipaloidaan..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
+msgctxt "@label:PrintjobStatus"
+msgid "Unable to slice"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Processing"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Slice"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
+msgctxt "@label"
+msgid "Start the slicing process"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
+msgctxt "@button"
+msgid "Cancel"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83
+msgctxt "@action:inmenu"
+msgid "Show Online Troubleshooting Guide"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90
+msgctxt "@action:inmenu"
+msgid "Toggle Full Screen"
+msgstr "Vaihda koko näyttöön"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98
+msgctxt "@action:inmenu"
+msgid "Exit Full Screen"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Undo"
+msgstr "&Kumoa"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Redo"
+msgstr "Tee &uudelleen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125
+msgctxt "@action:inmenu menubar:file"
+msgid "&Quit"
+msgstr "&Lopeta"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133
+msgctxt "@action:inmenu menubar:view"
+msgid "3D View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140
+msgctxt "@action:inmenu menubar:view"
+msgid "Front View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147
+msgctxt "@action:inmenu menubar:view"
+msgid "Top View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154
+msgctxt "@action:inmenu menubar:view"
+msgid "Bottom View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161
+msgctxt "@action:inmenu menubar:view"
+msgid "Left Side View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168
+msgctxt "@action:inmenu menubar:view"
+msgid "Right Side View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175
+msgctxt "@action:inmenu"
+msgid "Configure Cura..."
+msgstr "Määritä Curan asetukset..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182
+msgctxt "@action:inmenu menubar:printer"
+msgid "&Add Printer..."
+msgstr "L&isää tulostin..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188
+msgctxt "@action:inmenu menubar:printer"
+msgid "Manage Pr&inters..."
+msgstr "Tulostinten &hallinta..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195
+msgctxt "@action:inmenu"
+msgid "Manage Materials..."
+msgstr "Hallitse materiaaleja..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203
+msgctxt "@action:inmenu"
+msgid "Add more materials from Marketplace"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
+msgctxt "@action:inmenu menubar:profile"
+msgid "&Update profile with current settings/overrides"
+msgstr "&Päivitä nykyiset asetukset tai ohitukset profiiliin"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218
+msgctxt "@action:inmenu menubar:profile"
+msgid "&Discard current changes"
+msgstr "&Hylkää tehdyt muutokset"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230
+msgctxt "@action:inmenu menubar:profile"
+msgid "&Create profile from current settings/overrides..."
+msgstr "&Luo profiili nykyisten asetusten tai ohitusten perusteella..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236
+msgctxt "@action:inmenu menubar:profile"
+msgid "Manage Profiles..."
+msgstr "Profiilien hallinta..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244
+msgctxt "@action:inmenu menubar:help"
+msgid "Show Online &Documentation"
+msgstr "Näytä sähköinen &dokumentaatio"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252
+msgctxt "@action:inmenu menubar:help"
+msgid "Report a &Bug"
+msgstr "Ilmoita &virheestä"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260
+msgctxt "@action:inmenu menubar:help"
+msgid "What's New"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266
+msgctxt "@action:inmenu menubar:help"
+msgid "About..."
+msgstr "Tietoja..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273
+msgctxt "@action:inmenu menubar:edit"
+msgid "Delete Selected"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283
+msgctxt "@action:inmenu menubar:edit"
+msgid "Center Selected"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292
+msgctxt "@action:inmenu menubar:edit"
+msgid "Multiply Selected"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301
+msgctxt "@action:inmenu"
+msgid "Delete Model"
+msgstr "Poista malli"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309
+msgctxt "@action:inmenu"
+msgid "Ce&nter Model on Platform"
+msgstr "Ke&skitä malli alustalle"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Group Models"
+msgstr "&Ryhmittele mallit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335
+msgctxt "@action:inmenu menubar:edit"
+msgid "Ungroup Models"
+msgstr "Poista mallien ryhmitys"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Merge Models"
+msgstr "&Yhdistä mallit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355
+msgctxt "@action:inmenu"
+msgid "&Multiply Model..."
+msgstr "&Kerro malli..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362
+msgctxt "@action:inmenu menubar:edit"
+msgid "Select All Models"
+msgstr "Valitse kaikki mallit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372
+msgctxt "@action:inmenu menubar:edit"
+msgid "Clear Build Plate"
+msgstr "Tyhjennä tulostusalusta"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382
+msgctxt "@action:inmenu menubar:file"
+msgid "Reload All Models"
+msgstr "Lataa kaikki mallit uudelleen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391
+msgctxt "@action:inmenu menubar:edit"
+msgid "Arrange All Models To All Build Plates"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398
+msgctxt "@action:inmenu menubar:edit"
+msgid "Arrange All Models"
+msgstr "Järjestä kaikki mallit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406
+msgctxt "@action:inmenu menubar:edit"
+msgid "Arrange Selection"
+msgstr "Järjestä valinta"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413
+msgctxt "@action:inmenu menubar:edit"
+msgid "Reset All Model Positions"
+msgstr "Määritä kaikkien mallien positiot uudelleen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420
+msgctxt "@action:inmenu menubar:edit"
+msgid "Reset All Model Transformations"
+msgstr "Määritä kaikkien mallien muutokset uudelleen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429
+msgctxt "@action:inmenu menubar:file"
+msgid "&Open File(s)..."
+msgstr "&Avaa tiedosto(t)..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439
+msgctxt "@action:inmenu menubar:file"
+msgid "&New Project..."
+msgstr "&Uusi projekti..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446
+msgctxt "@action:inmenu menubar:help"
+msgid "Show Configuration Folder"
+msgstr "Näytä määrityskansio"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550
+msgctxt "@action:menu"
+msgid "Configure setting visibility..."
+msgstr "Määritä asetusten näkyvyys..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460
+msgctxt "@action:menu"
+msgid "&Marketplace"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257
+msgctxt "@label"
+msgid "This package will be installed after restarting."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17
+msgctxt "@title:tab"
+msgid "General"
+msgstr "Yleiset"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453
+msgctxt "@title:tab"
+msgid "Settings"
+msgstr "Asetukset"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
+msgctxt "@title:tab"
+msgid "Printers"
+msgstr "Tulostimet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
+msgctxt "@title:tab"
+msgid "Profiles"
+msgstr "Profiilit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576
+msgctxt "@title:window %1 is the application name"
+msgid "Closing %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589
+msgctxt "@label %1 is the application name"
+msgid "Are you sure you want to exit %1?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
+msgctxt "@title:window"
+msgid "Open file(s)"
+msgstr "Avaa tiedosto(t)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737
+msgctxt "@window:title"
+msgid "Install Package"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745
+msgctxt "@title:window"
+msgid "Open File(s)"
+msgstr "Avaa tiedosto(t)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748
+msgctxt "@text:window"
+msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
+msgstr "Löysimme vähintään yhden Gcode-tiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden Gcode-tiedoston kerrallaan. Jos haluat avata Gcode-tiedoston, valitse vain yksi."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857
+msgctxt "@title:window"
+msgid "Add Printer"
+msgstr "Lisää tulostin"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865
+msgctxt "@title:window"
+msgid "What's New"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
+msgctxt "@title:window The argument is the application name."
+msgid "About %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
+msgctxt "@label"
+msgid "version: %1"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
+msgctxt "@label"
+msgid "End-to-end solution for fused filament 3D printing."
+msgstr "Kokonaisvaltainen sulatettavan tulostuslangan 3D-tulostusratkaisu."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
+msgctxt "@info:credit"
+msgid ""
+"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
+"Cura proudly uses the following open source projects:"
+msgstr ""
+"Cura-ohjelman on kehittänyt Ultimaker B.V. yhteistyössä käyttäjäyhteisön kanssa.\n"
+"Cura hyödyntää seuraavia avoimeen lähdekoodiin perustuvia projekteja:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
+msgctxt "@label"
+msgid "Graphical user interface"
+msgstr "Graafinen käyttöliittymä"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
+msgctxt "@label"
+msgid "Application framework"
+msgstr "Sovelluskehys"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
+msgctxt "@label"
+msgid "G-code generator"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
+msgctxt "@label"
+msgid "Interprocess communication library"
+msgstr "Prosessien välinen tietoliikennekirjasto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
+msgctxt "@label"
+msgid "Programming language"
+msgstr "Ohjelmointikieli"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
+msgctxt "@label"
+msgid "GUI framework"
+msgstr "GUI-kehys"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
+msgctxt "@label"
+msgid "GUI framework bindings"
+msgstr "GUI-kehyksen sidonnat"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
+msgctxt "@label"
+msgid "C/C++ Binding library"
+msgstr "C/C++ -sidontakirjasto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
+msgctxt "@label"
+msgid "Data interchange format"
+msgstr "Data Interchange Format"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
+msgctxt "@label"
+msgid "Support library for scientific computing"
+msgstr "Tieteellisen laskennan tukikirjasto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
+msgctxt "@label"
+msgid "Support library for faster math"
+msgstr "Nopeamman laskennan tukikirjasto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
+msgctxt "@label"
+msgid "Support library for handling STL files"
+msgstr "STL-tiedostojen käsittelyn tukikirjasto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
+msgctxt "@label"
+msgid "Support library for handling planar objects"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
+msgctxt "@label"
+msgid "Support library for handling triangular meshes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
+msgctxt "@label"
+msgid "Support library for handling 3MF files"
+msgstr "Tukikirjasto 3MF-tiedostojen käsittelyyn"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
+msgctxt "@label"
+msgid "Support library for file metadata and streaming"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
+msgctxt "@label"
+msgid "Serial communication library"
+msgstr "Sarjatietoliikennekirjasto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
+msgctxt "@label"
+msgid "ZeroConf discovery library"
+msgstr "ZeroConf-etsintäkirjasto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
+msgctxt "@label"
+msgid "Polygon clipping library"
+msgstr "Monikulmion leikkauskirjasto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
+msgctxt "@Label"
+msgid "Static type checker for Python"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
+msgctxt "@Label"
+msgid "Root Certificates for validating SSL trustworthiness"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
+msgctxt "@Label"
+msgid "Python Error tracking library"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
+msgctxt "@label"
+msgid "Polygon packing library, developed by Prusa Research"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
+msgctxt "@label"
+msgid "Python bindings for libnest2d"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161
+msgctxt "@label"
+msgid "Support library for system keyring access"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162
+msgctxt "@label"
+msgid "Python extensions for Microsoft Windows"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163
+msgctxt "@label"
+msgid "Font"
+msgstr "Fontti"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164
+msgctxt "@label"
+msgid "SVG icons"
+msgstr "SVG-kuvakkeet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165
+msgctxt "@label"
+msgid "Linux cross-distribution application deployment"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
+msgctxt "@title:window"
+msgid "Open project file"
+msgstr "Avaa projektitiedosto"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
+msgctxt "@text:window"
+msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
+msgstr "Tämä on Cura-projektitiedosto. Haluatko avata sen projektina vai tuoda siinä olevat mallit?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
+msgctxt "@text:window"
+msgid "Remember my choice"
+msgstr "Muista valintani"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
+msgctxt "@action:button"
+msgid "Open as project"
+msgstr "Avaa projektina"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
+msgctxt "@action:button"
+msgid "Import models"
+msgstr "Tuo mallit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
+msgctxt "@title:window"
+msgid "Discard or Keep changes"
+msgstr "Hylkää tai säilytä muutokset"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
+msgctxt "@text:window, %1 is a profile name"
+msgid ""
+"You have customized some profile settings.\n"
+"Would you like to Keep these changed settings after switching profiles?\n"
+"Alternatively, you can discard the changes to load the defaults from '%1'."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
+msgctxt "@title:column"
+msgid "Profile settings"
+msgstr "Profiilin asetukset"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
+msgctxt "@title:column"
+msgid "Current changes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733
+msgctxt "@option:discardOrKeep"
+msgid "Always ask me this"
+msgstr "Kysy aina"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
+msgctxt "@option:discardOrKeep"
+msgid "Discard and never ask again"
+msgstr "Hylkää äläkä kysy uudelleen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
+msgctxt "@option:discardOrKeep"
+msgid "Keep and never ask again"
+msgstr "Säilytä äläkä kysy uudelleen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
+msgctxt "@action:button"
+msgid "Discard changes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
+msgctxt "@action:button"
+msgid "Keep changes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
+msgctxt "@text:window"
+msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
+msgstr "Löysimme vähintään yhden projektitiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden projektitiedoston kerrallaan. Suosittelemme, että tuot vain malleja niistä tiedostoista. Haluatko jatkaa?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
+msgctxt "@action:button"
+msgid "Import all as models"
+msgstr "Tuo kaikki malleina"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
+msgctxt "@title:window"
+msgid "Save Project"
+msgstr "Tallenna projekti"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
+msgctxt "@action:label"
+msgid "Extruder %1"
+msgstr "Suulake %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
+msgctxt "@action:label"
+msgid "%1 & material"
+msgstr "%1 & materiaali"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
+msgctxt "@action:label"
msgid "Material"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:54
-msgctxt "@label:category menu label"
-msgid "Favorites"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
+msgctxt "@action:label"
+msgid "Don't show project summary on save again"
+msgstr "Älä näytä projektin yhteenvetoa tallennettaessa"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
+msgctxt "@action:button"
+msgid "Save"
+msgstr "Tallenna"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
+msgctxt "@label %1 is filled in with the name of an extruder"
+msgid "Print Selected Model with %1"
+msgid_plural "Print Selected Models with %1"
+msgstr[0] "Tulosta valittu malli asetuksella %1"
+msgstr[1] "Tulosta valitut mallit asetuksella %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
+msgctxt "@text Print job name"
+msgid "Untitled"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:79
-msgctxt "@label:category menu label"
-msgid "Generic"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:13
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
msgctxt "@title:menu menubar:toplevel"
msgid "&File"
msgstr "Tie&dosto"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:41
-msgctxt "@title:menu menubar:file"
-msgid "&Save Project..."
-msgstr ""
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Edit"
+msgstr "&Muokkaa"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:74
-msgctxt "@title:menu menubar:file"
-msgid "&Export..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:85
-msgctxt "@action:inmenu menubar:file"
-msgid "Export Selection..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Open &Recent"
-msgstr "Avaa &viimeisin"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
-msgctxt "@label"
-msgid "Select configuration"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
-msgctxt "@label"
-msgid "Configurations"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
-msgctxt "@header"
-msgid "Configurations"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
-msgctxt "@header"
-msgid "Custom"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
-msgctxt "@label"
-msgid "Printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
-msgctxt "@label"
-msgid "Enabled"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
-msgctxt "@label"
-msgid "Material"
-msgstr "Materiaali"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
-msgctxt "@label"
-msgid "Use glue for better adhesion with this material combination."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
-msgctxt "@label"
-msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
-msgctxt "@label"
-msgid "Marketplace"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
-msgctxt "@label"
-msgid "Loading available configurations from the printer..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
-msgctxt "@label"
-msgid "The configurations are not available because the printer is disconnected."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:12
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
msgctxt "@title:menu menubar:toplevel"
msgid "&View"
msgstr "&Näytä"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:19
-msgctxt "@action:inmenu menubar:view"
-msgid "&Camera position"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:44
-msgctxt "@action:inmenu menubar:view"
-msgid "Camera view"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:47
-msgctxt "@action:inmenu menubar:view"
-msgid "Perspective"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:59
-msgctxt "@action:inmenu menubar:view"
-msgid "Orthographic"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:80
-msgctxt "@action:inmenu menubar:view"
-msgid "&Build plate"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:25
-msgctxt "@label:category menu label"
-msgid "Network enabled printers"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:42
-msgctxt "@label:category menu label"
-msgid "Local printers"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
-msgctxt "@action:inmenu"
-msgid "Visible Settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
-msgctxt "@action:inmenu"
-msgid "Collapse All Categories"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
-msgctxt "@action:inmenu"
-msgid "Manage Setting Visibility..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:13
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
msgctxt "@title:menu menubar:toplevel"
msgid "&Settings"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:15
-msgctxt "@title:menu menubar:settings"
-msgid "&Printer"
-msgstr "&Tulostin"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
+msgctxt "@title:menu menubar:toplevel"
+msgid "E&xtensions"
+msgstr "Laa&jennukset"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:29
-msgctxt "@title:menu"
-msgid "&Material"
-msgstr "&Materiaali"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
+msgctxt "@title:menu menubar:toplevel"
+msgid "P&references"
+msgstr "L&isäasetukset"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:44
-msgctxt "@action:inmenu"
-msgid "Set as Active Extruder"
-msgstr "Aseta aktiiviseksi suulakepuristimeksi"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Help"
+msgstr "&Ohje"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:50
-msgctxt "@action:inmenu"
-msgid "Enable Extruder"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
+msgctxt "@title:window"
+msgid "New project"
+msgstr "Uusi projekti"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
+msgctxt "@info:question"
+msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
+msgstr "Haluatko varmasti aloittaa uuden projektin? Se tyhjentää alustan ja kaikki tallentamattomat asetukset."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
+msgctxt "@action:button"
+msgid "Marketplace"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:57
-msgctxt "@action:inmenu"
-msgid "Disable Extruder"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
+msgctxt "@header"
+msgid "Configurations"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Save Project..."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
+msgctxt "@label"
+msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
+msgctxt "@label"
+msgid "Marketplace"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
+msgctxt "@label"
+msgid "Loading available configurations from the printer..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
+msgctxt "@label"
+msgid "The configurations are not available because the printer is disconnected."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
+msgctxt "@label"
+msgid "Select configuration"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
+msgctxt "@label"
+msgid "Configurations"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
+msgctxt "@header"
+msgid "Custom"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
+msgctxt "@label"
+msgid "Printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
+msgctxt "@label"
+msgid "Enabled"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
+msgctxt "@label"
+msgid "Material"
+msgstr "Materiaali"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407
+msgctxt "@label"
+msgid "Use glue for better adhesion with this material combination."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
msgctxt "@label"
msgid "Print Selected Model With:"
msgid_plural "Print Selected Models With:"
msgstr[0] "Tulosta valittu malli asetuksella:"
msgstr[1] "Tulosta valitut mallit asetuksella:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:116
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
msgctxt "@title:window"
msgid "Multiply Selected Model"
msgid_plural "Multiply Selected Models"
msgstr[0] "Kerro valittu malli"
msgstr[1] "Kerro valitut mallit"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:141
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
msgctxt "@label"
msgid "Number of Copies"
msgstr "Kopioiden määrä"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41
+msgctxt "@title:menu menubar:file"
+msgid "&Save Project..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74
+msgctxt "@title:menu menubar:file"
+msgid "&Export..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85
+msgctxt "@action:inmenu menubar:file"
+msgid "Export Selection..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
+msgctxt "@label:category menu label"
+msgid "Material"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
+msgctxt "@label:category menu label"
+msgid "Favorites"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
+msgctxt "@label:category menu label"
+msgid "Generic"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
msgctxt "@title:menu menubar:file"
msgid "Open File(s)..."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
-msgctxt "@label:header"
-msgid "Custom profiles"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
+msgctxt "@label:category menu label"
+msgid "Network enabled printers"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:564
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
+msgctxt "@label:category menu label"
+msgid "Local printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Open &Recent"
+msgstr "Avaa &viimeisin"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Save Project..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
+msgctxt "@title:menu menubar:settings"
+msgid "&Printer"
+msgstr "&Tulostin"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29
+msgctxt "@title:menu"
+msgid "&Material"
+msgstr "&Materiaali"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44
+msgctxt "@action:inmenu"
+msgid "Set as Active Extruder"
+msgstr "Aseta aktiiviseksi suulakepuristimeksi"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50
+msgctxt "@action:inmenu"
+msgid "Enable Extruder"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57
+msgctxt "@action:inmenu"
+msgid "Disable Extruder"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
+msgctxt "@action:inmenu"
+msgid "Visible Settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
+msgctxt "@action:inmenu"
+msgid "Collapse All Categories"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
+msgctxt "@action:inmenu"
+msgid "Manage Setting Visibility..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
+msgctxt "@action:inmenu menubar:view"
+msgid "&Camera position"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45
+msgctxt "@action:inmenu menubar:view"
+msgid "Camera view"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48
+msgctxt "@action:inmenu menubar:view"
+msgid "Perspective"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60
+msgctxt "@action:inmenu menubar:view"
+msgid "Orthographic"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81
+msgctxt "@action:inmenu menubar:view"
+msgid "&Build plate"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
+msgctxt "@label:MonitorStatus"
+msgid "Not connected to a printer"
+msgstr "Ei yhteyttä tulostimeen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
+msgctxt "@label:MonitorStatus"
+msgid "Printer does not accept commands"
+msgstr "Tulostin ei hyväksy komentoja"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
+msgctxt "@label:MonitorStatus"
+msgid "In maintenance. Please check the printer"
+msgstr "Huolletaan. Tarkista tulostin"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
+msgctxt "@label:MonitorStatus"
+msgid "Lost connection with the printer"
+msgstr "Yhteys tulostimeen menetetty"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
+msgctxt "@label:MonitorStatus"
+msgid "Printing..."
+msgstr "Tulostetaan..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
+msgctxt "@label:MonitorStatus"
+msgid "Paused"
+msgstr "Keskeytetty"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
+msgctxt "@label:MonitorStatus"
+msgid "Preparing..."
+msgstr "Valmistellaan..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
+msgctxt "@label:MonitorStatus"
+msgid "Please remove the print"
+msgstr "Poista tuloste"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326
+msgctxt "@label"
+msgid "Abort Print"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338
+msgctxt "@label"
+msgid "Are you sure you want to abort the print?"
+msgstr "Haluatko varmasti keskeyttää tulostuksen?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114
+msgctxt "@label"
+msgid "Is printed as support."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117
+msgctxt "@label"
+msgid "Other models overlapping with this model are modified."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120
+msgctxt "@label"
+msgid "Infill overlapping with this model is modified."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123
+msgctxt "@label"
+msgid "Overlaps with this model are not supported."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130
+msgctxt "@label %1 is the number of settings it overrides."
+msgid "Overrides %1 setting."
+msgid_plural "Overrides %1 settings."
+msgstr[0] ""
+msgstr[1] ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
+msgctxt "@label"
+msgid "Object list"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137
+msgctxt "@label"
+msgid "Interface"
+msgstr "Käyttöliittymä"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209
+msgctxt "@label"
+msgid "Currency:"
+msgstr "Valuutta:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222
+msgctxt "@label"
+msgid "Theme:"
+msgstr "Teema:"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267
+msgctxt "@label"
+msgid "You will need to restart the application for these changes to have effect."
+msgstr "Sovellus on käynnistettävä uudelleen, jotta nämä muutokset tulevat voimaan."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284
+msgctxt "@info:tooltip"
+msgid "Slice automatically when changing settings."
+msgstr "Viipaloi automaattisesti, kun asetuksia muutetaan."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292
+msgctxt "@option:check"
+msgid "Slice automatically"
+msgstr "Viipaloi automaattisesti"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306
+msgctxt "@label"
+msgid "Viewport behavior"
+msgstr "Näyttöikkunan käyttäytyminen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314
+msgctxt "@info:tooltip"
+msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
+msgstr "Korosta mallin vailla tukea olevat alueet punaisella. Ilman tukea nämä alueet eivät tulostu kunnolla."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323
+msgctxt "@option:check"
+msgid "Display overhang"
+msgstr "Näytä uloke"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333
+msgctxt "@info:tooltip"
+msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342
+msgctxt "@option:check"
+msgid "Display model errors"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350
+msgctxt "@info:tooltip"
+msgid "Moves the camera so the model is in the center of the view when a model is selected"
+msgstr "Siirtää kameraa siten, että valittuna oleva malli on näkymän keskellä."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355
+msgctxt "@action:button"
+msgid "Center camera when item is selected"
+msgstr "Keskitä kamera kun kohde on valittu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365
+msgctxt "@info:tooltip"
+msgid "Should the default zoom behavior of cura be inverted?"
+msgstr "Pitääkö Curan oletusarvoinen zoom-toimintatapa muuttaa päinvastaiseksi?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370
+msgctxt "@action:button"
+msgid "Invert the direction of camera zoom."
+msgstr "Käännä kameran zoomin suunta päinvastaiseksi."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid "Should zooming move in the direction of the mouse?"
+msgstr "Tuleeko zoomauksen siirtyä hiiren suuntaan?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid "Zooming towards the mouse is not supported in the orthographic perspective."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391
+msgctxt "@action:button"
+msgid "Zoom toward mouse direction"
+msgstr "Zoomaa hiiren suuntaan"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417
+msgctxt "@info:tooltip"
+msgid "Should models on the platform be moved so that they no longer intersect?"
+msgstr "Pitäisikö alustalla olevia malleja siirtää niin, etteivät ne enää leikkaa toisiaan?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422
+msgctxt "@option:check"
+msgid "Ensure models are kept apart"
+msgstr "Varmista, että mallit ovat erillään"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431
+msgctxt "@info:tooltip"
+msgid "Should models on the platform be moved down to touch the build plate?"
+msgstr "Pitäisikö tulostusalueella olevia malleja siirtää alas niin, että ne koskettavat tulostusalustaa?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436
+msgctxt "@option:check"
+msgid "Automatically drop models to the build plate"
+msgstr "Pudota mallit automaattisesti alustalle"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448
+msgctxt "@info:tooltip"
+msgid "Show caution message in g-code reader."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457
+msgctxt "@option:check"
+msgid "Caution message in g-code reader"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465
+msgctxt "@info:tooltip"
+msgid "Should layer be forced into compatibility mode?"
+msgstr "Pakotetaanko kerros yhteensopivuustilaan?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470
+msgctxt "@option:check"
+msgid "Force layer view compatibility mode (restart required)"
+msgstr "Pakota kerrosnäkymän yhteensopivuustila (vaatii uudelleenkäynnistyksen)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480
+msgctxt "@info:tooltip"
+msgid "Should Cura open at the location it was closed?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485
+msgctxt "@option:check"
+msgid "Restore window position on start"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495
+msgctxt "@info:tooltip"
+msgid "What type of camera rendering should be used?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502
+msgctxt "@window:text"
+msgid "Camera rendering:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509
+msgid "Perspective"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510
+msgid "Orthographic"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548
+msgctxt "@label"
+msgid "Opening and saving files"
+msgstr "Tiedostojen avaaminen ja tallentaminen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555
+msgctxt "@info:tooltip"
+msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560
+msgctxt "@option:check"
+msgid "Use a single instance of Cura"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570
+msgctxt "@info:tooltip"
+msgid "Should models be scaled to the build volume if they are too large?"
+msgstr "Pitäisikö mallit skaalata tulostustilavuuteen, jos ne ovat liian isoja?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
+msgctxt "@option:check"
+msgid "Scale large models"
+msgstr "Skaalaa suuret mallit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585
+msgctxt "@info:tooltip"
+msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
+msgstr "Malli voi vaikuttaa erittäin pieneltä, jos sen koko on ilmoitettu esimerkiksi metreissä eikä millimetreissä. Pitäisikö nämä mallit suurentaa?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
+msgctxt "@option:check"
+msgid "Scale extremely small models"
+msgstr "Skaalaa erittäin pienet mallit"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600
+msgctxt "@info:tooltip"
+msgid "Should models be selected after they are loaded?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605
+msgctxt "@option:check"
+msgid "Select models when loaded"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615
+msgctxt "@info:tooltip"
+msgid "Should a prefix based on the printer name be added to the print job name automatically?"
+msgstr "Pitäisikö tulostustyön nimeen lisätä automaattisesti tulostimen nimeen perustuva etuliite?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
+msgctxt "@option:check"
+msgid "Add machine prefix to job name"
+msgstr "Lisää laitteen etuliite työn nimeen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630
+msgctxt "@info:tooltip"
+msgid "Should a summary be shown when saving a project file?"
+msgstr "Näytetäänkö yhteenveto, kun projektitiedosto tallennetaan?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634
+msgctxt "@option:check"
+msgid "Show summary dialog when saving project"
+msgstr "Näytä yhteenvetoikkuna, kun projekti tallennetaan"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644
+msgctxt "@info:tooltip"
+msgid "Default behavior when opening a project file"
+msgstr "Projektitiedoston avaamisen oletustoimintatapa"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652
+msgctxt "@window:text"
+msgid "Default behavior when opening a project file: "
+msgstr "Projektitiedoston avaamisen oletustoimintatapa: "
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666
+msgctxt "@option:openProject"
+msgid "Always ask me this"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667
+msgctxt "@option:openProject"
+msgid "Always open as a project"
+msgstr "Avaa aina projektina"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668
+msgctxt "@option:openProject"
+msgid "Always import models"
+msgstr "Tuo mallit aina"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705
+msgctxt "@info:tooltip"
+msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
+msgstr "Kun olet tehnyt muutokset profiiliin ja vaihtanut toiseen, näytetään valintaikkuna, jossa kysytään, haluatko säilyttää vai hylätä muutokset. Tässä voit myös valita oletuskäytöksen, jolloin valintaikkunaa ei näytetä uudelleen."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
+msgctxt "@label"
+msgid "Profiles"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719
+msgctxt "@window:text"
+msgid "Default behavior for changed setting values when switching to a different profile: "
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734
+msgctxt "@option:discardOrKeep"
+msgid "Always discard changed settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735
+msgctxt "@option:discardOrKeep"
+msgid "Always transfer changed settings to new profile"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770
+msgctxt "@label"
+msgid "Privacy"
+msgstr "Tietosuoja"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777
+msgctxt "@info:tooltip"
+msgid "Should Cura check for updates when the program is started?"
+msgstr "Pitäisikö Curan tarkistaa saatavilla olevat päivitykset, kun ohjelma käynnistetään?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782
+msgctxt "@option:check"
+msgid "Check for updates on start"
+msgstr "Tarkista päivitykset käynnistettäessä"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792
+msgctxt "@info:tooltip"
+msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
+msgstr "Pitäisikö anonyymejä tietoja tulosteesta lähettää Ultimakerille? Huomaa, että malleja, IP-osoitteita tai muita henkilökohtaisia tietoja ei lähetetä eikä tallenneta."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797
+msgctxt "@option:check"
+msgid "Send (anonymous) print information"
+msgstr "Lähetä (anonyymit) tulostustiedot"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806
+msgctxt "@action:button"
+msgid "More information"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
+msgctxt "@action:button"
+msgid "Activate"
+msgstr "Aktivoi"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
+msgctxt "@action:button"
+msgid "Rename"
+msgstr "Nimeä uudelleen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
+msgctxt "@action:button"
+msgid "Create"
+msgstr "Luo"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
+msgctxt "@action:button"
+msgid "Duplicate"
+msgstr "Jäljennös"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
+msgctxt "@action:button"
+msgid "Import"
+msgstr "Tuo"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
+msgctxt "@action:button"
+msgid "Export"
+msgstr "Vie"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199
+msgctxt "@action:button Sending materials to printers"
+msgid "Sync with Printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248
+msgctxt "@action:label"
+msgid "Printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277
+msgctxt "@title:window"
+msgid "Confirm Remove"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278
+msgctxt "@label (%1 is object name)"
+msgid "Are you sure you wish to remove %1? This cannot be undone!"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337
+msgctxt "@title:window"
+msgid "Import Material"
+msgstr "Tuo materiaali"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid "Could not import material %1: %2"
+msgstr "Materiaalin tuominen epäonnistui: %1: %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully imported material %1"
+msgstr "Materiaalin tuominen onnistui: %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368
+msgctxt "@title:window"
+msgid "Export Material"
+msgstr "Vie materiaali"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372
+msgctxt "@info:status Don't translate the XML tags and !"
+msgid "Failed to export material to %1: %2"
+msgstr "Materiaalin vieminen epäonnistui kohteeseen %1: %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully exported material to %1"
+msgstr "Materiaalin vieminen onnistui kohteeseen %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388
+msgctxt "@title:window"
+msgid "Export All Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
+msgctxt "@title"
+msgid "Information"
+msgstr "Tiedot"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
+msgctxt "@title:window"
+msgid "Confirm Diameter Change"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
+msgctxt "@label (%1 is a number)"
+msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
+msgctxt "@label"
+msgid "Display Name"
+msgstr "Näytä nimi"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
+msgctxt "@label"
+msgid "Material Type"
+msgstr "Materiaalin tyyppi"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
+msgctxt "@label"
+msgid "Color"
+msgstr "Väri"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
+msgctxt "@label"
+msgid "Properties"
+msgstr "Ominaisuudet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
+msgctxt "@label"
+msgid "Density"
+msgstr "Tiheys"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
+msgctxt "@label"
+msgid "Diameter"
+msgstr "Läpimitta"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
+msgctxt "@label"
+msgid "Filament Cost"
+msgstr "Tulostuslangan hinta"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
+msgctxt "@label"
+msgid "Filament weight"
+msgstr "Tulostuslangan paino"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
+msgctxt "@label"
+msgid "Filament length"
+msgstr "Tulostuslangan pituus"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
+msgctxt "@label"
+msgid "Cost per Meter"
+msgstr "Hinta metriä kohden"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
+msgctxt "@label"
+msgid "This material is linked to %1 and shares some of its properties."
+msgstr "Materiaali on linkitetty kohteeseen %1 ja niillä on joitain samoja ominaisuuksia."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
+msgctxt "@label"
+msgid "Unlink Material"
+msgstr "Poista materiaalin linkitys"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
+msgctxt "@label"
+msgid "Description"
+msgstr "Kuvaus"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
+msgctxt "@label"
+msgid "Adhesion Information"
+msgstr "Tarttuvuustiedot"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
+msgctxt "@label"
+msgid "Print settings"
+msgstr "Tulostusasetukset"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
+msgctxt "@label"
+msgid "Create"
+msgstr "Luo"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
+msgctxt "@label"
+msgid "Duplicate"
+msgstr "Jäljennös"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
+msgctxt "@title:window"
+msgid "Create Profile"
+msgstr "Luo profiili"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
+msgctxt "@info"
+msgid "Please provide a name for this profile."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263
+msgctxt "@title:window"
+msgid "Duplicate Profile"
+msgstr "Monista profiili"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294
+msgctxt "@title:window"
+msgid "Rename Profile"
+msgstr "Nimeä profiili uudelleen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307
+msgctxt "@title:window"
+msgid "Import Profile"
+msgstr "Profiilin tuonti"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336
+msgctxt "@title:window"
+msgid "Export Profile"
+msgstr "Profiilin vienti"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399
+msgctxt "@label %1 is printer name"
+msgid "Printer: %1"
+msgstr "Tulostin: %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557
+msgctxt "@action:button"
+msgid "Update profile with current settings/overrides"
+msgstr "Päivitä nykyiset asetukset tai ohitukset profiiliin"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
msgctxt "@action:button"
msgid "Discard current changes"
msgstr "Hylkää tehdyt muutokset"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583
+msgctxt "@action:label"
+msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
+msgstr "Tässä profiilissa käytetään tulostimen oletusarvoja, joten siinä ei ole alla olevan listan asetuksia tai ohituksia."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591
+msgctxt "@action:label"
+msgid "Your current settings match the selected profile."
+msgstr "Nykyiset asetukset vastaavat valittua profiilia."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609
+msgctxt "@title:tab"
+msgid "Global Settings"
+msgstr "Yleiset asetukset"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
+msgctxt "@info:status"
+msgid "Calculated"
+msgstr "Laskettu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
+msgctxt "@title:column"
+msgid "Setting"
+msgstr "Asetus"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
+msgctxt "@title:column"
+msgid "Profile"
+msgstr "Profiili"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
+msgctxt "@title:column"
+msgid "Current"
+msgstr "Nykyinen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
+msgctxt "@title:column"
+msgid "Unit"
+msgstr "Yksikkö"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16
+msgctxt "@title:tab"
+msgid "Setting Visibility"
+msgstr "Näkyvyyden asettaminen"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48
+msgctxt "@label:textbox"
+msgid "Check all"
+msgstr "Tarkista kaikki"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+msgctxt "@label"
+msgid "Extruder"
+msgstr "Suulake"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
+msgctxt "@tooltip"
+msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
+msgstr "Kuuman pään kohdelämpötila. Kuuma pää lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, kuuman pään lämmitys sammutetaan."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
+msgctxt "@tooltip"
+msgid "The current temperature of this hotend."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the hotend to."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
+msgctxt "@button Cancel pre-heating"
+msgid "Cancel"
+msgstr "Peruuta"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+msgctxt "@button"
+msgid "Pre-heat"
+msgstr "Esilämmitä"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
+msgctxt "@tooltip of pre-heat"
+msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
+msgctxt "@tooltip"
+msgid "The colour of the material in this extruder."
+msgstr "Tämän suulakkeen materiaalin väri."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
+msgctxt "@tooltip"
+msgid "The material in this extruder."
+msgstr "Tämän suulakkeen materiaali."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
+msgctxt "@tooltip"
+msgid "The nozzle inserted in this extruder."
+msgstr "Tähän suulakkeeseen liitetty suutin."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+msgctxt "@label"
+msgid "Build plate"
+msgstr "Alusta"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
+msgctxt "@tooltip"
+msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
+msgstr "Lämmitettävän pöydän kohdelämpötila. Pöytä lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, pöydän lämmitys sammutetaan."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
+msgctxt "@tooltip"
+msgid "The current temperature of the heated bed."
+msgstr "Lämmitettävän pöydän nykyinen lämpötila."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the bed to."
+msgstr "Lämmitettävän pöydän esilämmityslämpötila."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
+msgctxt "@tooltip of pre-heat"
+msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
+msgstr "Lämmitä pöytä ennen tulostusta. Voit edelleen säätää tulostinta sen lämmitessä, eikä sinun tarvitse odottaa pöydän lämpiämistä, kun olet valmis tulostamaan."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+msgctxt "@label"
+msgid "Printer control"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+msgctxt "@label"
+msgid "Jog Position"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+msgctxt "@label"
+msgid "X/Y"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
+msgctxt "@label"
+msgid "Z"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
+msgctxt "@label"
+msgid "Jog Distance"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
+msgctxt "@label"
+msgid "Send G-code"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
+msgctxt "@tooltip of G-code command input"
+msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
+msgctxt "@info:status"
+msgid "The printer is not connected."
+msgstr "Tulostinta ei ole yhdistetty."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
+msgctxt "@status"
+msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
+msgctxt "@status"
+msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
+msgctxt "@status"
+msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
+msgctxt "@status"
+msgid "The cloud connection is currently unavailable. Please check your internet connection."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
+msgctxt "@button"
+msgid "Add printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
+msgctxt "@button"
+msgid "Manage printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Connected printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Preset printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
+msgctxt "@label"
+msgid "Active print"
+msgstr "Aktiivinen tulostustyö"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
+msgctxt "@label"
+msgid "Job Name"
+msgstr "Työn nimi"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
+msgctxt "@label"
+msgid "Printing Time"
+msgstr "Tulostusaika"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
+msgctxt "@label"
+msgid "Estimated time left"
+msgstr "Aikaa jäljellä arviolta"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
msgctxt "@label"
msgid "Profile"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
msgctxt "@tooltip"
msgid ""
"Some setting/override values are different from the values stored in the profile.\n"
@@ -3395,1617 +5023,84 @@ msgstr ""
"\n"
"Avaa profiilin hallinta napsauttamalla."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
-msgctxt "@label:Should be short"
-msgid "On"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
+msgctxt "@label:header"
+msgid "Custom profiles"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
-msgctxt "@label:Should be short"
-msgid "Off"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
-msgctxt "@label"
-msgid "Experimental"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
-msgctxt "@button"
-msgid "Recommended"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
-msgctxt "@button"
-msgid "Custom"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
-msgctxt "@label"
-msgid "Print settings"
-msgstr "Tulostusasetukset"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
-msgctxt "@label shown when we load a Gcode file"
-msgid "Print setup disabled. G-code file can not be modified."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
-msgctxt "@label"
-msgid "Gradual infill"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
-msgctxt "@label"
-msgid "Gradual infill will gradually increase the amount of infill towards the top."
-msgstr "Asteittainen täyttö lisää täytön tiheyttä vähitellen yläosaa kohti."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:728
-msgctxt "@label"
-msgid "Profiles"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
-msgctxt "@tooltip"
-msgid "You have modified some profile settings. If you want to change these go to custom mode."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
-msgctxt "@label"
-msgid "Support"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
-msgctxt "@label"
-msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
-msgstr "Muodosta rakenteita, jotka tukevat mallin ulokkeita sisältäviä osia. Ilman tukirakenteita kyseiset osat luhistuvat tulostuksen aikana."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
-msgctxt "@label"
-msgid "Adhesion"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
-msgctxt "@label"
-msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
-msgstr "Ota reunuksen tai pohjaristikon tulostus käyttöön. Tämä lisää kappaleen ympärille tai alle tasaisen alueen, joka on helppo leikata pois myöhemmin."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
msgstr[0] ""
msgstr[1] ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Widgets/ComboBox.qml:24
-msgctxt "@label"
-msgid "No items to select from"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
+msgctxt "@label shown when we load a Gcode file"
+msgid "Print setup disabled. G-code file can not be modified."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:140
-msgctxt "@label"
-msgid "Active print"
-msgstr "Aktiivinen tulostustyö"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:148
-msgctxt "@label"
-msgid "Job Name"
-msgstr "Työn nimi"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:156
-msgctxt "@label"
-msgid "Printing Time"
-msgstr "Tulostusaika"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:164
-msgctxt "@label"
-msgid "Estimated time left"
-msgstr "Aikaa jäljellä arviolta"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
-msgctxt "@title:window"
-msgid "Discard or Keep changes"
-msgstr "Hylkää tai säilytä muutokset"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
-msgctxt "@text:window, %1 is a profile name"
-msgid ""
-"You have customized some profile settings.\n"
-"Would you like to Keep these changed settings after switching profiles?\n"
-"Alternatively, you can discard the changes to load the defaults from '%1'."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
-msgctxt "@title:column"
-msgid "Profile settings"
-msgstr "Profiilin asetukset"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
-msgctxt "@title:column"
-msgid "Current changes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:747
-msgctxt "@option:discardOrKeep"
-msgid "Always ask me this"
-msgstr "Kysy aina"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
-msgctxt "@option:discardOrKeep"
-msgid "Discard and never ask again"
-msgstr "Hylkää äläkä kysy uudelleen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
-msgctxt "@option:discardOrKeep"
-msgid "Keep and never ask again"
-msgstr "Säilytä äläkä kysy uudelleen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
-msgctxt "@action:button"
-msgid "Discard changes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
-msgctxt "@action:button"
-msgid "Keep changes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:15
-msgctxt "@title:window The argument is the application name."
-msgid "About %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:57
-msgctxt "@label"
-msgid "version: %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:72
-msgctxt "@label"
-msgid "End-to-end solution for fused filament 3D printing."
-msgstr "Kokonaisvaltainen sulatettavan tulostuslangan 3D-tulostusratkaisu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:85
-msgctxt "@info:credit"
-msgid ""
-"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
-"Cura proudly uses the following open source projects:"
-msgstr ""
-"Cura-ohjelman on kehittänyt Ultimaker B.V. yhteistyössä käyttäjäyhteisön kanssa.\n"
-"Cura hyödyntää seuraavia avoimeen lähdekoodiin perustuvia projekteja:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:135
-msgctxt "@label"
-msgid "Graphical user interface"
-msgstr "Graafinen käyttöliittymä"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:136
-msgctxt "@label"
-msgid "Application framework"
-msgstr "Sovelluskehys"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:137
-msgctxt "@label"
-msgid "G-code generator"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:138
-msgctxt "@label"
-msgid "Interprocess communication library"
-msgstr "Prosessien välinen tietoliikennekirjasto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:140
-msgctxt "@label"
-msgid "Programming language"
-msgstr "Ohjelmointikieli"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:141
-msgctxt "@label"
-msgid "GUI framework"
-msgstr "GUI-kehys"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:142
-msgctxt "@label"
-msgid "GUI framework bindings"
-msgstr "GUI-kehyksen sidonnat"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:143
-msgctxt "@label"
-msgid "C/C++ Binding library"
-msgstr "C/C++ -sidontakirjasto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:144
-msgctxt "@label"
-msgid "Data interchange format"
-msgstr "Data Interchange Format"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:145
-msgctxt "@label"
-msgid "Support library for scientific computing"
-msgstr "Tieteellisen laskennan tukikirjasto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:146
-msgctxt "@label"
-msgid "Support library for faster math"
-msgstr "Nopeamman laskennan tukikirjasto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:147
-msgctxt "@label"
-msgid "Support library for handling STL files"
-msgstr "STL-tiedostojen käsittelyn tukikirjasto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:148
-msgctxt "@label"
-msgid "Support library for handling planar objects"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:149
-msgctxt "@label"
-msgid "Support library for handling triangular meshes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:150
-msgctxt "@label"
-msgid "Support library for handling 3MF files"
-msgstr "Tukikirjasto 3MF-tiedostojen käsittelyyn"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:151
-msgctxt "@label"
-msgid "Support library for file metadata and streaming"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:152
-msgctxt "@label"
-msgid "Serial communication library"
-msgstr "Sarjatietoliikennekirjasto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:153
-msgctxt "@label"
-msgid "ZeroConf discovery library"
-msgstr "ZeroConf-etsintäkirjasto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:154
-msgctxt "@label"
-msgid "Polygon clipping library"
-msgstr "Monikulmion leikkauskirjasto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:155
-msgctxt "@Label"
-msgid "Static type checker for Python"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:156
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:157
-msgctxt "@Label"
-msgid "Root Certificates for validating SSL trustworthiness"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:158
-msgctxt "@Label"
-msgid "Python Error tracking library"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:159
-msgctxt "@label"
-msgid "Polygon packing library, developed by Prusa Research"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:160
-msgctxt "@label"
-msgid "Python bindings for libnest2d"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:161
-msgctxt "@label"
-msgid "Support library for system keyring access"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:162
-msgctxt "@label"
-msgid "Python extensions for Microsoft Windows"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:163
-msgctxt "@label"
-msgid "Font"
-msgstr "Fontti"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:164
-msgctxt "@label"
-msgid "SVG icons"
-msgstr "SVG-kuvakkeet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:165
-msgctxt "@label"
-msgid "Linux cross-distribution application deployment"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:627
-msgctxt "@title:window"
-msgid "Open file(s)"
-msgstr "Avaa tiedosto(t)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
-msgctxt "@text:window"
-msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
-msgstr "Löysimme vähintään yhden projektitiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden projektitiedoston kerrallaan. Suosittelemme, että tuot vain malleja niistä tiedostoista. Haluatko jatkaa?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
-msgctxt "@action:button"
-msgid "Import all as models"
-msgstr "Tuo kaikki malleina"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
-msgctxt "@title:window"
-msgid "Save Project"
-msgstr "Tallenna projekti"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
-msgctxt "@action:label"
-msgid "Extruder %1"
-msgstr "Suulake %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
-msgctxt "@action:label"
-msgid "%1 & material"
-msgstr "%1 & materiaali"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
-msgctxt "@action:label"
-msgid "Material"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
-msgctxt "@action:label"
-msgid "Don't show project summary on save again"
-msgstr "Älä näytä projektin yhteenvetoa tallennettaessa"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
-msgctxt "@action:button"
-msgid "Save"
-msgstr "Tallenna"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
-msgctxt "@title:window"
-msgid "Open project file"
-msgstr "Avaa projektitiedosto"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
-msgctxt "@text:window"
-msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
-msgstr "Tämä on Cura-projektitiedosto. Haluatko avata sen projektina vai tuoda siinä olevat mallit?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
-msgctxt "@text:window"
-msgid "Remember my choice"
-msgstr "Muista valintani"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
-msgctxt "@action:button"
-msgid "Open as project"
-msgstr "Avaa projektina"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
-msgctxt "@action:button"
-msgid "Import models"
-msgstr "Tuo mallit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/JobSpecs.qml:99
-msgctxt "@text Print job name"
-msgid "Untitled"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
-msgctxt "@label"
-msgid "Welcome to Ultimaker Cura"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
-msgctxt "@text"
-msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
msgctxt "@button"
-msgid "Get started"
+msgid "Recommended"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
-msgctxt "@label"
-msgid "Empty"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
-msgctxt "@label"
-msgid "Help us to improve Ultimaker Cura"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
-msgctxt "@text"
-msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
-msgctxt "@text"
-msgid "Machine types"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
-msgctxt "@text"
-msgid "Material usage"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
-msgctxt "@text"
-msgid "Number of slices"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
-msgctxt "@text"
-msgid "Print settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
-msgctxt "@text"
-msgid "Data collected by Ultimaker Cura will not contain any personal information."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
-msgctxt "@text"
-msgid "More information"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
-msgctxt "@label"
-msgid "Add printer by IP address"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
-msgctxt "@text"
-msgid "Enter your printer's IP address."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
msgctxt "@button"
-msgid "Add"
+msgid "Custom"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
+msgctxt "@label:Should be short"
+msgid "On"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
+msgctxt "@label:Should be short"
+msgid "Off"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
msgctxt "@label"
-msgid "Could not connect to device."
+msgid "Experimental"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
msgctxt "@label"
-msgid "Can't connect to your Ultimaker printer?"
+msgid "Adhesion"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
msgctxt "@label"
-msgid "The printer at this address has not responded yet."
-msgstr ""
+msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
+msgstr "Ota reunuksen tai pohjaristikon tulostus käyttöön. Tämä lisää kappaleen ympärille tai alle tasaisen alueen, joka on helppo leikata pois myöhemmin."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
msgctxt "@label"
-msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
+msgid "Gradual infill"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
-msgctxt "@button"
-msgid "Back"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
-msgctxt "@button"
-msgid "Connect"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
msgctxt "@label"
-msgid "Add a printer"
+msgid "Gradual infill will gradually increase the amount of infill towards the top."
+msgstr "Asteittainen täyttö lisää täytön tiheyttä vähitellen yläosaa kohti."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
+msgctxt "@tooltip"
+msgid "You have modified some profile settings. If you want to change these go to custom mode."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
msgctxt "@label"
-msgid "Add a networked printer"
+msgid "Support"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
msgctxt "@label"
-msgid "Add a non-networked printer"
-msgstr ""
+msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
+msgstr "Muodosta rakenteita, jotka tukevat mallin ulokkeita sisältäviä osia. Ilman tukirakenteita kyseiset osat luhistuvat tulostuksen aikana."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
-msgctxt "@label"
-msgid "What's New"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
-msgctxt "@label"
-msgid "Add a Cloud printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
-msgctxt "@label"
-msgid "Waiting for Cloud response"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
-msgctxt "@label"
-msgid "No printers found in your account?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
-msgctxt "@label"
-msgid "The following printers in your account have been added in Cura:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
-msgctxt "@button"
-msgid "Add printer manually"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:64
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:20
-msgctxt "@label"
-msgid "Sign in to the Ultimaker platform"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:124
-msgctxt "@text"
-msgid "Add material settings and plugins from the Marketplace"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:154
-msgctxt "@text"
-msgid "Backup and sync your material settings and plugins"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:184
-msgctxt "@text"
-msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:217
-msgctxt "@text"
-msgid "Create a free Ultimaker Account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:230
-msgctxt "@button"
-msgid "Skip"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
-msgctxt "@label"
-msgid "User Agreement"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
-msgctxt "@button"
-msgid "Decline and close"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
-msgctxt "@label"
-msgid "Release Notes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
-msgctxt "@label"
-msgid "There is no printer found over your network."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
-msgctxt "@label"
-msgid "Refresh"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
-msgctxt "@label"
-msgid "Add printer by IP"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
-msgctxt "@label"
-msgid "Add cloud printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
-msgctxt "@label"
-msgid "Troubleshooting"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
-msgctxt "@label"
-msgid "Manufacturer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
-msgctxt "@label"
-msgid "Profile author"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
-msgctxt "@label"
-msgid "Printer name"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
-msgctxt "@text"
-msgid "Please name your printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:81
-msgctxt "@label The argument is a timestamp"
-msgid "Last update: %1"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:109
-msgctxt "@button"
-msgid "Ultimaker Account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:125
-msgctxt "@button"
-msgid "Sign Out"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:42
-msgctxt "@text"
-msgid ""
-"- Add material profiles and plug-ins from the Marketplace\n"
-"- Back-up and sync your material profiles and plug-ins\n"
-"- Share ideas and get help from 48,000+ users in the Ultimaker community"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:62
-msgctxt "@button"
-msgid "Create a free Ultimaker account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/AccountWidget.qml:24
-msgctxt "@action:button"
-msgid "Sign in"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:28
-msgctxt "@label"
-msgid "Checking..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:35
-msgctxt "@label"
-msgid "Account synced"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:42
-msgctxt "@label"
-msgid "Something went wrong..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:96
-msgctxt "@button"
-msgid "Install pending updates"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:118
-msgctxt "@button"
-msgid "Check for account updates"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectSelector.qml:59
-msgctxt "@label"
-msgid "Object list"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:82
-msgctxt "@action:inmenu"
-msgid "Show Online Troubleshooting Guide"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:89
-msgctxt "@action:inmenu"
-msgid "Toggle Full Screen"
-msgstr "Vaihda koko näyttöön"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:97
-msgctxt "@action:inmenu"
-msgid "Exit Full Screen"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:104
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Undo"
-msgstr "&Kumoa"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:114
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Redo"
-msgstr "Tee &uudelleen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:124
-msgctxt "@action:inmenu menubar:file"
-msgid "&Quit"
-msgstr "&Lopeta"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:132
-msgctxt "@action:inmenu menubar:view"
-msgid "3D View"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:139
-msgctxt "@action:inmenu menubar:view"
-msgid "Front View"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:146
-msgctxt "@action:inmenu menubar:view"
-msgid "Top View"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:153
-msgctxt "@action:inmenu menubar:view"
-msgid "Left Side View"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:160
-msgctxt "@action:inmenu menubar:view"
-msgid "Right Side View"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:167
-msgctxt "@action:inmenu"
-msgid "Configure Cura..."
-msgstr "Määritä Curan asetukset..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:174
-msgctxt "@action:inmenu menubar:printer"
-msgid "&Add Printer..."
-msgstr "L&isää tulostin..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:180
-msgctxt "@action:inmenu menubar:printer"
-msgid "Manage Pr&inters..."
-msgstr "Tulostinten &hallinta..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:187
-msgctxt "@action:inmenu"
-msgid "Manage Materials..."
-msgstr "Hallitse materiaaleja..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:195
-msgctxt "@action:inmenu"
-msgid "Add more materials from Marketplace"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:202
-msgctxt "@action:inmenu menubar:profile"
-msgid "&Update profile with current settings/overrides"
-msgstr "&Päivitä nykyiset asetukset tai ohitukset profiiliin"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:210
-msgctxt "@action:inmenu menubar:profile"
-msgid "&Discard current changes"
-msgstr "&Hylkää tehdyt muutokset"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:222
-msgctxt "@action:inmenu menubar:profile"
-msgid "&Create profile from current settings/overrides..."
-msgstr "&Luo profiili nykyisten asetusten tai ohitusten perusteella..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:228
-msgctxt "@action:inmenu menubar:profile"
-msgid "Manage Profiles..."
-msgstr "Profiilien hallinta..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:236
-msgctxt "@action:inmenu menubar:help"
-msgid "Show Online &Documentation"
-msgstr "Näytä sähköinen &dokumentaatio"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:244
-msgctxt "@action:inmenu menubar:help"
-msgid "Report a &Bug"
-msgstr "Ilmoita &virheestä"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:252
-msgctxt "@action:inmenu menubar:help"
-msgid "What's New"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:258
-msgctxt "@action:inmenu menubar:help"
-msgid "About..."
-msgstr "Tietoja..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:265
-msgctxt "@action:inmenu menubar:edit"
-msgid "Delete Selected"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:275
-msgctxt "@action:inmenu menubar:edit"
-msgid "Center Selected"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:284
-msgctxt "@action:inmenu menubar:edit"
-msgid "Multiply Selected"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:293
-msgctxt "@action:inmenu"
-msgid "Delete Model"
-msgstr "Poista malli"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:301
-msgctxt "@action:inmenu"
-msgid "Ce&nter Model on Platform"
-msgstr "Ke&skitä malli alustalle"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:307
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Group Models"
-msgstr "&Ryhmittele mallit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:327
-msgctxt "@action:inmenu menubar:edit"
-msgid "Ungroup Models"
-msgstr "Poista mallien ryhmitys"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:337
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Merge Models"
-msgstr "&Yhdistä mallit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:347
-msgctxt "@action:inmenu"
-msgid "&Multiply Model..."
-msgstr "&Kerro malli..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:354
-msgctxt "@action:inmenu menubar:edit"
-msgid "Select All Models"
-msgstr "Valitse kaikki mallit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:364
-msgctxt "@action:inmenu menubar:edit"
-msgid "Clear Build Plate"
-msgstr "Tyhjennä tulostusalusta"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:374
-msgctxt "@action:inmenu menubar:file"
-msgid "Reload All Models"
-msgstr "Lataa kaikki mallit uudelleen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:383
-msgctxt "@action:inmenu menubar:edit"
-msgid "Arrange All Models To All Build Plates"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:390
-msgctxt "@action:inmenu menubar:edit"
-msgid "Arrange All Models"
-msgstr "Järjestä kaikki mallit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:398
-msgctxt "@action:inmenu menubar:edit"
-msgid "Arrange Selection"
-msgstr "Järjestä valinta"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:405
-msgctxt "@action:inmenu menubar:edit"
-msgid "Reset All Model Positions"
-msgstr "Määritä kaikkien mallien positiot uudelleen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:412
-msgctxt "@action:inmenu menubar:edit"
-msgid "Reset All Model Transformations"
-msgstr "Määritä kaikkien mallien muutokset uudelleen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:421
-msgctxt "@action:inmenu menubar:file"
-msgid "&Open File(s)..."
-msgstr "&Avaa tiedosto(t)..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:431
-msgctxt "@action:inmenu menubar:file"
-msgid "&New Project..."
-msgstr "&Uusi projekti..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:438
-msgctxt "@action:inmenu menubar:help"
-msgid "Show Configuration Folder"
-msgstr "Näytä määrityskansio"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:445
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:538
-msgctxt "@action:menu"
-msgid "Configure setting visibility..."
-msgstr "Määritä asetusten näkyvyys..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:452
-msgctxt "@action:menu"
-msgid "&Marketplace"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:61
-msgctxt "@info:status"
-msgid "Calculated"
-msgstr "Laskettu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:75
-msgctxt "@title:column"
-msgid "Setting"
-msgstr "Asetus"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:82
-msgctxt "@title:column"
-msgid "Profile"
-msgstr "Profiili"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:89
-msgctxt "@title:column"
-msgid "Current"
-msgstr "Nykyinen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:97
-msgctxt "@title:column"
-msgid "Unit"
-msgstr "Yksikkö"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
-msgctxt "@title"
-msgid "Information"
-msgstr "Tiedot"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
-msgctxt "@title:window"
-msgid "Confirm Diameter Change"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
-msgctxt "@label (%1 is a number)"
-msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
-msgctxt "@label"
-msgid "Display Name"
-msgstr "Näytä nimi"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
-msgctxt "@label"
-msgid "Material Type"
-msgstr "Materiaalin tyyppi"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
-msgctxt "@label"
-msgid "Color"
-msgstr "Väri"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
-msgctxt "@label"
-msgid "Properties"
-msgstr "Ominaisuudet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
-msgctxt "@label"
-msgid "Density"
-msgstr "Tiheys"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
-msgctxt "@label"
-msgid "Diameter"
-msgstr "Läpimitta"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
-msgctxt "@label"
-msgid "Filament Cost"
-msgstr "Tulostuslangan hinta"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
-msgctxt "@label"
-msgid "Filament weight"
-msgstr "Tulostuslangan paino"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
-msgctxt "@label"
-msgid "Filament length"
-msgstr "Tulostuslangan pituus"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
-msgctxt "@label"
-msgid "Cost per Meter"
-msgstr "Hinta metriä kohden"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
-msgctxt "@label"
-msgid "This material is linked to %1 and shares some of its properties."
-msgstr "Materiaali on linkitetty kohteeseen %1 ja niillä on joitain samoja ominaisuuksia."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
-msgctxt "@label"
-msgid "Unlink Material"
-msgstr "Poista materiaalin linkitys"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
-msgctxt "@label"
-msgid "Description"
-msgstr "Kuvaus"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
-msgctxt "@label"
-msgid "Adhesion Information"
-msgstr "Tarttuvuustiedot"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:40
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:84
-msgctxt "@action:button"
-msgid "Activate"
-msgstr "Aktivoi"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
-msgctxt "@action:button"
-msgid "Create"
-msgstr "Luo"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
-msgctxt "@action:button"
-msgid "Duplicate"
-msgstr "Jäljennös"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:167
-msgctxt "@action:button"
-msgid "Import"
-msgstr "Tuo"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:179
-msgctxt "@action:button"
-msgid "Export"
-msgstr "Vie"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
-msgctxt "@action:label"
-msgid "Printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:277
-msgctxt "@title:window"
-msgid "Confirm Remove"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:278
-msgctxt "@label (%1 is object name)"
-msgid "Are you sure you wish to remove %1? This cannot be undone!"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
-msgctxt "@title:window"
-msgid "Import Material"
-msgstr "Tuo materiaali"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
-msgctxt "@info:status Don't translate the XML tags or !"
-msgid "Could not import material %1: %2"
-msgstr "Materiaalin tuominen epäonnistui: %1: %2"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully imported material %1"
-msgstr "Materiaalin tuominen onnistui: %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
-msgctxt "@title:window"
-msgid "Export Material"
-msgstr "Vie materiaali"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
-msgctxt "@info:status Don't translate the XML tags and !"
-msgid "Failed to export material to %1: %2"
-msgstr "Materiaalin vieminen epäonnistui kohteeseen %1: %2"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully exported material to %1"
-msgstr "Materiaalin vieminen onnistui kohteeseen %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:16
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:455
-msgctxt "@title:tab"
-msgid "Printers"
-msgstr "Tulostimet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:63
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:152
-msgctxt "@action:button"
-msgid "Rename"
-msgstr "Nimeä uudelleen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:34
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:459
-msgctxt "@title:tab"
-msgid "Profiles"
-msgstr "Profiilit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:104
-msgctxt "@label"
-msgid "Create"
-msgstr "Luo"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:121
-msgctxt "@label"
-msgid "Duplicate"
-msgstr "Jäljennös"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:202
-msgctxt "@title:window"
-msgid "Create Profile"
-msgstr "Luo profiili"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:204
-msgctxt "@info"
-msgid "Please provide a name for this profile."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:263
-msgctxt "@title:window"
-msgid "Duplicate Profile"
-msgstr "Monista profiili"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:294
-msgctxt "@title:window"
-msgid "Rename Profile"
-msgstr "Nimeä profiili uudelleen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:307
-msgctxt "@title:window"
-msgid "Import Profile"
-msgstr "Profiilin tuonti"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:336
-msgctxt "@title:window"
-msgid "Export Profile"
-msgstr "Profiilin vienti"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:399
-msgctxt "@label %1 is printer name"
-msgid "Printer: %1"
-msgstr "Tulostin: %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:557
-msgctxt "@action:button"
-msgid "Update profile with current settings/overrides"
-msgstr "Päivitä nykyiset asetukset tai ohitukset profiiliin"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:583
-msgctxt "@action:label"
-msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
-msgstr "Tässä profiilissa käytetään tulostimen oletusarvoja, joten siinä ei ole alla olevan listan asetuksia tai ohituksia."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:591
-msgctxt "@action:label"
-msgid "Your current settings match the selected profile."
-msgstr "Nykyiset asetukset vastaavat valittua profiilia."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:609
-msgctxt "@title:tab"
-msgid "Global Settings"
-msgstr "Yleiset asetukset"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
-msgctxt "@title:tab"
-msgid "Setting Visibility"
-msgstr "Näkyvyyden asettaminen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
-msgctxt "@label:textbox"
-msgid "Check all"
-msgstr "Tarkista kaikki"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:15
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:450
-msgctxt "@title:tab"
-msgid "General"
-msgstr "Yleiset"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:137
-msgctxt "@label"
-msgid "Interface"
-msgstr "Käyttöliittymä"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:216
-msgctxt "@label"
-msgid "Currency:"
-msgstr "Valuutta:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:229
-msgctxt "@label"
-msgid "Theme:"
-msgstr "Teema:"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:285
-msgctxt "@label"
-msgid "You will need to restart the application for these changes to have effect."
-msgstr "Sovellus on käynnistettävä uudelleen, jotta nämä muutokset tulevat voimaan."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:302
-msgctxt "@info:tooltip"
-msgid "Slice automatically when changing settings."
-msgstr "Viipaloi automaattisesti, kun asetuksia muutetaan."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:310
-msgctxt "@option:check"
-msgid "Slice automatically"
-msgstr "Viipaloi automaattisesti"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:324
-msgctxt "@label"
-msgid "Viewport behavior"
-msgstr "Näyttöikkunan käyttäytyminen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:332
-msgctxt "@info:tooltip"
-msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
-msgstr "Korosta mallin vailla tukea olevat alueet punaisella. Ilman tukea nämä alueet eivät tulostu kunnolla."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:341
-msgctxt "@option:check"
-msgid "Display overhang"
-msgstr "Näytä uloke"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:351
-msgctxt "@info:tooltip"
-msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:360
-msgctxt "@option:check"
-msgid "Display model errors"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:368
-msgctxt "@info:tooltip"
-msgid "Moves the camera so the model is in the center of the view when a model is selected"
-msgstr "Siirtää kameraa siten, että valittuna oleva malli on näkymän keskellä."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:373
-msgctxt "@action:button"
-msgid "Center camera when item is selected"
-msgstr "Keskitä kamera kun kohde on valittu"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:383
-msgctxt "@info:tooltip"
-msgid "Should the default zoom behavior of cura be inverted?"
-msgstr "Pitääkö Curan oletusarvoinen zoom-toimintatapa muuttaa päinvastaiseksi?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:388
-msgctxt "@action:button"
-msgid "Invert the direction of camera zoom."
-msgstr "Käännä kameran zoomin suunta päinvastaiseksi."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid "Should zooming move in the direction of the mouse?"
-msgstr "Tuleeko zoomauksen siirtyä hiiren suuntaan?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid "Zooming towards the mouse is not supported in the orthographic perspective."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:409
-msgctxt "@action:button"
-msgid "Zoom toward mouse direction"
-msgstr "Zoomaa hiiren suuntaan"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:435
-msgctxt "@info:tooltip"
-msgid "Should models on the platform be moved so that they no longer intersect?"
-msgstr "Pitäisikö alustalla olevia malleja siirtää niin, etteivät ne enää leikkaa toisiaan?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:440
-msgctxt "@option:check"
-msgid "Ensure models are kept apart"
-msgstr "Varmista, että mallit ovat erillään"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:449
-msgctxt "@info:tooltip"
-msgid "Should models on the platform be moved down to touch the build plate?"
-msgstr "Pitäisikö tulostusalueella olevia malleja siirtää alas niin, että ne koskettavat tulostusalustaa?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:454
-msgctxt "@option:check"
-msgid "Automatically drop models to the build plate"
-msgstr "Pudota mallit automaattisesti alustalle"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:466
-msgctxt "@info:tooltip"
-msgid "Show caution message in g-code reader."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:475
-msgctxt "@option:check"
-msgid "Caution message in g-code reader"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:483
-msgctxt "@info:tooltip"
-msgid "Should layer be forced into compatibility mode?"
-msgstr "Pakotetaanko kerros yhteensopivuustilaan?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:488
-msgctxt "@option:check"
-msgid "Force layer view compatibility mode (restart required)"
-msgstr "Pakota kerrosnäkymän yhteensopivuustila (vaatii uudelleenkäynnistyksen)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:498
-msgctxt "@info:tooltip"
-msgid "Should Cura open at the location it was closed?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:503
-msgctxt "@option:check"
-msgid "Restore window position on start"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:513
-msgctxt "@info:tooltip"
-msgid "What type of camera rendering should be used?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:520
-msgctxt "@window:text"
-msgid "Camera rendering:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:531
-msgid "Perspective"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:532
-msgid "Orthographic"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:563
-msgctxt "@label"
-msgid "Opening and saving files"
-msgstr "Tiedostojen avaaminen ja tallentaminen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:570
-msgctxt "@info:tooltip"
-msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:575
-msgctxt "@option:check"
-msgid "Use a single instance of Cura"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:585
-msgctxt "@info:tooltip"
-msgid "Should models be scaled to the build volume if they are too large?"
-msgstr "Pitäisikö mallit skaalata tulostustilavuuteen, jos ne ovat liian isoja?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:590
-msgctxt "@option:check"
-msgid "Scale large models"
-msgstr "Skaalaa suuret mallit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:600
-msgctxt "@info:tooltip"
-msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
-msgstr "Malli voi vaikuttaa erittäin pieneltä, jos sen koko on ilmoitettu esimerkiksi metreissä eikä millimetreissä. Pitäisikö nämä mallit suurentaa?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:605
-msgctxt "@option:check"
-msgid "Scale extremely small models"
-msgstr "Skaalaa erittäin pienet mallit"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:615
-msgctxt "@info:tooltip"
-msgid "Should models be selected after they are loaded?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:620
-msgctxt "@option:check"
-msgid "Select models when loaded"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:630
-msgctxt "@info:tooltip"
-msgid "Should a prefix based on the printer name be added to the print job name automatically?"
-msgstr "Pitäisikö tulostustyön nimeen lisätä automaattisesti tulostimen nimeen perustuva etuliite?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:635
-msgctxt "@option:check"
-msgid "Add machine prefix to job name"
-msgstr "Lisää laitteen etuliite työn nimeen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:645
-msgctxt "@info:tooltip"
-msgid "Should a summary be shown when saving a project file?"
-msgstr "Näytetäänkö yhteenveto, kun projektitiedosto tallennetaan?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:649
-msgctxt "@option:check"
-msgid "Show summary dialog when saving project"
-msgstr "Näytä yhteenvetoikkuna, kun projekti tallennetaan"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:659
-msgctxt "@info:tooltip"
-msgid "Default behavior when opening a project file"
-msgstr "Projektitiedoston avaamisen oletustoimintatapa"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:667
-msgctxt "@window:text"
-msgid "Default behavior when opening a project file: "
-msgstr "Projektitiedoston avaamisen oletustoimintatapa: "
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:681
-msgctxt "@option:openProject"
-msgid "Always ask me this"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:682
-msgctxt "@option:openProject"
-msgid "Always open as a project"
-msgstr "Avaa aina projektina"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:683
-msgctxt "@option:openProject"
-msgid "Always import models"
-msgstr "Tuo mallit aina"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:719
-msgctxt "@info:tooltip"
-msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
-msgstr "Kun olet tehnyt muutokset profiiliin ja vaihtanut toiseen, näytetään valintaikkuna, jossa kysytään, haluatko säilyttää vai hylätä muutokset. Tässä voit myös valita oletuskäytöksen, jolloin valintaikkunaa ei näytetä uudelleen."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:733
-msgctxt "@window:text"
-msgid "Default behavior for changed setting values when switching to a different profile: "
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:748
-msgctxt "@option:discardOrKeep"
-msgid "Always discard changed settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:749
-msgctxt "@option:discardOrKeep"
-msgid "Always transfer changed settings to new profile"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:783
-msgctxt "@label"
-msgid "Privacy"
-msgstr "Tietosuoja"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:790
-msgctxt "@info:tooltip"
-msgid "Should Cura check for updates when the program is started?"
-msgstr "Pitäisikö Curan tarkistaa saatavilla olevat päivitykset, kun ohjelma käynnistetään?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:795
-msgctxt "@option:check"
-msgid "Check for updates on start"
-msgstr "Tarkista päivitykset käynnistettäessä"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:805
-msgctxt "@info:tooltip"
-msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
-msgstr "Pitäisikö anonyymejä tietoja tulosteesta lähettää Ultimakerille? Huomaa, että malleja, IP-osoitteita tai muita henkilökohtaisia tietoja ei lähetetä eikä tallenneta."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:810
-msgctxt "@option:check"
-msgid "Send (anonymous) print information"
-msgstr "Lähetä (anonyymit) tulostustiedot"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:819
-msgctxt "@action:button"
-msgid "More information"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewsSelector.qml:50
-msgctxt "@label"
-msgid "View type"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:119
-msgctxt "@label:MonitorStatus"
-msgid "Not connected to a printer"
-msgstr "Ei yhteyttä tulostimeen"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:123
-msgctxt "@label:MonitorStatus"
-msgid "Printer does not accept commands"
-msgstr "Tulostin ei hyväksy komentoja"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:133
-msgctxt "@label:MonitorStatus"
-msgid "In maintenance. Please check the printer"
-msgstr "Huolletaan. Tarkista tulostin"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:144
-msgctxt "@label:MonitorStatus"
-msgid "Lost connection with the printer"
-msgstr "Yhteys tulostimeen menetetty"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:146
-msgctxt "@label:MonitorStatus"
-msgid "Printing..."
-msgstr "Tulostetaan..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:149
-msgctxt "@label:MonitorStatus"
-msgid "Paused"
-msgstr "Keskeytetty"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:152
-msgctxt "@label:MonitorStatus"
-msgid "Preparing..."
-msgstr "Valmistellaan..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:154
-msgctxt "@label:MonitorStatus"
-msgid "Please remove the print"
-msgstr "Poista tuloste"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:326
-msgctxt "@label"
-msgid "Abort Print"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:338
-msgctxt "@label"
-msgid "Are you sure you want to abort the print?"
-msgstr "Haluatko varmasti keskeyttää tulostuksen?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:68
-msgctxt "@label:textbox"
-msgid "Search settings"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:456
-msgctxt "@action:menu"
-msgid "Copy value to all extruders"
-msgstr "Kopioi arvo kaikkiin suulakepuristimiin"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:465
-msgctxt "@action:menu"
-msgid "Copy all changed values to all extruders"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:502
-msgctxt "@action:menu"
-msgid "Hide this setting"
-msgstr "Piilota tämä asetus"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:515
-msgctxt "@action:menu"
-msgid "Don't show this setting"
-msgstr "Älä näytä tätä asetusta"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:519
-msgctxt "@action:menu"
-msgid "Keep this setting visible"
-msgstr "Pidä tämä asetus näkyvissä"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingCategory.qml:200
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200
msgctxt "@label"
msgid ""
"Some hidden settings use values different from their normal calculated value.\n"
@@ -5016,32 +5111,32 @@ msgstr ""
"\n"
"Tee asetuksista näkyviä napsauttamalla."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
msgctxt "@label"
msgid "This setting is not used because all the settings that it influences are overridden."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:86
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
msgctxt "@label Header for list of settings."
msgid "Affects"
msgstr "Koskee seuraavia:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:91
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
msgctxt "@label Header for list of settings."
msgid "Affected By"
msgstr "Riippuu seuraavista:"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:187
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
msgctxt "@label"
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
msgctxt "@label"
msgid "This setting is resolved from conflicting extruder-specific values:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:230
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
msgctxt "@label"
msgid ""
"This setting has a value that is different from the profile.\n"
@@ -5052,7 +5147,7 @@ msgstr ""
"\n"
"Palauta profiilin arvo napsauttamalla."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
msgctxt "@label"
msgid ""
"This setting is normally calculated, but it currently has an absolute value set.\n"
@@ -5063,567 +5158,336 @@ msgstr ""
"\n"
"Palauta laskettu arvo napsauttamalla."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68
+msgctxt "@label:textbox"
+msgid "Search settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468
+msgctxt "@action:menu"
+msgid "Copy value to all extruders"
+msgstr "Kopioi arvo kaikkiin suulakepuristimiin"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477
+msgctxt "@action:menu"
+msgid "Copy all changed values to all extruders"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514
+msgctxt "@action:menu"
+msgid "Hide this setting"
+msgstr "Piilota tämä asetus"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527
+msgctxt "@action:menu"
+msgid "Don't show this setting"
+msgstr "Älä näytä tätä asetusta"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531
+msgctxt "@action:menu"
+msgid "Keep this setting visible"
+msgstr "Pidä tämä asetus näkyvissä"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
msgctxt "@info:tooltip"
msgid "3D View"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
msgctxt "@info:tooltip"
msgid "Front View"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
msgctxt "@info:tooltip"
msgid "Top View"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:66
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
msgctxt "@info:tooltip"
msgid "Left View"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
msgctxt "@info:tooltip"
msgid "Right View"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
msgctxt "@label"
-msgid "Extruder"
-msgstr "Suulake"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
-msgctxt "@tooltip"
-msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
-msgstr "Kuuman pään kohdelämpötila. Kuuma pää lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, kuuman pään lämmitys sammutetaan."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
-msgctxt "@tooltip"
-msgid "The current temperature of this hotend."
+msgid "View type"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the hotend to."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
+msgctxt "@label"
+msgid "Add a Cloud printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
-msgctxt "@button Cancel pre-heating"
-msgid "Cancel"
-msgstr "Peruuta"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
+msgctxt "@label"
+msgid "Waiting for Cloud response"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
+msgctxt "@label"
+msgid "No printers found in your account?"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
+msgctxt "@label"
+msgid "The following printers in your account have been added in Cura:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
msgctxt "@button"
-msgid "Pre-heat"
-msgstr "Esilämmitä"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
-msgctxt "@tooltip of pre-heat"
-msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
+msgid "Add printer manually"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
-msgctxt "@tooltip"
-msgid "The colour of the material in this extruder."
-msgstr "Tämän suulakkeen materiaalin väri."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
-msgctxt "@tooltip"
-msgid "The material in this extruder."
-msgstr "Tämän suulakkeen materiaali."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
-msgctxt "@tooltip"
-msgid "The nozzle inserted in this extruder."
-msgstr "Tähän suulakkeeseen liitetty suutin."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
msgctxt "@label"
-msgid "Build plate"
-msgstr "Alusta"
+msgid "Manufacturer"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
-msgctxt "@tooltip"
-msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
-msgstr "Lämmitettävän pöydän kohdelämpötila. Pöytä lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, pöydän lämmitys sammutetaan."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
-msgctxt "@tooltip"
-msgid "The current temperature of the heated bed."
-msgstr "Lämmitettävän pöydän nykyinen lämpötila."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the bed to."
-msgstr "Lämmitettävän pöydän esilämmityslämpötila."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
-msgctxt "@tooltip of pre-heat"
-msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
-msgstr "Lämmitä pöytä ennen tulostusta. Voit edelleen säätää tulostinta sen lämmitessä, eikä sinun tarvitse odottaa pöydän lämpiämistä, kun olet valmis tulostamaan."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
msgctxt "@label"
-msgid "Printer control"
+msgid "Profile author"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
msgctxt "@label"
-msgid "Jog Position"
+msgid "Printer name"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
+msgctxt "@text"
+msgid "Please name your printer"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
msgctxt "@label"
-msgid "X/Y"
+msgid "Add a printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
msgctxt "@label"
-msgid "Z"
+msgid "Add a networked printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
msgctxt "@label"
-msgid "Jog Distance"
+msgid "Add a non-networked printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
msgctxt "@label"
-msgid "Send G-code"
+msgid "There is no printer found over your network."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
-msgctxt "@tooltip of G-code command input"
-msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
-msgctxt "@info:status"
-msgid "The printer is not connected."
-msgstr "Tulostinta ei ole yhdistetty."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:114
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
msgctxt "@label"
-msgid "Is printed as support."
+msgid "Refresh"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
msgctxt "@label"
-msgid "Other models overlapping with this model are modified."
+msgid "Add printer by IP"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:120
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
msgctxt "@label"
-msgid "Infill overlapping with this model is modified."
+msgid "Add cloud printer"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
msgctxt "@label"
-msgid "Overlaps with this model are not supported."
+msgid "Troubleshooting"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:130
-msgctxt "@label %1 is the number of settings it overrides."
-msgid "Overrides %1 setting."
-msgid_plural "Overrides %1 settings."
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
-msgctxt "@action:button"
-msgid "Marketplace"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Edit"
-msgstr "&Muokkaa"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
-msgctxt "@title:menu menubar:toplevel"
-msgid "E&xtensions"
-msgstr "Laa&jennukset"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
-msgctxt "@title:menu menubar:toplevel"
-msgid "P&references"
-msgstr "L&isäasetukset"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Help"
-msgstr "&Ohje"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
-msgctxt "@title:window"
-msgid "New project"
-msgstr "Uusi projekti"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
-msgctxt "@info:question"
-msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
-msgstr "Haluatko varmasti aloittaa uuden projektin? Se tyhjentää alustan ja kaikki tallentamattomat asetukset."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:257
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
msgctxt "@label"
-msgid "This package will be installed after restarting."
+msgid "Add printer by IP address"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:453
-msgctxt "@title:tab"
-msgid "Settings"
-msgstr "Asetukset"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:576
-msgctxt "@title:window %1 is the application name"
-msgid "Closing %1"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
+msgctxt "@text"
+msgid "Enter your printer's IP address."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:577
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:589
-msgctxt "@label %1 is the application name"
-msgid "Are you sure you want to exit %1?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
+msgctxt "@button"
+msgid "Add"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:737
-msgctxt "@window:title"
-msgid "Install Package"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
+msgctxt "@label"
+msgid "Could not connect to device."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:745
-msgctxt "@title:window"
-msgid "Open File(s)"
-msgstr "Avaa tiedosto(t)"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
+msgctxt "@label"
+msgid "Can't connect to your Ultimaker printer?"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:748
-msgctxt "@text:window"
-msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
-msgstr "Löysimme vähintään yhden Gcode-tiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden Gcode-tiedoston kerrallaan. Jos haluat avata Gcode-tiedoston, valitse vain yksi."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
+msgctxt "@label"
+msgid "The printer at this address has not responded yet."
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:857
-msgctxt "@title:window"
-msgid "Add Printer"
-msgstr "Lisää tulostin"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
+msgctxt "@label"
+msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:865
-msgctxt "@title:window"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
+msgctxt "@button"
+msgid "Back"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
+msgctxt "@button"
+msgid "Connect"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
+msgctxt "@label"
+msgid "Release Notes"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124
+msgctxt "@text"
+msgid "Add material settings and plugins from the Marketplace"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154
+msgctxt "@text"
+msgid "Backup and sync your material settings and plugins"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184
+msgctxt "@text"
+msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217
+msgctxt "@text"
+msgid "Create a free Ultimaker Account"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230
+msgctxt "@button"
+msgid "Skip"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
+msgctxt "@label"
+msgid "Help us to improve Ultimaker Cura"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
+msgctxt "@text"
+msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
+msgctxt "@text"
+msgid "Machine types"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
+msgctxt "@text"
+msgid "Material usage"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
+msgctxt "@text"
+msgid "Number of slices"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
+msgctxt "@text"
+msgid "Print settings"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
+msgctxt "@text"
+msgid "Data collected by Ultimaker Cura will not contain any personal information."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
+msgctxt "@text"
+msgid "More information"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
+msgctxt "@label"
+msgid "Empty"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
+msgctxt "@label"
+msgid "User Agreement"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
+msgctxt "@button"
+msgid "Decline and close"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
+msgctxt "@label"
+msgid "Welcome to Ultimaker Cura"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
+msgctxt "@text"
+msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
+msgctxt "@button"
+msgid "Get started"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
+msgctxt "@label"
msgid "What's New"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
-msgctxt "@status"
-msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
-msgctxt "@status"
-msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
-msgctxt "@status"
-msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
-msgctxt "@status"
-msgid "The cloud connection is currently unavailable. Please check your internet connection."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
-msgctxt "@button"
-msgid "Add printer"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
-msgctxt "@button"
-msgid "Manage printers"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24
msgctxt "@label"
-msgid "Connected printers"
+msgid "No items to select from"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
-msgctxt "@label"
-msgid "Preset printers"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ExtruderButton.qml:16
-msgctxt "@label %1 is filled in with the name of an extruder"
-msgid "Print Selected Model with %1"
-msgid_plural "Print Selected Models with %1"
-msgstr[0] "Tulosta valittu malli asetuksella %1"
-msgstr[1] "Tulosta valitut mallit asetuksella %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
-msgctxt "@label"
-msgid "Time estimation"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
-msgctxt "@label"
-msgid "Material estimation"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
-msgctxt "@label m for meter"
-msgid "%1m"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
-msgctxt "@label g for grams"
-msgid "%1g"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
-msgctxt "@label:PrintjobStatus"
-msgid "Slicing..."
-msgstr "Viipaloidaan..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
-msgctxt "@label:PrintjobStatus"
-msgid "Unable to slice"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Processing"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Slice"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
-msgctxt "@label"
-msgid "Start the slicing process"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
-msgctxt "@button"
-msgid "Cancel"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
-msgctxt "@label"
-msgid "No time estimation available"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
-msgctxt "@label"
-msgid "No cost estimation available"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
-msgctxt "@button"
-msgid "Preview"
-msgstr ""
-
-#: RemovableDriveOutputDevice/plugin.json
+#: ModelChecker/plugin.json
msgctxt "description"
-msgid "Provides removable drive hotplugging and writing support."
-msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista."
+msgid "Checks models and print configuration for possible printing issues and give suggestions."
+msgstr ""
-#: RemovableDriveOutputDevice/plugin.json
+#: ModelChecker/plugin.json
msgctxt "name"
-msgid "Removable Drive Output Device Plugin"
-msgstr "Irrotettavan aseman tulostusvälineen laajennus"
+msgid "Model Checker"
+msgstr ""
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+#: 3MFReader/plugin.json
msgctxt "description"
-msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
-msgstr ""
+msgid "Provides support for reading 3MF files."
+msgstr "Tukee 3MF-tiedostojen lukemista."
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+#: 3MFReader/plugin.json
msgctxt "name"
-msgid "Version Upgrade 3.5 to 4.0"
-msgstr ""
+msgid "3MF Reader"
+msgstr "3MF-lukija"
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+#: 3MFWriter/plugin.json
msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
-msgstr ""
+msgid "Provides support for writing 3MF files."
+msgstr "Tukee 3MF-tiedostojen kirjoittamista."
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+#: 3MFWriter/plugin.json
msgctxt "name"
-msgid "Version Upgrade 4.6.2 to 4.7"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
-msgstr "Päivittää kokoonpanon versiosta Cura 2.2 versioon Cura 2.4."
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.2 to 2.4"
-msgstr "Päivitys versiosta 2.2 versioon 2.4"
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.2 to 4.3"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.6.0 to 4.6.2"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.0 to 3.1"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.0 to 4.1"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
-msgstr "Päivittää kokoonpanon versiosta Cura 2.6 versioon Cura 2.7."
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.6 to 2.7"
-msgstr "Päivitys versiosta 2.6 versioon 2.7"
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
-msgstr "Päivittää kokoonpanon versiosta Cura 2.5 versioon Cura 2.6."
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.5 to 2.6"
-msgstr "Päivitys versiosta 2.5 versioon 2.6"
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.1 to 4.2"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
-msgstr "Päivittää kokoonpanon versiosta Cura 2.1 versioon Cura 2.2."
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.1 to 2.2"
-msgstr "Päivitys versiosta 2.1 versioon 2.2"
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.2 to 3.3"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.5 to 4.6"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.4 to 4.5"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.7 to 4.8"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.3 to 3.4"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.3 to 4.4"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.4 to 3.5"
-msgstr ""
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
-msgstr "Päivittää kokoonpanon versiosta Cura 2.7 versioon Cura 3.0."
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.7 to 3.0"
-msgstr "Päivitys versiosta 2.7 versioon 3.0"
+msgid "3MF Writer"
+msgstr "3MF-kirjoitin"
#: AMFReader/plugin.json
msgctxt "description"
@@ -5635,6 +5499,96 @@ msgctxt "name"
msgid "AMF Reader"
msgstr ""
+#: CuraDrive/plugin.json
+msgctxt "description"
+msgid "Backup and restore your configuration."
+msgstr ""
+
+#: CuraDrive/plugin.json
+msgctxt "name"
+msgid "Cura Backups"
+msgstr ""
+
+#: CuraEngineBackend/plugin.json
+msgctxt "description"
+msgid "Provides the link to the CuraEngine slicing backend."
+msgstr "Linkki CuraEngine-viipalointiin taustalla."
+
+#: CuraEngineBackend/plugin.json
+msgctxt "name"
+msgid "CuraEngine Backend"
+msgstr "CuraEngine-taustaosa"
+
+#: CuraProfileReader/plugin.json
+msgctxt "description"
+msgid "Provides support for importing Cura profiles."
+msgstr "Tukee Cura-profiilien tuontia."
+
+#: CuraProfileReader/plugin.json
+msgctxt "name"
+msgid "Cura Profile Reader"
+msgstr "Cura-profiilin lukija"
+
+#: CuraProfileWriter/plugin.json
+msgctxt "description"
+msgid "Provides support for exporting Cura profiles."
+msgstr "Tukee Cura-profiilien vientiä."
+
+#: CuraProfileWriter/plugin.json
+msgctxt "name"
+msgid "Cura Profile Writer"
+msgstr "Cura-profiilin kirjoitin"
+
+#: DigitalLibrary/plugin.json
+msgctxt "description"
+msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
+msgstr ""
+
+#: DigitalLibrary/plugin.json
+msgctxt "name"
+msgid "Ultimaker Digital Library"
+msgstr ""
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "description"
+msgid "Checks for firmware updates."
+msgstr "Tarkistaa laiteohjelmistopäivitykset."
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "name"
+msgid "Firmware Update Checker"
+msgstr "Laiteohjelmiston päivitysten tarkistus"
+
+#: FirmwareUpdater/plugin.json
+msgctxt "description"
+msgid "Provides a machine actions for updating firmware."
+msgstr ""
+
+#: FirmwareUpdater/plugin.json
+msgctxt "name"
+msgid "Firmware Updater"
+msgstr ""
+
+#: GCodeGzReader/plugin.json
+msgctxt "description"
+msgid "Reads g-code from a compressed archive."
+msgstr ""
+
+#: GCodeGzReader/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Reader"
+msgstr ""
+
+#: GCodeGzWriter/plugin.json
+msgctxt "description"
+msgid "Writes g-code to a compressed archive."
+msgstr ""
+
+#: GCodeGzWriter/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Writer"
+msgstr ""
+
#: GCodeProfileReader/plugin.json
msgctxt "description"
msgid "Provides support for importing profiles from g-code files."
@@ -5645,34 +5599,64 @@ msgctxt "name"
msgid "G-code Profile Reader"
msgstr ""
-#: FirmwareUpdater/plugin.json
+#: GCodeReader/plugin.json
msgctxt "description"
-msgid "Provides a machine actions for updating firmware."
+msgid "Allows loading and displaying G-code files."
+msgstr "Mahdollistaa GCode-tiedostojen lataamisen ja näyttämisen."
+
+#: GCodeReader/plugin.json
+msgctxt "name"
+msgid "G-code Reader"
+msgstr "GCode-lukija"
+
+#: GCodeWriter/plugin.json
+msgctxt "description"
+msgid "Writes g-code to a file."
msgstr ""
-#: FirmwareUpdater/plugin.json
+#: GCodeWriter/plugin.json
msgctxt "name"
-msgid "Firmware Updater"
+msgid "G-code Writer"
msgstr ""
-#: X3DReader/plugin.json
+#: ImageReader/plugin.json
msgctxt "description"
-msgid "Provides support for reading X3D files."
-msgstr "Tukee X3D-tiedostojen lukemista."
+msgid "Enables ability to generate printable geometry from 2D image files."
+msgstr "Mahdollistaa tulostettavien geometrioiden luomisen 2D-kuvatiedostoista."
-#: X3DReader/plugin.json
+#: ImageReader/plugin.json
msgctxt "name"
-msgid "X3D Reader"
-msgstr "X3D-lukija"
+msgid "Image Reader"
+msgstr "Kuvanlukija"
-#: Toolbox/plugin.json
+#: LegacyProfileReader/plugin.json
msgctxt "description"
-msgid "Find, manage and install new Cura packages."
+msgid "Provides support for importing profiles from legacy Cura versions."
+msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista."
+
+#: LegacyProfileReader/plugin.json
+msgctxt "name"
+msgid "Legacy Cura Profile Reader"
+msgstr "Aikaisempien Cura-profiilien lukija"
+
+#: MachineSettingsAction/plugin.json
+msgctxt "description"
+msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
msgstr ""
-#: Toolbox/plugin.json
+#: MachineSettingsAction/plugin.json
msgctxt "name"
-msgid "Toolbox"
+msgid "Machine Settings Action"
+msgstr ""
+
+#: MonitorStage/plugin.json
+msgctxt "description"
+msgid "Provides a monitor stage in Cura."
+msgstr ""
+
+#: MonitorStage/plugin.json
+msgctxt "name"
+msgid "Monitor Stage"
msgstr ""
#: PerObjectSettingsTool/plugin.json
@@ -5695,166 +5679,6 @@ msgctxt "name"
msgid "Post Processing"
msgstr "Jälkikäsittely"
-#: CuraEngineBackend/plugin.json
-msgctxt "description"
-msgid "Provides the link to the CuraEngine slicing backend."
-msgstr "Linkki CuraEngine-viipalointiin taustalla."
-
-#: CuraEngineBackend/plugin.json
-msgctxt "name"
-msgid "CuraEngine Backend"
-msgstr "CuraEngine-taustaosa"
-
-#: USBPrinting/plugin.json
-msgctxt "description"
-msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
-msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne tulostimeen. Lisäosa voi myös päivittää laiteohjelmiston."
-
-#: USBPrinting/plugin.json
-msgctxt "name"
-msgid "USB printing"
-msgstr "USB-tulostus"
-
-#: CuraProfileWriter/plugin.json
-msgctxt "description"
-msgid "Provides support for exporting Cura profiles."
-msgstr "Tukee Cura-profiilien vientiä."
-
-#: CuraProfileWriter/plugin.json
-msgctxt "name"
-msgid "Cura Profile Writer"
-msgstr "Cura-profiilin kirjoitin"
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "description"
-msgid "Manages network connections to Ultimaker networked printers."
-msgstr ""
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "name"
-msgid "Ultimaker Network Connection"
-msgstr ""
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "description"
-msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
-msgstr ""
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "name"
-msgid "Ultimaker machine actions"
-msgstr "Ultimaker-laitteen toiminnot"
-
-#: 3MFReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading 3MF files."
-msgstr "Tukee 3MF-tiedostojen lukemista."
-
-#: 3MFReader/plugin.json
-msgctxt "name"
-msgid "3MF Reader"
-msgstr "3MF-lukija"
-
-#: GCodeGzWriter/plugin.json
-msgctxt "description"
-msgid "Writes g-code to a compressed archive."
-msgstr ""
-
-#: GCodeGzWriter/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Writer"
-msgstr ""
-
-#: GCodeGzReader/plugin.json
-msgctxt "description"
-msgid "Reads g-code from a compressed archive."
-msgstr ""
-
-#: GCodeGzReader/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Reader"
-msgstr ""
-
-#: ModelChecker/plugin.json
-msgctxt "description"
-msgid "Checks models and print configuration for possible printing issues and give suggestions."
-msgstr ""
-
-#: ModelChecker/plugin.json
-msgctxt "name"
-msgid "Model Checker"
-msgstr ""
-
-#: FirmwareUpdateChecker/plugin.json
-msgctxt "description"
-msgid "Checks for firmware updates."
-msgstr "Tarkistaa laiteohjelmistopäivitykset."
-
-#: FirmwareUpdateChecker/plugin.json
-msgctxt "name"
-msgid "Firmware Update Checker"
-msgstr "Laiteohjelmiston päivitysten tarkistus"
-
-#: GCodeReader/plugin.json
-msgctxt "description"
-msgid "Allows loading and displaying G-code files."
-msgstr "Mahdollistaa GCode-tiedostojen lataamisen ja näyttämisen."
-
-#: GCodeReader/plugin.json
-msgctxt "name"
-msgid "G-code Reader"
-msgstr "GCode-lukija"
-
-#: SupportEraser/plugin.json
-msgctxt "description"
-msgid "Creates an eraser mesh to block the printing of support in certain places"
-msgstr ""
-
-#: SupportEraser/plugin.json
-msgctxt "name"
-msgid "Support Eraser"
-msgstr ""
-
-#: TrimeshReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading model files."
-msgstr ""
-
-#: TrimeshReader/plugin.json
-msgctxt "name"
-msgid "Trimesh Reader"
-msgstr ""
-
-#: SentryLogger/plugin.json
-msgctxt "description"
-msgid "Logs certain events so that they can be used by the crash reporter"
-msgstr ""
-
-#: SentryLogger/plugin.json
-msgctxt "name"
-msgid "Sentry Logger"
-msgstr ""
-
-#: UFPReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading Ultimaker Format Packages."
-msgstr ""
-
-#: UFPReader/plugin.json
-msgctxt "name"
-msgid "UFP Reader"
-msgstr ""
-
-#: LegacyProfileReader/plugin.json
-msgctxt "description"
-msgid "Provides support for importing profiles from legacy Cura versions."
-msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista."
-
-#: LegacyProfileReader/plugin.json
-msgctxt "name"
-msgid "Legacy Cura Profile Reader"
-msgstr "Aikaisempien Cura-profiilien lukija"
-
#: PrepareStage/plugin.json
msgctxt "description"
msgid "Provides a prepare stage in Cura."
@@ -5865,46 +5689,6 @@ msgctxt "name"
msgid "Prepare Stage"
msgstr ""
-#: MonitorStage/plugin.json
-msgctxt "description"
-msgid "Provides a monitor stage in Cura."
-msgstr ""
-
-#: MonitorStage/plugin.json
-msgctxt "name"
-msgid "Monitor Stage"
-msgstr ""
-
-#: XRayView/plugin.json
-msgctxt "description"
-msgid "Provides the X-Ray view."
-msgstr "Näyttää kerrosnäkymän."
-
-#: XRayView/plugin.json
-msgctxt "name"
-msgid "X-Ray View"
-msgstr "Kerrosnäkymä"
-
-#: 3MFWriter/plugin.json
-msgctxt "description"
-msgid "Provides support for writing 3MF files."
-msgstr "Tukee 3MF-tiedostojen kirjoittamista."
-
-#: 3MFWriter/plugin.json
-msgctxt "name"
-msgid "3MF Writer"
-msgstr "3MF-kirjoitin"
-
-#: SliceInfoPlugin/plugin.json
-msgctxt "description"
-msgid "Submits anonymous slice info. Can be disabled through preferences."
-msgstr "Lähettää anonyymiä viipalointitietoa. Voidaan lisäasetuksista kytkeä pois käytöstä."
-
-#: SliceInfoPlugin/plugin.json
-msgctxt "name"
-msgid "Slice info"
-msgstr "Viipalointitiedot"
-
#: PreviewStage/plugin.json
msgctxt "description"
msgid "Provides a preview stage in Cura."
@@ -5915,6 +5699,26 @@ msgctxt "name"
msgid "Preview Stage"
msgstr ""
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "description"
+msgid "Provides removable drive hotplugging and writing support."
+msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista."
+
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "name"
+msgid "Removable Drive Output Device Plugin"
+msgstr "Irrotettavan aseman tulostusvälineen laajennus"
+
+#: SentryLogger/plugin.json
+msgctxt "description"
+msgid "Logs certain events so that they can be used by the crash reporter"
+msgstr ""
+
+#: SentryLogger/plugin.json
+msgctxt "name"
+msgid "Sentry Logger"
+msgstr ""
+
#: SimulationView/plugin.json
msgctxt "description"
msgid "Provides the Simulation view."
@@ -5925,25 +5729,15 @@ msgctxt "name"
msgid "Simulation View"
msgstr ""
-#: MachineSettingsAction/plugin.json
+#: SliceInfoPlugin/plugin.json
msgctxt "description"
-msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
-msgstr ""
+msgid "Submits anonymous slice info. Can be disabled through preferences."
+msgstr "Lähettää anonyymiä viipalointitietoa. Voidaan lisäasetuksista kytkeä pois käytöstä."
-#: MachineSettingsAction/plugin.json
+#: SliceInfoPlugin/plugin.json
msgctxt "name"
-msgid "Machine Settings Action"
-msgstr ""
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "description"
-msgid "Provides capabilities to read and write XML-based material profiles."
-msgstr "Mahdollistaa XML-pohjaisten materiaaliprofiilien lukemisen ja kirjoittamisen."
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "name"
-msgid "Material Profiles"
-msgstr "Materiaaliprofiilit"
+msgid "Slice info"
+msgstr "Viipalointitiedot"
#: SolidView/plugin.json
msgctxt "description"
@@ -5955,15 +5749,45 @@ msgctxt "name"
msgid "Solid View"
msgstr "Kiinteä näkymä"
-#: CuraProfileReader/plugin.json
+#: SupportEraser/plugin.json
msgctxt "description"
-msgid "Provides support for importing Cura profiles."
-msgstr "Tukee Cura-profiilien tuontia."
+msgid "Creates an eraser mesh to block the printing of support in certain places"
+msgstr ""
-#: CuraProfileReader/plugin.json
+#: SupportEraser/plugin.json
msgctxt "name"
-msgid "Cura Profile Reader"
-msgstr "Cura-profiilin lukija"
+msgid "Support Eraser"
+msgstr ""
+
+#: Toolbox/plugin.json
+msgctxt "description"
+msgid "Find, manage and install new Cura packages."
+msgstr ""
+
+#: Toolbox/plugin.json
+msgctxt "name"
+msgid "Toolbox"
+msgstr ""
+
+#: TrimeshReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading model files."
+msgstr ""
+
+#: TrimeshReader/plugin.json
+msgctxt "name"
+msgid "Trimesh Reader"
+msgstr ""
+
+#: UFPReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading Ultimaker Format Packages."
+msgstr ""
+
+#: UFPReader/plugin.json
+msgctxt "name"
+msgid "UFP Reader"
+msgstr ""
#: UFPWriter/plugin.json
msgctxt "description"
@@ -5975,36 +5799,276 @@ msgctxt "name"
msgid "UFP Writer"
msgstr ""
-#: GCodeWriter/plugin.json
+#: UltimakerMachineActions/plugin.json
msgctxt "description"
-msgid "Writes g-code to a file."
+msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
msgstr ""
-#: GCodeWriter/plugin.json
+#: UltimakerMachineActions/plugin.json
msgctxt "name"
-msgid "G-code Writer"
-msgstr ""
+msgid "Ultimaker machine actions"
+msgstr "Ultimaker-laitteen toiminnot"
-#: ImageReader/plugin.json
+#: UM3NetworkPrinting/plugin.json
msgctxt "description"
-msgid "Enables ability to generate printable geometry from 2D image files."
-msgstr "Mahdollistaa tulostettavien geometrioiden luomisen 2D-kuvatiedostoista."
+msgid "Manages network connections to Ultimaker networked printers."
+msgstr ""
-#: ImageReader/plugin.json
+#: UM3NetworkPrinting/plugin.json
msgctxt "name"
-msgid "Image Reader"
-msgstr "Kuvanlukija"
+msgid "Ultimaker Network Connection"
+msgstr ""
-#: CuraDrive/plugin.json
+#: USBPrinting/plugin.json
msgctxt "description"
-msgid "Backup and restore your configuration."
+msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
+msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne tulostimeen. Lisäosa voi myös päivittää laiteohjelmiston."
+
+#: USBPrinting/plugin.json
+msgctxt "name"
+msgid "USB printing"
+msgstr "USB-tulostus"
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
+msgstr "Päivittää kokoonpanon versiosta Cura 2.1 versioon Cura 2.2."
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.1 to 2.2"
+msgstr "Päivitys versiosta 2.1 versioon 2.2"
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
+msgstr "Päivittää kokoonpanon versiosta Cura 2.2 versioon Cura 2.4."
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.2 to 2.4"
+msgstr "Päivitys versiosta 2.2 versioon 2.4"
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
+msgstr "Päivittää kokoonpanon versiosta Cura 2.5 versioon Cura 2.6."
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.5 to 2.6"
+msgstr "Päivitys versiosta 2.5 versioon 2.6"
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
+msgstr "Päivittää kokoonpanon versiosta Cura 2.6 versioon Cura 2.7."
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.6 to 2.7"
+msgstr "Päivitys versiosta 2.6 versioon 2.7"
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
+msgstr "Päivittää kokoonpanon versiosta Cura 2.7 versioon Cura 3.0."
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.7 to 3.0"
+msgstr "Päivitys versiosta 2.7 versioon 3.0"
+
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
msgstr ""
-#: CuraDrive/plugin.json
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
msgctxt "name"
-msgid "Cura Backups"
+msgid "Version Upgrade 3.0 to 3.1"
msgstr ""
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.2 to 3.3"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.3 to 3.4"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.4 to 3.5"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.5 to 4.0"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.0 to 4.1"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.1 to 4.2"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.2 to 4.3"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.3 to 4.4"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.4 to 4.5"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.5 to 4.6"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.0 to 4.6.2"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.2 to 4.7"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.7 to 4.8"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.8 to 4.9"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.9 to 4.10"
+msgstr ""
+
+#: X3DReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading X3D files."
+msgstr "Tukee X3D-tiedostojen lukemista."
+
+#: X3DReader/plugin.json
+msgctxt "name"
+msgid "X3D Reader"
+msgstr "X3D-lukija"
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "description"
+msgid "Provides capabilities to read and write XML-based material profiles."
+msgstr "Mahdollistaa XML-pohjaisten materiaaliprofiilien lukemisen ja kirjoittamisen."
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "name"
+msgid "Material Profiles"
+msgstr "Materiaaliprofiilit"
+
+#: XRayView/plugin.json
+msgctxt "description"
+msgid "Provides the X-Ray view."
+msgstr "Näyttää kerrosnäkymän."
+
+#: XRayView/plugin.json
+msgctxt "name"
+msgid "X-Ray View"
+msgstr "Kerrosnäkymä"
+
#~ msgctxt "@action:inmenu menubar:edit"
#~ msgid "Delete Selected Model"
#~ msgid_plural "Delete Selected Models"
diff --git a/resources/i18n/fi_FI/fdmextruder.def.json.po b/resources/i18n/fi_FI/fdmextruder.def.json.po
index 23a1fe6f59..bf103b91a4 100644
--- a/resources/i18n/fi_FI/fdmextruder.def.json.po
+++ b/resources/i18n/fi_FI/fdmextruder.def.json.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: 2017-08-11 14:31+0200\n"
"Last-Translator: Bothof \n"
"Language-Team: Finnish\n"
diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po
index 22b63e6790..d1ffed61eb 100644
--- a/resources/i18n/fi_FI/fdmprinter.def.json.po
+++ b/resources/i18n/fi_FI/fdmprinter.def.json.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: 2017-09-27 12:27+0200\n"
"Last-Translator: Bothof \n"
"Language-Team: Finnish\n"
@@ -3193,7 +3193,7 @@ msgstr ""
#: fdmprinter.def.json
msgctxt "retraction_combing_max_distance description"
-msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
+msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
msgstr ""
#: fdmprinter.def.json
diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po
index 9478c31057..da009fc692 100644
--- a/resources/i18n/fr_FR/cura.po
+++ b/resources/i18n/fr_FR/cura.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:10+0200\n"
+"POT-Creation-Date: 2021-06-10 17:35+0200\n"
"PO-Revision-Date: 2021-04-16 15:16+0200\n"
"Last-Translator: Lionbridge \n"
"Language-Team: French , French \n"
@@ -17,169 +17,180 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 2.4.1\n"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
-msgctxt "@info:progress"
-msgid "Loading machines..."
-msgstr "Chargement des machines..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+msgctxt "@label"
+msgid "Unknown"
+msgstr "Inconnu"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
-msgctxt "@info:progress"
-msgid "Setting up preferences..."
-msgstr "Configuration des préférences..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
+msgctxt "@label"
+msgid "The printer(s) below cannot be connected because they are part of a group"
+msgstr "Les imprimantes ci-dessous ne peuvent pas être connectées car elles font partie d'un groupe"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
-msgctxt "@info:progress"
-msgid "Initializing Active Machine..."
-msgstr "Initialisation de la machine active..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
+msgctxt "@label"
+msgid "Available networked printers"
+msgstr "Imprimantes en réseau disponibles"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
-msgctxt "@info:progress"
-msgid "Initializing machine manager..."
-msgstr "Initialisation du gestionnaire de machine..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211
+msgctxt "@menuitem"
+msgid "Not overridden"
+msgstr "Pas écrasé"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
-msgctxt "@info:progress"
-msgid "Initializing build volume..."
-msgstr "Initialisation du volume de fabrication..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
-msgctxt "@info:progress"
-msgid "Setting up scene..."
-msgstr "Préparation de la scène..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
-msgctxt "@info:progress"
-msgid "Loading interface..."
-msgstr "Chargement de l'interface..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
-msgctxt "@info:progress"
-msgid "Initializing engine..."
-msgstr "Initialisation du moteur..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
-#, 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"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
-msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800 /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188 /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
-msgctxt "@info:title"
-msgid "Warning"
-msgstr "Avertissement"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
-msgstr "Impossible d'ouvrir un autre fichier si le G-Code est en cours de chargement. Importation de {0} sautée"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
-msgctxt "@info:title"
-msgid "Error"
-msgstr "Erreur"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
#, python-brace-format
msgctxt "@label {0} is the name of a printer that's about to be deleted."
msgid "Are you sure you wish to remove {0}? This cannot be undone!"
msgstr "Voulez-vous vraiment supprimer l'objet {0} ? Cette action est irréversible !"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
-msgctxt "@label"
-msgid "Custom Material"
-msgstr "Matériau personnalisé"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227 /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
-msgctxt "@label"
-msgid "Custom"
-msgstr "Personnalisé"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
msgctxt "@label"
msgid "Default"
msgstr "Default"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
msgctxt "@label"
-msgid "Unknown"
-msgstr "Inconnu"
+msgid "Visual"
+msgstr "Visuel"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
+msgctxt "@text"
+msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
+msgstr "Le profil visuel est conçu pour imprimer des prototypes et des modèles visuels dans le but d'obtenir une qualité visuelle et de surface élevée."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
+msgctxt "@label"
+msgid "Engineering"
+msgstr "Engineering"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
+msgctxt "@text"
+msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
+msgstr "Le profil d'ingénierie est conçu pour imprimer des prototypes fonctionnels et des pièces finales dans le but d'obtenir une meilleure précision et des tolérances plus étroites."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
+msgctxt "@label"
+msgid "Draft"
+msgstr "Ébauche"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
+msgctxt "@text"
+msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
+msgstr "L'ébauche du profil est conçue pour imprimer les prototypes initiaux et la validation du concept dans le but de réduire considérablement le temps d'impression."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234
+msgctxt "@label"
+msgid "Custom Material"
+msgstr "Matériau personnalisé"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
+msgctxt "@label"
+msgid "Custom"
+msgstr "Personnalisé"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
msgctxt "@label"
msgid "Custom profiles"
msgstr "Personnaliser les profils"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
#, python-brace-format
msgctxt "@item:inlistbox"
msgid "All Supported Types ({0})"
msgstr "Tous les types supportés ({0})"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
msgctxt "@item:inlistbox"
msgid "All Files (*)"
msgstr "Tous les fichiers (*)"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
-msgctxt "@label"
-msgid "Visual"
-msgstr "Visuel"
+#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181
+msgctxt "@info:title"
+msgid "Login failed"
+msgstr "La connexion a échoué"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
-msgctxt "@text"
-msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
-msgstr "Le profil visuel est conçu pour imprimer des prototypes et des modèles visuels dans le but d'obtenir une qualité visuelle et de surface élevée."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
+msgctxt "@info:status"
+msgid "Finding new location for objects"
+msgstr "Recherche d'un nouvel emplacement pour les objets"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
-msgctxt "@label"
-msgid "Engineering"
-msgstr "Engineering"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Finding Location"
+msgstr "Recherche d'emplacement"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
-msgctxt "@text"
-msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
-msgstr "Le profil d'ingénierie est conçu pour imprimer des prototypes fonctionnels et des pièces finales dans le but d'obtenir une meilleure précision et des tolérances plus étroites."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76
+msgctxt "@info:status"
+msgid "Unable to find a location within the build volume for all objects"
+msgstr "Impossible de trouver un emplacement dans le volume d'impression pour tous les objets"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
-msgctxt "@label"
-msgid "Draft"
-msgstr "Ébauche"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+msgctxt "@info:title"
+msgid "Can't Find Location"
+msgstr "Impossible de trouver un emplacement"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23 /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
-msgctxt "@text"
-msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
-msgstr "L'ébauche du profil est conçue pour imprimer les prototypes initiaux et la validation du concept dans le but de réduire considérablement le temps d'impression."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116
+msgctxt "@info:backup_failed"
+msgid "Could not create archive from user data directory: {}"
+msgstr "Impossible de créer une archive à partir du répertoire de données de l'utilisateur : {}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
-msgctxt "@label"
-msgid "The printer(s) below cannot be connected because they are part of a group"
-msgstr "Les imprimantes ci-dessous ne peuvent pas être connectées car elles font partie d'un groupe"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
+msgctxt "@info:title"
+msgid "Backup"
+msgstr "Sauvegarde"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
-msgctxt "@label"
-msgid "Available networked printers"
-msgstr "Imprimantes en réseau disponibles"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup without having proper data or meta data."
+msgstr "A essayé de restaurer une sauvegarde Cura sans disposer de données ou de métadonnées appropriées."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
-msgctxt "@menuitem"
-msgid "Not overridden"
-msgstr "Pas écrasé"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup that is higher than the current version."
+msgstr "A essayé de restaurer une sauvegarde Cura supérieure à la version actuelle."
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157
+msgctxt "@info:backup_failed"
+msgid "The following error occurred while trying to restore a Cura backup:"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
+msgctxt "@info:status"
+msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
+msgstr "La hauteur du volume d'impression a été réduite en raison de la valeur du paramètre « Séquence d'impression » afin d'éviter que le portique ne heurte les modèles imprimés."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100
+msgctxt "@info:title"
+msgid "Build Volume"
+msgstr "Volume d'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
msgctxt "@title:window"
msgid "Cura can't start"
msgstr "Échec du démarrage de Cura"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
msgctxt "@label crash message"
msgid ""
"Oops, Ultimaker Cura has encountered something that doesn't seem right.
\n"
@@ -194,32 +205,32 @@ msgstr ""
" Veuillez nous envoyer ce rapport d'incident pour que nous puissions résoudre le problème.
\n"
" "
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
msgctxt "@action:button"
msgid "Send crash report to Ultimaker"
msgstr "Envoyer le rapport de d'incident à Ultimaker"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
msgctxt "@action:button"
msgid "Show detailed crash report"
msgstr "Afficher le rapport d'incident détaillé"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
msgctxt "@action:button"
msgid "Show configuration folder"
msgstr "Afficher le dossier de configuration"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
msgctxt "@action:button"
msgid "Backup and Reset Configuration"
msgstr "Sauvegarder et réinitialiser la configuration"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
msgctxt "@title:window"
msgid "Crash Report"
msgstr "Rapport d'incident"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
msgctxt "@label crash message"
msgid ""
"A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem
\n"
@@ -230,658 +241,676 @@ msgstr ""
" Veuillez utiliser le bouton « Envoyer rapport » pour publier automatiquement un rapport d'erreur sur nos serveurs
\n"
" "
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
msgctxt "@title:groupbox"
msgid "System information"
msgstr "Informations système"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
msgctxt "@label unknown version of Cura"
msgid "Unknown"
msgstr "Inconnu"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
msgctxt "@label Cura version number"
msgid "Cura version"
msgstr "Version Cura"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
msgctxt "@label"
msgid "Cura language"
msgstr "Langue de Cura"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
msgctxt "@label"
msgid "OS language"
msgstr "Langue du SE"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
msgctxt "@label Type of platform"
msgid "Platform"
msgstr "Plate-forme"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
msgctxt "@label"
msgid "Qt version"
msgstr "Version Qt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
msgctxt "@label"
msgid "PyQt version"
msgstr "Version PyQt"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
msgctxt "@label OpenGL version"
msgid "OpenGL"
msgstr "OpenGL"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
msgctxt "@label"
msgid "Not yet initialized
"
msgstr "Pas encore initialisé
"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
#, python-brace-format
msgctxt "@label OpenGL version"
msgid "OpenGL Version: {version}"
msgstr "Version OpenGL : {version}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
#, python-brace-format
msgctxt "@label OpenGL vendor"
msgid "OpenGL Vendor: {vendor}"
msgstr "Revendeur OpenGL : {vendor}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
#, python-brace-format
msgctxt "@label OpenGL renderer"
msgid "OpenGL Renderer: {renderer}"
msgstr "Moteur de rendu OpenGL : {renderer}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
msgctxt "@title:groupbox"
msgid "Error traceback"
msgstr "Retraçage de l'erreur"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
msgctxt "@title:groupbox"
msgid "Logs"
msgstr "Journaux"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
msgctxt "@action:button"
msgid "Send report"
msgstr "Envoyer rapport"
-#: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
-msgctxt "@info:title"
-msgid "Login failed"
-msgstr "La connexion a échoué"
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527
+msgctxt "@info:progress"
+msgid "Loading machines..."
+msgstr "Chargement des machines..."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534
+msgctxt "@info:progress"
+msgid "Setting up preferences..."
+msgstr "Configuration des préférences..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672
+msgctxt "@info:progress"
+msgid "Initializing Active Machine..."
+msgstr "Initialisation de la machine active..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803
+msgctxt "@info:progress"
+msgid "Initializing machine manager..."
+msgstr "Initialisation du gestionnaire de machine..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817
+msgctxt "@info:progress"
+msgid "Initializing build volume..."
+msgstr "Initialisation du volume de fabrication..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888
+msgctxt "@info:progress"
+msgid "Setting up scene..."
+msgstr "Préparation de la scène..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924
+msgctxt "@info:progress"
+msgid "Loading interface..."
+msgstr "Chargement de l'interface..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929
+msgctxt "@info:progress"
+msgid "Initializing engine..."
+msgstr "Initialisation du moteur..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246
+#, python-format
+msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
+msgid "%(width).1f x %(depth).1f x %(height).1f mm"
+msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
+msgstr "Un seul fichier G-Code peut être chargé à la fois. Importation de {0} sautée"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+msgctxt "@info:title"
+msgid "Warning"
+msgstr "Avertissement"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
+msgstr "Impossible d'ouvrir un autre fichier si le G-Code est en cours de chargement. Importation de {0} sautée"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
+msgctxt "@info:title"
+msgid "Error"
+msgstr "Erreur"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26
+msgctxt "@info:status"
+msgid "Multiplying and placing objects"
+msgstr "Multiplication et placement d'objets"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Placing Objects"
+msgstr "Placement des objets"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77
+msgctxt "@info:title"
+msgid "Placing Object"
+msgstr "Placement de l'objet"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92
msgctxt "@message"
msgid "Could not read response."
msgstr "Impossible de lire la réponse."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
-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."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
-msgctxt "@info"
-msgid "Unable to reach the Ultimaker account server."
-msgstr "Impossible d’atteindre le serveur du compte Ultimaker."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
msgctxt "@message"
msgid "The provided state is not correct."
msgstr "L'état fourni n'est pas correct."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
msgctxt "@message"
msgid "Please give the required permissions when authorizing this application."
msgstr "Veuillez donner les permissions requises lors de l'autorisation de cette application."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
msgctxt "@message"
msgid "Something unexpected happened when trying to log in, please try again."
msgstr "Une erreur s'est produite lors de la connexion, veuillez réessayer."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189
+msgctxt "@info"
+msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
+msgstr "Impossible de lancer une nouvelle procédure de connexion. Vérifiez si une autre tentative de connexion est toujours active."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+msgctxt "@info"
+msgid "Unable to reach the Ultimaker account server."
+msgstr "Impossible d’atteindre le serveur du compte Ultimaker."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132
msgctxt "@title:window"
msgid "File Already Exists"
msgstr "Le fichier existe déjà"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
#, 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 ?"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456 /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460
msgctxt "@info:status"
msgid "Invalid file URL:"
msgstr "URL de fichier invalide :"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
-msgctxt "@label"
-msgid "Nozzle"
-msgstr "Buse"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
-msgctxt "@info:message Followed by a list of settings."
-msgid "Settings have been changed to match the current availability of extruders:"
-msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles :"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
-msgctxt "@info:title"
-msgid "Settings updated"
-msgstr "Paramètres mis à jour"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
-msgctxt "@info:title"
-msgid "Extruder(s) Disabled"
-msgstr "Extrudeuse(s) désactivée(s)"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
#, 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}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Failed to export profile to {0}: Writer plugin reported failure."
msgstr "Échec de l'exportation du profil vers {0} : le plug-in du générateur a rapporté une erreur."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Exported profile to {0}"
msgstr "Profil exporté vers {0}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157
msgctxt "@info:title"
msgid "Export succeeded"
msgstr "L'exportation a réussi"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188
#, 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}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207
#, 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}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211
#, 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} :"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235 /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338
#, 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} :"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342
#, python-brace-format
msgctxt "@info:status"
msgid "Successfully imported profile {0}."
msgstr "Importation du profil {0} réussie."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352
#, 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."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426
msgctxt "@label"
msgid "Custom profile"
msgstr "Personnaliser le profil"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442
msgctxt "@info:status"
msgid "Profile is missing a quality type."
msgstr "Il manque un type de qualité au profil."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446
msgctxt "@info:status"
msgid "There is no active printer yet."
msgstr "Aucune imprimante n'est active pour le moment."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452
msgctxt "@info:status"
msgid "Unable to add the profile."
msgstr "Impossible d'ajouter le profil."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466
#, 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} »."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471
#, 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é."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
msgctxt "@info:not supported profile"
msgid "Not supported"
msgstr "Non pris en charge"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
msgctxt "@info:No intent profile selected"
msgid "Default"
msgstr "Default"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
-msgctxt "@info:status"
-msgid "Finding new location for objects"
-msgstr "Recherche d'un nouvel emplacement pour les objets"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
+msgctxt "@label"
+msgid "Nozzle"
+msgstr "Buse"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856
+msgctxt "@info:message Followed by a list of settings."
+msgid "Settings have been changed to match the current availability of extruders:"
+msgstr "Les paramètres ont été modifiés pour correspondre aux extrudeuses actuellement disponibles :"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858
msgctxt "@info:title"
-msgid "Finding Location"
-msgstr "Recherche d'emplacement"
+msgid "Settings updated"
+msgstr "Paramètres mis à jour"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
-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"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151 /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478
msgctxt "@info:title"
-msgid "Can't Find Location"
-msgstr "Impossible de trouver un emplacement"
+msgid "Extruder(s) Disabled"
+msgstr "Extrudeuse(s) désactivée(s)"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
+msgctxt "@action:button"
+msgid "Add"
+msgstr "Ajouter"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272
+msgctxt "@action:button"
+msgid "Finish"
+msgstr "Fin"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+msgctxt "@action:button"
+msgid "Cancel"
+msgstr "Annuler"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
#, python-brace-format
msgctxt "@label"
msgid "Group #{group_nr}"
msgstr "Groupe nº {group_nr}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55 /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
-msgctxt "@action:button"
-msgid "Skip"
-msgstr "Passer"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60 /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185 /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128 /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
-msgctxt "@action:button"
-msgid "Close"
-msgstr "Fermer"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56 /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
-msgctxt "@action:button"
-msgid "Next"
-msgstr "Suivant"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272 /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
-msgctxt "@action:button"
-msgid "Finish"
-msgstr "Fin"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82
msgctxt "@tooltip"
msgid "Outer Wall"
msgstr "Paroi externe"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
msgctxt "@tooltip"
msgid "Inner Walls"
msgstr "Parois internes"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
msgctxt "@tooltip"
msgid "Skin"
msgstr "Couche extérieure"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
msgctxt "@tooltip"
msgid "Infill"
msgstr "Remplissage"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
msgctxt "@tooltip"
msgid "Support Infill"
msgstr "Remplissage du support"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
msgctxt "@tooltip"
msgid "Support Interface"
msgstr "Interface du support"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
msgctxt "@tooltip"
msgid "Support"
msgstr "Support"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
msgctxt "@tooltip"
msgid "Skirt"
msgstr "Jupe"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
msgctxt "@tooltip"
msgid "Prime Tower"
msgstr "Tour primaire"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
msgctxt "@tooltip"
msgid "Travel"
msgstr "Déplacement"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
msgctxt "@tooltip"
msgid "Retractions"
msgstr "Rétractions"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
msgctxt "@tooltip"
msgid "Other"
msgstr "Autre"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259
msgctxt "@action:button"
-msgid "Add"
-msgstr "Ajouter"
+msgid "Next"
+msgstr "Suivant"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445 /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55
msgctxt "@action:button"
-msgid "Cancel"
-msgstr "Annuler"
+msgid "Skip"
+msgstr "Passer"
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
-msgctxt "@info:status"
-msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
-msgstr "La hauteur du volume d'impression a été réduite en raison de la valeur du paramètre « Séquence d'impression » afin d'éviter que le portique ne heurte les modèles imprimés."
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
+msgctxt "@action:button"
+msgid "Close"
+msgstr "Fermer"
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
msgctxt "@info:title"
-msgid "Build Volume"
-msgstr "Volume d'impression"
+msgid "3D Model Assistant"
+msgstr "Assistant de modèle 3D"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
-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 : {}"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
-msgctxt "@info:title"
-msgid "Backup"
-msgstr "Sauvegarde"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup without having proper data or meta data."
-msgstr "A essayé de restaurer une sauvegarde Cura sans disposer de données ou de métadonnées appropriées."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup that is higher than the current version."
-msgstr "A essayé de restaurer une sauvegarde Cura supérieure à la version actuelle."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
-msgctxt "@info:status"
-msgid "Multiplying and placing objects"
-msgstr "Multiplication et placement d'objets"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
-msgctxt "@info:title"
-msgid "Placing Objects"
-msgstr "Placement des objets"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
-msgctxt "@info:title"
-msgid "Placing Object"
-msgstr "Placement de l'objet"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Save to Removable Drive"
-msgstr "Enregistrer sur un lecteur amovible"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96
#, python-brace-format
-msgctxt "@item:inlistbox"
-msgid "Save to Removable Drive {0}"
-msgstr "Enregistrer sur un lecteur amovible {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
msgctxt "@info:status"
-msgid "There are no file formats available to write with!"
-msgstr "Aucun format de fichier n'est disponible pour écriture !"
+msgid ""
+"One or more 3D models may not print optimally due to the model size and material configuration:
\n"
+"{model_names}
\n"
+"Find out how to ensure the best possible print quality and reliability.
\n"
+"View print quality guide
"
+msgstr ""
+"Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle :
\n"
+"{model_names}
\n"
+"Découvrez comment optimiser la qualité et la fiabilité de l'impression.
\n"
+"Consultez le guide de qualité d'impression
"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-#, python-brace-format
-msgctxt "@info:progress Don't translate the XML tags !"
-msgid "Saving to Removable Drive {0}"
-msgstr "Enregistrement sur le lecteur amovible {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-msgctxt "@info:title"
-msgid "Saving"
-msgstr "Enregistrement"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:540
#, 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}"
+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."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
-#, python-brace-format
-msgctxt "@info:status Don't translate the tag {device}!"
-msgid "Could not find a file name when trying to write to {device}."
-msgstr "Impossible de trouver un nom de fichier lors d'une tentative d'écriture sur {device}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138 /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Could not save to removable drive {0}: {1}"
-msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Saved to Removable Drive {0} as {1}"
-msgstr "Enregistré sur le lecteur amovible {0} sous {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:543
msgctxt "@info:title"
-msgid "File Saved"
-msgstr "Fichier enregistré"
+msgid "Open Project File"
+msgstr "Ouvrir un fichier de projet"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
-msgctxt "@action:button"
-msgid "Eject"
-msgstr "Ejecter"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:639
#, python-brace-format
-msgctxt "@action"
-msgid "Eject removable device {0}"
-msgstr "Ejecter le lecteur amovible {0}"
+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}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Ejected {0}. You can now safely remove the drive."
-msgstr "Lecteur {0} éjecté. Vous pouvez maintenant le retirer en tout sécurité."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:640
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:647
msgctxt "@info:title"
-msgid "Safely Remove Hardware"
-msgstr "Retirez le lecteur en toute sécurité"
+msgid "Can't Open Project File"
+msgstr "Impossible d'ouvrir le fichier de projet"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:646
#, 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."
+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}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
-msgctxt "@item:intext"
-msgid "Removable Drive"
-msgstr "Lecteur amovible"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:698
+#, python-brace-format
+msgctxt "@info:error Don't translate the XML tag !"
+msgid "Project file {0} is made using profiles that are unknown to this version of Ultimaker Cura."
+msgstr "Le fichier de projet {0} a été réalisé en utilisant des profils inconnus de cette version d'Ultimaker Cura."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203
+msgctxt "@title:tab"
+msgid "Recommended"
+msgstr "Recommandé"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205
+msgctxt "@title:tab"
+msgid "Custom"
+msgstr "Personnalisé"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
+msgctxt "@item:inlistbox"
+msgid "3MF File"
+msgstr "Fichier 3MF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
+msgctxt "@error:zip"
+msgid "3MF Writer plug-in is corrupt."
+msgstr "Le plug-in 3MF Writer est corrompu."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
+msgctxt "@error:zip"
+msgid "No permission to write the workspace here."
+msgstr "Aucune autorisation d'écrire l'espace de travail ici."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
+msgctxt "@error:zip"
+msgid "The operating system does not allow saving a project file to this location or with this file name."
+msgstr "Le système d'exploitation ne permet pas d'enregistrer un fichier de projet à cet emplacement ou avec ce nom de fichier."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
+msgctxt "@error:zip"
+msgid "Error writing 3mf file."
+msgstr "Erreur d'écriture du fichier 3MF."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "3MF file"
+msgstr "Fichier 3MF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
+msgctxt "@item:inlistbox"
+msgid "Cura Project 3MF file"
+msgstr "Projet Cura fichier 3MF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
msgctxt "@item:inlistbox"
msgid "AMF File"
msgstr "Fichier AMF"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
-msgctxt "@item:inlistbox"
-msgid "G-code File"
-msgstr "Fichier GCode"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
-msgctxt "@action"
-msgid "Update Firmware"
-msgstr "Mettre à jour le firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
-msgctxt "@item:inlistbox"
-msgid "X3D File"
-msgstr "Fichier X3D"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
-msgctxt "@button"
-msgid "Decline"
-msgstr "Refuser"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
-msgctxt "@button"
-msgid "Agree"
-msgstr "Accepter"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
-msgctxt "@title:window"
-msgid "Plugin License Agreement"
-msgstr "Plug-in d'accord de licence"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
-msgctxt "@button"
-msgid "Decline and remove from account"
-msgstr "Décliner et supprimer du compte"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
-msgctxt "@info:generic"
-msgid "{} plugins failed to download"
-msgstr "Échec de téléchargement des plugins {}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
-msgctxt "@info:generic"
-msgid "Syncing..."
-msgstr "Synchronisation..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
msgctxt "@info:title"
-msgid "Changes detected from your Ultimaker account"
-msgstr "Changements détectés à partir de votre compte Ultimaker"
+msgid "Backups"
+msgstr "Sauvegardes"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
-msgctxt "@info:generic"
-msgid "You need to quit and restart {} before changes have effect."
-msgstr "Vous devez quitter et redémarrer {} avant que les changements apportés ne prennent effet."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
+msgctxt "@info:backup_status"
+msgid "There was an error while uploading your backup."
+msgstr "Une erreur s’est produite lors du téléchargement de votre sauvegarde."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
-msgctxt "@info:generic"
-msgid "Do you want to sync material and software packages with your account?"
-msgstr "Vous souhaitez synchroniser du matériel et des logiciels avec votre compte ?"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
+msgctxt "@info:backup_status"
+msgid "Creating your backup..."
+msgstr "Création de votre sauvegarde..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
-msgctxt "@action:button"
-msgid "Sync"
-msgstr "Synchroniser"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
+msgctxt "@info:backup_status"
+msgid "There was an error while creating your backup."
+msgstr "Une erreur s'est produite lors de la création de votre sauvegarde."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
-msgctxt "@label"
-msgid "Per Model Settings"
-msgstr "Paramètres par modèle"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
+msgctxt "@info:backup_status"
+msgid "Uploading your backup..."
+msgstr "Téléchargement de votre sauvegarde..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
-msgctxt "@info:tooltip"
-msgid "Configure Per Model Settings"
-msgstr "Configurer les paramètres par modèle"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
+msgctxt "@info:backup_status"
+msgid "Your backup has finished uploading."
+msgstr "Le téléchargement de votre sauvegarde est terminé."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
+msgctxt "@error:file_size"
+msgid "The backup exceeds the maximum file size."
+msgstr "La sauvegarde dépasse la taille de fichier maximale."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:86
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
+msgctxt "@info:backup_status"
+msgid "There was an error trying to restore your backup."
+msgstr "Une erreur s’est produite lors de la tentative de restauration de votre sauvegarde."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
msgctxt "@item:inmenu"
-msgid "Post Processing"
-msgstr "Post-traitement"
+msgid "Manage backups"
+msgstr "Gérer les sauvegardes"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
-msgctxt "@item:inmenu"
-msgid "Modify G-Code"
-msgstr "Modifier le G-Code"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
msgctxt "@info:status"
msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
msgstr "Impossible de découper le matériau actuel, car celui-ci est incompatible avec la machine ou la configuration sélectionnée."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
msgctxt "@info:title"
msgid "Unable to slice"
msgstr "Impossible de découper"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to slice with the current settings. The following settings have errors: {0}"
msgstr "Impossible de couper avec les paramètres actuels. Les paramètres suivants contiennent des erreurs : {0}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
#, python-brace-format
msgctxt "@info:status"
msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
msgstr "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}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
msgctxt "@info:status"
msgid "Unable to slice because the prime tower or prime position(s) are invalid."
msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
#, python-format
msgctxt "@info:status"
msgid "Unable to slice because there are objects associated with disabled Extruder %s."
msgstr "Impossible de couper car il existe des objets associés à l'extrudeuse désactivée %s."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
msgctxt "@info:status"
msgid ""
"Please review settings and check if your models:\n"
@@ -894,75 +923,465 @@ msgstr ""
"- Sont affectés à un extrudeur activé\n"
"- N sont pas tous définis comme des mailles de modificateur"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:status"
msgid "Processing Layers"
msgstr "Traitement des couches"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
msgctxt "@info:title"
msgid "Information"
msgstr "Informations"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
-msgctxt "@item:inmenu"
-msgid "USB printing"
-msgstr "Impression par USB"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Print via USB"
-msgstr "Imprimer via USB"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
-msgctxt "@info:tooltip"
-msgid "Print via USB"
-msgstr "Imprimer via USB"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
-msgctxt "@info:status"
-msgid "Connected via USB"
-msgstr "Connecté via USB"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
-msgctxt "@label"
-msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
-msgstr "Une impression USB est en cours, la fermeture de Cura arrêtera cette impression. Êtes-vous sûr ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
-msgstr "Une impression est encore en cours. Cura ne peut pas démarrer une autre impression via USB tant que l'impression précédente n'est pas terminée."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "Print in Progress"
-msgstr "Impression en cours"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14 /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
msgctxt "@item:inlistbox"
msgid "Cura Profile"
msgstr "Profil Cura"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
-msgctxt "@action"
-msgid "Connect via Network"
-msgstr "Connecter via le réseau"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
+msgctxt "@info"
+msgid "Could not access update information."
+msgstr "Impossible d'accéder aux informations de mise à jour."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
+#, python-brace-format
+msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
+msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
+msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne possédez pas la dernière version disponible, il est recommandé de mettre à jour le micrologiciel sur votre imprimante avec la version {latest_version}."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
+#, python-format
+msgctxt "@info:title The %s gets replaced with the printer name."
+msgid "New %s firmware available"
+msgstr "Nouveau firmware %s disponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
+msgctxt "@action:button"
+msgid "How to update"
+msgstr "Comment effectuer la mise à jour"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
+msgctxt "@action"
+msgid "Update Firmware"
+msgstr "Mettre à jour le firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
+msgctxt "@item:inlistbox"
+msgid "Compressed G-code File"
+msgstr "Fichier G-Code compressé"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
+msgctxt "@error:not supported"
+msgid "GCodeGzWriter does not support text mode."
+msgstr "GCodeGzWriter ne prend pas en charge le mode texte."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
+msgctxt "@item:inlistbox"
+msgid "G-code File"
+msgstr "Fichier GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347
+msgctxt "@info:status"
+msgid "Parsing G-code"
+msgstr "Analyse du G-Code"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503
+msgctxt "@info:title"
+msgid "G-code Details"
+msgstr "Détails G-Code"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501
+msgctxt "@info:generic"
+msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
+msgstr "Assurez-vous que le g-code est adapté à votre imprimante et à la configuration de l'imprimante avant d'y envoyer le fichier. La représentation du g-code peut ne pas être exacte."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "G File"
+msgstr "Fichier G"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74
+msgctxt "@error:not supported"
+msgid "GCodeWriter does not support non-text mode."
+msgstr "GCodeWriter ne prend pas en charge le mode non-texte."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96
+msgctxt "@warning:status"
+msgid "Please prepare G-code before exporting."
+msgstr "Veuillez préparer le G-Code avant d'exporter."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "JPG Image"
+msgstr "Image JPG"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
+msgctxt "@item:inlistbox"
+msgid "JPEG Image"
+msgstr "Image JPEG"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
+msgctxt "@item:inlistbox"
+msgid "PNG Image"
+msgstr "Image PNG"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
+msgctxt "@item:inlistbox"
+msgid "BMP Image"
+msgstr "Image BMP"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
+msgctxt "@item:inlistbox"
+msgid "GIF Image"
+msgstr "Image GIF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
+msgctxt "@item:inlistbox"
+msgid "Cura 15.04 profiles"
+msgstr "Profils Cura 15.04"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
+msgctxt "@action"
+msgid "Machine Settings"
+msgstr "Paramètres de la machine"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
+msgctxt "@item:inmenu"
+msgid "Monitor"
+msgstr "Surveiller"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
+msgctxt "@label"
+msgid "Per Model Settings"
+msgstr "Paramètres par modèle"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
+msgctxt "@info:tooltip"
+msgid "Configure Per Model Settings"
+msgstr "Configurer les paramètres par modèle"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
+msgctxt "@item:inmenu"
+msgid "Post Processing"
+msgstr "Post-traitement"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
+msgctxt "@item:inmenu"
+msgid "Modify G-Code"
+msgstr "Modifier le G-Code"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Prepare"
+msgstr "Préparer"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
+msgctxt "@item:inmenu"
+msgid "Preview"
+msgstr "Aperçu"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Save to Removable Drive"
+msgstr "Enregistrer sur un lecteur amovible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
+#, python-brace-format
+msgctxt "@item:inlistbox"
+msgid "Save to Removable Drive {0}"
+msgstr "Enregistrer sur un lecteur amovible {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
+msgctxt "@info:status"
+msgid "There are no file formats available to write with!"
+msgstr "Aucun format de fichier n'est disponible pour écriture !"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+#, python-brace-format
+msgctxt "@info:progress Don't translate the XML tags !"
+msgid "Saving to Removable Drive {0}"
+msgstr "Enregistrement sur le lecteur amovible {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
+msgctxt "@info:title"
+msgid "Saving"
+msgstr "Enregistrement"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
+#, python-brace-format
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid "Could not save to {0}: {1}"
+msgstr "Impossible d'enregistrer {0} : {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
+#, python-brace-format
+msgctxt "@info:status Don't translate the tag {device}!"
+msgid "Could not find a file name when trying to write to {device}."
+msgstr "Impossible de trouver un nom de fichier lors d'une tentative d'écriture sur {device}."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Could not save to removable drive {0}: {1}"
+msgstr "Impossible d'enregistrer sur le lecteur {0}: {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Saved to Removable Drive {0} as {1}"
+msgstr "Enregistré sur le lecteur amovible {0} sous {1}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
+msgctxt "@info:title"
+msgid "File Saved"
+msgstr "Fichier enregistré"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+msgctxt "@action:button"
+msgid "Eject"
+msgstr "Ejecter"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#, python-brace-format
+msgctxt "@action"
+msgid "Eject removable device {0}"
+msgstr "Ejecter le lecteur amovible {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Ejected {0}. You can now safely remove the drive."
+msgstr "Lecteur {0} éjecté. Vous pouvez maintenant le retirer en tout sécurité."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
+msgctxt "@info:title"
+msgid "Safely Remove Hardware"
+msgstr "Retirez le lecteur en toute sécurité"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Failed to eject {0}. Another program may be using the drive."
+msgstr "Impossible d'éjecter {0}. Un autre programme utilise peut-être ce lecteur."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
+msgctxt "@item:intext"
+msgid "Removable Drive"
+msgstr "Lecteur amovible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:128
+msgctxt "@info:status"
+msgid "Cura does not accurately display layers when Wire Printing is enabled."
+msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:129
+msgctxt "@info:title"
+msgid "Simulation View"
+msgstr "Vue simulation"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:status"
+msgid "Nothing is shown because you need to slice first."
+msgstr "Rien ne s'affiche car vous devez d'abord découper."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:130
+msgctxt "@info:title"
+msgid "No layers to show"
+msgstr "Pas de couches à afficher"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:131
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:74
+msgctxt "@info:option_text"
+msgid "Do not show this message again"
+msgstr "Ne plus afficher ce message"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
+msgctxt "@item:inlistbox"
+msgid "Layer view"
+msgstr "Vue en couches"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:71
+msgctxt "@info:status"
+msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
+msgstr "Les zones surlignées indiquent que des surfaces manquent ou sont étrangères. Réparez votre modèle et ouvrez-le à nouveau dans Cura."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73
+msgctxt "@info:title"
+msgid "Model Errors"
+msgstr "Erreurs du modèle"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:79
+msgctxt "@action:button"
+msgid "Learn more"
+msgstr "En savoir plus"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
+msgctxt "@item:inmenu"
+msgid "Solid view"
+msgstr "Vue solide"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
+msgctxt "@label"
+msgid "Support Blocker"
+msgstr "Blocage des supports"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
+msgctxt "@info:tooltip"
+msgid "Create a volume in which supports are not printed."
+msgstr "Créer un volume dans lequel les supports ne sont pas imprimés."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
+msgctxt "@info:generic"
+msgid "Do you want to sync material and software packages with your account?"
+msgstr "Vous souhaitez synchroniser du matériel et des logiciels avec votre compte ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
+msgctxt "@info:title"
+msgid "Changes detected from your Ultimaker account"
+msgstr "Changements détectés à partir de votre compte Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
+msgctxt "@action:button"
+msgid "Sync"
+msgstr "Synchroniser"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
+msgctxt "@info:generic"
+msgid "Syncing..."
+msgstr "Synchronisation..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
+msgctxt "@button"
+msgid "Decline"
+msgstr "Refuser"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
+msgctxt "@button"
+msgid "Agree"
+msgstr "Accepter"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
+msgctxt "@title:window"
+msgid "Plugin License Agreement"
+msgstr "Plug-in d'accord de licence"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
+msgctxt "@button"
+msgid "Decline and remove from account"
+msgstr "Décliner et supprimer du compte"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
+msgctxt "@info:generic"
+msgid "You need to quit and restart {} before changes have effect."
+msgstr "Vous devez quitter et redémarrer {} avant que les changements apportés ne prennent effet."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
+msgctxt "@info:generic"
+msgid "{} plugins failed to download"
+msgstr "Échec de téléchargement des plugins {}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
+msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
+msgid "Open Compressed Triangle Mesh"
+msgstr "Ouvrir le maillage triangulaire compressé"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
+msgctxt "@item:inlistbox"
+msgid "COLLADA Digital Asset Exchange"
+msgstr "COLLADA Digital Asset Exchange"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
+msgctxt "@item:inlistbox"
+msgid "glTF Binary"
+msgstr "glTF binaire"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
+msgctxt "@item:inlistbox"
+msgid "glTF Embedded JSON"
+msgstr "JSON incorporé glTF"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
+msgctxt "@item:inlistbox"
+msgid "Stanford Triangle Format"
+msgstr "Format Triangle de Stanford"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
+msgctxt "@item:inlistbox"
+msgid "Compressed COLLADA Digital Asset Exchange"
+msgstr "COLLADA Digital Asset Exchange compressé"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
+msgctxt "@item:inlistbox"
+msgid "Ultimaker Format Package"
+msgstr "Ultimaker Format Package"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:57
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:72
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:94
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:149
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:159
+msgctxt "@info:error"
+msgid "Can't write to UFP file:"
+msgstr "Impossible d'écrire dans le fichier UFP :"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
+msgctxt "@action"
+msgid "Level build plate"
+msgstr "Nivellement du plateau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+msgctxt "@action"
+msgid "Select upgrades"
+msgstr "Sélectionner les mises à niveau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
+msgctxt "@action:button"
+msgid "Print via cloud"
+msgstr "Imprimer via le cloud"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
+msgctxt "@properties:tooltip"
+msgid "Print via cloud"
+msgstr "Imprimer via le cloud"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
+msgctxt "@info:status"
+msgid "Connected via cloud"
+msgstr "Connecté via le cloud"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:270
+#, python-brace-format
+msgctxt "@error:send"
+msgid "Unknown error code when uploading print job: {0}"
+msgstr "Code d'erreur inconnu lors du téléchargement d'une tâche d'impression : {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
msgctxt "info:status"
msgid "New printer detected from your Ultimaker account"
msgid_plural "New printers detected from your Ultimaker account"
msgstr[0] "Nouvelle imprimante détectée à partir de votre compte Ultimaker"
msgstr[1] "Nouvelles imprimantes détectées à partir de votre compte Ultimaker"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
#, python-brace-format
msgctxt "info:status Filled in with printer name and printer model."
msgid "Adding printer {name} ({model}) from your account"
msgstr "Ajout de l'imprimante {name} ({model}) à partir de votre compte"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
#, python-brace-format
msgctxt "info:{0} gets replaced by a number of printers"
msgid "... and {0} other"
@@ -970,70 +1389,71 @@ msgid_plural "... and {0} others"
msgstr[0] "... et {0} autre"
msgstr[1] "... et {0} autres"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
msgctxt "info:status"
msgid "Printers added from Digital Factory:"
msgstr "Imprimantes ajoutées à partir de Digital Factory :"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
msgctxt "info:status"
msgid "A cloud connection is not available for a printer"
msgid_plural "A cloud connection is not available for some printers"
msgstr[0] "Une connexion cloud n'est pas disponible pour une imprimante"
msgstr[1] "Une connexion cloud n'est pas disponible pour certaines imprimantes"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
msgctxt "info:status"
msgid "This printer is not linked to the Digital Factory:"
msgid_plural "These printers are not linked to the Digital Factory:"
msgstr[0] "Cette imprimante n'est pas associée à Digital Factory :"
msgstr[1] "Ces imprimantes ne sont pas associées à Digital Factory :"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
msgctxt "info:name"
msgid "Ultimaker Digital Factory"
msgstr "Ultimaker Digital Factory"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
#, python-brace-format
msgctxt "info:status"
msgid "To establish a connection, please visit the {website_link}"
msgstr "Pour établir une connexion, veuillez visiter le site {website_link}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
msgctxt "@action:button"
msgid "Keep printer configurations"
msgstr "Conserver les configurations d'imprimante"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
msgctxt "@action:button"
msgid "Remove printers"
msgstr "Supprimer des imprimantes"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "{printer_name} will be removed until the next account sync."
msgstr "L'imprimante {printer_name} sera supprimée jusqu'à la prochaine synchronisation de compte."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
msgstr "Pour supprimer {printer_name} définitivement, visitez le site {digital_factory_link}"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
#, python-brace-format
msgctxt "@message {printer_name} is replaced with the name of the printer"
msgid "Are you sure you want to remove {printer_name} temporarily?"
msgstr "Voulez-vous vraiment supprimer {printer_name} temporairement ?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
msgctxt "@title:window"
msgid "Remove printers?"
msgstr "Supprimer des imprimantes ?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
#, python-brace-format
msgctxt "@label"
msgid ""
@@ -1049,7 +1469,7 @@ msgstr[1] ""
"Vous êtes sur le point de supprimer {0} imprimantes de Cura. Cette action est irréversible.\n"
"Voulez-vous vraiment continuer ?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
msgctxt "@label"
msgid ""
"You are about to remove all printers from Cura. This action cannot be undone.\n"
@@ -1058,1530 +1478,761 @@ msgstr ""
"Vous êtes sur le point de supprimer toutes les imprimantes de Cura. Cette action est irréversible.\n"
"Voulez-vous vraiment continuer ?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
-msgctxt "@action:button"
-msgid "Print via cloud"
-msgstr "Imprimer via le cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
-msgctxt "@properties:tooltip"
-msgid "Print via cloud"
-msgstr "Imprimer via le cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
-msgctxt "@info:status"
-msgid "Connected via cloud"
-msgstr "Connecté via le cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
-#, 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}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
-msgctxt "@info:status"
-msgid "tomorrow"
-msgstr "demain"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
-msgctxt "@info:status"
-msgid "today"
-msgstr "aujourd'hui"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
-msgctxt "@info:status"
-msgid "Sending Print Job"
-msgstr "Lancement d'une tâche d'impression"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
-msgctxt "@info:status"
-msgid "Uploading print job to printer."
-msgstr "Téléchargement de la tâche d'impression sur l'imprimante."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
-#, python-brace-format
-msgctxt "@info:status"
-msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
-msgstr "Vous tentez de vous connecter à {0} mais ce n'est pas l'hôte de groupe. Vous pouvez visiter la page Web pour la configurer en tant qu'hôte de groupe."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
-msgctxt "@info:title"
-msgid "Not a group host"
-msgstr "Pas un hôte de groupe"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
-msgctxt "@action"
-msgid "Configure group"
-msgstr "Configurer le groupe"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
msgctxt "@info:status"
msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
msgstr "Lancez et surveillez des impressions où que vous soyez avec votre compte Ultimaker."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
msgctxt "@info:status Ultimaker Cloud should not be translated."
msgid "Connect to Ultimaker Digital Factory"
msgstr "Se connecter à Ultimaker Digital Factory"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
msgctxt "@action"
msgid "Get started"
msgstr "Prise en main"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
msgctxt "@info:status"
-msgid "Please wait until the current job has been sent."
-msgstr "Veuillez patienter jusqu'à ce que la tâche en cours ait été envoyée."
+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."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
msgctxt "@info:title"
-msgid "Print error"
-msgstr "Erreur d'impression"
+msgid "Update your printer"
+msgstr "Mettre à jour votre imprimante"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
-msgctxt "@info:text"
-msgid "Could not upload the data to the printer."
-msgstr "Impossible de transférer les données à l'imprimante."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
-msgctxt "@info:title"
-msgid "Network error"
-msgstr "Erreur de réseau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
#, python-brace-format
msgctxt "@info:status"
msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
msgstr "Cura a détecté des profils de matériau qui ne sont pas encore installés sur l'imprimante hôte du groupe {0}."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
msgctxt "@info:title"
msgid "Sending materials to printer"
msgstr "Envoi de matériaux à l'imprimante"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
+#, python-brace-format
+msgctxt "@info:status"
+msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
+msgstr "Vous tentez de vous connecter à {0} mais ce n'est pas l'hôte de groupe. Vous pouvez visiter la page Web pour la configurer en tant qu'hôte de groupe."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
+msgctxt "@info:title"
+msgid "Not a group host"
+msgstr "Pas un hôte de groupe"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
+msgctxt "@action"
+msgid "Configure group"
+msgstr "Configurer le groupe"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
+msgctxt "@info:status"
+msgid "Please wait until the current job has been sent."
+msgstr "Veuillez patienter jusqu'à ce que la tâche en cours ait été envoyée."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
+msgctxt "@info:title"
+msgid "Print error"
+msgstr "Erreur d'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
+msgctxt "@info:text"
+msgid "Could not upload the data to the printer."
+msgstr "Impossible de transférer les données à l'imprimante."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
+msgctxt "@info:title"
+msgid "Network error"
+msgstr "Erreur de réseau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
+msgctxt "@info:status"
+msgid "Sending Print Job"
+msgstr "Lancement d'une tâche d'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
+msgctxt "@info:status"
+msgid "Uploading print job to printer."
+msgstr "Téléchargement de la tâche d'impression sur l'imprimante."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
msgctxt "@info:status"
msgid "Print job queue is full. The printer can't accept a new job."
msgstr "La file d'attente pour les tâches d'impression est pleine. L'imprimante ne peut pas accepter une nouvelle tâche."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
msgctxt "@info:title"
msgid "Queue Full"
msgstr "La file d'attente est pleine"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
msgctxt "@info:status"
msgid "Print job was successfully sent to the printer."
msgstr "L'envoi de la tâche d'impression à l'imprimante a réussi."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
msgctxt "@info:title"
msgid "Data Sent"
msgstr "Données envoyées"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
-msgctxt "@info:status"
-msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
-msgstr "Vous tentez de vous connecter à une imprimante qui n'exécute pas Ultimaker Connect. Veuillez mettre à jour l'imprimante avec le dernier micrologiciel."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
-msgctxt "@info:title"
-msgid "Update your printer"
-msgstr "Mettre à jour votre imprimante"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
msgctxt "@action:button Preceded by 'Ready to'."
msgid "Print over network"
msgstr "Imprimer sur le réseau"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
msgctxt "@properties:tooltip"
msgid "Print over network"
msgstr "Imprimer sur le réseau"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
msgctxt "@info:status"
msgid "Connected over the network"
msgstr "Connecté sur le réseau"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
msgctxt "@action"
-msgid "Select upgrades"
-msgstr "Sélectionner les mises à niveau"
+msgid "Connect via Network"
+msgstr "Connecter via le réseau"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
-msgctxt "@action"
-msgid "Level build plate"
-msgstr "Nivellement du plateau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
-msgctxt "@title:tab"
-msgid "Recommended"
-msgstr "Recommandé"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
-msgctxt "@title:tab"
-msgid "Custom"
-msgstr "Personnalisé"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
-#, 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."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
-msgctxt "@info:title"
-msgid "Open Project File"
-msgstr "Ouvrir un fichier de projet"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
-#, 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}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
-msgctxt "@info:title"
-msgid "Can't Open Project File"
-msgstr "Impossible d'ouvrir le fichier de projet"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
-#, 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}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:693
-#, 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."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:27 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:33
-msgctxt "@item:inlistbox"
-msgid "3MF File"
-msgstr "Fichier 3MF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/__init__.py:17 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzReader/__init__.py:17
-msgctxt "@item:inlistbox"
-msgid "Compressed G-code File"
-msgstr "Fichier G-Code compressé"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
-msgctxt "@error:not supported"
-msgid "GCodeGzWriter does not support text mode."
-msgstr "GCodeGzWriter ne prend pas en charge le mode texte."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:31
-msgctxt "@info:title"
-msgid "3D Model Assistant"
-msgstr "Assistant de modèle 3D"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:96
-#, python-brace-format
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
msgctxt "@info:status"
-msgid ""
-"One or more 3D models may not print optimally due to the model size and material configuration:
\n"
-"{model_names}
\n"
-"Find out how to ensure the best possible print quality and reliability.
\n"
-"View print quality guide
"
-msgstr ""
-"Un ou plusieurs modèles 3D peuvent ne pas s'imprimer de manière optimale en raison de la taille du modèle et de la configuration matérielle :
\n"
-"{model_names}
\n"
-"Découvrez comment optimiser la qualité et la fiabilité de l'impression.
\n"
-"Consultez le guide de qualité d'impression
"
+msgid "tomorrow"
+msgstr "demain"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
-msgctxt "@info"
-msgid "Could not access update information."
-msgstr "Impossible d'accéder aux informations de mise à jour."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
-#, python-brace-format
-msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
-msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
-msgstr "De nouvelles fonctionnalités ou des correctifs de bugs sont disponibles pour votre {machine_name} ! Si vous ne possédez pas la dernière version disponible, il est recommandé de mettre à jour le micrologiciel sur votre imprimante avec la version {latest_version}."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
-#, python-format
-msgctxt "@info:title The %s gets replaced with the printer name."
-msgid "New %s firmware available"
-msgstr "Nouveau firmware %s disponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
-msgctxt "@action:button"
-msgid "How to update"
-msgstr "Comment effectuer la mise à jour"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "G File"
-msgstr "Fichier G"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:347
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
msgctxt "@info:status"
-msgid "Parsing G-code"
-msgstr "Analyse du G-Code"
+msgid "today"
+msgstr "aujourd'hui"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:349 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:503
-msgctxt "@info:title"
-msgid "G-code Details"
-msgstr "Détails G-Code"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
+msgctxt "@item:inmenu"
+msgid "USB printing"
+msgstr "Impression par USB"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:501
-msgctxt "@info:generic"
-msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
-msgstr "Assurez-vous que le g-code est adapté à votre imprimante et à la configuration de l'imprimante avant d'y envoyer le fichier. La représentation du g-code peut ne pas être exacte."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
+msgctxt "@action:button Preceded by 'Ready to'."
+msgid "Print via USB"
+msgstr "Imprimer via USB"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:12
-msgctxt "@label"
-msgid "Support Blocker"
-msgstr "Blocage des supports"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:13
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
msgctxt "@info:tooltip"
-msgid "Create a volume in which supports are not printed."
-msgstr "Créer un volume dans lequel les supports ne sont pas imprimés."
+msgid "Print via USB"
+msgstr "Imprimer via USB"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:15
-msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
-msgid "Open Compressed Triangle Mesh"
-msgstr "Ouvrir le maillage triangulaire compressé"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
+msgctxt "@info:status"
+msgid "Connected via USB"
+msgstr "Connecté via USB"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
+msgctxt "@label"
+msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
+msgstr "Une impression USB est en cours, la fermeture de Cura arrêtera cette impression. Êtes-vous sûr ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
+msgstr "Une impression est encore en cours. Cura ne peut pas démarrer une autre impression via USB tant que l'impression précédente n'est pas terminée."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
+msgctxt "@message"
+msgid "Print in Progress"
+msgstr "Impression en cours"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
msgctxt "@item:inlistbox"
-msgid "COLLADA Digital Asset Exchange"
-msgstr "COLLADA Digital Asset Exchange"
+msgid "X3D File"
+msgstr "Fichier X3D"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:23
-msgctxt "@item:inlistbox"
-msgid "glTF Binary"
-msgstr "glTF binaire"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:27
-msgctxt "@item:inlistbox"
-msgid "glTF Embedded JSON"
-msgstr "JSON incorporé glTF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:36
-msgctxt "@item:inlistbox"
-msgid "Stanford Triangle Format"
-msgstr "Format Triangle de Stanford"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:40
-msgctxt "@item:inlistbox"
-msgid "Compressed COLLADA Digital Asset Exchange"
-msgstr "COLLADA Digital Asset Exchange compressé"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPReader/__init__.py:22 /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/__init__.py:28
-msgctxt "@item:inlistbox"
-msgid "Ultimaker Format Package"
-msgstr "Ultimaker Format Package"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/LegacyProfileReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "Cura 15.04 profiles"
-msgstr "Profils Cura 15.04"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PrepareStage/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Prepare"
-msgstr "Préparer"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/__init__.py:14
-msgctxt "@item:inmenu"
-msgid "Monitor"
-msgstr "Surveiller"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/XRayView/__init__.py:12
+#: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
msgctxt "@item:inlistbox"
msgid "X-Ray view"
msgstr "Visualisation par rayons X"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
-msgctxt "@error:zip"
-msgid "Error writing 3mf file."
-msgstr "Erreur d'écriture du fichier 3MF."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "3MF file"
-msgstr "Fichier 3MF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:34
-msgctxt "@item:inlistbox"
-msgid "Cura Project 3MF file"
-msgstr "Projet Cura fichier 3MF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
-msgctxt "@error:zip"
-msgid "3MF Writer plug-in is corrupt."
-msgstr "Le plug-in 3MF Writer est corrompu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59 /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
-msgctxt "@error:zip"
-msgid "No permission to write the workspace here."
-msgstr "Aucune autorisation d'écrire l'espace de travail ici."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
-msgctxt "@error:zip"
-msgid "The operating system does not allow saving a project file to this location or with this file name."
-msgstr "Le système d'exploitation ne permet pas d'enregistrer un fichier de projet à cet emplacement ou avec ce nom de fichier."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PreviewStage/__init__.py:13
-msgctxt "@item:inmenu"
-msgid "Preview"
-msgstr "Aperçu"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/__init__.py:15
-msgctxt "@item:inlistbox"
-msgid "Layer view"
-msgstr "Vue en couches"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:124
-msgctxt "@info:status"
-msgid "Cura does not accurately display layers when Wire Printing is enabled."
-msgstr "Cura n'affiche pas les couches avec précision lorsque l'impression filaire est activée."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:125
-msgctxt "@info:title"
-msgid "Simulation View"
-msgstr "Vue simulation"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:status"
-msgid "Nothing is shown because you need to slice first."
-msgstr "Rien ne s'affiche car vous devez d'abord découper."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
-msgctxt "@info:title"
-msgid "No layers to show"
-msgstr "Pas de couches à afficher"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:127 /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:74
-msgctxt "@info:option_text"
-msgid "Do not show this message again"
-msgstr "Ne plus afficher ce message"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
-msgctxt "@action"
-msgid "Machine Settings"
-msgstr "Paramètres de la machine"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/__init__.py:12
-msgctxt "@item:inmenu"
-msgid "Solid view"
-msgstr "Vue solide"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:71
-msgctxt "@info:status"
-msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
-msgstr "Les zones surlignées indiquent que des surfaces manquent ou sont étrangères. Réparez votre modèle et ouvrez-le à nouveau dans Cura."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:73
-msgctxt "@info:title"
-msgid "Model Errors"
-msgstr "Erreurs du modèle"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:79
-msgctxt "@action:button"
-msgid "Learn more"
-msgstr "En savoir plus"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/UFPWriter.py:134
-msgctxt "@info:error"
-msgid "Can't write to UFP file:"
-msgstr "Impossible d'écrire dans le fichier UFP :"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:74
-msgctxt "@error:not supported"
-msgid "GCodeWriter does not support non-text mode."
-msgstr "GCodeWriter ne prend pas en charge le mode non-texte."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:96
-msgctxt "@warning:status"
-msgid "Please prepare G-code before exporting."
-msgstr "Veuillez préparer le G-Code avant d'exporter."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "JPG Image"
-msgstr "Image JPG"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:18
-msgctxt "@item:inlistbox"
-msgid "JPEG Image"
-msgstr "Image JPEG"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:22
-msgctxt "@item:inlistbox"
-msgid "PNG Image"
-msgstr "Image PNG"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:26
-msgctxt "@item:inlistbox"
-msgid "BMP Image"
-msgstr "Image BMP"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:30
-msgctxt "@item:inlistbox"
-msgid "GIF Image"
-msgstr "Image GIF"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DriveApiService.py:86 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
-msgctxt "@info:backup_status"
-msgid "There was an error trying to restore your backup."
-msgstr "Une erreur s’est produite lors de la tentative de restauration de votre sauvegarde."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
-msgctxt "@info:title"
-msgid "Backups"
-msgstr "Sauvegardes"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
-msgctxt "@info:backup_status"
-msgid "There was an error while uploading your backup."
-msgstr "Une erreur s’est produite lors du téléchargement de votre sauvegarde."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
-msgctxt "@info:backup_status"
-msgid "Creating your backup..."
-msgstr "Création de votre sauvegarde..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
-msgctxt "@info:backup_status"
-msgid "There was an error while creating your backup."
-msgstr "Une erreur s'est produite lors de la création de votre sauvegarde."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
-msgctxt "@info:backup_status"
-msgid "Uploading your backup..."
-msgstr "Téléchargement de votre sauvegarde..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
-msgctxt "@info:backup_status"
-msgid "Your backup has finished uploading."
-msgstr "Le téléchargement de votre sauvegarde est terminé."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
-msgctxt "@error:file_size"
-msgid "The backup exceeds the maximum file size."
-msgstr "La sauvegarde dépasse la taille de fichier maximale."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
-msgctxt "@item:inmenu"
-msgid "Manage backups"
-msgstr "Gérer les sauvegardes"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
-msgctxt "@title"
-msgid "Update Firmware"
-msgstr "Mettre à jour le firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
-msgctxt "@label"
-msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
-msgstr "Le firmware est le logiciel fonctionnant directement dans votre imprimante 3D. Ce firmware contrôle les moteurs pas à pas, régule la température et surtout, fait que votre machine fonctionne."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
-msgctxt "@label"
-msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
-msgstr "Le firmware fourni avec les nouvelles imprimantes fonctionne, mais les nouvelles versions ont tendance à fournir davantage de fonctionnalités ainsi que des améliorations."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
-msgctxt "@action:button"
-msgid "Automatically upgrade Firmware"
-msgstr "Mise à niveau automatique du firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
-msgctxt "@action:button"
-msgid "Upload custom Firmware"
-msgstr "Charger le firmware personnalisé"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
-msgctxt "@label"
-msgid "Firmware can not be updated because there is no connection with the printer."
-msgstr "Impossible de se connecter à l'imprimante ; échec de la mise à jour du firmware."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
-msgctxt "@label"
-msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
-msgstr "Échec de la mise à jour du firmware, car cette fonctionnalité n'est pas prise en charge par la connexion avec l'imprimante."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
-msgctxt "@title:window"
-msgid "Select custom firmware"
-msgstr "Sélectionner le firmware personnalisé"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
-msgctxt "@title:window"
-msgid "Firmware Update"
-msgstr "Mise à jour du firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
-msgctxt "@label"
-msgid "Updating firmware."
-msgstr "Mise à jour du firmware en cours."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
-msgctxt "@label"
-msgid "Firmware update completed."
-msgstr "Mise à jour du firmware terminée."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
-msgctxt "@label"
-msgid "Firmware update failed due to an unknown error."
-msgstr "Échec de la mise à jour du firmware en raison d'une erreur inconnue."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
-msgctxt "@label"
-msgid "Firmware update failed due to an communication error."
-msgstr "Échec de la mise à jour du firmware en raison d'une erreur de communication."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
-msgctxt "@label"
-msgid "Firmware update failed due to an input/output error."
-msgstr "Échec de la mise à jour du firmware en raison d'une erreur d'entrée/de sortie."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
-msgctxt "@label"
-msgid "Firmware update failed due to missing firmware."
-msgstr "Échec de la mise à jour du firmware en raison du firmware manquant."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
-msgctxt "@title"
-msgid "Marketplace"
-msgstr "Marché en ligne"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
-msgctxt "@label"
-msgid "You need to accept the license to install the package"
-msgstr "Vous devez accepter la licence pour installer le package"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
-msgctxt "@title"
-msgid "Changes from your account"
-msgstr "Changements à partir de votre compte"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
-msgctxt "@button"
-msgid "Dismiss"
-msgstr "Ignorer"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:182
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
-msgctxt "@button"
-msgid "Next"
-msgstr "Suivant"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
-msgctxt "@label"
-msgid "The following packages will be added:"
-msgstr "Les packages suivants seront ajoutés :"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
-msgctxt "@label"
-msgid "The following packages can not be installed because of an incompatible Cura version:"
-msgstr "Les packages suivants ne peuvent pas être installés en raison d'une version incompatible de Cura :"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
-msgctxt "@title:window"
-msgid "Confirm uninstall"
-msgstr "Confirmer la désinstallation"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
-msgctxt "@text:window"
-msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
-msgstr "Vous désinstallez des matériaux et/ou des profils qui sont encore en cours d'utilisation. La confirmation réinitialisera les matériaux / profils suivants à leurs valeurs par défaut."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
-msgctxt "@text:window"
-msgid "Materials"
-msgstr "Matériaux"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
-msgctxt "@text:window"
-msgid "Profiles"
-msgstr "Profils"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
-msgctxt "@action:button"
-msgid "Confirm"
-msgstr "Confirmer"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
-msgctxt "@info"
-msgid "Could not connect to the Cura Package database. Please check your connection."
-msgstr "Impossible de se connecter à la base de données Cura Package. Veuillez vérifier votre connexion."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Contributions"
-msgstr "Contributions de la communauté"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
-msgctxt "@label"
-msgid "Community Plugins"
-msgstr "Plug-ins de la communauté"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
-msgctxt "@label"
-msgid "Generic Materials"
-msgstr "Matériaux génériques"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
-msgctxt "@label"
-msgid "Version"
-msgstr "Version"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
-msgctxt "@label"
-msgid "Last updated"
-msgstr "Dernière mise à jour"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
-msgctxt "@label"
-msgid "Brand"
-msgstr "Marque"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
-msgctxt "@label"
-msgid "Downloads"
-msgstr "Téléchargements"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
-msgctxt "@title:tab"
-msgid "Installed plugins"
-msgstr "Plug-ins installés"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
-msgctxt "@info"
-msgid "No plugin has been installed."
-msgstr "Aucun plug-in n'a été installé."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
-msgctxt "@title:tab"
-msgid "Installed materials"
-msgstr "Matériaux installés"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
-msgctxt "@info"
-msgid "No material has been installed."
-msgstr "Aucun matériau n'a été installé."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
-msgctxt "@title:tab"
-msgid "Bundled plugins"
-msgstr "Plug-ins groupés"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
-msgctxt "@title:tab"
-msgid "Bundled materials"
-msgstr "Matériaux groupés"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
-msgctxt "@label"
-msgid "Website"
-msgstr "Site Internet"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
-msgctxt "@label"
-msgid "Email"
-msgstr "E-mail"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
-msgctxt "@description"
-msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
-msgstr "Veuillez vous connecter pour obtenir les plug-ins et matériaux vérifiés pour Ultimaker Cura Enterprise"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39 /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:199 /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:53
-msgctxt "@button"
-msgid "Sign in"
-msgstr "Se connecter"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
-msgctxt "@info"
-msgid "Fetching packages..."
-msgstr "Récupération des paquets..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
-msgctxt "@label"
-msgid "Compatibility"
-msgstr "Compatibilité"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
-msgctxt "@label:table_header"
-msgid "Machine"
-msgstr "Machine"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
-msgctxt "@label:table_header"
-msgid "Build Plate"
-msgstr "Plateau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
-msgctxt "@label:table_header"
-msgid "Support"
-msgstr "Support"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
-msgctxt "@label:table_header"
-msgid "Quality"
-msgstr "Qualité"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
-msgctxt "@action:label"
-msgid "Technical Data Sheet"
-msgstr "Fiche technique"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
-msgctxt "@action:label"
-msgid "Safety Data Sheet"
-msgstr "Fiche de sécurité"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
-msgctxt "@action:label"
-msgid "Printing Guidelines"
-msgstr "Directives d'impression"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
-msgctxt "@action:label"
-msgid "Website"
-msgstr "Site Internet"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
-msgctxt "@title:tab"
-msgid "Plugins"
-msgstr "Plug-ins"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:457
-msgctxt "@title:tab"
-msgid "Materials"
-msgstr "Matériaux"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
-msgctxt "@title:tab"
-msgid "Installed"
-msgstr "Installé"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
msgctxt "@info:tooltip"
-msgid "Go to Web Marketplace"
-msgstr "Aller sur le Marché en ligne"
+msgid "Some things could be problematic in this print. Click to see tips for adjustment."
+msgstr "Certains éléments pourraient causer des problèmes à cette impression. Cliquez pour voir les conseils d'ajustement."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
-msgctxt "@label"
-msgid "Will install upon restarting"
-msgstr "S'installera au redémarrage"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
-msgctxt "@action:button"
-msgid "Update"
-msgstr "Mise à jour"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
-msgctxt "@action:button"
-msgid "Updating"
-msgstr "Mise à jour"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
-msgctxt "@action:button"
-msgid "Updated"
-msgstr "Mis à jour"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to update"
-msgstr "Connexion nécessaire pour effectuer la mise à jour"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Downgrade"
-msgstr "Revenir à une version précédente"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
-msgctxt "@action:button"
-msgid "Uninstall"
-msgstr "Désinstaller"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46 /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
-msgctxt "@action:button"
-msgid "Installed"
-msgstr "Installé"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Log in is required to install or update"
-msgstr "Connexion nécessaire pour l'installation ou la mise à jour"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
-msgctxt "@label:The string between and is the highlighted link"
-msgid "Buy material spools"
-msgstr "Acheter des bobines de matériau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
-msgctxt "@label"
-msgid "Premium"
-msgstr "Premium"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
-msgctxt "@label"
-msgid "Search materials"
-msgstr "Rechercher des matériaux"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
-msgctxt "@info"
-msgid "You will need to restart Cura before changes in packages have effect."
-msgstr "Vous devez redémarrer Cura pour que les changements apportés aux paquets ne prennent effet."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
-msgctxt "@info:button, %1 is the application name"
-msgid "Quit %1"
-msgstr "Quitter %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
-msgctxt "@action:button"
-msgid "Back"
-msgstr "Précédent"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
-msgctxt "@action:button"
-msgid "Install"
-msgstr "Installer"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
-msgctxt "@label"
-msgid "Mesh Type"
-msgstr "Type de maille"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
-msgctxt "@label"
-msgid "Normal model"
-msgstr "Modèle normal"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
-msgctxt "@label"
-msgid "Print as support"
-msgstr "Imprimer comme support"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
-msgctxt "@label"
-msgid "Modify settings for overlaps"
-msgstr "Modifier les paramètres de chevauchement"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
-msgctxt "@label"
-msgid "Don't support overlaps"
-msgstr "Ne prend pas en charge le chevauchement"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
-msgctxt "@item:inlistbox"
-msgid "Infill mesh only"
-msgstr "Maille de remplissage uniquement"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
-msgctxt "@item:inlistbox"
-msgid "Cutting mesh"
-msgstr "Maille de coupe"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
-msgctxt "@action:button"
-msgid "Select settings"
-msgstr "Sélectionner les paramètres"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
-msgctxt "@title:window"
-msgid "Select Settings to Customize for this model"
-msgstr "Sélectionner les paramètres pour personnaliser ce modèle"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
-msgctxt "@label:textbox"
-msgid "Filter..."
-msgstr "Filtrer..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
-msgctxt "@label:checkbox"
-msgid "Show all"
-msgstr "Afficher tout"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
-msgctxt "@title:window"
-msgid "Post Processing Plugin"
-msgstr "Plug-in de post-traitement"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
-msgctxt "@label"
-msgid "Post Processing Scripts"
-msgstr "Scripts de post-traitement"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
-msgctxt "@action"
-msgid "Add a script"
-msgstr "Ajouter un script"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
-msgctxt "@label"
-msgid "Settings"
-msgstr "Paramètres"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
-msgctxt "@info:tooltip"
-msgid "Change active post-processing scripts."
-msgstr "Modifiez les scripts de post-traitement actifs."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
-msgctxt "@info:tooltip"
-msgid "The following script is active:"
-msgid_plural "The following scripts are active:"
-msgstr[0] "Le script suivant est actif :"
-msgstr[1] "Les scripts suivants sont actifs :"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
-msgctxt "@label"
-msgid "Queued"
-msgstr "Mis en file d'attente"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
-msgctxt "@label link to connect manager"
-msgid "Manage in browser"
-msgstr "Gérer dans le navigateur"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
-msgctxt "@label"
-msgid "There are no print jobs in the queue. Slice and send a job to add one."
-msgstr "Il n'y a pas de travaux d'impression dans la file d'attente. Découpez et envoyez une tache pour en ajouter une."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
-msgctxt "@label"
-msgid "Print jobs"
-msgstr "Tâches d'impression"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
-msgctxt "@label"
-msgid "Total print time"
-msgstr "Temps total d'impression"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
-msgctxt "@label"
-msgid "Waiting for"
-msgstr "Attente de"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
-msgctxt "@title:window"
-msgid "Configuration Changes"
-msgstr "Modifications de configuration"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
-msgctxt "@action:button"
-msgid "Override"
-msgstr "Remplacer"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
-msgctxt "@label"
-msgid "The assigned printer, %1, requires the following configuration change:"
-msgid_plural "The assigned printer, %1, requires the following configuration changes:"
-msgstr[0] "L'imprimante assignée, %1, nécessite la modification de configuration suivante :"
-msgstr[1] "L'imprimante assignée, %1, nécessite les modifications de configuration suivantes :"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
-msgctxt "@label"
-msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
-msgstr "L'imprimante %1 est assignée, mais le projet contient une configuration matérielle inconnue."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
-msgctxt "@label"
-msgid "Change material %1 from %2 to %3."
-msgstr "Changer le matériau %1 de %2 à %3."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
-msgctxt "@label"
-msgid "Load %3 as material %1 (This cannot be overridden)."
-msgstr "Charger %3 comme matériau %1 (Ceci ne peut pas être remplacé)."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
-msgctxt "@label"
-msgid "Change print core %1 from %2 to %3."
-msgstr "Changer le print core %1 de %2 à %3."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
-msgctxt "@label"
-msgid "Change build plate to %1 (This cannot be overridden)."
-msgstr "Changer le plateau en %1 (Ceci ne peut pas être remplacé)."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
-msgctxt "@label"
-msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
-msgstr "Si vous sélectionnez « Remplacer », les paramètres de la configuration actuelle de l'imprimante seront utilisés. Cela peut entraîner l'échec de l'impression."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
-msgctxt "@label"
-msgid "Glass"
-msgstr "Verre"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
-msgctxt "@label"
-msgid "Aluminum"
-msgstr "Aluminium"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
-msgctxt "@label"
-msgid "Unavailable printer"
-msgstr "Imprimante indisponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
-msgctxt "@label"
-msgid "First available"
-msgstr "Premier disponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
-msgctxt "@info"
-msgid "Please update your printer's firmware to manage the queue remotely."
-msgstr "Veuillez mettre à jour le Firmware de votre imprimante pour gérer la file d'attente à distance."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
-msgctxt "@title:window"
-msgid "Connect to Networked Printer"
-msgstr "Connecter à l'imprimante en réseau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
-msgctxt "@label"
-msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
-msgstr "Pour imprimer directement sur votre imprimante via le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble Ethernet ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
-msgctxt "@label"
-msgid "Select your printer from the list below:"
-msgstr "Sélectionnez votre imprimante dans la liste ci-dessous :"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
-msgctxt "@action:button"
-msgid "Edit"
-msgstr "Modifier"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:55
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:138
-msgctxt "@action:button"
-msgid "Remove"
-msgstr "Supprimer"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
-msgctxt "@action:button"
-msgid "Refresh"
-msgstr "Rafraîchir"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
-msgctxt "@label"
-msgid "If your printer is not listed, read the network printing troubleshooting guide"
-msgstr "Si votre imprimante n'apparaît pas dans la liste, lisez le guide de dépannage de l'impression en réseau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
-msgctxt "@label"
-msgid "Type"
-msgstr "Type"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
-msgctxt "@label"
-msgid "Firmware version"
-msgstr "Version du firmware"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
-msgctxt "@label"
-msgid "Address"
-msgstr "Adresse"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
-msgctxt "@label"
-msgid "This printer is not set up to host a group of printers."
-msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
-msgctxt "@label"
-msgid "This printer is the host for a group of %1 printers."
-msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
-msgctxt "@label"
-msgid "The printer at this address has not yet responded."
-msgstr "L'imprimante à cette adresse n'a pas encore répondu."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
-msgctxt "@action:button"
-msgid "Connect"
-msgstr "Connecter"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
-msgctxt "@title:window"
-msgid "Invalid IP address"
-msgstr "Adresse IP non valide"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
-msgctxt "@text"
-msgid "Please enter a valid IP address."
-msgstr "Veuillez saisir une adresse IP valide."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
-msgctxt "@title:window"
-msgid "Printer Address"
-msgstr "Adresse de l'imprimante"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
-msgctxt "@label"
-msgid "Enter the IP address of your printer on the network."
-msgstr "Saisissez l'adresse IP de votre imprimante sur le réseau."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361 /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:227
-msgctxt "@action:button"
-msgid "OK"
-msgstr "OK"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
-msgctxt "@title:window"
-msgid "Print over network"
-msgstr "Imprimer sur le réseau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
-msgctxt "@action:button"
-msgid "Print"
-msgstr "Imprimer"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
-msgctxt "@label"
-msgid "Printer selection"
-msgstr "Sélection d'imprimantes"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
-msgctxt "@label"
-msgid "Move to top"
-msgstr "Déplacer l'impression en haut"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
-msgctxt "@label"
-msgid "Delete"
-msgstr "Effacer"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:290
-msgctxt "@label"
-msgid "Resume"
-msgstr "Reprendre"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
-msgctxt "@label"
-msgid "Pausing..."
-msgstr "Mise en pause..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
-msgctxt "@label"
-msgid "Resuming..."
-msgstr "Reprise..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:285 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:294
-msgctxt "@label"
-msgid "Pause"
-msgstr "Pause"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
-msgctxt "@label"
-msgid "Aborting..."
-msgstr "Abandon..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
-msgctxt "@label"
-msgid "Abort"
-msgstr "Abandonner"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to move %1 to the top of the queue?"
-msgstr "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
-msgctxt "@window:title"
-msgid "Move print job to top"
-msgstr "Déplacer l'impression en haut de la file d'attente"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to delete %1?"
-msgstr "Êtes-vous sûr de vouloir supprimer %1 ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
-msgctxt "@window:title"
-msgid "Delete print job"
-msgstr "Supprimer l'impression"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
-msgctxt "@label %1 is the name of a print job."
-msgid "Are you sure you want to abort %1?"
-msgstr "Êtes-vous sûr de vouloir annuler %1 ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164 /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:336
-msgctxt "@window:title"
-msgid "Abort print"
-msgstr "Abandonner l'impression"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
-msgctxt "@label:status"
-msgid "Aborted"
-msgstr "Abandonné"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
-msgctxt "@label:status"
-msgid "Finished"
-msgstr "Terminé"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86 /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
-msgctxt "@label:status"
-msgid "Preparing..."
-msgstr "Préparation..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
-msgctxt "@label:status"
-msgid "Aborting..."
-msgstr "Abandon..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
-msgctxt "@label:status"
-msgid "Pausing..."
-msgstr "Mise en pause..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
-msgctxt "@label:status"
-msgid "Paused"
-msgstr "En pause"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
-msgctxt "@label:status"
-msgid "Resuming..."
-msgstr "Reprise..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
-msgctxt "@label:status"
-msgid "Action required"
-msgstr "Action requise"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
-msgctxt "@label:status"
-msgid "Finishes %1 at %2"
-msgstr "Finit %1 à %2"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
-msgctxt "@label link to Connect and Cloud interfaces"
-msgid "Manage printer"
-msgstr "Gérer l'imprimante"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
-msgctxt "@label:status"
-msgid "Loading..."
-msgstr "Chargement..."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
-msgctxt "@label:status"
-msgid "Unavailable"
-msgstr "Indisponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
-msgctxt "@label:status"
-msgid "Unreachable"
-msgstr "Injoignable"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
-msgctxt "@label:status"
-msgid "Idle"
-msgstr "Inactif"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
-msgctxt "@label:status"
-msgid "Printing"
-msgstr "Impression"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
-msgctxt "@label"
-msgid "Untitled"
-msgstr "Sans titre"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
-msgctxt "@label"
-msgid "Anonymous"
-msgstr "Anonyme"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
-msgctxt "@label:status"
-msgid "Requires configuration changes"
-msgstr "Nécessite des modifications de configuration"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
-msgctxt "@action:button"
-msgid "Details"
-msgstr "Détails"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
-msgctxt "@label"
-msgid "Please select any upgrades made to this Ultimaker Original"
-msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker Original"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
-msgctxt "@label"
-msgid "Heated Build Plate (official kit or self-built)"
-msgstr "Plateau chauffant (kit officiel ou fabriqué soi-même)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
-msgctxt "@title"
-msgid "Build Plate Leveling"
-msgstr "Nivellement du plateau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
-msgctxt "@label"
-msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
-msgstr "Pour obtenir des résultats d'impression optimaux, vous pouvez maintenant régler votre plateau. Quand vous cliquez sur 'Aller à la position suivante', la buse se déplacera vers les différentes positions pouvant être réglées."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
-msgctxt "@label"
-msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
-msgstr "Pour chacune des positions ; glissez un bout de papier sous la buse et ajustez la hauteur du plateau. La hauteur du plateau est juste lorsque la pointe de la buse gratte légèrement le papier."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
-msgctxt "@action:button"
-msgid "Start Build Plate Leveling"
-msgstr "Démarrer le nivellement du plateau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
-msgctxt "@action:button"
-msgid "Move to Next Position"
-msgstr "Aller à la position suivante"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
msgctxt "@title:window"
msgid "Open Project"
msgstr "Ouvrir un projet"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
msgctxt "@action:ComboBox Update/override existing profile"
msgid "Update existing"
msgstr "Mettre à jour l'existant"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
msgctxt "@action:ComboBox Save settings in a new profile"
msgid "Create new"
msgstr "Créer"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:75 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
msgctxt "@action:title"
msgid "Summary - Cura Project"
msgstr "Résumé - Projet Cura"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:97 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
msgctxt "@action:label"
msgid "Printer settings"
msgstr "Paramètres de l'imprimante"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
msgctxt "@info:tooltip"
msgid "How should the conflict in the machine be resolved?"
msgstr "Comment le conflit de la machine doit-il être résolu ?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
msgctxt "@action:label"
msgid "Type"
msgstr "Type"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:183 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
msgctxt "@action:label"
msgid "Printer Group"
msgstr "Groupe d'imprimantes"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:205 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
msgctxt "@action:label"
msgid "Profile settings"
msgstr "Paramètres de profil"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
msgctxt "@info:tooltip"
msgid "How should the conflict in the profile be resolved?"
msgstr "Comment le conflit du profil doit-il être résolu ?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:353 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
msgctxt "@action:label"
msgid "Name"
msgstr "Nom"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:258 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
msgctxt "@action:label"
msgid "Intent"
msgstr "Intent"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:274 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
msgctxt "@action:label"
msgid "Not in profile"
msgstr "Absent du profil"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:279 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
msgctxt "@action:label"
msgid "%1 override"
msgid_plural "%1 overrides"
msgstr[0] "%1 écrasent"
msgstr[1] "%1 écrase"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
msgctxt "@action:label"
msgid "Derivative from"
msgstr "Dérivé de"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
msgctxt "@action:label"
msgid "%1, %2 override"
msgid_plural "%1, %2 overrides"
msgstr[0] "%1, %2 écrasent"
msgstr[1] "%1, %2 écrase"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
msgctxt "@action:label"
msgid "Material settings"
msgstr "Paramètres du matériau"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
msgctxt "@info:tooltip"
msgid "How should the conflict in the material be resolved?"
msgstr "Comment le conflit du matériau doit-il être résolu ?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
msgctxt "@action:label"
msgid "Setting visibility"
msgstr "Visibilité des paramètres"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
msgctxt "@action:label"
msgid "Mode"
msgstr "Mode"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
msgctxt "@action:label"
msgid "Visible settings:"
msgstr "Paramètres visibles :"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
msgctxt "@action:label"
msgid "%1 out of %2"
msgstr "%1 sur %2"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
msgctxt "@action:warning"
msgid "Loading a project will clear all models on the build plate."
msgstr "Le chargement d'un projet effacera tous les modèles sur le plateau."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
msgctxt "@action:button"
msgid "Open"
msgstr "Ouvrir"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.qml:22
-msgctxt "@info:tooltip"
-msgid "Some things could be problematic in this print. Click to see tips for adjustment."
-msgstr "Certains éléments pourraient causer des problèmes à cette impression. Cliquez pour voir les conseils d'ajustement."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
+msgctxt "@button"
+msgid "Want more?"
+msgstr "Vous en voulez plus ?"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:100
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
+msgctxt "@button"
+msgid "Backup Now"
+msgstr "Sauvegarder maintenant"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
+msgctxt "@checkbox:description"
+msgid "Auto Backup"
+msgstr "Sauvegarde automatique"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
+msgctxt "@checkbox:description"
+msgid "Automatically create a backup each day that Cura is started."
+msgstr "Créez automatiquement une sauvegarde chaque jour où Cura est démarré."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
+msgctxt "@button"
+msgid "Restore"
+msgstr "Restaurer"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
+msgctxt "@dialog:title"
+msgid "Delete Backup"
+msgstr "Supprimer la sauvegarde"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
+msgctxt "@dialog:info"
+msgid "Are you sure you want to delete this backup? This cannot be undone."
+msgstr "Êtes-vous sûr de vouloir supprimer cette sauvegarde ? Il est impossible d'annuler cette action."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
+msgctxt "@dialog:title"
+msgid "Restore Backup"
+msgstr "Restaurer la sauvegarde"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
+msgctxt "@dialog:info"
+msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
+msgstr "Vous devez redémarrer Cura avant que votre sauvegarde ne soit restaurée. Voulez-vous fermer Cura maintenant ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
+msgctxt "@backuplist:label"
+msgid "Cura Version"
+msgstr "Version Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
+msgctxt "@backuplist:label"
+msgid "Machines"
+msgstr "Machines"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
+msgctxt "@backuplist:label"
+msgid "Materials"
+msgstr "Matériaux"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
+msgctxt "@backuplist:label"
+msgid "Profiles"
+msgstr "Profils"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
+msgctxt "@backuplist:label"
+msgid "Plugins"
+msgstr "Plug-ins"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
+msgctxt "@title:window"
+msgid "Cura Backups"
+msgstr "Sauvegardes Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
+msgctxt "@title"
+msgid "My Backups"
+msgstr "Mes sauvegardes"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
+msgctxt "@empty_state"
+msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
+msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauvegarder maintenant » pour en créer une."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
+msgctxt "@backup_limit_info"
+msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
+msgstr "Pendant la phase de prévisualisation, vous ne pourrez voir qu'un maximum de 5 sauvegardes. Supprimez une sauvegarde pour voir les plus anciennes."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
+msgctxt "@description"
+msgid "Backup and synchronize your Cura settings."
+msgstr "Sauvegardez et synchronisez vos paramètres Cura."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:199
+msgctxt "@button"
+msgid "Sign in"
+msgstr "Se connecter"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
+msgctxt "@title"
+msgid "Update Firmware"
+msgstr "Mettre à jour le firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
+msgctxt "@label"
+msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
+msgstr "Le firmware est le logiciel fonctionnant directement dans votre imprimante 3D. Ce firmware contrôle les moteurs pas à pas, régule la température et surtout, fait que votre machine fonctionne."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
+msgctxt "@label"
+msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
+msgstr "Le firmware fourni avec les nouvelles imprimantes fonctionne, mais les nouvelles versions ont tendance à fournir davantage de fonctionnalités ainsi que des améliorations."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
+msgctxt "@action:button"
+msgid "Automatically upgrade Firmware"
+msgstr "Mise à niveau automatique du firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
+msgctxt "@action:button"
+msgid "Upload custom Firmware"
+msgstr "Charger le firmware personnalisé"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
+msgctxt "@label"
+msgid "Firmware can not be updated because there is no connection with the printer."
+msgstr "Impossible de se connecter à l'imprimante ; échec de la mise à jour du firmware."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
+msgctxt "@label"
+msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
+msgstr "Échec de la mise à jour du firmware, car cette fonctionnalité n'est pas prise en charge par la connexion avec l'imprimante."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
+msgctxt "@title:window"
+msgid "Select custom firmware"
+msgstr "Sélectionner le firmware personnalisé"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
+msgctxt "@title:window"
+msgid "Firmware Update"
+msgstr "Mise à jour du firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
+msgctxt "@label"
+msgid "Updating firmware."
+msgstr "Mise à jour du firmware en cours."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
+msgctxt "@label"
+msgid "Firmware update completed."
+msgstr "Mise à jour du firmware terminée."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
+msgctxt "@label"
+msgid "Firmware update failed due to an unknown error."
+msgstr "Échec de la mise à jour du firmware en raison d'une erreur inconnue."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
+msgctxt "@label"
+msgid "Firmware update failed due to an communication error."
+msgstr "Échec de la mise à jour du firmware en raison d'une erreur de communication."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
+msgctxt "@label"
+msgid "Firmware update failed due to an input/output error."
+msgstr "Échec de la mise à jour du firmware en raison d'une erreur d'entrée/de sortie."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
+msgctxt "@label"
+msgid "Firmware update failed due to missing firmware."
+msgstr "Échec de la mise à jour du firmware en raison du firmware manquant."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
+msgctxt "@title:window"
+msgid "Convert Image..."
+msgstr "Conversion de l'image..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
+msgctxt "@info:tooltip"
+msgid "The maximum distance of each pixel from \"Base.\""
+msgstr "La distance maximale de chaque pixel à partir de la « Base »."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
+msgctxt "@action:label"
+msgid "Height (mm)"
+msgstr "Hauteur (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
+msgctxt "@info:tooltip"
+msgid "The base height from the build plate in millimeters."
+msgstr "La hauteur de la base à partir du plateau en millimètres."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
+msgctxt "@action:label"
+msgid "Base (mm)"
+msgstr "Base (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
+msgctxt "@info:tooltip"
+msgid "The width in millimeters on the build plate."
+msgstr "La largeur en millimètres sur le plateau."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
+msgctxt "@action:label"
+msgid "Width (mm)"
+msgstr "Largeur (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
+msgctxt "@info:tooltip"
+msgid "The depth in millimeters on the build plate"
+msgstr "La profondeur en millimètres sur le plateau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
+msgctxt "@action:label"
+msgid "Depth (mm)"
+msgstr "Profondeur (mm)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
+msgctxt "@info:tooltip"
+msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
+msgstr "Pour les lithophanies, les pixels foncés doivent correspondre à des emplacements plus épais afin d'empêcher la lumière de passer. Pour des cartes de hauteur, les pixels clairs signifient un terrain plus élevé, de sorte que les pixels clairs doivent correspondre à des emplacements plus épais dans le modèle 3D généré."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Darker is higher"
+msgstr "Le plus foncé est plus haut"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
+msgctxt "@item:inlistbox"
+msgid "Lighter is higher"
+msgstr "Le plus clair est plus haut"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
+msgctxt "@info:tooltip"
+msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
+msgstr "Pour les lithophanes, un modèle logarithmique simple de la translucidité est disponible. Pour les cartes de hauteur, les valeurs des pixels correspondent aux hauteurs de façon linéaire."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+msgctxt "@item:inlistbox"
+msgid "Linear"
+msgstr "Linéaire"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
+msgctxt "@item:inlistbox"
+msgid "Translucency"
+msgstr "Translucidité"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
+msgctxt "@info:tooltip"
+msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
+msgstr "Le pourcentage de lumière pénétrant une impression avec une épaisseur de 1 millimètre. La diminution de cette valeur augmente le contraste dans les régions sombres et diminue le contraste dans les régions claires de l'image."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
+msgctxt "@action:label"
+msgid "1mm Transmittance (%)"
+msgstr "Transmission 1 mm (%)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
+msgctxt "@info:tooltip"
+msgid "The amount of smoothing to apply to the image."
+msgstr "La quantité de lissage à appliquer à l'image."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
+msgctxt "@action:label"
+msgid "Smoothing"
+msgstr "Lissage"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
+msgctxt "@action:button"
+msgid "OK"
+msgstr "OK"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
+msgctxt "@title:tab"
+msgid "Printer"
+msgstr "Imprimante"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
+msgctxt "@title:label"
+msgid "Nozzle Settings"
+msgstr "Paramètres de la buse"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
+msgctxt "@label"
+msgid "Nozzle size"
+msgstr "Taille de la buse"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
+msgctxt "@label"
+msgid "mm"
+msgstr "mm"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
+msgctxt "@label"
+msgid "Compatible material diameter"
+msgstr "Diamètre du matériau compatible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
+msgctxt "@label"
+msgid "Nozzle offset X"
+msgstr "Décalage buse X"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
+msgctxt "@label"
+msgid "Nozzle offset Y"
+msgstr "Décalage buse Y"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
+msgctxt "@label"
+msgid "Cooling Fan Number"
+msgstr "Numéro du ventilateur de refroidissement"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
+msgctxt "@title:label"
+msgid "Extruder Start G-code"
+msgstr "Extrudeuse G-Code de démarrage"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
+msgctxt "@title:label"
+msgid "Extruder End G-code"
+msgstr "Extrudeuse G-Code de fin"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
+msgctxt "@title:label"
+msgid "Printer Settings"
+msgstr "Paramètres de l'imprimante"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
+msgctxt "@label"
+msgid "X (Width)"
+msgstr "X (Largeur)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
+msgctxt "@label"
+msgid "Y (Depth)"
+msgstr "Y (Profondeur)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
+msgctxt "@label"
+msgid "Z (Height)"
+msgstr "Z (Hauteur)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
+msgctxt "@label"
+msgid "Build plate shape"
+msgstr "Forme du plateau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
+msgctxt "@label"
+msgid "Origin at center"
+msgstr "Origine au centre"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
+msgctxt "@label"
+msgid "Heated bed"
+msgstr "Plateau chauffant"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
+msgctxt "@label"
+msgid "Heated build volume"
+msgstr "Volume de fabrication chauffant"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
+msgctxt "@label"
+msgid "G-code flavor"
+msgstr "Parfum G-Code"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
+msgctxt "@title:label"
+msgid "Printhead Settings"
+msgstr "Paramètres de la tête d'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
+msgctxt "@label"
+msgid "X min"
+msgstr "X min"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
+msgctxt "@label"
+msgid "Y min"
+msgstr "Y min"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
+msgctxt "@label"
+msgid "X max"
+msgstr "X max"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
+msgctxt "@label"
+msgid "Y max"
+msgstr "Y max"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
+msgctxt "@label"
+msgid "Gantry Height"
+msgstr "Hauteur du portique"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
+msgctxt "@label"
+msgid "Number of Extruders"
+msgstr "Nombre d'extrudeuses"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
+msgctxt "@label"
+msgid "Apply Extruder offsets to GCode"
+msgstr "Appliquer les décalages offset de l'extrudeuse au GCode"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
+msgctxt "@title:label"
+msgid "Start G-code"
+msgstr "G-Code de démarrage"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
+msgctxt "@title:label"
+msgid "End G-code"
+msgstr "G-Code de fin"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
msgctxt "@info"
msgid ""
"Please make sure your printer has a connection:\n"
@@ -2593,817 +2244,1595 @@ msgstr ""
"- Vérifiez si l'imprimante est sous tension.\n"
"- Vérifiez si l'imprimante est connectée au réseau.- Vérifiez si vous êtes connecté pour découvrir les imprimantes connectées au cloud."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
msgctxt "@info"
msgid "Please connect your printer to the network."
msgstr "Veuillez connecter votre imprimante au réseau."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:155
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155
msgctxt "@label link to technical assistance"
msgid "View user manuals online"
msgstr "Voir les manuels d'utilisation en ligne"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:172
+msgctxt "@info"
+msgid "In order to monitor your print from Cura, please connect the printer."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
+msgctxt "@label"
+msgid "Mesh Type"
+msgstr "Type de maille"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
+msgctxt "@label"
+msgid "Normal model"
+msgstr "Modèle normal"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
+msgctxt "@label"
+msgid "Print as support"
+msgstr "Imprimer comme support"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
+msgctxt "@label"
+msgid "Modify settings for overlaps"
+msgstr "Modifier les paramètres de chevauchement"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
+msgctxt "@label"
+msgid "Don't support overlaps"
+msgstr "Ne prend pas en charge le chevauchement"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
+msgctxt "@item:inlistbox"
+msgid "Infill mesh only"
+msgstr "Maille de remplissage uniquement"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
+msgctxt "@item:inlistbox"
+msgid "Cutting mesh"
+msgstr "Maille de coupe"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
+msgctxt "@action:button"
+msgid "Select settings"
+msgstr "Sélectionner les paramètres"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
msgctxt "@title:window"
-msgid "More information on anonymous data collection"
-msgstr "Plus d'informations sur la collecte de données anonymes"
+msgid "Select Settings to Customize for this model"
+msgstr "Sélectionner les paramètres pour personnaliser ce modèle"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
-msgctxt "@text:window"
-msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
-msgstr "Ultimaker Cura recueille des données anonymes afin d'améliorer la qualité d'impression et l'expérience utilisateur. Voici un exemple de toutes les données partagées :"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96
+msgctxt "@label:textbox"
+msgid "Filter..."
+msgstr "Filtrer..."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
-msgctxt "@text:window"
-msgid "I don't want to send anonymous data"
-msgstr "Je ne veux pas envoyer de données anonymes"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
+msgctxt "@label:checkbox"
+msgid "Show all"
+msgstr "Afficher tout"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
-msgctxt "@text:window"
-msgid "Allow sending anonymous data"
-msgstr "Autoriser l'envoi de données anonymes"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20
+msgctxt "@title:window"
+msgid "Post Processing Plugin"
+msgstr "Plug-in de post-traitement"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20 /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59
+msgctxt "@label"
+msgid "Post Processing Scripts"
+msgstr "Scripts de post-traitement"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235
+msgctxt "@action"
+msgid "Add a script"
+msgstr "Ajouter un script"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282
+msgctxt "@label"
+msgid "Settings"
+msgstr "Paramètres"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502
+msgctxt "@info:tooltip"
+msgid "Change active post-processing scripts."
+msgstr "Modifiez les scripts de post-traitement actifs."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506
+msgctxt "@info:tooltip"
+msgid "The following script is active:"
+msgid_plural "The following scripts are active:"
+msgstr[0] "Le script suivant est actif :"
+msgstr[1] "Les scripts suivants sont actifs :"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
msgctxt "@label"
msgid "Color scheme"
msgstr "Modèle de couleurs"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110
msgctxt "@label:listbox"
msgid "Material Color"
msgstr "Couleur du matériau"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114
msgctxt "@label:listbox"
msgid "Line Type"
msgstr "Type de ligne"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118
msgctxt "@label:listbox"
msgid "Speed"
msgstr "Vitesse"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122
msgctxt "@label:listbox"
msgid "Layer Thickness"
msgstr "Épaisseur de la couche"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126
msgctxt "@label:listbox"
msgid "Line Width"
msgstr "Largeur de ligne"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:163
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130
+msgctxt "@label:listbox"
+msgid "Flow"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171
msgctxt "@label"
msgid "Compatibility Mode"
msgstr "Mode de compatibilité"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245
msgctxt "@label"
msgid "Travels"
msgstr "Déplacements"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251
msgctxt "@label"
msgid "Helpers"
msgstr "Aides"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
msgctxt "@label"
msgid "Shell"
msgstr "Coque"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:255 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
msgctxt "@label"
msgid "Infill"
msgstr "Remplissage"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271
msgctxt "@label"
msgid "Starts"
msgstr "Démarre"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:314
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
msgctxt "@label"
msgid "Only Show Top Layers"
msgstr "Afficher uniquement les couches supérieures"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:324
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332
msgctxt "@label"
msgid "Show 5 Detailed Layers On Top"
msgstr "Afficher 5 niveaux détaillés en haut"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:338
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346
msgctxt "@label"
msgid "Top / Bottom"
msgstr "Haut / bas"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:342
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350
msgctxt "@label"
msgid "Inner Wall"
msgstr "Paroi interne"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:405
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419
msgctxt "@label"
msgid "min"
msgstr "min."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:464
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488
msgctxt "@label"
msgid "max"
msgstr "max."
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
-msgctxt "@title:label"
-msgid "Nozzle Settings"
-msgstr "Paramètres de la buse"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
-msgctxt "@label"
-msgid "Nozzle size"
-msgstr "Taille de la buse"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
-msgctxt "@label"
-msgid "mm"
-msgstr "mm"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
-msgctxt "@label"
-msgid "Compatible material diameter"
-msgstr "Diamètre du matériau compatible"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
-msgctxt "@label"
-msgid "Nozzle offset X"
-msgstr "Décalage buse X"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
-msgctxt "@label"
-msgid "Nozzle offset Y"
-msgstr "Décalage buse Y"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
-msgctxt "@label"
-msgid "Cooling Fan Number"
-msgstr "Numéro du ventilateur de refroidissement"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
-msgctxt "@title:label"
-msgid "Extruder Start G-code"
-msgstr "Extrudeuse G-Code de démarrage"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
-msgctxt "@title:label"
-msgid "Extruder End G-code"
-msgstr "Extrudeuse G-Code de fin"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
-msgctxt "@title:tab"
-msgid "Printer"
-msgstr "Imprimante"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
-msgctxt "@title:label"
-msgid "Printer Settings"
-msgstr "Paramètres de l'imprimante"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
-msgctxt "@label"
-msgid "X (Width)"
-msgstr "X (Largeur)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
-msgctxt "@label"
-msgid "Y (Depth)"
-msgstr "Y (Profondeur)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
-msgctxt "@label"
-msgid "Z (Height)"
-msgstr "Z (Hauteur)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
-msgctxt "@label"
-msgid "Build plate shape"
-msgstr "Forme du plateau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
-msgctxt "@label"
-msgid "Origin at center"
-msgstr "Origine au centre"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
-msgctxt "@label"
-msgid "Heated bed"
-msgstr "Plateau chauffant"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
-msgctxt "@label"
-msgid "Heated build volume"
-msgstr "Volume de fabrication chauffant"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
-msgctxt "@label"
-msgid "G-code flavor"
-msgstr "Parfum G-Code"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
-msgctxt "@title:label"
-msgid "Printhead Settings"
-msgstr "Paramètres de la tête d'impression"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
-msgctxt "@label"
-msgid "X min"
-msgstr "X min"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
-msgctxt "@label"
-msgid "Y min"
-msgstr "Y min"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
-msgctxt "@label"
-msgid "X max"
-msgstr "X max"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
-msgctxt "@label"
-msgid "Y max"
-msgstr "Y max"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
-msgctxt "@label"
-msgid "Gantry Height"
-msgstr "Hauteur du portique"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
-msgctxt "@label"
-msgid "Number of Extruders"
-msgstr "Nombre d'extrudeuses"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
-msgctxt "@label"
-msgid "Apply Extruder offsets to GCode"
-msgstr "Appliquer les décalages offset de l'extrudeuse au GCode"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
-msgctxt "@title:label"
-msgid "Start G-code"
-msgstr "G-Code de démarrage"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
-msgctxt "@title:label"
-msgid "End G-code"
-msgstr "G-Code de fin"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
msgctxt "@title:window"
-msgid "Convert Image..."
-msgstr "Conversion de l'image..."
+msgid "More information on anonymous data collection"
+msgstr "Plus d'informations sur la collecte de données anonymes"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:33
-msgctxt "@info:tooltip"
-msgid "The maximum distance of each pixel from \"Base.\""
-msgstr "La distance maximale de chaque pixel à partir de la « Base »."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
+msgctxt "@text:window"
+msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
+msgstr "Ultimaker Cura recueille des données anonymes afin d'améliorer la qualité d'impression et l'expérience utilisateur. Voici un exemple de toutes les données partagées :"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:38
-msgctxt "@action:label"
-msgid "Height (mm)"
-msgstr "Hauteur (mm)"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
+msgctxt "@text:window"
+msgid "I don't want to send anonymous data"
+msgstr "Je ne veux pas envoyer de données anonymes"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:56
-msgctxt "@info:tooltip"
-msgid "The base height from the build plate in millimeters."
-msgstr "La hauteur de la base à partir du plateau en millimètres."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
+msgctxt "@text:window"
+msgid "Allow sending anonymous data"
+msgstr "Autoriser l'envoi de données anonymes"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:61
-msgctxt "@action:label"
-msgid "Base (mm)"
-msgstr "Base (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:79
-msgctxt "@info:tooltip"
-msgid "The width in millimeters on the build plate."
-msgstr "La largeur en millimètres sur le plateau."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:84
-msgctxt "@action:label"
-msgid "Width (mm)"
-msgstr "Largeur (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:103
-msgctxt "@info:tooltip"
-msgid "The depth in millimeters on the build plate"
-msgstr "La profondeur en millimètres sur le plateau"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:108
-msgctxt "@action:label"
-msgid "Depth (mm)"
-msgstr "Profondeur (mm)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:126
-msgctxt "@info:tooltip"
-msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
-msgstr "Pour les lithophanies, les pixels foncés doivent correspondre à des emplacements plus épais afin d'empêcher la lumière de passer. Pour des cartes de hauteur, les pixels clairs signifient un terrain plus élevé, de sorte que les pixels clairs doivent correspondre à des emplacements plus épais dans le modèle 3D généré."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Darker is higher"
-msgstr "Le plus foncé est plus haut"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
-msgctxt "@item:inlistbox"
-msgid "Lighter is higher"
-msgstr "Le plus clair est plus haut"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:149
-msgctxt "@info:tooltip"
-msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
-msgstr "Pour les lithophanes, un modèle logarithmique simple de la translucidité est disponible. Pour les cartes de hauteur, les valeurs des pixels correspondent aux hauteurs de façon linéaire."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
-msgctxt "@item:inlistbox"
-msgid "Linear"
-msgstr "Linéaire"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161 /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:172
-msgctxt "@item:inlistbox"
-msgid "Translucency"
-msgstr "Translucidité"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:171
-msgctxt "@info:tooltip"
-msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
-msgstr "Le pourcentage de lumière pénétrant une impression avec une épaisseur de 1 millimètre. La diminution de cette valeur augmente le contraste dans les régions sombres et diminue le contraste dans les régions claires de l'image."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:177
-msgctxt "@action:label"
-msgid "1mm Transmittance (%)"
-msgstr "Transmission 1 mm (%)"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:195
-msgctxt "@info:tooltip"
-msgid "The amount of smoothing to apply to the image."
-msgstr "La quantité de lissage à appliquer à l'image."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:200
-msgctxt "@action:label"
-msgid "Smoothing"
-msgstr "Lissage"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
-msgctxt "@title"
-msgid "My Backups"
-msgstr "Mes sauvegardes"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
-msgctxt "@empty_state"
-msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
-msgstr "Vous n'avez actuellement aucune sauvegarde. Utilisez le bouton « Sauvegarder maintenant » pour en créer une."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
-msgctxt "@backup_limit_info"
-msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
-msgstr "Pendant la phase de prévisualisation, vous ne pourrez voir qu'un maximum de 5 sauvegardes. Supprimez une sauvegarde pour voir les plus anciennes."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
-msgctxt "@description"
-msgid "Backup and synchronize your Cura settings."
-msgstr "Sauvegardez et synchronisez vos paramètres Cura."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
-msgctxt "@button"
-msgid "Want more?"
-msgstr "Vous en voulez plus ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
-msgctxt "@button"
-msgid "Backup Now"
-msgstr "Sauvegarder maintenant"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
-msgctxt "@checkbox:description"
-msgid "Auto Backup"
-msgstr "Sauvegarde automatique"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
-msgctxt "@checkbox:description"
-msgid "Automatically create a backup each day that Cura is started."
-msgstr "Créez automatiquement une sauvegarde chaque jour où Cura est démarré."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
-msgctxt "@backuplist:label"
-msgid "Cura Version"
-msgstr "Version Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
-msgctxt "@backuplist:label"
-msgid "Machines"
-msgstr "Machines"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
-msgctxt "@backuplist:label"
-msgid "Materials"
-msgstr "Matériaux"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
-msgctxt "@backuplist:label"
-msgid "Profiles"
-msgstr "Profils"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
-msgctxt "@backuplist:label"
-msgid "Plugins"
-msgstr "Plug-ins"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
-msgctxt "@button"
-msgid "Restore"
-msgstr "Restaurer"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
-msgctxt "@dialog:title"
-msgid "Delete Backup"
-msgstr "Supprimer la sauvegarde"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
-msgctxt "@dialog:info"
-msgid "Are you sure you want to delete this backup? This cannot be undone."
-msgstr "Êtes-vous sûr de vouloir supprimer cette sauvegarde ? Il est impossible d'annuler cette action."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
-msgctxt "@dialog:title"
-msgid "Restore Backup"
-msgstr "Restaurer la sauvegarde"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
-msgctxt "@dialog:info"
-msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
-msgstr "Vous devez redémarrer Cura avant que votre sauvegarde ne soit restaurée. Voulez-vous fermer Cura maintenant ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/main.qml:25
-msgctxt "@title:window"
-msgid "Cura Backups"
-msgstr "Sauvegardes Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:13
-msgctxt "@label:category menu label"
-msgid "Material"
-msgstr "Matériau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:54
-msgctxt "@label:category menu label"
-msgid "Favorites"
-msgstr "Favoris"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:79
-msgctxt "@label:category menu label"
-msgid "Generic"
-msgstr "Générique"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:13 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
-msgctxt "@title:menu menubar:toplevel"
-msgid "&File"
-msgstr "&Fichier"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:41
-msgctxt "@title:menu menubar:file"
-msgid "&Save Project..."
-msgstr "&Enregistrer le projet..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:74
-msgctxt "@title:menu menubar:file"
-msgid "&Export..."
-msgstr "E&xporter..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:85
-msgctxt "@action:inmenu menubar:file"
-msgid "Export Selection..."
-msgstr "Exporter la sélection..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Open &Recent"
-msgstr "Ouvrir un fichier &récent"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
-msgctxt "@label"
-msgid "Select configuration"
-msgstr "Sélectionner la configuration"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
-msgctxt "@label"
-msgid "Configurations"
-msgstr "Configurations"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
-msgctxt "@header"
-msgid "Configurations"
-msgstr "Configurations"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
-msgctxt "@header"
-msgid "Custom"
-msgstr "Personnalisé"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
-msgctxt "@label"
-msgid "Printer"
-msgstr "Imprimante"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
-msgctxt "@label"
-msgid "Enabled"
-msgstr "Activé"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
-msgctxt "@label"
-msgid "Material"
-msgstr "Matériau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
-msgctxt "@label"
-msgid "Use glue for better adhesion with this material combination."
-msgstr "Utiliser de la colle pour une meilleure adhérence avec cette combinaison de matériaux."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
-msgctxt "@label"
-msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
-msgstr "Cette configuration n'est pas disponible car %1 n'est pas reconnu. Veuillez visiter %2 pour télécharger le profil matériel correct."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
-msgctxt "@label"
-msgid "Marketplace"
-msgstr "Marché en ligne"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
-msgctxt "@label"
-msgid "Loading available configurations from the printer..."
-msgstr "Chargement des configurations disponibles à partir de l'imprimante..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
-msgctxt "@label"
-msgid "The configurations are not available because the printer is disconnected."
-msgstr "Les configurations ne sont pas disponibles car l'imprimante est déconnectée."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:12 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
-msgctxt "@title:menu menubar:toplevel"
-msgid "&View"
-msgstr "&Visualisation"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:19
-msgctxt "@action:inmenu menubar:view"
-msgid "&Camera position"
-msgstr "Position de la &caméra"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:44
-msgctxt "@action:inmenu menubar:view"
-msgid "Camera view"
-msgstr "Vue de la caméra"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:47
-msgctxt "@action:inmenu menubar:view"
-msgid "Perspective"
-msgstr "Perspective"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:59
-msgctxt "@action:inmenu menubar:view"
-msgid "Orthographic"
-msgstr "Orthographique"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:80
-msgctxt "@action:inmenu menubar:view"
-msgid "&Build plate"
-msgstr "&Plateau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:25
-msgctxt "@label:category menu label"
-msgid "Network enabled printers"
-msgstr "Imprimantes réseau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:42
-msgctxt "@label:category menu label"
-msgid "Local printers"
-msgstr "Imprimantes locales"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
-msgctxt "@action:inmenu"
-msgid "Visible Settings"
-msgstr "Paramètres visibles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
-msgctxt "@action:inmenu"
-msgid "Collapse All Categories"
-msgstr "Réduire toutes les catégories"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
-msgctxt "@action:inmenu"
-msgid "Manage Setting Visibility..."
-msgstr "Gérer la visibilité des paramètres..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:13 /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Settings"
-msgstr "&Paramètres"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:15
-msgctxt "@title:menu menubar:settings"
-msgid "&Printer"
-msgstr "Im&primante"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:29
-msgctxt "@title:menu"
-msgid "&Material"
-msgstr "&Matériau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:44
-msgctxt "@action:inmenu"
-msgid "Set as Active Extruder"
-msgstr "Définir comme extrudeur actif"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:50
-msgctxt "@action:inmenu"
-msgid "Enable Extruder"
-msgstr "Activer l'extrudeuse"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:57
-msgctxt "@action:inmenu"
-msgid "Disable Extruder"
-msgstr "Désactiver l'extrudeuse"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Save Project..."
-msgstr "Sauvegarder le projet..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:27
-msgctxt "@label"
-msgid "Print Selected Model With:"
-msgid_plural "Print Selected Models With:"
-msgstr[0] "Imprimer le modèle sélectionné avec :"
-msgstr[1] "Imprimer les modèles sélectionnés avec :"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:116
-msgctxt "@title:window"
-msgid "Multiply Selected Model"
-msgid_plural "Multiply Selected Models"
-msgstr[0] "Multiplier le modèle sélectionné"
-msgstr[1] "Multiplier les modèles sélectionnés"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:141
-msgctxt "@label"
-msgid "Number of Copies"
-msgstr "Nombre de copies"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
-msgctxt "@title:menu menubar:file"
-msgid "Open File(s)..."
-msgstr "Ouvrir le(s) fichier(s)..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
-msgctxt "@label:header"
-msgid "Custom profiles"
-msgstr "Personnaliser les profils"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:564
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
msgctxt "@action:button"
-msgid "Discard current changes"
-msgstr "Ignorer les modifications actuelles"
+msgid "Back"
+msgstr "Précédent"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
msgctxt "@label"
-msgid "Profile"
-msgstr "Profil"
+msgid "Compatibility"
+msgstr "Compatibilité"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
-msgctxt "@tooltip"
-msgid ""
-"Some setting/override values are different from the values stored in the profile.\n"
-"\n"
-"Click to open the profile manager."
-msgstr ""
-"Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n"
-"\n"
-"Cliquez pour ouvrir le gestionnaire de profils."
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
+msgctxt "@label:table_header"
+msgid "Machine"
+msgstr "Machine"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
-msgctxt "@label:Should be short"
-msgid "On"
-msgstr "On"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
+msgctxt "@label:table_header"
+msgid "Build Plate"
+msgstr "Plateau"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
-msgctxt "@label:Should be short"
-msgid "Off"
-msgstr "Off"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
-msgctxt "@label"
-msgid "Experimental"
-msgstr "Expérimental"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
-msgctxt "@button"
-msgid "Recommended"
-msgstr "Recommandé"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
-msgctxt "@button"
-msgid "Custom"
-msgstr "Personnalisé"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
-msgctxt "@label"
-msgid "Print settings"
-msgstr "Paramètres d'impression"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
-msgctxt "@label shown when we load a Gcode file"
-msgid "Print setup disabled. G-code file can not be modified."
-msgstr "Configuration d'impression désactivée. Le fichier G-Code ne peut pas être modifié."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
-msgctxt "@label"
-msgid "Gradual infill"
-msgstr "Remplissage graduel"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
-msgctxt "@label"
-msgid "Gradual infill will gradually increase the amount of infill towards the top."
-msgstr "Un remplissage graduel augmentera la quantité de remplissage vers le haut."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:728
-msgctxt "@label"
-msgid "Profiles"
-msgstr "Profils"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
-msgctxt "@tooltip"
-msgid "You have modified some profile settings. If you want to change these go to custom mode."
-msgstr "Vous avez modifié certains paramètres du profil. Si vous souhaitez les modifier, allez dans le mode Personnaliser."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
-msgctxt "@label"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
+msgctxt "@label:table_header"
msgid "Support"
msgstr "Support"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
+msgctxt "@label:table_header"
+msgid "Quality"
+msgstr "Qualité"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
+msgctxt "@action:label"
+msgid "Technical Data Sheet"
+msgstr "Fiche technique"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
+msgctxt "@action:label"
+msgid "Safety Data Sheet"
+msgstr "Fiche de sécurité"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
+msgctxt "@action:label"
+msgid "Printing Guidelines"
+msgstr "Directives d'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
+msgctxt "@action:label"
+msgid "Website"
+msgstr "Site Internet"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
+msgctxt "@action:button"
+msgid "Installed"
+msgstr "Installé"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to install or update"
+msgstr "Connexion nécessaire pour l'installation ou la mise à jour"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Buy material spools"
+msgstr "Acheter des bobines de matériau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
+msgctxt "@action:button"
+msgid "Update"
+msgstr "Mise à jour"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
+msgctxt "@action:button"
+msgid "Updating"
+msgstr "Mise à jour"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
+msgctxt "@action:button"
+msgid "Updated"
+msgstr "Mis à jour"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
msgctxt "@label"
-msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
-msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression."
+msgid "Premium"
+msgstr "Premium"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
+msgctxt "@info:tooltip"
+msgid "Go to Web Marketplace"
+msgstr "Aller sur le Marché en ligne"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
msgctxt "@label"
-msgid "Adhesion"
-msgstr "Adhérence"
+msgid "Search materials"
+msgstr "Rechercher des matériaux"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
+msgctxt "@info"
+msgid "You will need to restart Cura before changes in packages have effect."
+msgstr "Vous devez redémarrer Cura pour que les changements apportés aux paquets ne prennent effet."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
+msgctxt "@info:button, %1 is the application name"
+msgid "Quit %1"
+msgstr "Quitter %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
+msgctxt "@title:tab"
+msgid "Plugins"
+msgstr "Plug-ins"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:457
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
+msgctxt "@title:tab"
+msgid "Materials"
+msgstr "Matériaux"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
+msgctxt "@title:tab"
+msgid "Installed"
+msgstr "Installé"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
msgctxt "@label"
-msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
-msgstr "Activez l'impression d'une bordure ou plaquette (Brim/Raft). Cela ajoutera une zone plate autour de ou sous votre objet qui est facile à découper par la suite."
+msgid "Will install upon restarting"
+msgstr "S'installera au redémarrage"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
-msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
-msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
-msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
-msgstr[0] "Il n'y a pas de profil %1 pour la configuration dans l'extrudeur %2. L'intention par défaut sera utilisée à la place"
-msgstr[1] "Il n'y a pas de profil %1 pour les configurations dans les extrudeurs %2. L'intention par défaut sera utilisée à la place"
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
+msgctxt "@label:The string between and is the highlighted link"
+msgid "Log in is required to update"
+msgstr "Connexion nécessaire pour effectuer la mise à jour"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Widgets/ComboBox.qml:24
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Downgrade"
+msgstr "Revenir à une version précédente"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
+msgctxt "@action:button"
+msgid "Uninstall"
+msgstr "Désinstaller"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
+msgctxt "@action:button"
+msgid "Install"
+msgstr "Installer"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
+msgctxt "@title"
+msgid "Changes from your account"
+msgstr "Changements à partir de votre compte"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
+msgctxt "@button"
+msgid "Dismiss"
+msgstr "Ignorer"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:178
+msgctxt "@button"
+msgid "Next"
+msgstr "Suivant"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
msgctxt "@label"
-msgid "No items to select from"
-msgstr "Aucun élément à sélectionner"
+msgid "The following packages will be added:"
+msgstr "Les packages suivants seront ajoutés :"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:140
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
msgctxt "@label"
-msgid "Active print"
-msgstr "Activer l'impression"
+msgid "The following packages can not be installed because of an incompatible Cura version:"
+msgstr "Les packages suivants ne peuvent pas être installés en raison d'une version incompatible de Cura :"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:148
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
+msgctxt "@title:window"
+msgid "Confirm uninstall"
+msgstr "Confirmer la désinstallation"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
+msgctxt "@text:window"
+msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
+msgstr "Vous désinstallez des matériaux et/ou des profils qui sont encore en cours d'utilisation. La confirmation réinitialisera les matériaux / profils suivants à leurs valeurs par défaut."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
+msgctxt "@text:window"
+msgid "Materials"
+msgstr "Matériaux"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
+msgctxt "@text:window"
+msgid "Profiles"
+msgstr "Profils"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
+msgctxt "@action:button"
+msgid "Confirm"
+msgstr "Confirmer"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
msgctxt "@label"
-msgid "Job Name"
-msgstr "Nom de la tâche"
+msgid "You need to accept the license to install the package"
+msgstr "Vous devez accepter la licence pour installer le package"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
msgctxt "@label"
-msgid "Printing Time"
-msgstr "Durée d'impression"
+msgid "Website"
+msgstr "Site Internet"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:164
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
msgctxt "@label"
-msgid "Estimated time left"
-msgstr "Durée restante estimée"
+msgid "Email"
+msgstr "E-mail"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
+msgctxt "@label"
+msgid "Version"
+msgstr "Version"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
+msgctxt "@label"
+msgid "Last updated"
+msgstr "Dernière mise à jour"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
+msgctxt "@label"
+msgid "Brand"
+msgstr "Marque"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
+msgctxt "@label"
+msgid "Downloads"
+msgstr "Téléchargements"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Contributions"
+msgstr "Contributions de la communauté"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
+msgctxt "@label"
+msgid "Community Plugins"
+msgstr "Plug-ins de la communauté"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
+msgctxt "@label"
+msgid "Generic Materials"
+msgstr "Matériaux génériques"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
+msgctxt "@info"
+msgid "Could not connect to the Cura Package database. Please check your connection."
+msgstr "Impossible de se connecter à la base de données Cura Package. Veuillez vérifier votre connexion."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
+msgctxt "@title:tab"
+msgid "Installed plugins"
+msgstr "Plug-ins installés"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
+msgctxt "@info"
+msgid "No plugin has been installed."
+msgstr "Aucun plug-in n'a été installé."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
+msgctxt "@title:tab"
+msgid "Installed materials"
+msgstr "Matériaux installés"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
+msgctxt "@info"
+msgid "No material has been installed."
+msgstr "Aucun matériau n'a été installé."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
+msgctxt "@title:tab"
+msgid "Bundled plugins"
+msgstr "Plug-ins groupés"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
+msgctxt "@title:tab"
+msgid "Bundled materials"
+msgstr "Matériaux groupés"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
+msgctxt "@info"
+msgid "Fetching packages..."
+msgstr "Récupération des paquets..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
+msgctxt "@description"
+msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
+msgstr "Veuillez vous connecter pour obtenir les plug-ins et matériaux vérifiés pour Ultimaker Cura Enterprise"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
+msgctxt "@title"
+msgid "Marketplace"
+msgstr "Marché en ligne"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
+msgctxt "@title"
+msgid "Build Plate Leveling"
+msgstr "Nivellement du plateau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
+msgctxt "@label"
+msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
+msgstr "Pour obtenir des résultats d'impression optimaux, vous pouvez maintenant régler votre plateau. Quand vous cliquez sur 'Aller à la position suivante', la buse se déplacera vers les différentes positions pouvant être réglées."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
+msgctxt "@label"
+msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
+msgstr "Pour chacune des positions ; glissez un bout de papier sous la buse et ajustez la hauteur du plateau. La hauteur du plateau est juste lorsque la pointe de la buse gratte légèrement le papier."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
+msgctxt "@action:button"
+msgid "Start Build Plate Leveling"
+msgstr "Démarrer le nivellement du plateau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
+msgctxt "@action:button"
+msgid "Move to Next Position"
+msgstr "Aller à la position suivante"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
+msgctxt "@label"
+msgid "Please select any upgrades made to this Ultimaker Original"
+msgstr "Sélectionnez les mises à niveau disponibles pour cet Ultimaker Original"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
+msgctxt "@label"
+msgid "Heated Build Plate (official kit or self-built)"
+msgstr "Plateau chauffant (kit officiel ou fabriqué soi-même)"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
+msgctxt "@title:window"
+msgid "Connect to Networked Printer"
+msgstr "Connecter à l'imprimante en réseau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+msgctxt "@label"
+msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
+msgstr "Pour imprimer directement sur votre imprimante via le réseau, assurez-vous que votre imprimante est connectée au réseau via un câble Ethernet ou en connectant votre imprimante à votre réseau Wi-Fi. Si vous ne connectez pas Cura avec votre imprimante, vous pouvez utiliser une clé USB pour transférer les fichiers g-code sur votre imprimante."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
+msgctxt "@label"
+msgid "Select your printer from the list below:"
+msgstr "Sélectionnez votre imprimante dans la liste ci-dessous :"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
+msgctxt "@action:button"
+msgid "Edit"
+msgstr "Modifier"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
+msgctxt "@action:button"
+msgid "Remove"
+msgstr "Supprimer"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
+msgctxt "@action:button"
+msgid "Refresh"
+msgstr "Rafraîchir"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
+msgctxt "@label"
+msgid "If your printer is not listed, read the network printing troubleshooting guide"
+msgstr "Si votre imprimante n'apparaît pas dans la liste, lisez le guide de dépannage de l'impression en réseau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
+msgctxt "@label"
+msgid "Type"
+msgstr "Type"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
+msgctxt "@label"
+msgid "Firmware version"
+msgstr "Version du firmware"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
+msgctxt "@label"
+msgid "Address"
+msgstr "Adresse"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
+msgctxt "@label"
+msgid "This printer is not set up to host a group of printers."
+msgstr "Cette imprimante n'est pas configurée pour héberger un groupe d'imprimantes."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
+msgctxt "@label"
+msgid "This printer is the host for a group of %1 printers."
+msgstr "Cette imprimante est l'hôte d'un groupe d'imprimantes %1."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
+msgctxt "@label"
+msgid "The printer at this address has not yet responded."
+msgstr "L'imprimante à cette adresse n'a pas encore répondu."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
+msgctxt "@action:button"
+msgid "Connect"
+msgstr "Connecter"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
+msgctxt "@title:window"
+msgid "Invalid IP address"
+msgstr "Adresse IP non valide"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
+msgctxt "@text"
+msgid "Please enter a valid IP address."
+msgstr "Veuillez saisir une adresse IP valide."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
+msgctxt "@title:window"
+msgid "Printer Address"
+msgstr "Adresse de l'imprimante"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
+msgctxt "@label"
+msgid "Enter the IP address of your printer on the network."
+msgstr "Saisissez l'adresse IP de votre imprimante sur le réseau."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
+msgctxt "@title:window"
+msgid "Configuration Changes"
+msgstr "Modifications de configuration"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
+msgctxt "@action:button"
+msgid "Override"
+msgstr "Remplacer"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
+msgctxt "@label"
+msgid "The assigned printer, %1, requires the following configuration change:"
+msgid_plural "The assigned printer, %1, requires the following configuration changes:"
+msgstr[0] "L'imprimante assignée, %1, nécessite la modification de configuration suivante :"
+msgstr[1] "L'imprimante assignée, %1, nécessite les modifications de configuration suivantes :"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
+msgctxt "@label"
+msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
+msgstr "L'imprimante %1 est assignée, mais le projet contient une configuration matérielle inconnue."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
+msgctxt "@label"
+msgid "Change material %1 from %2 to %3."
+msgstr "Changer le matériau %1 de %2 à %3."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
+msgctxt "@label"
+msgid "Load %3 as material %1 (This cannot be overridden)."
+msgstr "Charger %3 comme matériau %1 (Ceci ne peut pas être remplacé)."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
+msgctxt "@label"
+msgid "Change print core %1 from %2 to %3."
+msgstr "Changer le print core %1 de %2 à %3."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
+msgctxt "@label"
+msgid "Change build plate to %1 (This cannot be overridden)."
+msgstr "Changer le plateau en %1 (Ceci ne peut pas être remplacé)."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
+msgctxt "@label"
+msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
+msgstr "Si vous sélectionnez « Remplacer », les paramètres de la configuration actuelle de l'imprimante seront utilisés. Cela peut entraîner l'échec de l'impression."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
+msgctxt "@label"
+msgid "Glass"
+msgstr "Verre"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
+msgctxt "@label"
+msgid "Aluminum"
+msgstr "Aluminium"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
+msgctxt "@label"
+msgid "Move to top"
+msgstr "Déplacer l'impression en haut"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
+msgctxt "@label"
+msgid "Delete"
+msgstr "Effacer"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:290
+msgctxt "@label"
+msgid "Resume"
+msgstr "Reprendre"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
+msgctxt "@label"
+msgid "Pausing..."
+msgstr "Mise en pause..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
+msgctxt "@label"
+msgid "Resuming..."
+msgstr "Reprise..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:285
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:294
+msgctxt "@label"
+msgid "Pause"
+msgstr "Pause"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+msgctxt "@label"
+msgid "Aborting..."
+msgstr "Abandon..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
+msgctxt "@label"
+msgid "Abort"
+msgstr "Abandonner"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to move %1 to the top of the queue?"
+msgstr "Êtes-vous sûr de vouloir déplacer %1 en haut de la file d'attente ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
+msgctxt "@window:title"
+msgid "Move print job to top"
+msgstr "Déplacer l'impression en haut de la file d'attente"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to delete %1?"
+msgstr "Êtes-vous sûr de vouloir supprimer %1 ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
+msgctxt "@window:title"
+msgid "Delete print job"
+msgstr "Supprimer l'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
+msgctxt "@label %1 is the name of a print job."
+msgid "Are you sure you want to abort %1?"
+msgstr "Êtes-vous sûr de vouloir annuler %1 ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:336
+msgctxt "@window:title"
+msgid "Abort print"
+msgstr "Abandonner l'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
+msgctxt "@label link to Connect and Cloud interfaces"
+msgid "Manage printer"
+msgstr "Gérer l'imprimante"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
+msgctxt "@info"
+msgid "Please update your printer's firmware to manage the queue remotely."
+msgstr "Veuillez mettre à jour le Firmware de votre imprimante pour gérer la file d'attente à distance."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
+msgctxt "@label:status"
+msgid "Loading..."
+msgstr "Chargement..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
+msgctxt "@label:status"
+msgid "Unavailable"
+msgstr "Indisponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
+msgctxt "@label:status"
+msgid "Unreachable"
+msgstr "Injoignable"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
+msgctxt "@label:status"
+msgid "Idle"
+msgstr "Inactif"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
+msgctxt "@label:status"
+msgid "Preparing..."
+msgstr "Préparation..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
+msgctxt "@label:status"
+msgid "Printing"
+msgstr "Impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
+msgctxt "@label"
+msgid "Untitled"
+msgstr "Sans titre"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
+msgctxt "@label"
+msgid "Anonymous"
+msgstr "Anonyme"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
+msgctxt "@label:status"
+msgid "Requires configuration changes"
+msgstr "Nécessite des modifications de configuration"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
+msgctxt "@action:button"
+msgid "Details"
+msgstr "Détails"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
+msgctxt "@label"
+msgid "Unavailable printer"
+msgstr "Imprimante indisponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
+msgctxt "@label"
+msgid "First available"
+msgstr "Premier disponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
+msgctxt "@label:status"
+msgid "Aborted"
+msgstr "Abandonné"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
+msgctxt "@label:status"
+msgid "Finished"
+msgstr "Terminé"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
+msgctxt "@label:status"
+msgid "Aborting..."
+msgstr "Abandon..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
+msgctxt "@label:status"
+msgid "Pausing..."
+msgstr "Mise en pause..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
+msgctxt "@label:status"
+msgid "Paused"
+msgstr "En pause"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
+msgctxt "@label:status"
+msgid "Resuming..."
+msgstr "Reprise..."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
+msgctxt "@label:status"
+msgid "Action required"
+msgstr "Action requise"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
+msgctxt "@label:status"
+msgid "Finishes %1 at %2"
+msgstr "Finit %1 à %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
+msgctxt "@label"
+msgid "Queued"
+msgstr "Mis en file d'attente"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
+msgctxt "@label link to connect manager"
+msgid "Manage in browser"
+msgstr "Gérer dans le navigateur"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
+msgctxt "@label"
+msgid "There are no print jobs in the queue. Slice and send a job to add one."
+msgstr "Il n'y a pas de travaux d'impression dans la file d'attente. Découpez et envoyez une tache pour en ajouter une."
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
+msgctxt "@label"
+msgid "Print jobs"
+msgstr "Tâches d'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
+msgctxt "@label"
+msgid "Total print time"
+msgstr "Temps total d'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
+msgctxt "@label"
+msgid "Waiting for"
+msgstr "Attente de"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
+msgctxt "@title:window"
+msgid "Print over network"
+msgstr "Imprimer sur le réseau"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
+msgctxt "@action:button"
+msgid "Print"
+msgstr "Imprimer"
+
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
+msgctxt "@label"
+msgid "Printer selection"
+msgstr "Sélection d'imprimantes"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
+msgctxt "@action:button"
+msgid "Sign in"
+msgstr "Se connecter"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:20
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:64
+msgctxt "@label"
+msgid "Sign in to the Ultimaker platform"
+msgstr "Connectez-vous à la plateforme Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:42
+msgctxt "@text"
+msgid ""
+"- Add material profiles and plug-ins from the Marketplace\n"
+"- Back-up and sync your material profiles and plug-ins\n"
+"- Share ideas and get help from 48,000+ users in the Ultimaker community"
+msgstr "- Ajoutez des profils de matériaux et des plug-ins à partir de la Marketplace - Sauvegardez et synchronisez vos profils de matériaux et vos plug-ins - Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:62
+msgctxt "@button"
+msgid "Create a free Ultimaker account"
+msgstr "Créez gratuitement un compte Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28
+msgctxt "@label"
+msgid "Checking..."
+msgstr "Vérification en cours..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35
+msgctxt "@label"
+msgid "Account synced"
+msgstr "Compte synchronisé"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42
+msgctxt "@label"
+msgid "Something went wrong..."
+msgstr "Un problème s'est produit..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96
+msgctxt "@button"
+msgid "Install pending updates"
+msgstr "Installer les mises à jour en attente"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118
+msgctxt "@button"
+msgid "Check for account updates"
+msgstr "Rechercher des mises à jour de compte"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81
+msgctxt "@label The argument is a timestamp"
+msgid "Last update: %1"
+msgstr "Dernière mise à jour : %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109
+msgctxt "@button"
+msgid "Ultimaker Account"
+msgstr "Compte Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125
+msgctxt "@button"
+msgid "Sign Out"
+msgstr "Déconnexion"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
+msgctxt "@label"
+msgid "No time estimation available"
+msgstr "Aucune estimation de la durée n'est disponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
+msgctxt "@label"
+msgid "No cost estimation available"
+msgstr "Aucune estimation des coûts n'est disponible"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
+msgctxt "@button"
+msgid "Preview"
+msgstr "Aperçu"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
+msgctxt "@label"
+msgid "Time estimation"
+msgstr "Estimation de durée"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
+msgctxt "@label"
+msgid "Material estimation"
+msgstr "Estimation du matériau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
+msgctxt "@label m for meter"
+msgid "%1m"
+msgstr "%1m"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
+msgctxt "@label g for grams"
+msgid "%1g"
+msgstr "%1g"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
+msgctxt "@label:PrintjobStatus"
+msgid "Slicing..."
+msgstr "Découpe en cours..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
+msgctxt "@label:PrintjobStatus"
+msgid "Unable to slice"
+msgstr "Impossible de découper"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Processing"
+msgstr "Traitement"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
+msgctxt "@button"
+msgid "Slice"
+msgstr "Découper"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
+msgctxt "@label"
+msgid "Start the slicing process"
+msgstr "Démarrer le processus de découpe"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
+msgctxt "@button"
+msgid "Cancel"
+msgstr "Annuler"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:83
+msgctxt "@action:inmenu"
+msgid "Show Online Troubleshooting Guide"
+msgstr "Afficher le guide de dépannage en ligne"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:90
+msgctxt "@action:inmenu"
+msgid "Toggle Full Screen"
+msgstr "Passer en Plein écran"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:98
+msgctxt "@action:inmenu"
+msgid "Exit Full Screen"
+msgstr "Quitter le mode plein écran"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:105
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Undo"
+msgstr "&Annuler"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:115
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Redo"
+msgstr "&Rétablir"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:125
+msgctxt "@action:inmenu menubar:file"
+msgid "&Quit"
+msgstr "&Quitter"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:133
+msgctxt "@action:inmenu menubar:view"
+msgid "3D View"
+msgstr "Vue 3D"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:140
+msgctxt "@action:inmenu menubar:view"
+msgid "Front View"
+msgstr "Vue de face"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:147
+msgctxt "@action:inmenu menubar:view"
+msgid "Top View"
+msgstr "Vue du dessus"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:154
+msgctxt "@action:inmenu menubar:view"
+msgid "Bottom View"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:161
+msgctxt "@action:inmenu menubar:view"
+msgid "Left Side View"
+msgstr "Vue latérale gauche"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:168
+msgctxt "@action:inmenu menubar:view"
+msgid "Right Side View"
+msgstr "Vue latérale droite"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:175
+msgctxt "@action:inmenu"
+msgid "Configure Cura..."
+msgstr "Configurer Cura..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:182
+msgctxt "@action:inmenu menubar:printer"
+msgid "&Add Printer..."
+msgstr "&Ajouter une imprimante..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:188
+msgctxt "@action:inmenu menubar:printer"
+msgid "Manage Pr&inters..."
+msgstr "Gérer les &imprimantes..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195
+msgctxt "@action:inmenu"
+msgid "Manage Materials..."
+msgstr "Gérer les matériaux..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:203
+msgctxt "@action:inmenu"
+msgid "Add more materials from Marketplace"
+msgstr "Ajouter d'autres matériaux du Marketplace"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
+msgctxt "@action:inmenu menubar:profile"
+msgid "&Update profile with current settings/overrides"
+msgstr "&Mettre à jour le profil à l'aide des paramètres / forçages actuels"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:218
+msgctxt "@action:inmenu menubar:profile"
+msgid "&Discard current changes"
+msgstr "&Ignorer les modifications actuelles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:230
+msgctxt "@action:inmenu menubar:profile"
+msgid "&Create profile from current settings/overrides..."
+msgstr "&Créer un profil à partir des paramètres / forçages actuels..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236
+msgctxt "@action:inmenu menubar:profile"
+msgid "Manage Profiles..."
+msgstr "Gérer les profils..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244
+msgctxt "@action:inmenu menubar:help"
+msgid "Show Online &Documentation"
+msgstr "Afficher la &documentation en ligne"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252
+msgctxt "@action:inmenu menubar:help"
+msgid "Report a &Bug"
+msgstr "Notifier un &bug"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:260
+msgctxt "@action:inmenu menubar:help"
+msgid "What's New"
+msgstr "Quoi de neuf"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:266
+msgctxt "@action:inmenu menubar:help"
+msgid "About..."
+msgstr "À propos de..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:273
+msgctxt "@action:inmenu menubar:edit"
+msgid "Delete Selected"
+msgstr "Supprimer la sélection"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:283
+msgctxt "@action:inmenu menubar:edit"
+msgid "Center Selected"
+msgstr "Centrer la sélection"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:292
+msgctxt "@action:inmenu menubar:edit"
+msgid "Multiply Selected"
+msgstr "Multiplier la sélection"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301
+msgctxt "@action:inmenu"
+msgid "Delete Model"
+msgstr "Supprimer le modèle"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:309
+msgctxt "@action:inmenu"
+msgid "Ce&nter Model on Platform"
+msgstr "Ce&ntrer le modèle sur le plateau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:315
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Group Models"
+msgstr "&Grouper les modèles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:335
+msgctxt "@action:inmenu menubar:edit"
+msgid "Ungroup Models"
+msgstr "Dégrouper les modèles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:345
+msgctxt "@action:inmenu menubar:edit"
+msgid "&Merge Models"
+msgstr "&Fusionner les modèles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:355
+msgctxt "@action:inmenu"
+msgid "&Multiply Model..."
+msgstr "&Multiplier le modèle..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:362
+msgctxt "@action:inmenu menubar:edit"
+msgid "Select All Models"
+msgstr "Sélectionner tous les modèles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:372
+msgctxt "@action:inmenu menubar:edit"
+msgid "Clear Build Plate"
+msgstr "Supprimer les objets du plateau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:382
+msgctxt "@action:inmenu menubar:file"
+msgid "Reload All Models"
+msgstr "Recharger tous les modèles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:391
+msgctxt "@action:inmenu menubar:edit"
+msgid "Arrange All Models To All Build Plates"
+msgstr "Réorganiser tous les modèles sur tous les plateaux"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398
+msgctxt "@action:inmenu menubar:edit"
+msgid "Arrange All Models"
+msgstr "Réorganiser tous les modèles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:406
+msgctxt "@action:inmenu menubar:edit"
+msgid "Arrange Selection"
+msgstr "Réorganiser la sélection"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:413
+msgctxt "@action:inmenu menubar:edit"
+msgid "Reset All Model Positions"
+msgstr "Réinitialiser toutes les positions des modèles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:420
+msgctxt "@action:inmenu menubar:edit"
+msgid "Reset All Model Transformations"
+msgstr "Réinitialiser tous les modèles et transformations"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:429
+msgctxt "@action:inmenu menubar:file"
+msgid "&Open File(s)..."
+msgstr "&Ouvrir le(s) fichier(s)..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:439
+msgctxt "@action:inmenu menubar:file"
+msgid "&New Project..."
+msgstr "&Nouveau projet..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:446
+msgctxt "@action:inmenu menubar:help"
+msgid "Show Configuration Folder"
+msgstr "Afficher le dossier de configuration"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:453
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:550
+msgctxt "@action:menu"
+msgid "Configure setting visibility..."
+msgstr "Configurer la visibilité des paramètres..."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:460
+msgctxt "@action:menu"
+msgid "&Marketplace"
+msgstr "&Marché en ligne"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:257
+msgctxt "@label"
+msgid "This package will be installed after restarting."
+msgstr "Ce paquet sera installé après le redémarrage."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:450
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:17
+msgctxt "@title:tab"
+msgid "General"
+msgstr "Général"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:453
+msgctxt "@title:tab"
+msgid "Settings"
+msgstr "Paramètres"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:455
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
+msgctxt "@title:tab"
+msgid "Printers"
+msgstr "Imprimantes"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
+msgctxt "@title:tab"
+msgid "Profiles"
+msgstr "Profils"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:576
+msgctxt "@title:window %1 is the application name"
+msgid "Closing %1"
+msgstr "Fermeture de %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:577
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:589
+msgctxt "@label %1 is the application name"
+msgid "Are you sure you want to exit %1?"
+msgstr "Voulez-vous vraiment quitter %1 ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:627
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
+msgctxt "@title:window"
+msgid "Open file(s)"
+msgstr "Ouvrir le(s) fichier(s)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:737
+msgctxt "@window:title"
+msgid "Install Package"
+msgstr "Installer le paquet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:745
+msgctxt "@title:window"
+msgid "Open File(s)"
+msgstr "Ouvrir le(s) fichier(s)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:748
+msgctxt "@text:window"
+msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
+msgstr "Nous avons trouvé au moins un fichier G-Code parmi les fichiers que vous avez sélectionné. Vous ne pouvez ouvrir qu'un seul fichier G-Code à la fois. Si vous souhaitez ouvrir un fichier G-Code, veuillez ne sélectionner qu'un seul fichier de ce type."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:857
+msgctxt "@title:window"
+msgid "Add Printer"
+msgstr "Ajouter une imprimante"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:865
+msgctxt "@title:window"
+msgid "What's New"
+msgstr "Quoi de neuf"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
+msgctxt "@title:window The argument is the application name."
+msgid "About %1"
+msgstr "À propos de %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
+msgctxt "@label"
+msgid "version: %1"
+msgstr "version : %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
+msgctxt "@label"
+msgid "End-to-end solution for fused filament 3D printing."
+msgstr "Solution complète pour l'impression 3D par dépôt de filament fondu."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
+msgctxt "@info:credit"
+msgid ""
+"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
+"Cura proudly uses the following open source projects:"
+msgstr ""
+"Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\n"
+"Cura est fier d'utiliser les projets open source suivants :"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
+msgctxt "@label"
+msgid "Graphical user interface"
+msgstr "Interface utilisateur graphique"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
+msgctxt "@label"
+msgid "Application framework"
+msgstr "Cadre d'application"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
+msgctxt "@label"
+msgid "G-code generator"
+msgstr "Générateur G-Code"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
+msgctxt "@label"
+msgid "Interprocess communication library"
+msgstr "Bibliothèque de communication interprocess"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
+msgctxt "@label"
+msgid "Programming language"
+msgstr "Langage de programmation"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
+msgctxt "@label"
+msgid "GUI framework"
+msgstr "Cadre IUG"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
+msgctxt "@label"
+msgid "GUI framework bindings"
+msgstr "Liens cadre IUG"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
+msgctxt "@label"
+msgid "C/C++ Binding library"
+msgstr "Bibliothèque C/C++ Binding"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
+msgctxt "@label"
+msgid "Data interchange format"
+msgstr "Format d'échange de données"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
+msgctxt "@label"
+msgid "Support library for scientific computing"
+msgstr "Prise en charge de la bibliothèque pour le calcul scientifique"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
+msgctxt "@label"
+msgid "Support library for faster math"
+msgstr "Prise en charge de la bibliothèque pour des maths plus rapides"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
+msgctxt "@label"
+msgid "Support library for handling STL files"
+msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers STL"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
+msgctxt "@label"
+msgid "Support library for handling planar objects"
+msgstr "Prise en charge de la bibliothèque pour le traitement des objets planaires"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
+msgctxt "@label"
+msgid "Support library for handling triangular meshes"
+msgstr "Prise en charge de la bibliothèque pour le traitement des mailles triangulaires"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
+msgctxt "@label"
+msgid "Support library for handling 3MF files"
+msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers 3MF"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
+msgctxt "@label"
+msgid "Support library for file metadata and streaming"
+msgstr "Prise en charge de la bibliothèque pour les métadonnées et le streaming de fichiers"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
+msgctxt "@label"
+msgid "Serial communication library"
+msgstr "Bibliothèque de communication série"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
+msgctxt "@label"
+msgid "ZeroConf discovery library"
+msgstr "Bibliothèque de découverte ZeroConf"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
+msgctxt "@label"
+msgid "Polygon clipping library"
+msgstr "Bibliothèque de découpe polygone"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
+msgctxt "@Label"
+msgid "Static type checker for Python"
+msgstr "Vérificateur de type statique pour Python"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
+msgctxt "@Label"
+msgid "Root Certificates for validating SSL trustworthiness"
+msgstr "Certificats racines pour valider la fiabilité SSL"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
+msgctxt "@Label"
+msgid "Python Error tracking library"
+msgstr "Bibliothèque de suivi des erreurs Python"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
+msgctxt "@label"
+msgid "Polygon packing library, developed by Prusa Research"
+msgstr "Bibliothèque d'emballage de polygones, développée par Prusa Research"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
+msgctxt "@label"
+msgid "Python bindings for libnest2d"
+msgstr "Liens en python pour libnest2d"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:161
+msgctxt "@label"
+msgid "Support library for system keyring access"
+msgstr "Bibliothèque de support pour l'accès au trousseau de clés du système"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162
+msgctxt "@label"
+msgid "Python extensions for Microsoft Windows"
+msgstr "Extensions Python pour Microsoft Windows"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163
+msgctxt "@label"
+msgid "Font"
+msgstr "Police"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164
+msgctxt "@label"
+msgid "SVG icons"
+msgstr "Icônes SVG"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:165
+msgctxt "@label"
+msgid "Linux cross-distribution application deployment"
+msgstr "Déploiement d'applications sur multiples distributions Linux"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
+msgctxt "@title:window"
+msgid "Open project file"
+msgstr "Ouvrir un fichier de projet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
+msgctxt "@text:window"
+msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
+msgstr "Ceci est un fichier de projet Cura. Souhaitez-vous l'ouvrir comme projet ou en importer les modèles ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
+msgctxt "@text:window"
+msgid "Remember my choice"
+msgstr "Se souvenir de mon choix"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
+msgctxt "@action:button"
+msgid "Open as project"
+msgstr "Ouvrir comme projet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
+msgctxt "@action:button"
+msgid "Import models"
+msgstr "Importer les modèles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
msgctxt "@title:window"
msgid "Discard or Keep changes"
msgstr "Annuler ou conserver les modifications"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
msgctxt "@text:window, %1 is a profile name"
msgid ""
"You have customized some profile settings.\n"
@@ -3414,1479 +3843,1294 @@ msgstr ""
"Souhaitez-vous conserver ces paramètres modifiés après avoir changé de profil ?\n"
"Vous pouvez également annuler les modifications pour charger les valeurs par défaut de '%1'."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
msgctxt "@title:column"
msgid "Profile settings"
msgstr "Paramètres du profil"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
msgctxt "@title:column"
msgid "Current changes"
msgstr "Modifications actuelles"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:747
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733
msgctxt "@option:discardOrKeep"
msgid "Always ask me this"
msgstr "Toujours me demander"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
msgctxt "@option:discardOrKeep"
msgid "Discard and never ask again"
msgstr "Annuler et ne plus me demander"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
msgctxt "@option:discardOrKeep"
msgid "Keep and never ask again"
msgstr "Conserver et ne plus me demander"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
msgctxt "@action:button"
msgid "Discard changes"
msgstr "Annuler les modifications"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
msgctxt "@action:button"
msgid "Keep changes"
msgstr "Conserver les modifications"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:15
-msgctxt "@title:window The argument is the application name."
-msgid "About %1"
-msgstr "À propos de %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:57
-msgctxt "@label"
-msgid "version: %1"
-msgstr "version : %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:72
-msgctxt "@label"
-msgid "End-to-end solution for fused filament 3D printing."
-msgstr "Solution complète pour l'impression 3D par dépôt de filament fondu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:85
-msgctxt "@info:credit"
-msgid ""
-"Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
-"Cura proudly uses the following open source projects:"
-msgstr ""
-"Cura a été développé par Ultimaker B.V. en coopération avec la communauté Ultimaker.\n"
-"Cura est fier d'utiliser les projets open source suivants :"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:135
-msgctxt "@label"
-msgid "Graphical user interface"
-msgstr "Interface utilisateur graphique"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:136
-msgctxt "@label"
-msgid "Application framework"
-msgstr "Cadre d'application"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:137
-msgctxt "@label"
-msgid "G-code generator"
-msgstr "Générateur G-Code"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:138
-msgctxt "@label"
-msgid "Interprocess communication library"
-msgstr "Bibliothèque de communication interprocess"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:140
-msgctxt "@label"
-msgid "Programming language"
-msgstr "Langage de programmation"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:141
-msgctxt "@label"
-msgid "GUI framework"
-msgstr "Cadre IUG"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:142
-msgctxt "@label"
-msgid "GUI framework bindings"
-msgstr "Liens cadre IUG"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:143
-msgctxt "@label"
-msgid "C/C++ Binding library"
-msgstr "Bibliothèque C/C++ Binding"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:144
-msgctxt "@label"
-msgid "Data interchange format"
-msgstr "Format d'échange de données"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:145
-msgctxt "@label"
-msgid "Support library for scientific computing"
-msgstr "Prise en charge de la bibliothèque pour le calcul scientifique"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:146
-msgctxt "@label"
-msgid "Support library for faster math"
-msgstr "Prise en charge de la bibliothèque pour des maths plus rapides"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:147
-msgctxt "@label"
-msgid "Support library for handling STL files"
-msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers STL"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:148
-msgctxt "@label"
-msgid "Support library for handling planar objects"
-msgstr "Prise en charge de la bibliothèque pour le traitement des objets planaires"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:149
-msgctxt "@label"
-msgid "Support library for handling triangular meshes"
-msgstr "Prise en charge de la bibliothèque pour le traitement des mailles triangulaires"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:150
-msgctxt "@label"
-msgid "Support library for handling 3MF files"
-msgstr "Prise en charge de la bibliothèque pour le traitement des fichiers 3MF"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:151
-msgctxt "@label"
-msgid "Support library for file metadata and streaming"
-msgstr "Prise en charge de la bibliothèque pour les métadonnées et le streaming de fichiers"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:152
-msgctxt "@label"
-msgid "Serial communication library"
-msgstr "Bibliothèque de communication série"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:153
-msgctxt "@label"
-msgid "ZeroConf discovery library"
-msgstr "Bibliothèque de découverte ZeroConf"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:154
-msgctxt "@label"
-msgid "Polygon clipping library"
-msgstr "Bibliothèque de découpe polygone"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:155
-msgctxt "@Label"
-msgid "Static type checker for Python"
-msgstr "Vérificateur de type statique pour Python"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:156 /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:157
-msgctxt "@Label"
-msgid "Root Certificates for validating SSL trustworthiness"
-msgstr "Certificats racines pour valider la fiabilité SSL"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:158
-msgctxt "@Label"
-msgid "Python Error tracking library"
-msgstr "Bibliothèque de suivi des erreurs Python"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:159
-msgctxt "@label"
-msgid "Polygon packing library, developed by Prusa Research"
-msgstr "Bibliothèque d'emballage de polygones, développée par Prusa Research"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:160
-msgctxt "@label"
-msgid "Python bindings for libnest2d"
-msgstr "Liens en python pour libnest2d"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:161
-msgctxt "@label"
-msgid "Support library for system keyring access"
-msgstr "Bibliothèque de support pour l'accès au trousseau de clés du système"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:162
-msgctxt "@label"
-msgid "Python extensions for Microsoft Windows"
-msgstr "Extensions Python pour Microsoft Windows"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:163
-msgctxt "@label"
-msgid "Font"
-msgstr "Police"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:164
-msgctxt "@label"
-msgid "SVG icons"
-msgstr "Icônes SVG"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:165
-msgctxt "@label"
-msgid "Linux cross-distribution application deployment"
-msgstr "Déploiement d'applications sur multiples distributions Linux"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:627
-msgctxt "@title:window"
-msgid "Open file(s)"
-msgstr "Ouvrir le(s) fichier(s)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
msgctxt "@text:window"
msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
msgstr "Nous avons trouvé au moins un fichier de projet parmi les fichiers que vous avez sélectionnés. Vous ne pouvez ouvrir qu'un seul fichier de projet à la fois. Nous vous conseillons de n'importer que les modèles de ces fichiers. Souhaitez-vous continuer ?"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
msgctxt "@action:button"
msgid "Import all as models"
msgstr "Importer tout comme modèles"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
msgctxt "@title:window"
msgid "Save Project"
msgstr "Enregistrer le projet"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
msgctxt "@action:label"
msgid "Extruder %1"
msgstr "Extrudeuse %1"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
msgctxt "@action:label"
msgid "%1 & material"
msgstr "%1 & matériau"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
msgctxt "@action:label"
msgid "Material"
msgstr "Matériau"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
msgctxt "@action:label"
msgid "Don't show project summary on save again"
msgstr "Ne pas afficher à nouveau le résumé du projet lors de l'enregistrement"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
msgctxt "@action:button"
msgid "Save"
msgstr "Enregistrer"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
-msgctxt "@title:window"
-msgid "Open project file"
-msgstr "Ouvrir un fichier de projet"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
+msgctxt "@label %1 is filled in with the name of an extruder"
+msgid "Print Selected Model with %1"
+msgid_plural "Print Selected Models with %1"
+msgstr[0] "Imprimer le modèle sélectionné avec %1"
+msgstr[1] "Imprimer les modèles sélectionnés avec %1"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
-msgctxt "@text:window"
-msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
-msgstr "Ceci est un fichier de projet Cura. Souhaitez-vous l'ouvrir comme projet ou en importer les modèles ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
-msgctxt "@text:window"
-msgid "Remember my choice"
-msgstr "Se souvenir de mon choix"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
-msgctxt "@action:button"
-msgid "Open as project"
-msgstr "Ouvrir comme projet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
-msgctxt "@action:button"
-msgid "Import models"
-msgstr "Importer les modèles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/JobSpecs.qml:99
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
msgctxt "@text Print job name"
msgid "Untitled"
msgstr "Sans titre"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
-msgctxt "@label"
-msgid "Welcome to Ultimaker Cura"
-msgstr "Bienvenue dans Ultimaker Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
-msgctxt "@text"
-msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
-msgstr ""
-"Veuillez suivre ces étapes pour configurer\n"
-"Ultimaker Cura. Cela ne prendra que quelques instants."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
-msgctxt "@button"
-msgid "Get started"
-msgstr "Prise en main"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
-msgctxt "@label"
-msgid "Empty"
-msgstr "Vide"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
-msgctxt "@label"
-msgid "Help us to improve Ultimaker Cura"
-msgstr "Aidez-nous à améliorer Ultimaker Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
-msgctxt "@text"
-msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
-msgstr "Ultimaker Cura recueille des données anonymes pour améliorer la qualité d'impression et l'expérience utilisateur, notamment :"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
-msgctxt "@text"
-msgid "Machine types"
-msgstr "Types de machines"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
-msgctxt "@text"
-msgid "Material usage"
-msgstr "Utilisation du matériau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
-msgctxt "@text"
-msgid "Number of slices"
-msgstr "Nombre de découpes"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
-msgctxt "@text"
-msgid "Print settings"
-msgstr "Paramètres d'impression"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
-msgctxt "@text"
-msgid "Data collected by Ultimaker Cura will not contain any personal information."
-msgstr "Les données recueillies par Ultimaker Cura ne contiendront aucun renseignement personnel."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
-msgctxt "@text"
-msgid "More information"
-msgstr "Plus d'informations"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
-msgctxt "@label"
-msgid "Add printer by IP address"
-msgstr "Ajouter une imprimante par adresse IP"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
-msgctxt "@text"
-msgid "Enter your printer's IP address."
-msgstr "Saisissez l'adresse IP de votre imprimante."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
-msgctxt "@button"
-msgid "Add"
-msgstr "Ajouter"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
-msgctxt "@label"
-msgid "Could not connect to device."
-msgstr "Impossible de se connecter à l'appareil."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
-msgctxt "@label"
-msgid "Can't connect to your Ultimaker printer?"
-msgstr "Impossible de vous connecter à votre imprimante Ultimaker ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
-msgctxt "@label"
-msgid "The printer at this address has not responded yet."
-msgstr "L'imprimante à cette adresse n'a pas encore répondu."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
-msgctxt "@label"
-msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
-msgstr "Cette imprimante ne peut pas être ajoutée parce qu'il s'agit d'une imprimante inconnue ou de l'hôte d'un groupe."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
-msgctxt "@button"
-msgid "Back"
-msgstr "Précédent"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
-msgctxt "@button"
-msgid "Connect"
-msgstr "Se connecter"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
-msgctxt "@label"
-msgid "Add a printer"
-msgstr "Ajouter une imprimante"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
-msgctxt "@label"
-msgid "Add a networked printer"
-msgstr "Ajouter une imprimante en réseau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
-msgctxt "@label"
-msgid "Add a non-networked printer"
-msgstr "Ajouter une imprimante hors réseau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
-msgctxt "@label"
-msgid "What's New"
-msgstr "Nouveautés"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
-msgctxt "@label"
-msgid "Add a Cloud printer"
-msgstr "Ajouter une imprimante cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
-msgctxt "@label"
-msgid "Waiting for Cloud response"
-msgstr "En attente d'une réponse cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
-msgctxt "@label"
-msgid "No printers found in your account?"
-msgstr "Aucune imprimante trouvée dans votre compte ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
-msgctxt "@label"
-msgid "The following printers in your account have been added in Cura:"
-msgstr "Les imprimantes suivantes de votre compte ont été ajoutées à Cura :"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
-msgctxt "@button"
-msgid "Add printer manually"
-msgstr "Ajouter l'imprimante manuellement"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:20
-msgctxt "@label"
-msgid "Sign in to the Ultimaker platform"
-msgstr "Connectez-vous à la plateforme Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:124
-msgctxt "@text"
-msgid "Add material settings and plugins from the Marketplace"
-msgstr "Ajoutez des paramètres de matériaux et des plug-ins depuis la Marketplace"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:154
-msgctxt "@text"
-msgid "Backup and sync your material settings and plugins"
-msgstr "Sauvegardez et synchronisez vos paramètres de matériaux et vos plug-ins"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:184
-msgctxt "@text"
-msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
-msgstr "Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:217
-msgctxt "@text"
-msgid "Create a free Ultimaker Account"
-msgstr "Créez gratuitement un compte Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:230
-msgctxt "@button"
-msgid "Skip"
-msgstr "Ignorer"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
-msgctxt "@label"
-msgid "User Agreement"
-msgstr "Accord utilisateur"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
-msgctxt "@button"
-msgid "Decline and close"
-msgstr "Décliner et fermer"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
-msgctxt "@label"
-msgid "Release Notes"
-msgstr "Notes de version"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
-msgctxt "@label"
-msgid "There is no printer found over your network."
-msgstr "Aucune imprimante n'a été trouvée sur votre réseau."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
-msgctxt "@label"
-msgid "Refresh"
-msgstr "Rafraîchir"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
-msgctxt "@label"
-msgid "Add printer by IP"
-msgstr "Ajouter une imprimante par IP"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
-msgctxt "@label"
-msgid "Add cloud printer"
-msgstr "Ajouter une imprimante cloud"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
-msgctxt "@label"
-msgid "Troubleshooting"
-msgstr "Dépannage"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
-msgctxt "@label"
-msgid "Manufacturer"
-msgstr "Fabricant"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
-msgctxt "@label"
-msgid "Profile author"
-msgstr "Auteur du profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
-msgctxt "@label"
-msgid "Printer name"
-msgstr "Nom de l'imprimante"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
-msgctxt "@text"
-msgid "Please name your printer"
-msgstr "Veuillez nommer votre imprimante"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:81
-msgctxt "@label The argument is a timestamp"
-msgid "Last update: %1"
-msgstr "Dernière mise à jour : %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:109
-msgctxt "@button"
-msgid "Ultimaker Account"
-msgstr "Compte Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:125
-msgctxt "@button"
-msgid "Sign Out"
-msgstr "Déconnexion"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:42
-msgctxt "@text"
-msgid ""
-"- Add material profiles and plug-ins from the Marketplace\n"
-"- Back-up and sync your material profiles and plug-ins\n"
-"- Share ideas and get help from 48,000+ users in the Ultimaker community"
-msgstr "- Ajoutez des profils de matériaux et des plug-ins à partir de la Marketplace - Sauvegardez et synchronisez vos profils de matériaux et vos plug-ins - Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:62
-msgctxt "@button"
-msgid "Create a free Ultimaker account"
-msgstr "Créez gratuitement un compte Ultimaker"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/AccountWidget.qml:24
-msgctxt "@action:button"
-msgid "Sign in"
-msgstr "Se connecter"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:28
-msgctxt "@label"
-msgid "Checking..."
-msgstr "Vérification en cours..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:35
-msgctxt "@label"
-msgid "Account synced"
-msgstr "Compte synchronisé"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:42
-msgctxt "@label"
-msgid "Something went wrong..."
-msgstr "Un problème s'est produit..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:96
-msgctxt "@button"
-msgid "Install pending updates"
-msgstr "Installer les mises à jour en attente"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:118
-msgctxt "@button"
-msgid "Check for account updates"
-msgstr "Rechercher des mises à jour de compte"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectSelector.qml:59
-msgctxt "@label"
-msgid "Object list"
-msgstr "Liste d'objets"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:82
-msgctxt "@action:inmenu"
-msgid "Show Online Troubleshooting Guide"
-msgstr "Afficher le guide de dépannage en ligne"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:89
-msgctxt "@action:inmenu"
-msgid "Toggle Full Screen"
-msgstr "Passer en Plein écran"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:97
-msgctxt "@action:inmenu"
-msgid "Exit Full Screen"
-msgstr "Quitter le mode plein écran"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:104
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Undo"
-msgstr "&Annuler"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:114
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Redo"
-msgstr "&Rétablir"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:124
-msgctxt "@action:inmenu menubar:file"
-msgid "&Quit"
-msgstr "&Quitter"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:132
-msgctxt "@action:inmenu menubar:view"
-msgid "3D View"
-msgstr "Vue 3D"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:139
-msgctxt "@action:inmenu menubar:view"
-msgid "Front View"
-msgstr "Vue de face"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:146
-msgctxt "@action:inmenu menubar:view"
-msgid "Top View"
-msgstr "Vue du dessus"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:153
-msgctxt "@action:inmenu menubar:view"
-msgid "Left Side View"
-msgstr "Vue latérale gauche"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:160
-msgctxt "@action:inmenu menubar:view"
-msgid "Right Side View"
-msgstr "Vue latérale droite"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:167
-msgctxt "@action:inmenu"
-msgid "Configure Cura..."
-msgstr "Configurer Cura..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:174
-msgctxt "@action:inmenu menubar:printer"
-msgid "&Add Printer..."
-msgstr "&Ajouter une imprimante..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:180
-msgctxt "@action:inmenu menubar:printer"
-msgid "Manage Pr&inters..."
-msgstr "Gérer les &imprimantes..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:187
-msgctxt "@action:inmenu"
-msgid "Manage Materials..."
-msgstr "Gérer les matériaux..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:195
-msgctxt "@action:inmenu"
-msgid "Add more materials from Marketplace"
-msgstr "Ajouter d'autres matériaux du Marketplace"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:202
-msgctxt "@action:inmenu menubar:profile"
-msgid "&Update profile with current settings/overrides"
-msgstr "&Mettre à jour le profil à l'aide des paramètres / forçages actuels"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:210
-msgctxt "@action:inmenu menubar:profile"
-msgid "&Discard current changes"
-msgstr "&Ignorer les modifications actuelles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:222
-msgctxt "@action:inmenu menubar:profile"
-msgid "&Create profile from current settings/overrides..."
-msgstr "&Créer un profil à partir des paramètres / forçages actuels..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:228
-msgctxt "@action:inmenu menubar:profile"
-msgid "Manage Profiles..."
-msgstr "Gérer les profils..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:236
-msgctxt "@action:inmenu menubar:help"
-msgid "Show Online &Documentation"
-msgstr "Afficher la &documentation en ligne"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:244
-msgctxt "@action:inmenu menubar:help"
-msgid "Report a &Bug"
-msgstr "Notifier un &bug"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:252
-msgctxt "@action:inmenu menubar:help"
-msgid "What's New"
-msgstr "Quoi de neuf"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:258
-msgctxt "@action:inmenu menubar:help"
-msgid "About..."
-msgstr "À propos de..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:265
-msgctxt "@action:inmenu menubar:edit"
-msgid "Delete Selected"
-msgstr "Supprimer la sélection"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:275
-msgctxt "@action:inmenu menubar:edit"
-msgid "Center Selected"
-msgstr "Centrer la sélection"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:284
-msgctxt "@action:inmenu menubar:edit"
-msgid "Multiply Selected"
-msgstr "Multiplier la sélection"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:293
-msgctxt "@action:inmenu"
-msgid "Delete Model"
-msgstr "Supprimer le modèle"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:301
-msgctxt "@action:inmenu"
-msgid "Ce&nter Model on Platform"
-msgstr "Ce&ntrer le modèle sur le plateau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:307
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Group Models"
-msgstr "&Grouper les modèles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:327
-msgctxt "@action:inmenu menubar:edit"
-msgid "Ungroup Models"
-msgstr "Dégrouper les modèles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:337
-msgctxt "@action:inmenu menubar:edit"
-msgid "&Merge Models"
-msgstr "&Fusionner les modèles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:347
-msgctxt "@action:inmenu"
-msgid "&Multiply Model..."
-msgstr "&Multiplier le modèle..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:354
-msgctxt "@action:inmenu menubar:edit"
-msgid "Select All Models"
-msgstr "Sélectionner tous les modèles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:364
-msgctxt "@action:inmenu menubar:edit"
-msgid "Clear Build Plate"
-msgstr "Supprimer les objets du plateau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:374
-msgctxt "@action:inmenu menubar:file"
-msgid "Reload All Models"
-msgstr "Recharger tous les modèles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:383
-msgctxt "@action:inmenu menubar:edit"
-msgid "Arrange All Models To All Build Plates"
-msgstr "Réorganiser tous les modèles sur tous les plateaux"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:390
-msgctxt "@action:inmenu menubar:edit"
-msgid "Arrange All Models"
-msgstr "Réorganiser tous les modèles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:398
-msgctxt "@action:inmenu menubar:edit"
-msgid "Arrange Selection"
-msgstr "Réorganiser la sélection"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:405
-msgctxt "@action:inmenu menubar:edit"
-msgid "Reset All Model Positions"
-msgstr "Réinitialiser toutes les positions des modèles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:412
-msgctxt "@action:inmenu menubar:edit"
-msgid "Reset All Model Transformations"
-msgstr "Réinitialiser tous les modèles et transformations"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:421
-msgctxt "@action:inmenu menubar:file"
-msgid "&Open File(s)..."
-msgstr "&Ouvrir le(s) fichier(s)..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:431
-msgctxt "@action:inmenu menubar:file"
-msgid "&New Project..."
-msgstr "&Nouveau projet..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:438
-msgctxt "@action:inmenu menubar:help"
-msgid "Show Configuration Folder"
-msgstr "Afficher le dossier de configuration"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:445 /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:538
-msgctxt "@action:menu"
-msgid "Configure setting visibility..."
-msgstr "Configurer la visibilité des paramètres..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:452
-msgctxt "@action:menu"
-msgid "&Marketplace"
-msgstr "&Marché en ligne"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:61
-msgctxt "@info:status"
-msgid "Calculated"
-msgstr "Calculer"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:75
-msgctxt "@title:column"
-msgid "Setting"
-msgstr "Paramètre"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:82
-msgctxt "@title:column"
-msgid "Profile"
-msgstr "Profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:89
-msgctxt "@title:column"
-msgid "Current"
-msgstr "Actuel"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:97
-msgctxt "@title:column"
-msgid "Unit"
-msgstr "Unité"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
-msgctxt "@title"
-msgid "Information"
-msgstr "Informations"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
+msgctxt "@title:menu menubar:toplevel"
+msgid "&File"
+msgstr "&Fichier"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Edit"
+msgstr "&Modifier"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
+msgctxt "@title:menu menubar:toplevel"
+msgid "&View"
+msgstr "&Visualisation"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Settings"
+msgstr "&Paramètres"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
+msgctxt "@title:menu menubar:toplevel"
+msgid "E&xtensions"
+msgstr "E&xtensions"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
+msgctxt "@title:menu menubar:toplevel"
+msgid "P&references"
+msgstr "P&références"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
+msgctxt "@title:menu menubar:toplevel"
+msgid "&Help"
+msgstr "&Aide"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
msgctxt "@title:window"
-msgid "Confirm Diameter Change"
-msgstr "Confirmer le changement de diamètre"
+msgid "New project"
+msgstr "Nouveau projet"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
-msgctxt "@label (%1 is a number)"
-msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
-msgstr "Le nouveau diamètre de filament est réglé sur %1 mm, ce qui n'est pas compatible avec l'extrudeuse actuelle. Souhaitez-vous poursuivre ?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
+msgctxt "@info:question"
+msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
+msgstr "Êtes-vous sûr(e) de souhaiter lancer un nouveau projet ? Cela supprimera les objets du plateau ainsi que tous paramètres non enregistrés."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
-msgctxt "@label"
-msgid "Display Name"
-msgstr "Afficher le nom"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
-msgctxt "@label"
-msgid "Material Type"
-msgstr "Type de matériau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
-msgctxt "@label"
-msgid "Color"
-msgstr "Couleur"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
-msgctxt "@label"
-msgid "Properties"
-msgstr "Propriétés"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
-msgctxt "@label"
-msgid "Density"
-msgstr "Densité"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
-msgctxt "@label"
-msgid "Diameter"
-msgstr "Diamètre"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
-msgctxt "@label"
-msgid "Filament Cost"
-msgstr "Coût du filament"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
-msgctxt "@label"
-msgid "Filament weight"
-msgstr "Poids du filament"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
-msgctxt "@label"
-msgid "Filament length"
-msgstr "Longueur du filament"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
-msgctxt "@label"
-msgid "Cost per Meter"
-msgstr "Coût au mètre"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
-msgctxt "@label"
-msgid "This material is linked to %1 and shares some of its properties."
-msgstr "Ce matériau est lié à %1 et partage certaines de ses propriétés."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
-msgctxt "@label"
-msgid "Unlink Material"
-msgstr "Délier le matériau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
-msgctxt "@label"
-msgid "Description"
-msgstr "Description"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
-msgctxt "@label"
-msgid "Adhesion Information"
-msgstr "Informations d'adhérence"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:40 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:84
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
msgctxt "@action:button"
-msgid "Activate"
-msgstr "Activer"
+msgid "Marketplace"
+msgstr "Marché en ligne"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
-msgctxt "@action:button"
-msgid "Create"
-msgstr "Créer"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
+msgctxt "@header"
+msgid "Configurations"
+msgstr "Configurations"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
-msgctxt "@action:button"
-msgid "Duplicate"
-msgstr "Dupliquer"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
+msgctxt "@label"
+msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
+msgstr "Cette configuration n'est pas disponible car %1 n'est pas reconnu. Veuillez visiter %2 pour télécharger le profil matériel correct."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:167
-msgctxt "@action:button"
-msgid "Import"
-msgstr "Importer"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
+msgctxt "@label"
+msgid "Marketplace"
+msgstr "Marché en ligne"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:179
-msgctxt "@action:button"
-msgid "Export"
-msgstr "Exporter"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
+msgctxt "@label"
+msgid "Loading available configurations from the printer..."
+msgstr "Chargement des configurations disponibles à partir de l'imprimante..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
-msgctxt "@action:label"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
+msgctxt "@label"
+msgid "The configurations are not available because the printer is disconnected."
+msgstr "Les configurations ne sont pas disponibles car l'imprimante est déconnectée."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
+msgctxt "@label"
+msgid "Select configuration"
+msgstr "Sélectionner la configuration"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
+msgctxt "@label"
+msgid "Configurations"
+msgstr "Configurations"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
+msgctxt "@header"
+msgid "Custom"
+msgstr "Personnalisé"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
+msgctxt "@label"
msgid "Printer"
msgstr "Imprimante"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:277
-msgctxt "@title:window"
-msgid "Confirm Remove"
-msgstr "Confirmer la suppression"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:278
-msgctxt "@label (%1 is object name)"
-msgid "Are you sure you wish to remove %1? This cannot be undone!"
-msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
-msgctxt "@title:window"
-msgid "Import Material"
-msgstr "Importer un matériau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
-msgctxt "@info:status Don't translate the XML tags or !"
-msgid "Could not import material %1: %2"
-msgstr "Impossible d'importer le matériau %1 : %2"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully imported material %1"
-msgstr "Matériau %1 importé avec succès"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
-msgctxt "@title:window"
-msgid "Export Material"
-msgstr "Exporter un matériau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
-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"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
-msgctxt "@info:status Don't translate the XML tag !"
-msgid "Successfully exported material to %1"
-msgstr "Matériau exporté avec succès vers %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:16 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:455
-msgctxt "@title:tab"
-msgid "Printers"
-msgstr "Imprimantes"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:63 /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:152
-msgctxt "@action:button"
-msgid "Rename"
-msgstr "Renommer"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:34 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:459
-msgctxt "@title:tab"
-msgid "Profiles"
-msgstr "Profils"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:104
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
msgctxt "@label"
-msgid "Create"
-msgstr "Créer"
+msgid "Enabled"
+msgstr "Activé"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:121
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
msgctxt "@label"
-msgid "Duplicate"
-msgstr "Dupliquer"
+msgid "Material"
+msgstr "Matériau"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:202
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407
+msgctxt "@label"
+msgid "Use glue for better adhesion with this material combination."
+msgstr "Utiliser de la colle pour une meilleure adhérence avec cette combinaison de matériaux."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
+msgctxt "@label"
+msgid "Print Selected Model With:"
+msgid_plural "Print Selected Models With:"
+msgstr[0] "Imprimer le modèle sélectionné avec :"
+msgstr[1] "Imprimer les modèles sélectionnés avec :"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
msgctxt "@title:window"
-msgid "Create Profile"
-msgstr "Créer un profil"
+msgid "Multiply Selected Model"
+msgid_plural "Multiply Selected Models"
+msgstr[0] "Multiplier le modèle sélectionné"
+msgstr[1] "Multiplier les modèles sélectionnés"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:204
-msgctxt "@info"
-msgid "Please provide a name for this profile."
-msgstr "Veuillez fournir un nom pour ce profil."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:263
-msgctxt "@title:window"
-msgid "Duplicate Profile"
-msgstr "Dupliquer un profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:294
-msgctxt "@title:window"
-msgid "Rename Profile"
-msgstr "Renommer le profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:307
-msgctxt "@title:window"
-msgid "Import Profile"
-msgstr "Importer un profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:336
-msgctxt "@title:window"
-msgid "Export Profile"
-msgstr "Exporter un profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:399
-msgctxt "@label %1 is printer name"
-msgid "Printer: %1"
-msgstr "Imprimante : %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:557
-msgctxt "@action:button"
-msgid "Update profile with current settings/overrides"
-msgstr "Mettre à jour le profil à l'aide des paramètres / forçages actuels"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:583
-msgctxt "@action:label"
-msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
-msgstr "Ce profil utilise les paramètres par défaut spécifiés par l'imprimante, de sorte qu'aucun paramètre / forçage n'apparaît dans la liste ci-dessous."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:591
-msgctxt "@action:label"
-msgid "Your current settings match the selected profile."
-msgstr "Vos paramètres actuels correspondent au profil sélectionné."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:609
-msgctxt "@title:tab"
-msgid "Global Settings"
-msgstr "Paramètres généraux"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
-msgctxt "@title:tab"
-msgid "Setting Visibility"
-msgstr "Visibilité des paramètres"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
-msgctxt "@label:textbox"
-msgid "Check all"
-msgstr "Vérifier tout"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:15 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:450
-msgctxt "@title:tab"
-msgid "General"
-msgstr "Général"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:137
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
msgctxt "@label"
-msgid "Interface"
-msgstr "Interface"
+msgid "Number of Copies"
+msgstr "Nombre de copies"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:216
-msgctxt "@label"
-msgid "Currency:"
-msgstr "Devise :"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:41
+msgctxt "@title:menu menubar:file"
+msgid "&Save Project..."
+msgstr "&Enregistrer le projet..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:229
-msgctxt "@label"
-msgid "Theme:"
-msgstr "Thème :"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:74
+msgctxt "@title:menu menubar:file"
+msgid "&Export..."
+msgstr "E&xporter..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:285
-msgctxt "@label"
-msgid "You will need to restart the application for these changes to have effect."
-msgstr "Vous devez redémarrer l'application pour que ces changements prennent effet."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:85
+msgctxt "@action:inmenu menubar:file"
+msgid "Export Selection..."
+msgstr "Exporter la sélection..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:302
-msgctxt "@info:tooltip"
-msgid "Slice automatically when changing settings."
-msgstr "Découper automatiquement si les paramètres sont modifiés."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
+msgctxt "@label:category menu label"
+msgid "Material"
+msgstr "Matériau"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:310
-msgctxt "@option:check"
-msgid "Slice automatically"
-msgstr "Découper automatiquement"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
+msgctxt "@label:category menu label"
+msgid "Favorites"
+msgstr "Favoris"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:324
-msgctxt "@label"
-msgid "Viewport behavior"
-msgstr "Comportement Viewport"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
+msgctxt "@label:category menu label"
+msgid "Generic"
+msgstr "Générique"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:332
-msgctxt "@info:tooltip"
-msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
-msgstr "Surligne les parties non supportées du modèle en rouge. Sans ajouter de support, ces zones ne s'imprimeront pas correctement."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Open File(s)..."
+msgstr "Ouvrir le(s) fichier(s)..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:341
-msgctxt "@option:check"
-msgid "Display overhang"
-msgstr "Mettre en surbrillance les porte-à-faux"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
+msgctxt "@label:category menu label"
+msgid "Network enabled printers"
+msgstr "Imprimantes réseau"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:351
-msgctxt "@info:tooltip"
-msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
-msgstr "Surlignez les surfaces du modèle manquantes ou étrangères en utilisant les signes d'avertissement. Les Toolpaths seront souvent les parties manquantes de la géométrie prévue."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
+msgctxt "@label:category menu label"
+msgid "Local printers"
+msgstr "Imprimantes locales"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:360
-msgctxt "@option:check"
-msgid "Display model errors"
-msgstr "Afficher les erreurs du modèle"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Open &Recent"
+msgstr "Ouvrir un fichier &récent"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:368
-msgctxt "@info:tooltip"
-msgid "Moves the camera so the model is in the center of the view when a model is selected"
-msgstr "Déplace la caméra afin que le modèle sélectionné se trouve au centre de la vue"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
+msgctxt "@title:menu menubar:file"
+msgid "Save Project..."
+msgstr "Sauvegarder le projet..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:373
-msgctxt "@action:button"
-msgid "Center camera when item is selected"
-msgstr "Centrer la caméra lorsqu'un élément est sélectionné"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
+msgctxt "@title:menu menubar:settings"
+msgid "&Printer"
+msgstr "Im&primante"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:383
-msgctxt "@info:tooltip"
-msgid "Should the default zoom behavior of cura be inverted?"
-msgstr "Le comportement de zoom par défaut de Cura doit-il être inversé ?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29
+msgctxt "@title:menu"
+msgid "&Material"
+msgstr "&Matériau"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:388
-msgctxt "@action:button"
-msgid "Invert the direction of camera zoom."
-msgstr "Inverser la direction du zoom de la caméra."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44
+msgctxt "@action:inmenu"
+msgid "Set as Active Extruder"
+msgstr "Définir comme extrudeur actif"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid "Should zooming move in the direction of the mouse?"
-msgstr "Le zoom doit-il se faire dans la direction de la souris ?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50
+msgctxt "@action:inmenu"
+msgid "Enable Extruder"
+msgstr "Activer l'extrudeuse"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
-msgctxt "@info:tooltip"
-msgid "Zooming towards the mouse is not supported in the orthographic perspective."
-msgstr "Le zoom vers la souris n'est pas pris en charge dans la perspective orthographique."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57
+msgctxt "@action:inmenu"
+msgid "Disable Extruder"
+msgstr "Désactiver l'extrudeuse"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:409
-msgctxt "@action:button"
-msgid "Zoom toward mouse direction"
-msgstr "Zoomer vers la direction de la souris"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
+msgctxt "@action:inmenu"
+msgid "Visible Settings"
+msgstr "Paramètres visibles"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:435
-msgctxt "@info:tooltip"
-msgid "Should models on the platform be moved so that they no longer intersect?"
-msgstr "Les modèles dans la zone d'impression doivent-ils être déplacés afin de ne plus se croiser ?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
+msgctxt "@action:inmenu"
+msgid "Collapse All Categories"
+msgstr "Réduire toutes les catégories"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:440
-msgctxt "@option:check"
-msgid "Ensure models are kept apart"
-msgstr "Veillez à ce que les modèles restent séparés"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
+msgctxt "@action:inmenu"
+msgid "Manage Setting Visibility..."
+msgstr "Gérer la visibilité des paramètres..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:449
-msgctxt "@info:tooltip"
-msgid "Should models on the platform be moved down to touch the build plate?"
-msgstr "Les modèles dans la zone d'impression doivent-ils être abaissés afin de toucher le plateau ?"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
+msgctxt "@action:inmenu menubar:view"
+msgid "&Camera position"
+msgstr "Position de la &caméra"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:454
-msgctxt "@option:check"
-msgid "Automatically drop models to the build plate"
-msgstr "Abaisser automatiquement les modèles sur le plateau"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:45
+msgctxt "@action:inmenu menubar:view"
+msgid "Camera view"
+msgstr "Vue de la caméra"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:466
-msgctxt "@info:tooltip"
-msgid "Show caution message in g-code reader."
-msgstr "Afficher le message d'avertissement dans le lecteur G-Code."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:475
-msgctxt "@option:check"
-msgid "Caution message in g-code reader"
-msgstr "Message d'avertissement dans le lecteur G-Code"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:483
-msgctxt "@info:tooltip"
-msgid "Should layer be forced into compatibility mode?"
-msgstr "La couche doit-elle être forcée en mode de compatibilité ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:488
-msgctxt "@option:check"
-msgid "Force layer view compatibility mode (restart required)"
-msgstr "Forcer l'affichage de la couche en mode de compatibilité (redémarrage requis)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:498
-msgctxt "@info:tooltip"
-msgid "Should Cura open at the location it was closed?"
-msgstr "Est-ce que Cura devrait ouvrir à l'endroit où il a été fermé ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:503
-msgctxt "@option:check"
-msgid "Restore window position on start"
-msgstr "Restaurer la position de la fenêtre au démarrage"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:513
-msgctxt "@info:tooltip"
-msgid "What type of camera rendering should be used?"
-msgstr "Quel type de rendu de la caméra doit-il être utilisé?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:520
-msgctxt "@window:text"
-msgid "Camera rendering:"
-msgstr "Rendu caméra :"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:531
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:48
+msgctxt "@action:inmenu menubar:view"
msgid "Perspective"
msgstr "Perspective"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:532
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:60
+msgctxt "@action:inmenu menubar:view"
msgid "Orthographic"
msgstr "Orthographique"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:563
-msgctxt "@label"
-msgid "Opening and saving files"
-msgstr "Ouvrir et enregistrer des fichiers"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:81
+msgctxt "@action:inmenu menubar:view"
+msgid "&Build plate"
+msgstr "&Plateau"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:570
-msgctxt "@info:tooltip"
-msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
-msgstr "L'ouverture de fichiers à partir du bureau ou d'applications externes doit-elle se faire dans la même instance de Cura ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:575
-msgctxt "@option:check"
-msgid "Use a single instance of Cura"
-msgstr "Utiliser une seule instance de Cura"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:585
-msgctxt "@info:tooltip"
-msgid "Should models be scaled to the build volume if they are too large?"
-msgstr "Les modèles doivent-ils être mis à l'échelle du volume d'impression s'ils sont trop grands ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:590
-msgctxt "@option:check"
-msgid "Scale large models"
-msgstr "Réduire la taille des modèles trop grands"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:600
-msgctxt "@info:tooltip"
-msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
-msgstr "Un modèle peut apparaître en tout petit si son unité est par exemple en mètres plutôt qu'en millimètres. Ces modèles doivent-ils être agrandis ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:605
-msgctxt "@option:check"
-msgid "Scale extremely small models"
-msgstr "Mettre à l'échelle les modèles extrêmement petits"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:615
-msgctxt "@info:tooltip"
-msgid "Should models be selected after they are loaded?"
-msgstr "Les modèles doivent-ils être sélectionnés après leur chargement ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:620
-msgctxt "@option:check"
-msgid "Select models when loaded"
-msgstr "Sélectionner les modèles lorsqu'ils sont chargés"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:630
-msgctxt "@info:tooltip"
-msgid "Should a prefix based on the printer name be added to the print job name automatically?"
-msgstr "Un préfixe basé sur le nom de l'imprimante doit-il être automatiquement ajouté au nom de la tâche d'impression ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:635
-msgctxt "@option:check"
-msgid "Add machine prefix to job name"
-msgstr "Ajouter le préfixe de la machine au nom de la tâche"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:645
-msgctxt "@info:tooltip"
-msgid "Should a summary be shown when saving a project file?"
-msgstr "Un résumé doit-il être affiché lors de l'enregistrement d'un fichier de projet ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:649
-msgctxt "@option:check"
-msgid "Show summary dialog when saving project"
-msgstr "Afficher la boîte de dialogue du résumé lors de l'enregistrement du projet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:659
-msgctxt "@info:tooltip"
-msgid "Default behavior when opening a project file"
-msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:667
-msgctxt "@window:text"
-msgid "Default behavior when opening a project file: "
-msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet : "
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:681
-msgctxt "@option:openProject"
-msgid "Always ask me this"
-msgstr "Toujours me demander"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:682
-msgctxt "@option:openProject"
-msgid "Always open as a project"
-msgstr "Toujours ouvrir comme projet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:683
-msgctxt "@option:openProject"
-msgid "Always import models"
-msgstr "Toujours importer les modèles"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:719
-msgctxt "@info:tooltip"
-msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
-msgstr "Lorsque vous apportez des modifications à un profil puis passez à un autre profil, une boîte de dialogue apparaît, vous demandant si vous souhaitez conserver les modifications. Vous pouvez aussi choisir une option par défaut, et le dialogue ne s'affichera plus."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:733
-msgctxt "@window:text"
-msgid "Default behavior for changed setting values when switching to a different profile: "
-msgstr "Comportement par défaut pour les valeurs de paramètres modifiées lors du passage à un profil différent : "
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:748
-msgctxt "@option:discardOrKeep"
-msgid "Always discard changed settings"
-msgstr "Toujours rejeter les paramètres modifiés"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:749
-msgctxt "@option:discardOrKeep"
-msgid "Always transfer changed settings to new profile"
-msgstr "Toujours transférer les paramètres modifiés dans le nouveau profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:783
-msgctxt "@label"
-msgid "Privacy"
-msgstr "Confidentialité"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:790
-msgctxt "@info:tooltip"
-msgid "Should Cura check for updates when the program is started?"
-msgstr "Cura doit-il vérifier les mises à jour au démarrage du programme ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:795
-msgctxt "@option:check"
-msgid "Check for updates on start"
-msgstr "Vérifier les mises à jour au démarrage"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:805
-msgctxt "@info:tooltip"
-msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
-msgstr "Les données anonymes de votre impression doivent-elles être envoyées à Ultimaker ? Notez qu'aucun modèle, aucune adresse IP ni aucune autre information permettant de vous identifier personnellement ne seront envoyés ou stockés."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:810
-msgctxt "@option:check"
-msgid "Send (anonymous) print information"
-msgstr "Envoyer des informations (anonymes) sur l'impression"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:819
-msgctxt "@action:button"
-msgid "More information"
-msgstr "Plus d'informations"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewsSelector.qml:50
-msgctxt "@label"
-msgid "View type"
-msgstr "Type d'affichage"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:119
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
msgctxt "@label:MonitorStatus"
msgid "Not connected to a printer"
msgstr "Non connecté à une imprimante"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:123
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
msgctxt "@label:MonitorStatus"
msgid "Printer does not accept commands"
msgstr "L'imprimante n'accepte pas les commandes"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:133
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
msgctxt "@label:MonitorStatus"
msgid "In maintenance. Please check the printer"
msgstr "En maintenance. Vérifiez l'imprimante"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:144
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
msgctxt "@label:MonitorStatus"
msgid "Lost connection with the printer"
msgstr "Connexion avec l'imprimante perdue"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:146
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
msgctxt "@label:MonitorStatus"
msgid "Printing..."
msgstr "Impression..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:149
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
msgctxt "@label:MonitorStatus"
msgid "Paused"
msgstr "En pause"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:152
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
msgctxt "@label:MonitorStatus"
msgid "Preparing..."
msgstr "Préparation..."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:154
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
msgctxt "@label:MonitorStatus"
msgid "Please remove the print"
msgstr "Supprimez l'imprimante"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:326
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:326
msgctxt "@label"
msgid "Abort Print"
msgstr "Abandonner l'impression"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:338
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:338
msgctxt "@label"
msgid "Are you sure you want to abort the print?"
msgstr "Êtes-vous sûr(e) de vouloir abandonner l'impression ?"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:68
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114
+msgctxt "@label"
+msgid "Is printed as support."
+msgstr "Est imprimé comme support."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117
+msgctxt "@label"
+msgid "Other models overlapping with this model are modified."
+msgstr "D'autres modèles qui se chevauchent avec ce modèle ont été modifiés."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120
+msgctxt "@label"
+msgid "Infill overlapping with this model is modified."
+msgstr "Le chevauchement de remplissage avec ce modèle a été modifié."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123
+msgctxt "@label"
+msgid "Overlaps with this model are not supported."
+msgstr "Les chevauchements avec ce modèle ne sont pas pris en charge."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130
+msgctxt "@label %1 is the number of settings it overrides."
+msgid "Overrides %1 setting."
+msgid_plural "Overrides %1 settings."
+msgstr[0] "Remplace le paramètre %1."
+msgstr[1] "Remplace les paramètres %1."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
+msgctxt "@label"
+msgid "Object list"
+msgstr "Liste d'objets"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137
+msgctxt "@label"
+msgid "Interface"
+msgstr "Interface"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:209
+msgctxt "@label"
+msgid "Currency:"
+msgstr "Devise :"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:222
+msgctxt "@label"
+msgid "Theme:"
+msgstr "Thème :"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:267
+msgctxt "@label"
+msgid "You will need to restart the application for these changes to have effect."
+msgstr "Vous devez redémarrer l'application pour que ces changements prennent effet."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:284
+msgctxt "@info:tooltip"
+msgid "Slice automatically when changing settings."
+msgstr "Découper automatiquement si les paramètres sont modifiés."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:292
+msgctxt "@option:check"
+msgid "Slice automatically"
+msgstr "Découper automatiquement"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:306
+msgctxt "@label"
+msgid "Viewport behavior"
+msgstr "Comportement Viewport"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:314
+msgctxt "@info:tooltip"
+msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
+msgstr "Surligne les parties non supportées du modèle en rouge. Sans ajouter de support, ces zones ne s'imprimeront pas correctement."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:323
+msgctxt "@option:check"
+msgid "Display overhang"
+msgstr "Mettre en surbrillance les porte-à-faux"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333
+msgctxt "@info:tooltip"
+msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
+msgstr "Surlignez les surfaces du modèle manquantes ou étrangères en utilisant les signes d'avertissement. Les Toolpaths seront souvent les parties manquantes de la géométrie prévue."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:342
+msgctxt "@option:check"
+msgid "Display model errors"
+msgstr "Afficher les erreurs du modèle"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350
+msgctxt "@info:tooltip"
+msgid "Moves the camera so the model is in the center of the view when a model is selected"
+msgstr "Déplace la caméra afin que le modèle sélectionné se trouve au centre de la vue"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:355
+msgctxt "@action:button"
+msgid "Center camera when item is selected"
+msgstr "Centrer la caméra lorsqu'un élément est sélectionné"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:365
+msgctxt "@info:tooltip"
+msgid "Should the default zoom behavior of cura be inverted?"
+msgstr "Le comportement de zoom par défaut de Cura doit-il être inversé ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:370
+msgctxt "@action:button"
+msgid "Invert the direction of camera zoom."
+msgstr "Inverser la direction du zoom de la caméra."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid "Should zooming move in the direction of the mouse?"
+msgstr "Le zoom doit-il se faire dans la direction de la souris ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
+msgctxt "@info:tooltip"
+msgid "Zooming towards the mouse is not supported in the orthographic perspective."
+msgstr "Le zoom vers la souris n'est pas pris en charge dans la perspective orthographique."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391
+msgctxt "@action:button"
+msgid "Zoom toward mouse direction"
+msgstr "Zoomer vers la direction de la souris"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:417
+msgctxt "@info:tooltip"
+msgid "Should models on the platform be moved so that they no longer intersect?"
+msgstr "Les modèles dans la zone d'impression doivent-ils être déplacés afin de ne plus se croiser ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:422
+msgctxt "@option:check"
+msgid "Ensure models are kept apart"
+msgstr "Veillez à ce que les modèles restent séparés"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:431
+msgctxt "@info:tooltip"
+msgid "Should models on the platform be moved down to touch the build plate?"
+msgstr "Les modèles dans la zone d'impression doivent-ils être abaissés afin de toucher le plateau ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:436
+msgctxt "@option:check"
+msgid "Automatically drop models to the build plate"
+msgstr "Abaisser automatiquement les modèles sur le plateau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:448
+msgctxt "@info:tooltip"
+msgid "Show caution message in g-code reader."
+msgstr "Afficher le message d'avertissement dans le lecteur G-Code."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:457
+msgctxt "@option:check"
+msgid "Caution message in g-code reader"
+msgstr "Message d'avertissement dans le lecteur G-Code"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:465
+msgctxt "@info:tooltip"
+msgid "Should layer be forced into compatibility mode?"
+msgstr "La couche doit-elle être forcée en mode de compatibilité ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470
+msgctxt "@option:check"
+msgid "Force layer view compatibility mode (restart required)"
+msgstr "Forcer l'affichage de la couche en mode de compatibilité (redémarrage requis)"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:480
+msgctxt "@info:tooltip"
+msgid "Should Cura open at the location it was closed?"
+msgstr "Est-ce que Cura devrait ouvrir à l'endroit où il a été fermé ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:485
+msgctxt "@option:check"
+msgid "Restore window position on start"
+msgstr "Restaurer la position de la fenêtre au démarrage"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495
+msgctxt "@info:tooltip"
+msgid "What type of camera rendering should be used?"
+msgstr "Quel type de rendu de la caméra doit-il être utilisé?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:502
+msgctxt "@window:text"
+msgid "Camera rendering:"
+msgstr "Rendu caméra :"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:509
+msgid "Perspective"
+msgstr "Perspective"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:510
+msgid "Orthographic"
+msgstr "Orthographique"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:548
+msgctxt "@label"
+msgid "Opening and saving files"
+msgstr "Ouvrir et enregistrer des fichiers"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:555
+msgctxt "@info:tooltip"
+msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
+msgstr "L'ouverture de fichiers à partir du bureau ou d'applications externes doit-elle se faire dans la même instance de Cura ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560
+msgctxt "@option:check"
+msgid "Use a single instance of Cura"
+msgstr "Utiliser une seule instance de Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570
+msgctxt "@info:tooltip"
+msgid "Should models be scaled to the build volume if they are too large?"
+msgstr "Les modèles doivent-ils être mis à l'échelle du volume d'impression s'ils sont trop grands ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
+msgctxt "@option:check"
+msgid "Scale large models"
+msgstr "Réduire la taille des modèles trop grands"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585
+msgctxt "@info:tooltip"
+msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
+msgstr "Un modèle peut apparaître en tout petit si son unité est par exemple en mètres plutôt qu'en millimètres. Ces modèles doivent-ils être agrandis ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
+msgctxt "@option:check"
+msgid "Scale extremely small models"
+msgstr "Mettre à l'échelle les modèles extrêmement petits"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600
+msgctxt "@info:tooltip"
+msgid "Should models be selected after they are loaded?"
+msgstr "Les modèles doivent-ils être sélectionnés après leur chargement ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605
+msgctxt "@option:check"
+msgid "Select models when loaded"
+msgstr "Sélectionner les modèles lorsqu'ils sont chargés"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615
+msgctxt "@info:tooltip"
+msgid "Should a prefix based on the printer name be added to the print job name automatically?"
+msgstr "Un préfixe basé sur le nom de l'imprimante doit-il être automatiquement ajouté au nom de la tâche d'impression ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
+msgctxt "@option:check"
+msgid "Add machine prefix to job name"
+msgstr "Ajouter le préfixe de la machine au nom de la tâche"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630
+msgctxt "@info:tooltip"
+msgid "Should a summary be shown when saving a project file?"
+msgstr "Un résumé doit-il être affiché lors de l'enregistrement d'un fichier de projet ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634
+msgctxt "@option:check"
+msgid "Show summary dialog when saving project"
+msgstr "Afficher la boîte de dialogue du résumé lors de l'enregistrement du projet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:644
+msgctxt "@info:tooltip"
+msgid "Default behavior when opening a project file"
+msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:652
+msgctxt "@window:text"
+msgid "Default behavior when opening a project file: "
+msgstr "Comportement par défaut lors de l'ouverture d'un fichier de projet : "
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:666
+msgctxt "@option:openProject"
+msgid "Always ask me this"
+msgstr "Toujours me demander"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667
+msgctxt "@option:openProject"
+msgid "Always open as a project"
+msgstr "Toujours ouvrir comme projet"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:668
+msgctxt "@option:openProject"
+msgid "Always import models"
+msgstr "Toujours importer les modèles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:705
+msgctxt "@info:tooltip"
+msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
+msgstr "Lorsque vous apportez des modifications à un profil puis passez à un autre profil, une boîte de dialogue apparaît, vous demandant si vous souhaitez conserver les modifications. Vous pouvez aussi choisir une option par défaut, et le dialogue ne s'affichera plus."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:714
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
+msgctxt "@label"
+msgid "Profiles"
+msgstr "Profils"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719
+msgctxt "@window:text"
+msgid "Default behavior for changed setting values when switching to a different profile: "
+msgstr "Comportement par défaut pour les valeurs de paramètres modifiées lors du passage à un profil différent : "
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:734
+msgctxt "@option:discardOrKeep"
+msgid "Always discard changed settings"
+msgstr "Toujours rejeter les paramètres modifiés"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:735
+msgctxt "@option:discardOrKeep"
+msgid "Always transfer changed settings to new profile"
+msgstr "Toujours transférer les paramètres modifiés dans le nouveau profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770
+msgctxt "@label"
+msgid "Privacy"
+msgstr "Confidentialité"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:777
+msgctxt "@info:tooltip"
+msgid "Should Cura check for updates when the program is started?"
+msgstr "Cura doit-il vérifier les mises à jour au démarrage du programme ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:782
+msgctxt "@option:check"
+msgid "Check for updates on start"
+msgstr "Vérifier les mises à jour au démarrage"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:792
+msgctxt "@info:tooltip"
+msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
+msgstr "Les données anonymes de votre impression doivent-elles être envoyées à Ultimaker ? Notez qu'aucun modèle, aucune adresse IP ni aucune autre information permettant de vous identifier personnellement ne seront envoyés ou stockés."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:797
+msgctxt "@option:check"
+msgid "Send (anonymous) print information"
+msgstr "Envoyer des informations (anonymes) sur l'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:806
+msgctxt "@action:button"
+msgid "More information"
+msgstr "Plus d'informations"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
+msgctxt "@action:button"
+msgid "Activate"
+msgstr "Activer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
+msgctxt "@action:button"
+msgid "Rename"
+msgstr "Renommer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
+msgctxt "@action:button"
+msgid "Create"
+msgstr "Créer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
+msgctxt "@action:button"
+msgid "Duplicate"
+msgstr "Dupliquer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
+msgctxt "@action:button"
+msgid "Import"
+msgstr "Importer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
+msgctxt "@action:button"
+msgid "Export"
+msgstr "Exporter"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199
+msgctxt "@action:button Sending materials to printers"
+msgid "Sync with Printers"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248
+msgctxt "@action:label"
+msgid "Printer"
+msgstr "Imprimante"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:277
+msgctxt "@title:window"
+msgid "Confirm Remove"
+msgstr "Confirmer la suppression"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:278
+msgctxt "@label (%1 is object name)"
+msgid "Are you sure you wish to remove %1? This cannot be undone!"
+msgstr "Êtes-vous sûr de vouloir supprimer l'objet %1 ? Vous ne pourrez pas revenir en arrière !"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337
+msgctxt "@title:window"
+msgid "Import Material"
+msgstr "Importer un matériau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338
+msgctxt "@info:status Don't translate the XML tags or !"
+msgid "Could not import material %1: %2"
+msgstr "Impossible d'importer le matériau %1 : %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully imported material %1"
+msgstr "Matériau %1 importé avec succès"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368
+msgctxt "@title:window"
+msgid "Export Material"
+msgstr "Exporter un matériau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372
+msgctxt "@info:status Don't translate the XML tags and !"
+msgid "Failed to export material to %1: %2"
+msgstr "Échec de l'exportation de matériau vers %1 : %2"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378
+msgctxt "@info:status Don't translate the XML tag !"
+msgid "Successfully exported material to %1"
+msgstr "Matériau exporté avec succès vers %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:388
+msgctxt "@title:window"
+msgid "Export All Materials"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
+msgctxt "@title"
+msgid "Information"
+msgstr "Informations"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
+msgctxt "@title:window"
+msgid "Confirm Diameter Change"
+msgstr "Confirmer le changement de diamètre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
+msgctxt "@label (%1 is a number)"
+msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
+msgstr "Le nouveau diamètre de filament est réglé sur %1 mm, ce qui n'est pas compatible avec l'extrudeuse actuelle. Souhaitez-vous poursuivre ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
+msgctxt "@label"
+msgid "Display Name"
+msgstr "Afficher le nom"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
+msgctxt "@label"
+msgid "Material Type"
+msgstr "Type de matériau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
+msgctxt "@label"
+msgid "Color"
+msgstr "Couleur"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
+msgctxt "@label"
+msgid "Properties"
+msgstr "Propriétés"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
+msgctxt "@label"
+msgid "Density"
+msgstr "Densité"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
+msgctxt "@label"
+msgid "Diameter"
+msgstr "Diamètre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
+msgctxt "@label"
+msgid "Filament Cost"
+msgstr "Coût du filament"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
+msgctxt "@label"
+msgid "Filament weight"
+msgstr "Poids du filament"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
+msgctxt "@label"
+msgid "Filament length"
+msgstr "Longueur du filament"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
+msgctxt "@label"
+msgid "Cost per Meter"
+msgstr "Coût au mètre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
+msgctxt "@label"
+msgid "This material is linked to %1 and shares some of its properties."
+msgstr "Ce matériau est lié à %1 et partage certaines de ses propriétés."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
+msgctxt "@label"
+msgid "Unlink Material"
+msgstr "Délier le matériau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
+msgctxt "@label"
+msgid "Description"
+msgstr "Description"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
+msgctxt "@label"
+msgid "Adhesion Information"
+msgstr "Informations d'adhérence"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
+msgctxt "@label"
+msgid "Print settings"
+msgstr "Paramètres d'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
+msgctxt "@label"
+msgid "Create"
+msgstr "Créer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
+msgctxt "@label"
+msgid "Duplicate"
+msgstr "Dupliquer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
+msgctxt "@title:window"
+msgid "Create Profile"
+msgstr "Créer un profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
+msgctxt "@info"
+msgid "Please provide a name for this profile."
+msgstr "Veuillez fournir un nom pour ce profil."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:263
+msgctxt "@title:window"
+msgid "Duplicate Profile"
+msgstr "Dupliquer un profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:294
+msgctxt "@title:window"
+msgid "Rename Profile"
+msgstr "Renommer le profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:307
+msgctxt "@title:window"
+msgid "Import Profile"
+msgstr "Importer un profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:336
+msgctxt "@title:window"
+msgid "Export Profile"
+msgstr "Exporter un profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:399
+msgctxt "@label %1 is printer name"
+msgid "Printer: %1"
+msgstr "Imprimante : %1"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:557
+msgctxt "@action:button"
+msgid "Update profile with current settings/overrides"
+msgstr "Mettre à jour le profil à l'aide des paramètres / forçages actuels"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:564
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
+msgctxt "@action:button"
+msgid "Discard current changes"
+msgstr "Ignorer les modifications actuelles"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:583
+msgctxt "@action:label"
+msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
+msgstr "Ce profil utilise les paramètres par défaut spécifiés par l'imprimante, de sorte qu'aucun paramètre / forçage n'apparaît dans la liste ci-dessous."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:591
+msgctxt "@action:label"
+msgid "Your current settings match the selected profile."
+msgstr "Vos paramètres actuels correspondent au profil sélectionné."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:609
+msgctxt "@title:tab"
+msgid "Global Settings"
+msgstr "Paramètres généraux"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
+msgctxt "@info:status"
+msgid "Calculated"
+msgstr "Calculer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
+msgctxt "@title:column"
+msgid "Setting"
+msgstr "Paramètre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
+msgctxt "@title:column"
+msgid "Profile"
+msgstr "Profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
+msgctxt "@title:column"
+msgid "Current"
+msgstr "Actuel"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
+msgctxt "@title:column"
+msgid "Unit"
+msgstr "Unité"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16
+msgctxt "@title:tab"
+msgid "Setting Visibility"
+msgstr "Visibilité des paramètres"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48
msgctxt "@label:textbox"
-msgid "Search settings"
-msgstr "Paramètres de recherche"
+msgid "Check all"
+msgstr "Vérifier tout"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:456
-msgctxt "@action:menu"
-msgid "Copy value to all extruders"
-msgstr "Copier la valeur vers tous les extrudeurs"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+msgctxt "@label"
+msgid "Extruder"
+msgstr "Extrudeuse"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:465
-msgctxt "@action:menu"
-msgid "Copy all changed values to all extruders"
-msgstr "Copier toutes les valeurs modifiées vers toutes les extrudeuses"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
+msgctxt "@tooltip"
+msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
+msgstr "Température cible de l'extrémité chauffante. L'extrémité chauffante sera chauffée ou refroidie pour tendre vers cette température. Si la valeur est 0, le chauffage de l'extrémité chauffante sera coupé."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:502
-msgctxt "@action:menu"
-msgid "Hide this setting"
-msgstr "Masquer ce paramètre"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
+msgctxt "@tooltip"
+msgid "The current temperature of this hotend."
+msgstr "Température actuelle de cette extrémité chauffante."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:515
-msgctxt "@action:menu"
-msgid "Don't show this setting"
-msgstr "Masquer ce paramètre"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the hotend to."
+msgstr "Température jusqu'à laquelle préchauffer l'extrémité chauffante."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:519
-msgctxt "@action:menu"
-msgid "Keep this setting visible"
-msgstr "Afficher ce paramètre"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
+msgctxt "@button Cancel pre-heating"
+msgid "Cancel"
+msgstr "Annuler"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingCategory.qml:200
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+msgctxt "@button"
+msgid "Pre-heat"
+msgstr "Préchauffer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
+msgctxt "@tooltip of pre-heat"
+msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
+msgstr "Préchauffez l'extrémité chauffante avant l'impression. Vous pouvez continuer l'ajustement de votre impression pendant qu'elle chauffe, ce qui vous évitera un temps d'attente lorsque vous serez prêt à lancer l'impression."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
+msgctxt "@tooltip"
+msgid "The colour of the material in this extruder."
+msgstr "Couleur du matériau dans cet extrudeur."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
+msgctxt "@tooltip"
+msgid "The material in this extruder."
+msgstr "Matériau dans cet extrudeur."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
+msgctxt "@tooltip"
+msgid "The nozzle inserted in this extruder."
+msgstr "Buse insérée dans cet extrudeur."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+msgctxt "@label"
+msgid "Build plate"
+msgstr "Plateau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
+msgctxt "@tooltip"
+msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
+msgstr "Température cible du plateau chauffant. Le plateau sera chauffé ou refroidi pour tendre vers cette température. Si la valeur est 0, le chauffage du plateau sera éteint."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
+msgctxt "@tooltip"
+msgid "The current temperature of the heated bed."
+msgstr "Température actuelle du plateau chauffant."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
+msgctxt "@tooltip of temperature input"
+msgid "The temperature to pre-heat the bed to."
+msgstr "Température jusqu'à laquelle préchauffer le plateau."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
+msgctxt "@tooltip of pre-heat"
+msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
+msgstr "Préchauffez le plateau avant l'impression. Vous pouvez continuer à ajuster votre impression pendant qu'il chauffe, et vous n'aurez pas à attendre que le plateau chauffe lorsque vous serez prêt à lancer l'impression."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+msgctxt "@label"
+msgid "Printer control"
+msgstr "Contrôle de l'imprimante"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+msgctxt "@label"
+msgid "Jog Position"
+msgstr "Position de coupe"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+msgctxt "@label"
+msgid "X/Y"
+msgstr "X/Y"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
+msgctxt "@label"
+msgid "Z"
+msgstr "Z"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
+msgctxt "@label"
+msgid "Jog Distance"
+msgstr "Distance de coupe"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
+msgctxt "@label"
+msgid "Send G-code"
+msgstr "Envoyer G-Code"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
+msgctxt "@tooltip of G-code command input"
+msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
+msgstr "Envoyer une commande G-Code personnalisée à l'imprimante connectée. Appuyez sur « Entrée » pour envoyer la commande."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
+msgctxt "@info:status"
+msgid "The printer is not connected."
+msgstr "L'imprimante n'est pas connectée."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
+msgctxt "@status"
+msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
+msgstr "L'imprimante cloud est hors ligne. Veuillez vérifier si l'imprimante est activée et connectée à Internet."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
+msgctxt "@status"
+msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
+msgstr "Cette imprimante n'est pas associée à votre compte. Veuillez visiter l'Ultimaker Digital Factory pour établir une connexion."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
+msgctxt "@status"
+msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
+msgstr "La connexion cloud est actuellement indisponible. Veuillez vous connecter pour connecter l'imprimante cloud."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
+msgctxt "@status"
+msgid "The cloud connection is currently unavailable. Please check your internet connection."
+msgstr "La connexion cloud est actuellement indisponible. Veuillez vérifier votre connexion Internet."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
+msgctxt "@button"
+msgid "Add printer"
+msgstr "Ajouter une imprimante"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
+msgctxt "@button"
+msgid "Manage printers"
+msgstr "Gérer les imprimantes"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Connected printers"
+msgstr "Imprimantes connectées"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+msgctxt "@label"
+msgid "Preset printers"
+msgstr "Imprimantes préréglées"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
+msgctxt "@label"
+msgid "Active print"
+msgstr "Activer l'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
+msgctxt "@label"
+msgid "Job Name"
+msgstr "Nom de la tâche"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
+msgctxt "@label"
+msgid "Printing Time"
+msgstr "Durée d'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
+msgctxt "@label"
+msgid "Estimated time left"
+msgstr "Durée restante estimée"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
+msgctxt "@label"
+msgid "Profile"
+msgstr "Profil"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
+msgctxt "@tooltip"
+msgid ""
+"Some setting/override values are different from the values stored in the profile.\n"
+"\n"
+"Click to open the profile manager."
+msgstr ""
+"Certaines valeurs de paramètre / forçage sont différentes des valeurs enregistrées dans le profil. \n"
+"\n"
+"Cliquez pour ouvrir le gestionnaire de profils."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
+msgctxt "@label:header"
+msgid "Custom profiles"
+msgstr "Personnaliser les profils"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
+msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
+msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
+msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
+msgstr[0] "Il n'y a pas de profil %1 pour la configuration dans l'extrudeur %2. L'intention par défaut sera utilisée à la place"
+msgstr[1] "Il n'y a pas de profil %1 pour les configurations dans les extrudeurs %2. L'intention par défaut sera utilisée à la place"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
+msgctxt "@label shown when we load a Gcode file"
+msgid "Print setup disabled. G-code file can not be modified."
+msgstr "Configuration d'impression désactivée. Le fichier G-Code ne peut pas être modifié."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
+msgctxt "@button"
+msgid "Recommended"
+msgstr "Recommandé"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
+msgctxt "@button"
+msgid "Custom"
+msgstr "Personnalisé"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
+msgctxt "@label:Should be short"
+msgid "On"
+msgstr "On"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
+msgctxt "@label:Should be short"
+msgid "Off"
+msgstr "Off"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
+msgctxt "@label"
+msgid "Experimental"
+msgstr "Expérimental"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
+msgctxt "@label"
+msgid "Adhesion"
+msgstr "Adhérence"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
+msgctxt "@label"
+msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
+msgstr "Activez l'impression d'une bordure ou plaquette (Brim/Raft). Cela ajoutera une zone plate autour de ou sous votre objet qui est facile à découper par la suite."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
+msgctxt "@label"
+msgid "Gradual infill"
+msgstr "Remplissage graduel"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
+msgctxt "@label"
+msgid "Gradual infill will gradually increase the amount of infill towards the top."
+msgstr "Un remplissage graduel augmentera la quantité de remplissage vers le haut."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
+msgctxt "@tooltip"
+msgid "You have modified some profile settings. If you want to change these go to custom mode."
+msgstr "Vous avez modifié certains paramètres du profil. Si vous souhaitez les modifier, allez dans le mode Personnaliser."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
+msgctxt "@label"
+msgid "Support"
+msgstr "Support"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
+msgctxt "@label"
+msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
+msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200
msgctxt "@label"
msgid ""
"Some hidden settings use values different from their normal calculated value.\n"
@@ -4897,32 +5141,32 @@ msgstr ""
"\n"
"Cliquez pour rendre ces paramètres visibles."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
msgctxt "@label"
msgid "This setting is not used because all the settings that it influences are overridden."
msgstr "Ce paramètre n'est pas utilisé car tous les paramètres qu'il influence sont remplacés."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:86
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
msgctxt "@label Header for list of settings."
msgid "Affects"
msgstr "Touche"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:91
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
msgctxt "@label Header for list of settings."
msgid "Affected By"
msgstr "Touché par"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:187
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
msgctxt "@label"
msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
msgstr "Ce paramètre est toujours partagé par toutes les extrudeuses. Le modifier ici entraînera la modification de la valeur pour toutes les extrudeuses."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:191
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
msgctxt "@label"
msgid "This setting is resolved from conflicting extruder-specific values:"
msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeur :"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:230
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
msgctxt "@label"
msgid ""
"This setting has a value that is different from the profile.\n"
@@ -4933,7 +5177,7 @@ msgstr ""
"\n"
"Cliquez pour restaurer la valeur du profil."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:329
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
msgctxt "@label"
msgid ""
"This setting is normally calculated, but it currently has an absolute value set.\n"
@@ -4944,714 +5188,308 @@ msgstr ""
"\n"
"Cliquez pour restaurer la valeur calculée."
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:27
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68
+msgctxt "@label:textbox"
+msgid "Search settings"
+msgstr "Paramètres de recherche"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:468
+msgctxt "@action:menu"
+msgid "Copy value to all extruders"
+msgstr "Copier la valeur vers tous les extrudeurs"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:477
+msgctxt "@action:menu"
+msgid "Copy all changed values to all extruders"
+msgstr "Copier toutes les valeurs modifiées vers toutes les extrudeuses"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:514
+msgctxt "@action:menu"
+msgid "Hide this setting"
+msgstr "Masquer ce paramètre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:527
+msgctxt "@action:menu"
+msgid "Don't show this setting"
+msgstr "Masquer ce paramètre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:531
+msgctxt "@action:menu"
+msgid "Keep this setting visible"
+msgstr "Afficher ce paramètre"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
msgctxt "@info:tooltip"
msgid "3D View"
msgstr "Vue 3D"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:40
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
msgctxt "@info:tooltip"
msgid "Front View"
msgstr "Vue de face"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:53
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
msgctxt "@info:tooltip"
msgid "Top View"
msgstr "Vue du dessus"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:66
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
msgctxt "@info:tooltip"
msgid "Left View"
msgstr "Vue gauche"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:79
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
msgctxt "@info:tooltip"
msgid "Right View"
msgstr "Vue droite"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
msgctxt "@label"
-msgid "Extruder"
-msgstr "Extrudeuse"
+msgid "View type"
+msgstr "Type d'affichage"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
-msgctxt "@tooltip"
-msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
-msgstr "Température cible de l'extrémité chauffante. L'extrémité chauffante sera chauffée ou refroidie pour tendre vers cette température. Si la valeur est 0, le chauffage de l'extrémité chauffante sera coupé."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
+msgctxt "@label"
+msgid "Add a Cloud printer"
+msgstr "Ajouter une imprimante cloud"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
-msgctxt "@tooltip"
-msgid "The current temperature of this hotend."
-msgstr "Température actuelle de cette extrémité chauffante."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
+msgctxt "@label"
+msgid "Waiting for Cloud response"
+msgstr "En attente d'une réponse cloud"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the hotend to."
-msgstr "Température jusqu'à laquelle préchauffer l'extrémité chauffante."
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
+msgctxt "@label"
+msgid "No printers found in your account?"
+msgstr "Aucune imprimante trouvée dans votre compte ?"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
-msgctxt "@button Cancel pre-heating"
-msgid "Cancel"
-msgstr "Annuler"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
+msgctxt "@label"
+msgid "The following printers in your account have been added in Cura:"
+msgstr "Les imprimantes suivantes de votre compte ont été ajoutées à Cura :"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344 /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
msgctxt "@button"
-msgid "Pre-heat"
-msgstr "Préchauffer"
+msgid "Add printer manually"
+msgstr "Ajouter l'imprimante manuellement"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
-msgctxt "@tooltip of pre-heat"
-msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
-msgstr "Préchauffez l'extrémité chauffante avant l'impression. Vous pouvez continuer l'ajustement de votre impression pendant qu'elle chauffe, ce qui vous évitera un temps d'attente lorsque vous serez prêt à lancer l'impression."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
-msgctxt "@tooltip"
-msgid "The colour of the material in this extruder."
-msgstr "Couleur du matériau dans cet extrudeur."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
-msgctxt "@tooltip"
-msgid "The material in this extruder."
-msgstr "Matériau dans cet extrudeur."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
-msgctxt "@tooltip"
-msgid "The nozzle inserted in this extruder."
-msgstr "Buse insérée dans cet extrudeur."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
msgctxt "@label"
-msgid "Build plate"
-msgstr "Plateau"
+msgid "Manufacturer"
+msgstr "Fabricant"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
-msgctxt "@tooltip"
-msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
-msgstr "Température cible du plateau chauffant. Le plateau sera chauffé ou refroidi pour tendre vers cette température. Si la valeur est 0, le chauffage du plateau sera éteint."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
-msgctxt "@tooltip"
-msgid "The current temperature of the heated bed."
-msgstr "Température actuelle du plateau chauffant."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
-msgctxt "@tooltip of temperature input"
-msgid "The temperature to pre-heat the bed to."
-msgstr "Température jusqu'à laquelle préchauffer le plateau."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
-msgctxt "@tooltip of pre-heat"
-msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
-msgstr "Préchauffez le plateau avant l'impression. Vous pouvez continuer à ajuster votre impression pendant qu'il chauffe, et vous n'aurez pas à attendre que le plateau chauffe lorsque vous serez prêt à lancer l'impression."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
msgctxt "@label"
-msgid "Printer control"
-msgstr "Contrôle de l'imprimante"
+msgid "Profile author"
+msgstr "Auteur du profil"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
msgctxt "@label"
-msgid "Jog Position"
-msgstr "Position de coupe"
+msgid "Printer name"
+msgstr "Nom de l'imprimante"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
+msgctxt "@text"
+msgid "Please name your printer"
+msgstr "Veuillez nommer votre imprimante"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
msgctxt "@label"
-msgid "X/Y"
-msgstr "X/Y"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
-msgctxt "@label"
-msgid "Z"
-msgstr "Z"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
-msgctxt "@label"
-msgid "Jog Distance"
-msgstr "Distance de coupe"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
-msgctxt "@label"
-msgid "Send G-code"
-msgstr "Envoyer G-Code"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
-msgctxt "@tooltip of G-code command input"
-msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
-msgstr "Envoyer une commande G-Code personnalisée à l'imprimante connectée. Appuyez sur « Entrée » pour envoyer la commande."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
-msgctxt "@info:status"
-msgid "The printer is not connected."
-msgstr "L'imprimante n'est pas connectée."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:114
-msgctxt "@label"
-msgid "Is printed as support."
-msgstr "Est imprimé comme support."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:117
-msgctxt "@label"
-msgid "Other models overlapping with this model are modified."
-msgstr "D'autres modèles qui se chevauchent avec ce modèle ont été modifiés."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:120
-msgctxt "@label"
-msgid "Infill overlapping with this model is modified."
-msgstr "Le chevauchement de remplissage avec ce modèle a été modifié."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:123
-msgctxt "@label"
-msgid "Overlaps with this model are not supported."
-msgstr "Les chevauchements avec ce modèle ne sont pas pris en charge."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:130
-msgctxt "@label %1 is the number of settings it overrides."
-msgid "Overrides %1 setting."
-msgid_plural "Overrides %1 settings."
-msgstr[0] "Remplace le paramètre %1."
-msgstr[1] "Remplace les paramètres %1."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
-msgctxt "@action:button"
-msgid "Marketplace"
-msgstr "Marché en ligne"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Edit"
-msgstr "&Modifier"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
-msgctxt "@title:menu menubar:toplevel"
-msgid "E&xtensions"
-msgstr "E&xtensions"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
-msgctxt "@title:menu menubar:toplevel"
-msgid "P&references"
-msgstr "P&références"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
-msgctxt "@title:menu menubar:toplevel"
-msgid "&Help"
-msgstr "&Aide"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
-msgctxt "@title:window"
-msgid "New project"
-msgstr "Nouveau projet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
-msgctxt "@info:question"
-msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
-msgstr "Êtes-vous sûr(e) de souhaiter lancer un nouveau projet ? Cela supprimera les objets du plateau ainsi que tous paramètres non enregistrés."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:257
-msgctxt "@label"
-msgid "This package will be installed after restarting."
-msgstr "Ce paquet sera installé après le redémarrage."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:453
-msgctxt "@title:tab"
-msgid "Settings"
-msgstr "Paramètres"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:576
-msgctxt "@title:window %1 is the application name"
-msgid "Closing %1"
-msgstr "Fermeture de %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:577 /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:589
-msgctxt "@label %1 is the application name"
-msgid "Are you sure you want to exit %1?"
-msgstr "Voulez-vous vraiment quitter %1 ?"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:737
-msgctxt "@window:title"
-msgid "Install Package"
-msgstr "Installer le paquet"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:745
-msgctxt "@title:window"
-msgid "Open File(s)"
-msgstr "Ouvrir le(s) fichier(s)"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:748
-msgctxt "@text:window"
-msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
-msgstr "Nous avons trouvé au moins un fichier G-Code parmi les fichiers que vous avez sélectionné. Vous ne pouvez ouvrir qu'un seul fichier G-Code à la fois. Si vous souhaitez ouvrir un fichier G-Code, veuillez ne sélectionner qu'un seul fichier de ce type."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:857
-msgctxt "@title:window"
-msgid "Add Printer"
+msgid "Add a printer"
msgstr "Ajouter une imprimante"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:865
-msgctxt "@title:window"
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
+msgctxt "@label"
+msgid "Add a networked printer"
+msgstr "Ajouter une imprimante en réseau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
+msgctxt "@label"
+msgid "Add a non-networked printer"
+msgstr "Ajouter une imprimante hors réseau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
+msgctxt "@label"
+msgid "There is no printer found over your network."
+msgstr "Aucune imprimante n'a été trouvée sur votre réseau."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
+msgctxt "@label"
+msgid "Refresh"
+msgstr "Rafraîchir"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
+msgctxt "@label"
+msgid "Add printer by IP"
+msgstr "Ajouter une imprimante par IP"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
+msgctxt "@label"
+msgid "Add cloud printer"
+msgstr "Ajouter une imprimante cloud"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
+msgctxt "@label"
+msgid "Troubleshooting"
+msgstr "Dépannage"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
+msgctxt "@label"
+msgid "Add printer by IP address"
+msgstr "Ajouter une imprimante par adresse IP"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
+msgctxt "@text"
+msgid "Enter your printer's IP address."
+msgstr "Saisissez l'adresse IP de votre imprimante."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
+msgctxt "@button"
+msgid "Add"
+msgstr "Ajouter"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
+msgctxt "@label"
+msgid "Could not connect to device."
+msgstr "Impossible de se connecter à l'appareil."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
+msgctxt "@label"
+msgid "Can't connect to your Ultimaker printer?"
+msgstr "Impossible de vous connecter à votre imprimante Ultimaker ?"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
+msgctxt "@label"
+msgid "The printer at this address has not responded yet."
+msgstr "L'imprimante à cette adresse n'a pas encore répondu."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
+msgctxt "@label"
+msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
+msgstr "Cette imprimante ne peut pas être ajoutée parce qu'il s'agit d'une imprimante inconnue ou de l'hôte d'un groupe."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
+msgctxt "@button"
+msgid "Back"
+msgstr "Précédent"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
+msgctxt "@button"
+msgid "Connect"
+msgstr "Se connecter"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
+msgctxt "@label"
+msgid "Release Notes"
+msgstr "Notes de version"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:124
+msgctxt "@text"
+msgid "Add material settings and plugins from the Marketplace"
+msgstr "Ajoutez des paramètres de matériaux et des plug-ins depuis la Marketplace"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:154
+msgctxt "@text"
+msgid "Backup and sync your material settings and plugins"
+msgstr "Sauvegardez et synchronisez vos paramètres de matériaux et vos plug-ins"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:184
+msgctxt "@text"
+msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
+msgstr "Partagez vos idées et obtenez l'aide de plus de 48 000 utilisateurs de la communauté Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:217
+msgctxt "@text"
+msgid "Create a free Ultimaker Account"
+msgstr "Créez gratuitement un compte Ultimaker"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:230
+msgctxt "@button"
+msgid "Skip"
+msgstr "Ignorer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
+msgctxt "@label"
+msgid "Help us to improve Ultimaker Cura"
+msgstr "Aidez-nous à améliorer Ultimaker Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
+msgctxt "@text"
+msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
+msgstr "Ultimaker Cura recueille des données anonymes pour améliorer la qualité d'impression et l'expérience utilisateur, notamment :"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
+msgctxt "@text"
+msgid "Machine types"
+msgstr "Types de machines"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
+msgctxt "@text"
+msgid "Material usage"
+msgstr "Utilisation du matériau"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
+msgctxt "@text"
+msgid "Number of slices"
+msgstr "Nombre de découpes"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
+msgctxt "@text"
+msgid "Print settings"
+msgstr "Paramètres d'impression"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
+msgctxt "@text"
+msgid "Data collected by Ultimaker Cura will not contain any personal information."
+msgstr "Les données recueillies par Ultimaker Cura ne contiendront aucun renseignement personnel."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
+msgctxt "@text"
+msgid "More information"
+msgstr "Plus d'informations"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
+msgctxt "@label"
+msgid "Empty"
+msgstr "Vide"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
+msgctxt "@label"
+msgid "User Agreement"
+msgstr "Accord utilisateur"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
+msgctxt "@button"
+msgid "Decline and close"
+msgstr "Décliner et fermer"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
+msgctxt "@label"
+msgid "Welcome to Ultimaker Cura"
+msgstr "Bienvenue dans Ultimaker Cura"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
+msgctxt "@text"
+msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
+msgstr ""
+"Veuillez suivre ces étapes pour configurer\n"
+"Ultimaker Cura. Cela ne prendra que quelques instants."
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
+msgctxt "@button"
+msgid "Get started"
+msgstr "Prise en main"
+
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
+msgctxt "@label"
msgid "What's New"
-msgstr "Quoi de neuf"
+msgstr "Nouveautés"
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
-msgctxt "@status"
-msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
-msgstr "L'imprimante cloud est hors ligne. Veuillez vérifier si l'imprimante est activée et connectée à Internet."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
-msgctxt "@status"
-msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
-msgstr "Cette imprimante n'est pas associée à votre compte. Veuillez visiter l'Ultimaker Digital Factory pour établir une connexion."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
-msgctxt "@status"
-msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
-msgstr "La connexion cloud est actuellement indisponible. Veuillez vous connecter pour connecter l'imprimante cloud."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
-msgctxt "@status"
-msgid "The cloud connection is currently unavailable. Please check your internet connection."
-msgstr "La connexion cloud est actuellement indisponible. Veuillez vérifier votre connexion Internet."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
-msgctxt "@button"
-msgid "Add printer"
-msgstr "Ajouter une imprimante"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
-msgctxt "@button"
-msgid "Manage printers"
-msgstr "Gérer les imprimantes"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Widgets/ComboBox.qml:24
msgctxt "@label"
-msgid "Connected printers"
-msgstr "Imprimantes connectées"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
-msgctxt "@label"
-msgid "Preset printers"
-msgstr "Imprimantes préréglées"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ExtruderButton.qml:16
-msgctxt "@label %1 is filled in with the name of an extruder"
-msgid "Print Selected Model with %1"
-msgid_plural "Print Selected Models with %1"
-msgstr[0] "Imprimer le modèle sélectionné avec %1"
-msgstr[1] "Imprimer les modèles sélectionnés avec %1"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
-msgctxt "@label"
-msgid "Time estimation"
-msgstr "Estimation de durée"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
-msgctxt "@label"
-msgid "Material estimation"
-msgstr "Estimation du matériau"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
-msgctxt "@label m for meter"
-msgid "%1m"
-msgstr "%1m"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
-msgctxt "@label g for grams"
-msgid "%1g"
-msgstr "%1g"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
-msgctxt "@label:PrintjobStatus"
-msgid "Slicing..."
-msgstr "Découpe en cours..."
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
-msgctxt "@label:PrintjobStatus"
-msgid "Unable to slice"
-msgstr "Impossible de découper"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Processing"
-msgstr "Traitement"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
-msgctxt "@button"
-msgid "Slice"
-msgstr "Découper"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
-msgctxt "@label"
-msgid "Start the slicing process"
-msgstr "Démarrer le processus de découpe"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
-msgctxt "@button"
-msgid "Cancel"
-msgstr "Annuler"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
-msgctxt "@label"
-msgid "No time estimation available"
-msgstr "Aucune estimation de la durée n'est disponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
-msgctxt "@label"
-msgid "No cost estimation available"
-msgstr "Aucune estimation des coûts n'est disponible"
-
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
-msgctxt "@button"
-msgid "Preview"
-msgstr "Aperçu"
-
-#: RemovableDriveOutputDevice/plugin.json
-msgctxt "description"
-msgid "Provides removable drive hotplugging and writing support."
-msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible."
-
-#: RemovableDriveOutputDevice/plugin.json
-msgctxt "name"
-msgid "Removable Drive Output Device Plugin"
-msgstr "Plugin de périphérique de sortie sur disque amovible"
-
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
-msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0."
-
-#: VersionUpgrade/VersionUpgrade35to40/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.5 to 4.0"
-msgstr "Mise à niveau de 3.5 vers 4.0"
-
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
-msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7."
-
-#: VersionUpgrade/VersionUpgrade462to47/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.6.2 to 4.7"
-msgstr "Mise à niveau de 4.6.2 vers 4.7"
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
-msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4."
-
-#: VersionUpgrade/VersionUpgrade22to24/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.2 to 2.4"
-msgstr "Mise à niveau de 2.2 vers 2.4"
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
-msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3."
-
-#: VersionUpgrade/VersionUpgrade42to43/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.2 to 4.3"
-msgstr "Mise à jour de 4.2 vers 4.3"
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
-msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2."
-
-#: VersionUpgrade/VersionUpgrade460to462/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.6.0 to 4.6.2"
-msgstr "Mise à niveau de 4.6.0 vers 4.6.2"
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
-msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1."
-
-#: VersionUpgrade/VersionUpgrade30to31/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.0 to 3.1"
-msgstr "Mise à niveau de version, de 3.0 vers 3.1"
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
-msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1."
-
-#: VersionUpgrade/VersionUpgrade40to41/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.0 to 4.1"
-msgstr "Mise à niveau de 4.0 vers 4.1"
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
-msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7."
-
-#: VersionUpgrade/VersionUpgrade26to27/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.6 to 2.7"
-msgstr "Mise à niveau de 2.6 vers 2.7"
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
-msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6."
-
-#: VersionUpgrade/VersionUpgrade25to26/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.5 to 2.6"
-msgstr "Mise à niveau de 2.5 vers 2.6"
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
-msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2."
-
-#: VersionUpgrade/VersionUpgrade41to42/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.1 to 4.2"
-msgstr "Mise à jour de 4.1 vers 4.2"
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
-msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2."
-
-#: VersionUpgrade/VersionUpgrade21to22/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.1 to 2.2"
-msgstr "Mise à niveau vers 2.1 vers 2.2"
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
-msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3."
-
-#: VersionUpgrade/VersionUpgrade32to33/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.2 to 3.3"
-msgstr "Mise à niveau de 3.2 vers 3.3"
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
-msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6."
-
-#: VersionUpgrade/VersionUpgrade45to46/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.5 to 4.6"
-msgstr "Mise à niveau de 4.5 vers 4.6"
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
-msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5."
-
-#: VersionUpgrade/VersionUpgrade44to45/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.4 to 4.5"
-msgstr "Mise à niveau de 4.4 vers 4.5"
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
-msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8."
-
-#: VersionUpgrade/VersionUpgrade47to48/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.7 to 4.8"
-msgstr "Mise à niveau de 4.7 vers 4.8"
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
-msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4."
-
-#: VersionUpgrade/VersionUpgrade33to34/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.3 to 3.4"
-msgstr "Mise à niveau de 3.3 vers 3.4"
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
-msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4."
-
-#: VersionUpgrade/VersionUpgrade43to44/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 4.3 to 4.4"
-msgstr "Mise à niveau de 4.3 vers 4.4"
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
-msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5."
-
-#: VersionUpgrade/VersionUpgrade34to35/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 3.4 to 3.5"
-msgstr "Mise à niveau de 3.4 vers 3.5"
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "description"
-msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
-msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0."
-
-#: VersionUpgrade/VersionUpgrade27to30/plugin.json
-msgctxt "name"
-msgid "Version Upgrade 2.7 to 3.0"
-msgstr "Mise à niveau de version, de 2.7 vers 3.0"
-
-#: AMFReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading AMF files."
-msgstr "Fournit la prise en charge de la lecture de fichiers AMF."
-
-#: AMFReader/plugin.json
-msgctxt "name"
-msgid "AMF Reader"
-msgstr "Lecteur AMF"
-
-#: GCodeProfileReader/plugin.json
-msgctxt "description"
-msgid "Provides support for importing profiles from g-code files."
-msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code."
-
-#: GCodeProfileReader/plugin.json
-msgctxt "name"
-msgid "G-code Profile Reader"
-msgstr "Lecteur de profil G-Code"
-
-#: FirmwareUpdater/plugin.json
-msgctxt "description"
-msgid "Provides a machine actions for updating firmware."
-msgstr "Fournit à une machine des actions permettant la mise à jour du firmware."
-
-#: FirmwareUpdater/plugin.json
-msgctxt "name"
-msgid "Firmware Updater"
-msgstr "Programme de mise à jour du firmware"
-
-#: X3DReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading X3D files."
-msgstr "Fournit la prise en charge de la lecture de fichiers X3D."
-
-#: X3DReader/plugin.json
-msgctxt "name"
-msgid "X3D Reader"
-msgstr "Lecteur X3D"
-
-#: Toolbox/plugin.json
-msgctxt "description"
-msgid "Find, manage and install new Cura packages."
-msgstr "Rechercher, gérer et installer de nouveaux paquets Cura."
-
-#: Toolbox/plugin.json
-msgctxt "name"
-msgid "Toolbox"
-msgstr "Boîte à outils"
-
-#: PerObjectSettingsTool/plugin.json
-msgctxt "description"
-msgid "Provides the Per Model Settings."
-msgstr "Fournit les paramètres par modèle."
-
-#: PerObjectSettingsTool/plugin.json
-msgctxt "name"
-msgid "Per Model Settings Tool"
-msgstr "Outil de paramètres par modèle"
-
-#: PostProcessingPlugin/plugin.json
-msgctxt "description"
-msgid "Extension that allows for user created scripts for post processing"
-msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur"
-
-#: PostProcessingPlugin/plugin.json
-msgctxt "name"
-msgid "Post Processing"
-msgstr "Post-traitement"
-
-#: CuraEngineBackend/plugin.json
-msgctxt "description"
-msgid "Provides the link to the CuraEngine slicing backend."
-msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine."
-
-#: CuraEngineBackend/plugin.json
-msgctxt "name"
-msgid "CuraEngine Backend"
-msgstr "Système CuraEngine"
-
-#: USBPrinting/plugin.json
-msgctxt "description"
-msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
-msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware."
-
-#: USBPrinting/plugin.json
-msgctxt "name"
-msgid "USB printing"
-msgstr "Impression par USB"
-
-#: CuraProfileWriter/plugin.json
-msgctxt "description"
-msgid "Provides support for exporting Cura profiles."
-msgstr "Fournit la prise en charge de l'exportation de profils Cura."
-
-#: CuraProfileWriter/plugin.json
-msgctxt "name"
-msgid "Cura Profile Writer"
-msgstr "Générateur de profil Cura"
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "description"
-msgid "Manages network connections to Ultimaker networked printers."
-msgstr "Gère les connexions réseau vers les imprimantes Ultimaker en réseau."
-
-#: UM3NetworkPrinting/plugin.json
-msgctxt "name"
-msgid "Ultimaker Network Connection"
-msgstr "Connexion réseau Ultimaker"
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "description"
-msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
-msgstr "Fournit les actions de la machine pour les machines Ultimaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)"
-
-#: UltimakerMachineActions/plugin.json
-msgctxt "name"
-msgid "Ultimaker machine actions"
-msgstr "Actions de la machine Ultimaker"
-
-#: 3MFReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading 3MF files."
-msgstr "Fournit la prise en charge de la lecture de fichiers 3MF."
-
-#: 3MFReader/plugin.json
-msgctxt "name"
-msgid "3MF Reader"
-msgstr "Lecteur 3MF"
-
-#: GCodeGzWriter/plugin.json
-msgctxt "description"
-msgid "Writes g-code to a compressed archive."
-msgstr "Enregistre le G-Code dans une archive compressée."
-
-#: GCodeGzWriter/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Writer"
-msgstr "Générateur de G-Code compressé"
-
-#: GCodeGzReader/plugin.json
-msgctxt "description"
-msgid "Reads g-code from a compressed archive."
-msgstr "Lit le G-Code à partir d'une archive compressée."
-
-#: GCodeGzReader/plugin.json
-msgctxt "name"
-msgid "Compressed G-code Reader"
-msgstr "Lecteur G-Code compressé"
+msgid "No items to select from"
+msgstr "Aucun élément à sélectionner"
#: ModelChecker/plugin.json
msgctxt "description"
@@ -5663,105 +5501,15 @@ msgctxt "name"
msgid "Model Checker"
msgstr "Contrôleur de modèle"
-#: FirmwareUpdateChecker/plugin.json
+#: 3MFReader/plugin.json
msgctxt "description"
-msgid "Checks for firmware updates."
-msgstr "Vérifie les mises à jour du firmware."
+msgid "Provides support for reading 3MF files."
+msgstr "Fournit la prise en charge de la lecture de fichiers 3MF."
-#: FirmwareUpdateChecker/plugin.json
+#: 3MFReader/plugin.json
msgctxt "name"
-msgid "Firmware Update Checker"
-msgstr "Vérificateur des mises à jour du firmware"
-
-#: GCodeReader/plugin.json
-msgctxt "description"
-msgid "Allows loading and displaying G-code files."
-msgstr "Permet le chargement et l'affichage de fichiers G-Code."
-
-#: GCodeReader/plugin.json
-msgctxt "name"
-msgid "G-code Reader"
-msgstr "Lecteur G-Code"
-
-#: SupportEraser/plugin.json
-msgctxt "description"
-msgid "Creates an eraser mesh to block the printing of support in certain places"
-msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits"
-
-#: SupportEraser/plugin.json
-msgctxt "name"
-msgid "Support Eraser"
-msgstr "Effaceur de support"
-
-#: TrimeshReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading model files."
-msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D."
-
-#: TrimeshReader/plugin.json
-msgctxt "name"
-msgid "Trimesh Reader"
-msgstr "Lecteur de Trimesh"
-
-#: SentryLogger/plugin.json
-msgctxt "description"
-msgid "Logs certain events so that they can be used by the crash reporter"
-msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident"
-
-#: SentryLogger/plugin.json
-msgctxt "name"
-msgid "Sentry Logger"
-msgstr "Journal d'événements dans Sentry"
-
-#: UFPReader/plugin.json
-msgctxt "description"
-msgid "Provides support for reading Ultimaker Format Packages."
-msgstr "Fournit un support pour la lecture des paquets de format Ultimaker."
-
-#: UFPReader/plugin.json
-msgctxt "name"
-msgid "UFP Reader"
-msgstr "Lecteur UFP"
-
-#: LegacyProfileReader/plugin.json
-msgctxt "description"
-msgid "Provides support for importing profiles from legacy Cura versions."
-msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures."
-
-#: LegacyProfileReader/plugin.json
-msgctxt "name"
-msgid "Legacy Cura Profile Reader"
-msgstr "Lecteur de profil Cura antérieur"
-
-#: PrepareStage/plugin.json
-msgctxt "description"
-msgid "Provides a prepare stage in Cura."
-msgstr "Fournit une étape de préparation dans Cura."
-
-#: PrepareStage/plugin.json
-msgctxt "name"
-msgid "Prepare Stage"
-msgstr "Étape de préparation"
-
-#: MonitorStage/plugin.json
-msgctxt "description"
-msgid "Provides a monitor stage in Cura."
-msgstr "Fournit une étape de surveillance dans Cura."
-
-#: MonitorStage/plugin.json
-msgctxt "name"
-msgid "Monitor Stage"
-msgstr "Étape de surveillance"
-
-#: XRayView/plugin.json
-msgctxt "description"
-msgid "Provides the X-Ray view."
-msgstr "Permet la vue Rayon-X."
-
-#: XRayView/plugin.json
-msgctxt "name"
-msgid "X-Ray View"
-msgstr "Vue Rayon-X"
+msgid "3MF Reader"
+msgstr "Lecteur 3MF"
#: 3MFWriter/plugin.json
msgctxt "description"
@@ -5773,65 +5521,35 @@ msgctxt "name"
msgid "3MF Writer"
msgstr "Générateur 3MF"
-#: SliceInfoPlugin/plugin.json
+#: AMFReader/plugin.json
msgctxt "description"
-msgid "Submits anonymous slice info. Can be disabled through preferences."
-msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences."
+msgid "Provides support for reading AMF files."
+msgstr "Fournit la prise en charge de la lecture de fichiers AMF."
-#: SliceInfoPlugin/plugin.json
+#: AMFReader/plugin.json
msgctxt "name"
-msgid "Slice info"
-msgstr "Information sur le découpage"
+msgid "AMF Reader"
+msgstr "Lecteur AMF"
-#: PreviewStage/plugin.json
+#: CuraDrive/plugin.json
msgctxt "description"
-msgid "Provides a preview stage in Cura."
-msgstr "Fournit une étape de prévisualisation dans Cura."
+msgid "Backup and restore your configuration."
+msgstr "Sauvegardez et restaurez votre configuration."
-#: PreviewStage/plugin.json
+#: CuraDrive/plugin.json
msgctxt "name"
-msgid "Preview Stage"
-msgstr "Étape de prévisualisation"
+msgid "Cura Backups"
+msgstr "Sauvegardes Cura"
-#: SimulationView/plugin.json
+#: CuraEngineBackend/plugin.json
msgctxt "description"
-msgid "Provides the Simulation view."
-msgstr "Fournit la Vue simulation."
+msgid "Provides the link to the CuraEngine slicing backend."
+msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine."
-#: SimulationView/plugin.json
+#: CuraEngineBackend/plugin.json
msgctxt "name"
-msgid "Simulation View"
-msgstr "Vue simulation"
-
-#: MachineSettingsAction/plugin.json
-msgctxt "description"
-msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
-msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)"
-
-#: MachineSettingsAction/plugin.json
-msgctxt "name"
-msgid "Machine Settings Action"
-msgstr "Action Paramètres de la machine"
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "description"
-msgid "Provides capabilities to read and write XML-based material profiles."
-msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML."
-
-#: XmlMaterialProfile/plugin.json
-msgctxt "name"
-msgid "Material Profiles"
-msgstr "Profils matériels"
-
-#: SolidView/plugin.json
-msgctxt "description"
-msgid "Provides a normal solid mesh view."
-msgstr "Affiche une vue en maille solide normale."
-
-#: SolidView/plugin.json
-msgctxt "name"
-msgid "Solid View"
-msgstr "Vue solide"
+msgid "CuraEngine Backend"
+msgstr "Système CuraEngine"
#: CuraProfileReader/plugin.json
msgctxt "description"
@@ -5843,15 +5561,85 @@ msgctxt "name"
msgid "Cura Profile Reader"
msgstr "Lecteur de profil Cura"
-#: UFPWriter/plugin.json
+#: CuraProfileWriter/plugin.json
msgctxt "description"
-msgid "Provides support for writing Ultimaker Format Packages."
-msgstr "Permet l'écriture de fichiers Ultimaker Format Package."
+msgid "Provides support for exporting Cura profiles."
+msgstr "Fournit la prise en charge de l'exportation de profils Cura."
-#: UFPWriter/plugin.json
+#: CuraProfileWriter/plugin.json
msgctxt "name"
-msgid "UFP Writer"
-msgstr "Générateur UFP"
+msgid "Cura Profile Writer"
+msgstr "Générateur de profil Cura"
+
+#: DigitalLibrary/plugin.json
+msgctxt "description"
+msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
+msgstr ""
+
+#: DigitalLibrary/plugin.json
+msgctxt "name"
+msgid "Ultimaker Digital Library"
+msgstr ""
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "description"
+msgid "Checks for firmware updates."
+msgstr "Vérifie les mises à jour du firmware."
+
+#: FirmwareUpdateChecker/plugin.json
+msgctxt "name"
+msgid "Firmware Update Checker"
+msgstr "Vérificateur des mises à jour du firmware"
+
+#: FirmwareUpdater/plugin.json
+msgctxt "description"
+msgid "Provides a machine actions for updating firmware."
+msgstr "Fournit à une machine des actions permettant la mise à jour du firmware."
+
+#: FirmwareUpdater/plugin.json
+msgctxt "name"
+msgid "Firmware Updater"
+msgstr "Programme de mise à jour du firmware"
+
+#: GCodeGzReader/plugin.json
+msgctxt "description"
+msgid "Reads g-code from a compressed archive."
+msgstr "Lit le G-Code à partir d'une archive compressée."
+
+#: GCodeGzReader/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Reader"
+msgstr "Lecteur G-Code compressé"
+
+#: GCodeGzWriter/plugin.json
+msgctxt "description"
+msgid "Writes g-code to a compressed archive."
+msgstr "Enregistre le G-Code dans une archive compressée."
+
+#: GCodeGzWriter/plugin.json
+msgctxt "name"
+msgid "Compressed G-code Writer"
+msgstr "Générateur de G-Code compressé"
+
+#: GCodeProfileReader/plugin.json
+msgctxt "description"
+msgid "Provides support for importing profiles from g-code files."
+msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code."
+
+#: GCodeProfileReader/plugin.json
+msgctxt "name"
+msgid "G-code Profile Reader"
+msgstr "Lecteur de profil G-Code"
+
+#: GCodeReader/plugin.json
+msgctxt "description"
+msgid "Allows loading and displaying G-code files."
+msgstr "Permet le chargement et l'affichage de fichiers G-Code."
+
+#: GCodeReader/plugin.json
+msgctxt "name"
+msgid "G-code Reader"
+msgstr "Lecteur G-Code"
#: GCodeWriter/plugin.json
msgctxt "description"
@@ -5873,15 +5661,445 @@ msgctxt "name"
msgid "Image Reader"
msgstr "Lecteur d'images"
-#: CuraDrive/plugin.json
+#: LegacyProfileReader/plugin.json
msgctxt "description"
-msgid "Backup and restore your configuration."
-msgstr "Sauvegardez et restaurez votre configuration."
+msgid "Provides support for importing profiles from legacy Cura versions."
+msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures."
-#: CuraDrive/plugin.json
+#: LegacyProfileReader/plugin.json
msgctxt "name"
-msgid "Cura Backups"
-msgstr "Sauvegardes Cura"
+msgid "Legacy Cura Profile Reader"
+msgstr "Lecteur de profil Cura antérieur"
+
+#: MachineSettingsAction/plugin.json
+msgctxt "description"
+msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
+msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)"
+
+#: MachineSettingsAction/plugin.json
+msgctxt "name"
+msgid "Machine Settings Action"
+msgstr "Action Paramètres de la machine"
+
+#: MonitorStage/plugin.json
+msgctxt "description"
+msgid "Provides a monitor stage in Cura."
+msgstr "Fournit une étape de surveillance dans Cura."
+
+#: MonitorStage/plugin.json
+msgctxt "name"
+msgid "Monitor Stage"
+msgstr "Étape de surveillance"
+
+#: PerObjectSettingsTool/plugin.json
+msgctxt "description"
+msgid "Provides the Per Model Settings."
+msgstr "Fournit les paramètres par modèle."
+
+#: PerObjectSettingsTool/plugin.json
+msgctxt "name"
+msgid "Per Model Settings Tool"
+msgstr "Outil de paramètres par modèle"
+
+#: PostProcessingPlugin/plugin.json
+msgctxt "description"
+msgid "Extension that allows for user created scripts for post processing"
+msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur"
+
+#: PostProcessingPlugin/plugin.json
+msgctxt "name"
+msgid "Post Processing"
+msgstr "Post-traitement"
+
+#: PrepareStage/plugin.json
+msgctxt "description"
+msgid "Provides a prepare stage in Cura."
+msgstr "Fournit une étape de préparation dans Cura."
+
+#: PrepareStage/plugin.json
+msgctxt "name"
+msgid "Prepare Stage"
+msgstr "Étape de préparation"
+
+#: PreviewStage/plugin.json
+msgctxt "description"
+msgid "Provides a preview stage in Cura."
+msgstr "Fournit une étape de prévisualisation dans Cura."
+
+#: PreviewStage/plugin.json
+msgctxt "name"
+msgid "Preview Stage"
+msgstr "Étape de prévisualisation"
+
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "description"
+msgid "Provides removable drive hotplugging and writing support."
+msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible."
+
+#: RemovableDriveOutputDevice/plugin.json
+msgctxt "name"
+msgid "Removable Drive Output Device Plugin"
+msgstr "Plugin de périphérique de sortie sur disque amovible"
+
+#: SentryLogger/plugin.json
+msgctxt "description"
+msgid "Logs certain events so that they can be used by the crash reporter"
+msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident"
+
+#: SentryLogger/plugin.json
+msgctxt "name"
+msgid "Sentry Logger"
+msgstr "Journal d'événements dans Sentry"
+
+#: SimulationView/plugin.json
+msgctxt "description"
+msgid "Provides the Simulation view."
+msgstr "Fournit la Vue simulation."
+
+#: SimulationView/plugin.json
+msgctxt "name"
+msgid "Simulation View"
+msgstr "Vue simulation"
+
+#: SliceInfoPlugin/plugin.json
+msgctxt "description"
+msgid "Submits anonymous slice info. Can be disabled through preferences."
+msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences."
+
+#: SliceInfoPlugin/plugin.json
+msgctxt "name"
+msgid "Slice info"
+msgstr "Information sur le découpage"
+
+#: SolidView/plugin.json
+msgctxt "description"
+msgid "Provides a normal solid mesh view."
+msgstr "Affiche une vue en maille solide normale."
+
+#: SolidView/plugin.json
+msgctxt "name"
+msgid "Solid View"
+msgstr "Vue solide"
+
+#: SupportEraser/plugin.json
+msgctxt "description"
+msgid "Creates an eraser mesh to block the printing of support in certain places"
+msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits"
+
+#: SupportEraser/plugin.json
+msgctxt "name"
+msgid "Support Eraser"
+msgstr "Effaceur de support"
+
+#: Toolbox/plugin.json
+msgctxt "description"
+msgid "Find, manage and install new Cura packages."
+msgstr "Rechercher, gérer et installer de nouveaux paquets Cura."
+
+#: Toolbox/plugin.json
+msgctxt "name"
+msgid "Toolbox"
+msgstr "Boîte à outils"
+
+#: TrimeshReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading model files."
+msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D."
+
+#: TrimeshReader/plugin.json
+msgctxt "name"
+msgid "Trimesh Reader"
+msgstr "Lecteur de Trimesh"
+
+#: UFPReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading Ultimaker Format Packages."
+msgstr "Fournit un support pour la lecture des paquets de format Ultimaker."
+
+#: UFPReader/plugin.json
+msgctxt "name"
+msgid "UFP Reader"
+msgstr "Lecteur UFP"
+
+#: UFPWriter/plugin.json
+msgctxt "description"
+msgid "Provides support for writing Ultimaker Format Packages."
+msgstr "Permet l'écriture de fichiers Ultimaker Format Package."
+
+#: UFPWriter/plugin.json
+msgctxt "name"
+msgid "UFP Writer"
+msgstr "Générateur UFP"
+
+#: UltimakerMachineActions/plugin.json
+msgctxt "description"
+msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
+msgstr "Fournit les actions de la machine pour les machines Ultimaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)"
+
+#: UltimakerMachineActions/plugin.json
+msgctxt "name"
+msgid "Ultimaker machine actions"
+msgstr "Actions de la machine Ultimaker"
+
+#: UM3NetworkPrinting/plugin.json
+msgctxt "description"
+msgid "Manages network connections to Ultimaker networked printers."
+msgstr "Gère les connexions réseau vers les imprimantes Ultimaker en réseau."
+
+#: UM3NetworkPrinting/plugin.json
+msgctxt "name"
+msgid "Ultimaker Network Connection"
+msgstr "Connexion réseau Ultimaker"
+
+#: USBPrinting/plugin.json
+msgctxt "description"
+msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
+msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware."
+
+#: USBPrinting/plugin.json
+msgctxt "name"
+msgid "USB printing"
+msgstr "Impression par USB"
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
+msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2."
+
+#: VersionUpgrade/VersionUpgrade21to22/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.1 to 2.2"
+msgstr "Mise à niveau vers 2.1 vers 2.2"
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
+msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4."
+
+#: VersionUpgrade/VersionUpgrade22to24/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.2 to 2.4"
+msgstr "Mise à niveau de 2.2 vers 2.4"
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
+msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6."
+
+#: VersionUpgrade/VersionUpgrade25to26/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.5 to 2.6"
+msgstr "Mise à niveau de 2.5 vers 2.6"
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
+msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7."
+
+#: VersionUpgrade/VersionUpgrade26to27/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.6 to 2.7"
+msgstr "Mise à niveau de 2.6 vers 2.7"
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
+msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0."
+
+#: VersionUpgrade/VersionUpgrade27to30/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 2.7 to 3.0"
+msgstr "Mise à niveau de version, de 2.7 vers 3.0"
+
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
+msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1."
+
+#: VersionUpgrade/VersionUpgrade30to31/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.0 to 3.1"
+msgstr "Mise à niveau de version, de 3.0 vers 3.1"
+
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
+msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3."
+
+#: VersionUpgrade/VersionUpgrade32to33/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.2 to 3.3"
+msgstr "Mise à niveau de 3.2 vers 3.3"
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
+msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4."
+
+#: VersionUpgrade/VersionUpgrade33to34/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.3 to 3.4"
+msgstr "Mise à niveau de 3.3 vers 3.4"
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
+msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5."
+
+#: VersionUpgrade/VersionUpgrade34to35/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.4 to 3.5"
+msgstr "Mise à niveau de 3.4 vers 3.5"
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
+msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0."
+
+#: VersionUpgrade/VersionUpgrade35to40/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 3.5 to 4.0"
+msgstr "Mise à niveau de 3.5 vers 4.0"
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
+msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1."
+
+#: VersionUpgrade/VersionUpgrade40to41/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.0 to 4.1"
+msgstr "Mise à niveau de 4.0 vers 4.1"
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
+msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2."
+
+#: VersionUpgrade/VersionUpgrade41to42/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.1 to 4.2"
+msgstr "Mise à jour de 4.1 vers 4.2"
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
+msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3."
+
+#: VersionUpgrade/VersionUpgrade42to43/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.2 to 4.3"
+msgstr "Mise à jour de 4.2 vers 4.3"
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
+msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4."
+
+#: VersionUpgrade/VersionUpgrade43to44/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.3 to 4.4"
+msgstr "Mise à niveau de 4.3 vers 4.4"
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
+msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5."
+
+#: VersionUpgrade/VersionUpgrade44to45/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.4 to 4.5"
+msgstr "Mise à niveau de 4.4 vers 4.5"
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
+msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6."
+
+#: VersionUpgrade/VersionUpgrade45to46/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.5 to 4.6"
+msgstr "Mise à niveau de 4.5 vers 4.6"
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
+msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2."
+
+#: VersionUpgrade/VersionUpgrade460to462/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.0 to 4.6.2"
+msgstr "Mise à niveau de 4.6.0 vers 4.6.2"
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
+msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7."
+
+#: VersionUpgrade/VersionUpgrade462to47/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.6.2 to 4.7"
+msgstr "Mise à niveau de 4.6.2 vers 4.7"
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
+msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8."
+
+#: VersionUpgrade/VersionUpgrade47to48/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.7 to 4.8"
+msgstr "Mise à niveau de 4.7 vers 4.8"
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade48to49/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.8 to 4.9"
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "description"
+msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
+msgstr ""
+
+#: VersionUpgrade/VersionUpgrade49to410/plugin.json
+msgctxt "name"
+msgid "Version Upgrade 4.9 to 4.10"
+msgstr ""
+
+#: X3DReader/plugin.json
+msgctxt "description"
+msgid "Provides support for reading X3D files."
+msgstr "Fournit la prise en charge de la lecture de fichiers X3D."
+
+#: X3DReader/plugin.json
+msgctxt "name"
+msgid "X3D Reader"
+msgstr "Lecteur X3D"
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "description"
+msgid "Provides capabilities to read and write XML-based material profiles."
+msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML."
+
+#: XmlMaterialProfile/plugin.json
+msgctxt "name"
+msgid "Material Profiles"
+msgstr "Profils matériels"
+
+#: XRayView/plugin.json
+msgctxt "description"
+msgid "Provides the X-Ray view."
+msgstr "Permet la vue Rayon-X."
+
+#: XRayView/plugin.json
+msgctxt "name"
+msgid "X-Ray View"
+msgstr "Vue Rayon-X"
#~ msgctxt "@info:status"
#~ msgid "Global stack is missing."
diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po
index 1d8ba7a960..88eef3e0b5 100644
--- a/resources/i18n/fr_FR/fdmextruder.def.json.po
+++ b/resources/i18n/fr_FR/fdmextruder.def.json.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: 2021-04-16 15:16+0200\n"
"Last-Translator: Bothof \n"
"Language-Team: French\n"
diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po
index 942f44de68..2947e3a990 100644
--- a/resources/i18n/fr_FR/fdmprinter.def.json.po
+++ b/resources/i18n/fr_FR/fdmprinter.def.json.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:09+0000\n"
+"POT-Creation-Date: 2021-06-10 17:35+0000\n"
"PO-Revision-Date: 2021-04-16 15:16+0200\n"
"Last-Translator: Lionbridge \n"
"Language-Team: French , French \n"
@@ -3200,8 +3200,8 @@ msgstr "Distance de détour max. sans rétraction"
#: fdmprinter.def.json
msgctxt "retraction_combing_max_distance description"
-msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
-msgstr "Lorsque cette distance n'est pas nulle, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction."
+msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
+msgstr ""
#: fdmprinter.def.json
msgctxt "travel_retract_before_outer_wall label"
@@ -6401,6 +6401,10 @@ msgctxt "mesh_rotation_matrix description"
msgid "Transformation matrix to be applied to the model when loading it from file."
msgstr "Matrice de transformation à appliquer au modèle lors de son chargement depuis le fichier."
+#~ msgctxt "retraction_combing_max_distance description"
+#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
+#~ msgstr "Lorsque cette distance n'est pas nulle, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction."
+
#~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
#~ msgid "Apply the extruder offset to the coordinate system."
#~ msgstr "Appliquer le décalage de l'extrudeuse au système de coordonnées."
diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po
index 9bcc1e16ca..f21a32653d 100644
--- a/resources/i18n/hu_HU/cura.po
+++ b/resources/i18n/hu_HU/cura.po
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Cura 4.9\n"
+"Project-Id-Version: Cura 4.10\n"
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
-"POT-Creation-Date: 2021-04-02 16:10+0200\n"
+"POT-Creation-Date: 2021-06-10 17:35+0200\n"
"PO-Revision-Date: 2020-03-24 09:36+0100\n"
"Last-Translator: Nagy Attila \n"
"Language-Team: ATI-SZOFT\n"
@@ -17,188 +17,180 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 2.2.4\n"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
-msgctxt "@info:progress"
-msgid "Loading machines..."
-msgstr "Gépek betöltése ..."
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1612
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+msgctxt "@label"
+msgid "Unknown"
+msgstr "Ismeretlen"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
-msgctxt "@info:progress"
-msgid "Setting up preferences..."
-msgstr ""
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
+msgctxt "@label"
+msgid "The printer(s) below cannot be connected because they are part of a group"
+msgstr "Az alábbi nyomtató (k) nem csatlakoztathatók, mert egy csoporthoz tartoznak"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
-msgctxt "@info:progress"
-msgid "Initializing Active Machine..."
-msgstr ""
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
+msgctxt "@label"
+msgid "Available networked printers"
+msgstr "Elérhető hálózati nyomtatók"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
-msgctxt "@info:progress"
-msgid "Initializing machine manager..."
-msgstr ""
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211
+msgctxt "@menuitem"
+msgid "Not overridden"
+msgstr "Nincs felülírva"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
-msgctxt "@info:progress"
-msgid "Initializing build volume..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
-msgctxt "@info:progress"
-msgid "Setting up scene..."
-msgstr "Felület beállítása..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
-msgctxt "@info:progress"
-msgid "Loading interface..."
-msgstr "Interfészek betöltése..."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
-msgctxt "@info:progress"
-msgid "Initializing engine..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
-#, 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"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
-msgstr "Egyszerre csak egy G-kód fájlt lehet betölteni. Az importálás kihagyva {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
-msgctxt "@info:title"
-msgid "Warning"
-msgstr "Figyelem"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
-msgstr "Nem nyitható meg más fájl, ha a G-kód betöltődik. Az importálás kihagyva {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
-msgctxt "@info:title"
-msgid "Error"
-msgstr "Hiba"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
#, python-brace-format
msgctxt "@label {0} is the name of a printer that's about to be deleted."
msgid "Are you sure you wish to remove {0}? This cannot be undone!"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
-msgctxt "@label"
-msgid "Custom Material"
-msgstr "Egyedi anyag"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
-msgctxt "@label"
-msgid "Custom"
-msgstr "Egyedi"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
msgctxt "@label"
msgid "Default"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
msgctxt "@label"
-msgid "Unknown"
-msgstr "Ismeretlen"
+msgid "Visual"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
+msgctxt "@text"
+msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
+msgctxt "@label"
+msgid "Engineering"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
+msgctxt "@text"
+msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
+msgctxt "@label"
+msgid "Draft"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
+msgctxt "@text"
+msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:234
+msgctxt "@label"
+msgid "Custom Material"
+msgstr "Egyedi anyag"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:235
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
+msgctxt "@label"
+msgid "Custom"
+msgstr "Egyedi"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
msgctxt "@label"
msgid "Custom profiles"
msgstr "Egyéni profil"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
#, python-brace-format
msgctxt "@item:inlistbox"
msgid "All Supported Types ({0})"
msgstr "Összes támasz típus ({0})"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
+#: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
msgctxt "@item:inlistbox"
msgid "All Files (*)"
msgstr "Minden fájl (*)"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
-msgctxt "@label"
-msgid "Visual"
+#: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:181
+msgctxt "@info:title"
+msgid "Login failed"
+msgstr "Sikertelen bejelentkezés"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
+msgctxt "@info:status"
+msgid "Finding new location for objects"
+msgstr "Új hely keresése az objektumokhoz"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Finding Location"
+msgstr "Hely keresés"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76
+msgctxt "@info:status"
+msgid "Unable to find a location within the build volume for all objects"
+msgstr "Nincs elég hely az összes objektum építési térfogatához"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+msgctxt "@info:title"
+msgid "Can't Find Location"
+msgstr "Nem találok helyet"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:116
+msgctxt "@info:backup_failed"
+msgid "Could not create archive from user data directory: {}"
+msgstr "Nem sikerült archívumot létrehozni a felhasználói adatkönyvtárból: {}"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:122
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
+#: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
+msgctxt "@info:title"
+msgid "Backup"
+msgstr "Biztonsági mentés"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:135
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup without having proper data or meta data."
+msgstr "Megpróbált visszaállítani egy Cura biztonsági másolatot anélkül, hogy megfelelő adatok vagy meta adatok lennének."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:146
+msgctxt "@info:backup_failed"
+msgid "Tried to restore a Cura backup that is higher than the current version."
+msgstr "Egy olyan Cura biztonsági mentést próbált visszaállítani, amelyiknek a verziója magasabb a jelenlegitől."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:157
+msgctxt "@info:backup_failed"
+msgid "The following error occurred while trying to restore a Cura backup:"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
-msgctxt "@text"
-msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
-msgstr ""
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
+msgctxt "@info:status"
+msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
+msgstr "Az nyomtatási szint csökken a \"Nyomtatási sorrend\" beállítása miatt, ez megakadályozza, hogy a mechanika beleütközzön a nyomtatott tárgyba."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
-msgctxt "@label"
-msgid "Engineering"
-msgstr ""
+#: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100
+msgctxt "@info:title"
+msgid "Build Volume"
+msgstr "Építési térfogat"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
-msgctxt "@text"
-msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
-msgctxt "@label"
-msgid "Draft"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
-msgctxt "@text"
-msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
-msgctxt "@label"
-msgid "The printer(s) below cannot be connected because they are part of a group"
-msgstr "Az alábbi nyomtató (k) nem csatlakoztathatók, mert egy csoporthoz tartoznak"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
-msgctxt "@label"
-msgid "Available networked printers"
-msgstr "Elérhető hálózati nyomtatók"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
-msgctxt "@menuitem"
-msgid "Not overridden"
-msgstr "Nincs felülírva"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
msgctxt "@title:window"
msgid "Cura can't start"
msgstr "A Cura nem tud elindulni"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
msgctxt "@label crash message"
msgid ""
"Oops, Ultimaker Cura has encountered something that doesn't seem right.
\n"
@@ -213,32 +205,32 @@ msgstr ""
" Kérjük, küldje el nekünk ezt a hibajelentést a probléma megoldásához.
\n"
" "
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
msgctxt "@action:button"
msgid "Send crash report to Ultimaker"
msgstr "Hibajelentés küldése az Ultimaker -nek"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
msgctxt "@action:button"
msgid "Show detailed crash report"
msgstr "Hibajelentés részletei"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
msgctxt "@action:button"
msgid "Show configuration folder"
msgstr "Konfigurációs mappa megnyitása"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
msgctxt "@action:button"
msgid "Backup and Reset Configuration"
msgstr "Konfiguráció biztonsági mentés és visszaállítás"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
msgctxt "@title:window"
msgid "Crash Report"
msgstr "Összeomlás jelentés"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
msgctxt "@label crash message"
msgid ""
"A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem
\n"
@@ -249,1092 +241,491 @@ msgstr ""
" Kérjük használd a \"Jelentés küldés\" gombot a hibajelentés postázásához, így az automatikusan a szerverünkre kerül.
\n"
" "
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
msgctxt "@title:groupbox"
msgid "System information"
msgstr "Rendszer információ"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
msgctxt "@label unknown version of Cura"
msgid "Unknown"
msgstr "Ismeretlen"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
msgctxt "@label Cura version number"
msgid "Cura version"
msgstr "Cura verzió"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
msgctxt "@label"
msgid "Cura language"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
msgctxt "@label"
msgid "OS language"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
msgctxt "@label Type of platform"
msgid "Platform"
msgstr "Felület"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
msgctxt "@label"
msgid "Qt version"
msgstr "Qt verzió"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
msgctxt "@label"
msgid "PyQt version"
msgstr "PyQt verzió"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
msgctxt "@label OpenGL version"
msgid "OpenGL"
msgstr "OpenGL"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
msgctxt "@label"
msgid "Not yet initialized
"
msgstr "Még nincs inicializálva
"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
#, python-brace-format
msgctxt "@label OpenGL version"
msgid "OpenGL Version: {version}"
msgstr "OpenGL Verzió: {version}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
#, python-brace-format
msgctxt "@label OpenGL vendor"
msgid "OpenGL Vendor: {vendor}"
msgstr "OpenGL terjesztő: {vendor}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
#, python-brace-format
msgctxt "@label OpenGL renderer"
msgid "OpenGL Renderer: {renderer}"
msgstr "OpenGL Renderer: {renderer}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
msgctxt "@title:groupbox"
msgid "Error traceback"
msgstr "Hibakövetés"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
msgctxt "@title:groupbox"
msgid "Logs"
msgstr "Naplók"
-#: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
+#: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
msgctxt "@action:button"
msgid "Send report"
msgstr "Jelentés küldés"
-#: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
-msgctxt "@info:title"
-msgid "Login failed"
-msgstr "Sikertelen bejelentkezés"
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:527
+msgctxt "@info:progress"
+msgid "Loading machines..."
+msgstr "Gépek betöltése ..."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:534
+msgctxt "@info:progress"
+msgid "Setting up preferences..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:672
+msgctxt "@info:progress"
+msgid "Initializing Active Machine..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:803
+msgctxt "@info:progress"
+msgid "Initializing machine manager..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:817
+msgctxt "@info:progress"
+msgid "Initializing build volume..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:888
+msgctxt "@info:progress"
+msgid "Setting up scene..."
+msgstr "Felület beállítása..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:924
+msgctxt "@info:progress"
+msgid "Loading interface..."
+msgstr "Interfészek betöltése..."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:929
+msgctxt "@info:progress"
+msgid "Initializing engine..."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1246
+#, python-format
+msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
+msgid "%(width).1f x %(depth).1f x %(height).1f mm"
+msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1799
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
+msgstr "Egyszerre csak egy G-kód fájlt lehet betölteni. Az importálás kihagyva {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1800
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:190
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
+msgctxt "@info:title"
+msgid "Warning"
+msgstr "Figyelem"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1809
+#, python-brace-format
+msgctxt "@info:status"
+msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
+msgstr "Nem nyitható meg más fájl, ha a G-kód betöltődik. Az importálás kihagyva {0}"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1810
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153
+#: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
+msgctxt "@info:title"
+msgid "Error"
+msgstr "Hiba"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26
+msgctxt "@info:status"
+msgid "Multiplying and placing objects"
+msgstr "Tárgyak többszörözése és elhelyezése"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28
+msgctxt "@info:title"
+msgid "Placing Objects"
+msgstr "Tárgyak elhelyezése"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77
+msgctxt "@info:title"
+msgid "Placing Object"
+msgstr "Tárgy elhelyezése"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:92
msgctxt "@message"
msgid "Could not read response."
msgstr "Nincs olvasható válasz."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
-msgctxt "@info"
-msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
-msgctxt "@info"
-msgid "Unable to reach the Ultimaker account server."
-msgstr "Az Ultimaker fiókkiszolgáló elérhetetlen."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
msgctxt "@message"
msgid "The provided state is not correct."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
msgctxt "@message"
msgid "Please give the required permissions when authorizing this application."
msgstr "Kérjük, adja meg a szükséges jogosultságokat az alkalmazás engedélyezéséhez."
-#: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
msgctxt "@message"
msgid "Something unexpected happened when trying to log in, please try again."
msgstr "Valami váratlan esemény történt a bejelentkezéskor, próbálkozzon újra."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:189
+msgctxt "@info"
+msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:244
+msgctxt "@info"
+msgid "Unable to reach the Ultimaker account server."
+msgstr "Az Ultimaker fiókkiszolgáló elérhetetlen."
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132
msgctxt "@title:window"
msgid "File Already Exists"
msgstr "A fájl már létezik"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
#, python-brace-format
msgctxt "@label Don't translate the XML tag !"
msgid "The file {0} already exists. Are you sure you want to overwrite it?"
msgstr "A {0} fájl már létezik. Biztosan szeretnéd, hogy felülírjuk?"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:457
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:460
msgctxt "@info:status"
msgid "Invalid file URL:"
msgstr "Érvénytelen fájl URL:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
-msgctxt "@label"
-msgid "Nozzle"
-msgstr "Fúvóka"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
-msgctxt "@info:message Followed by a list of settings."
-msgid "Settings have been changed to match the current availability of extruders:"
-msgstr "A beállításokat megváltoztattuk, hogy azok megfeleljenek az jelenleg elérhető extrudereknek:"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
-msgctxt "@info:title"
-msgid "Settings updated"
-msgstr "Beállítások frissítve"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
-msgctxt "@info:title"
-msgid "Extruder(s) Disabled"
-msgstr "Extruder(ek) kikapcsolva"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags or !"
msgid "Failed to export profile to {0}: {1}"
msgstr "A profil exportálása nem sikerült {0}: {1}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Failed to export profile to {0}: Writer plugin reported failure."
msgstr "A profil exportálása nem sikerült {0}:Az író beépülő modul hibát jelez."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Exported profile to {0}"
msgstr "Profil exportálva ide: {0}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157
msgctxt "@info:title"
msgid "Export succeeded"
msgstr "Sikeres export"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "Failed to import profile from {0}: {1}"
msgstr "Sikertelen profil importálás {0}: {1} -ból"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "Can't import profile from {0} before a printer is added."
msgstr "Nem importálható a profil {0} -ból, mielőtt hozzá nem adunk egy nyomtatót."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "No custom profile to import in file {0}"
msgstr "Nincs egyéni profil a {0} fájlban, amelyet importálni lehetne"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "Failed to import profile from {0}:"
msgstr "A profil importálása nem sikerült {0}:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245
#, python-brace-format
msgctxt "@info:status Don't translate the XML tags !"
msgid "This profile {0} contains incorrect data, could not import it."
msgstr "Ez a {0} profil helytelen adatokat tartamaz, ezért nem importálható."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338
#, python-brace-format
msgctxt "@info:status Don't translate the XML tag !"
msgid "Failed to import profile from {0}:"
msgstr "Nem importálható a profil {0}:"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342
#, python-brace-format
msgctxt "@info:status"
msgid "Successfully imported profile {0}."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349
#, python-brace-format
msgctxt "@info:status"
msgid "File {0} does not contain any valid profile."
msgstr "A {0} fájl nem tartalmaz érvényes profilt."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352
#, python-brace-format
msgctxt "@info:status"
msgid "Profile {0} has an unknown file type or is corrupted."
msgstr "A(z) {0} profil ismeretlen fájltípusú vagy sérült."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:426
msgctxt "@label"
msgid "Custom profile"
msgstr "Egyedi profil"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:442
msgctxt "@info:status"
msgid "Profile is missing a quality type."
msgstr "Hiányzik a profil minőségi típusa."
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:446
msgctxt "@info:status"
msgid "There is no active printer yet."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:452
msgctxt "@info:status"
msgid "Unable to add the profile."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:466
#, python-brace-format
msgctxt "@info:status"
msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:471
#, 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 ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
msgctxt "@info:not supported profile"
msgid "Not supported"
msgstr "Nem támogatott"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
msgctxt "@info:No intent profile selected"
msgid "Default"
msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
-msgctxt "@info:status"
-msgid "Finding new location for objects"
-msgstr "Új hely keresése az objektumokhoz"
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:713
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
+msgctxt "@label"
+msgid "Nozzle"
+msgstr "Fúvóka"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:856
+msgctxt "@info:message Followed by a list of settings."
+msgid "Settings have been changed to match the current availability of extruders:"
+msgstr "A beállításokat megváltoztattuk, hogy azok megfeleljenek az jelenleg elérhető extrudereknek:"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:858
msgctxt "@info:title"
-msgid "Finding Location"
-msgstr "Hely keresés"
+msgid "Settings updated"
+msgstr "Beállítások frissítve"
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
-msgctxt "@info:status"
-msgid "Unable to find a location within the build volume for all objects"
-msgstr "Nincs elég hely az összes objektum építési térfogatához"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
-#: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
+#: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1478
msgctxt "@info:title"
-msgid "Can't Find Location"
-msgstr "Nem találok helyet"
+msgid "Extruder(s) Disabled"
+msgstr "Extruder(ek) kikapcsolva"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
+msgctxt "@action:button"
+msgid "Add"
+msgstr "Hozzáad"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:272
+msgctxt "@action:button"
+msgid "Finish"
+msgstr ""
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33
+#: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
+#: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
+#: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
+#: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
+#: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+msgctxt "@action:button"
+msgid "Cancel"
+msgstr "Elvet"
+
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
#, python-brace-format
msgctxt "@label"
msgid "Group #{group_nr}"
msgstr "Csoport #{group_nr}"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
-msgctxt "@action:button"
-msgid "Skip"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
-msgctxt "@action:button"
-msgid "Close"
-msgstr "Bezár"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
-msgctxt "@action:button"
-msgid "Next"
-msgstr "Következő"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
-msgctxt "@action:button"
-msgid "Finish"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:82
msgctxt "@tooltip"
msgid "Outer Wall"
msgstr "Külső fal"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
msgctxt "@tooltip"
msgid "Inner Walls"
msgstr "Belső falak"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
msgctxt "@tooltip"
msgid "Skin"
msgstr "Héj"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
msgctxt "@tooltip"
msgid "Infill"
msgstr "Kitöltés"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
msgctxt "@tooltip"
msgid "Support Infill"
msgstr "Támasz kitöltés"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
msgctxt "@tooltip"
msgid "Support Interface"
msgstr "Támasz interface"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
msgctxt "@tooltip"
msgid "Support"
msgstr "Támasz"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
msgctxt "@tooltip"
msgid "Skirt"
msgstr "Szoknya"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
msgctxt "@tooltip"
msgid "Prime Tower"
msgstr "Elsődleges torony"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
msgctxt "@tooltip"
msgid "Travel"
msgstr "Átmozgás"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
msgctxt "@tooltip"
msgid "Retractions"
msgstr "Visszahúzás"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
msgctxt "@tooltip"
msgid "Other"
msgstr "Egyéb"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:259
msgctxt "@action:button"
-msgid "Add"
-msgstr "Hozzáad"
+msgid "Next"
+msgstr "Következő"
-#: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
-#: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
-#: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:268
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:55
msgctxt "@action:button"
-msgid "Cancel"
-msgstr "Elvet"
+msgid "Skip"
+msgstr ""
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
-msgctxt "@info:status"
-msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
-msgstr "Az nyomtatási szint csökken a \"Nyomtatási sorrend\" beállítása miatt, ez megakadályozza, hogy a mechanika beleütközzön a nyomtatott tárgyba."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
-msgctxt "@info:title"
-msgid "Build Volume"
-msgstr "Építési térfogat"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
-msgctxt "@info:backup_failed"
-msgid "Could not create archive from user data directory: {}"
-msgstr "Nem sikerült archívumot létrehozni a felhasználói adatkönyvtárból: {}"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
-msgctxt "@info:title"
-msgid "Backup"
-msgstr "Biztonsági mentés"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup without having proper data or meta data."
-msgstr "Megpróbált visszaállítani egy Cura biztonsági másolatot anélkül, hogy megfelelő adatok vagy meta adatok lennének."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
-msgctxt "@info:backup_failed"
-msgid "Tried to restore a Cura backup that is higher than the current version."
-msgstr "Egy olyan Cura biztonsági mentést próbált visszaállítani, amelyiknek a verziója magasabb a jelenlegitől."
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
-msgctxt "@info:status"
-msgid "Multiplying and placing objects"
-msgstr "Tárgyak többszörözése és elhelyezése"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
-msgctxt "@info:title"
-msgid "Placing Objects"
-msgstr "Tárgyak elhelyezése"
-
-#: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
-msgctxt "@info:title"
-msgid "Placing Object"
-msgstr "Tárgy elhelyezése"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Save to Removable Drive"
-msgstr "Mentés külső meghajtóra"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
-#, python-brace-format
-msgctxt "@item:inlistbox"
-msgid "Save to Removable Drive {0}"
-msgstr "Mentés külső meghajtóra {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
-msgctxt "@info:status"
-msgid "There are no file formats available to write with!"
-msgstr "Nincsenek elérhető fájlformátumok az íráshoz!"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-#, python-brace-format
-msgctxt "@info:progress Don't translate the XML tags !"
-msgid "Saving to Removable Drive {0}"
-msgstr "Mentés külső meghajóra {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
-msgctxt "@info:title"
-msgid "Saving"
-msgstr "Mentés"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
-#, python-brace-format
-msgctxt "@info:status Don't translate the XML tags or !"
-msgid "Could not save to {0}: {1}"
-msgstr "Sikertelen mentés {0}: {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
-#, python-brace-format
-msgctxt "@info:status Don't translate the tag {device}!"
-msgid "Could not find a file name when trying to write to {device}."
-msgstr "Nem található a fájlnév {device} -on az írási művelethez."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Could not save to removable drive {0}: {1}"
-msgstr "Sikertelen mentés a {0}: {1} meghajtóra."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Saved to Removable Drive {0} as {1}"
-msgstr "Mentve a {0} meghajtóra, mint {1}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
-msgctxt "@info:title"
-msgid "File Saved"
-msgstr "Fájl Mentve"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
+#: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:60
+#: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
+#: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:174
+#: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
msgctxt "@action:button"
-msgid "Eject"
-msgstr "Leválaszt"
+msgid "Close"
+msgstr "Bezár"
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
-#, python-brace-format
-msgctxt "@action"
-msgid "Eject removable device {0}"
-msgstr "{0} meghajtó leválasztása"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Ejected {0}. You can now safely remove the drive."
-msgstr "{0} leválasztva. Eltávolíthatod az adathordozót."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
-msgctxt "@info:title"
-msgid "Safely Remove Hardware"
-msgstr "Hardver biztonságos eltávolítása"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Failed to eject {0}. Another program may be using the drive."
-msgstr "{0} leválasztása sikertelen. A meghajtó használatban van."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
-msgctxt "@item:intext"
-msgid "Removable Drive"
-msgstr "Cserélhető meghajtó"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
-msgctxt "@item:inlistbox"
-msgid "AMF File"
-msgstr "AMF fájl"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
-msgctxt "@item:inlistbox"
-msgid "G-code File"
-msgstr "G-code Fájl"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
-msgctxt "@action"
-msgid "Update Firmware"
-msgstr "Firmware frissítés"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
-msgctxt "@item:inlistbox"
-msgid "X3D File"
-msgstr "X3D Fájl"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
-msgctxt "@button"
-msgid "Decline"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
-#: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
-msgctxt "@button"
-msgid "Agree"
-msgstr "Elfogadás"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
-msgctxt "@title:window"
-msgid "Plugin License Agreement"
-msgstr "Kiegészítő licencszerződés"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
-msgctxt "@button"
-msgid "Decline and remove from account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
-msgctxt "@info:generic"
-msgid "{} plugins failed to download"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
-msgctxt "@info:generic"
-msgid "Syncing..."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
-msgctxt "@info:title"
-msgid "Changes detected from your Ultimaker account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
-msgctxt "@info:generic"
-msgid "You need to quit and restart {} before changes have effect."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
-msgctxt "@info:generic"
-msgid "Do you want to sync material and software packages with your account?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
-msgctxt "@action:button"
-msgid "Sync"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
-msgctxt "@label"
-msgid "Per Model Settings"
-msgstr "Modellenkénti beállítások"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
-msgctxt "@info:tooltip"
-msgid "Configure Per Model Settings"
-msgstr "Modellenkénti beállítások konfigurálása"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
-msgctxt "@item:inmenu"
-msgid "Post Processing"
-msgstr "Utólagos műveletek"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
-msgctxt "@item:inmenu"
-msgid "Modify G-Code"
-msgstr "G-kód módosítás"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
-msgctxt "@info:status"
-msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
-msgstr "Nem lehet szeletelni a jelenlegi alapanyaggal, mert nem kompatibilis a kiválasztott nyomtatóval, vagy a beállításaival."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
-msgctxt "@info:title"
-msgid "Unable to slice"
-msgstr "Nem lehet szeletelni"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Unable to slice with the current settings. The following settings have errors: {0}"
-msgstr "Nem lehet szeletelni ezekkel a beállításokkal. Ezek a beállítások okoznak hibát: {0}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
-msgstr "Nem lehet szeletelni pár modell beállítás miatt. A következő beállításokokoznak hibát egy vagy több modellnél: {error_labels}"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
-msgctxt "@info:status"
-msgid "Unable to slice because the prime tower or prime position(s) are invalid."
-msgstr "Nem lehet szeletelni, mert az elsődleges torony, vagy az elsődleges pozíció érvénytelen."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
-#, python-format
-msgctxt "@info:status"
-msgid "Unable to slice because there are objects associated with disabled Extruder %s."
-msgstr "Nem lehet szeletelni, mert vannak olyan objektumok, amelyek a letiltott Extruderhez vannak társítva.%s."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
-msgctxt "@info:status"
-msgid ""
-"Please review settings and check if your models:\n"
-"- Fit within the build volume\n"
-"- Are assigned to an enabled extruder\n"
-"- Are not all set as modifier meshes"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
-msgctxt "@info:status"
-msgid "Processing Layers"
-msgstr "Réteg feldolgozás"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
-msgctxt "@info:title"
-msgid "Information"
-msgstr "Információ"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
-msgctxt "@item:inmenu"
-msgid "USB printing"
-msgstr "USB nyomtatás"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Print via USB"
-msgstr "Nyomtatás USB-ről"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
-msgctxt "@info:tooltip"
-msgid "Print via USB"
-msgstr "Nyomtatás USB-ről"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
-msgctxt "@info:status"
-msgid "Connected via USB"
-msgstr "Csatlakozás USB-n"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
-msgctxt "@label"
-msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
-msgstr "USB nyomtatás folyamatban van, a Cura bezárása leállítja ezt a nyomtatást. Biztos vagy ebben?"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
-msgstr "A nyomtatás még folyamatban van. A Cura nem indíthat új nyomtatást USB-n keresztül, amíg az előző nyomtatás be nem fejeződött."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
-msgctxt "@message"
-msgid "Print in Progress"
-msgstr "Nyomtatás folyamatban"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14
-#: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
-msgctxt "@item:inlistbox"
-msgid "Cura Profile"
-msgstr "Cura Profil"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
-msgctxt "@action"
-msgid "Connect via Network"
-msgstr "Hálózati csatlakozás"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
-msgctxt "info:status"
-msgid "New printer detected from your Ultimaker account"
-msgid_plural "New printers detected from your Ultimaker account"
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
-#, python-brace-format
-msgctxt "info:status Filled in with printer name and printer model."
-msgid "Adding printer {name} ({model}) from your account"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
-#, python-brace-format
-msgctxt "info:{0} gets replaced by a number of printers"
-msgid "... and {0} other"
-msgid_plural "... and {0} others"
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
-msgctxt "info:status"
-msgid "Printers added from Digital Factory:"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
-msgctxt "info:status"
-msgid "A cloud connection is not available for a printer"
-msgid_plural "A cloud connection is not available for some printers"
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
-msgctxt "info:status"
-msgid "This printer is not linked to the Digital Factory:"
-msgid_plural "These printers are not linked to the Digital Factory:"
-msgstr[0] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
-msgctxt "info:name"
-msgid "Ultimaker Digital Factory"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
-#, python-brace-format
-msgctxt "info:status"
-msgid "To establish a connection, please visit the {website_link}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
-msgctxt "@action:button"
-msgid "Keep printer configurations"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
-msgctxt "@action:button"
-msgid "Remove printers"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
-#, python-brace-format
-msgctxt "@message {printer_name} is replaced with the name of the printer"
-msgid "{printer_name} will be removed until the next account sync."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
-#, python-brace-format
-msgctxt "@message {printer_name} is replaced with the name of the printer"
-msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
-#, python-brace-format
-msgctxt "@message {printer_name} is replaced with the name of the printer"
-msgid "Are you sure you want to remove {printer_name} temporarily?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
-msgctxt "@title:window"
-msgid "Remove printers?"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
-#, 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] ""
-msgstr[1] ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
-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 ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
-msgctxt "@action:button"
-msgid "Print via cloud"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
-msgctxt "@properties:tooltip"
-msgid "Print via cloud"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
-msgctxt "@info:status"
-msgid "Connected via cloud"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
-#, python-brace-format
-msgctxt "@error:send"
-msgid "Unknown error code when uploading print job: {0}"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
-msgctxt "@info:status"
-msgid "tomorrow"
-msgstr "holnap"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
-msgctxt "@info:status"
-msgid "today"
-msgstr "ma"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
-msgctxt "@info:status"
-msgid "Sending Print Job"
-msgstr "Nyomtatási feladat küldése"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
-msgctxt "@info:status"
-msgid "Uploading print job to printer."
-msgstr "A nyomtatási feladat feltöltése a nyomtatóra."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
-#, python-brace-format
-msgctxt "@info:status"
-msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
-msgstr "Megpróbált csatlakozni a (z) {0} -hez, de a gép nem része a csoportnak.Látogasson el a weboldalra, és konfigurálhatja azt csoporttagnak."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
-msgctxt "@info:title"
-msgid "Not a group host"
-msgstr "Nem csoport"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
-msgctxt "@action"
-msgid "Configure group"
-msgstr "Csoport konfiguráció"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
-msgctxt "@info:status"
-msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
-msgstr "Küldjön és felügyeljen nyomtatási feladatokat bárhonnan az Ultimaker fiókjával."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
-msgctxt "@info:status Ultimaker Cloud should not be translated."
-msgid "Connect to Ultimaker Digital Factory"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
-msgctxt "@action"
-msgid "Get started"
-msgstr "Kezdjük el"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
-msgctxt "@info:status"
-msgid "Please wait until the current job has been sent."
-msgstr "Várja meg, amíg az aktuális feladat elküldésre kerül."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
-msgctxt "@info:title"
-msgid "Print error"
-msgstr "Nyomtatási hiba"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
-msgctxt "@info:text"
-msgid "Could not upload the data to the printer."
-msgstr "Nem sikerült feltölteni az adatokat a nyomtatóra."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
-msgctxt "@info:title"
-msgid "Network error"
-msgstr "Hálózati hiba"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
-#, python-brace-format
-msgctxt "@info:status"
-msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
-msgstr "A Cura olyan anyagprofilt észlel, amelyet még nem telepítettek a(z) {0} csoport gazdanyomtatójára."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
-msgctxt "@info:title"
-msgid "Sending materials to printer"
-msgstr "Anyagok küldése a nyomtatóra"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
-msgctxt "@info:status"
-msgid "Print job queue is full. The printer can't accept a new job."
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
-msgctxt "@info:title"
-msgid "Queue Full"
-msgstr ""
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
-msgctxt "@info:status"
-msgid "Print job was successfully sent to the printer."
-msgstr "A nyomtatási feladat sikeresen elküldésre került a nyomtatóra."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
-msgctxt "@info:title"
-msgid "Data Sent"
-msgstr "Adatok elküldve"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
-msgctxt "@info:status"
-msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
-msgstr "Olyan nyomtatóval próbál csatlakozni, amelyen nem fut az Ultimaker Connect. Kérjük, frissítse a nyomtatón a firmware-t."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
-msgctxt "@info:title"
-msgid "Update your printer"
-msgstr "Frissítse a nyomtatót"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
-msgctxt "@action:button Preceded by 'Ready to'."
-msgid "Print over network"
-msgstr "Hálózati nyomtatás"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
-msgctxt "@properties:tooltip"
-msgid "Print over network"
-msgstr "Hálózati nyomtatás"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
-msgctxt "@info:status"
-msgid "Connected over the network"
-msgstr "Csatlakozva hálózaton keresztül"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
-msgctxt "@action"
-msgid "Select upgrades"
-msgstr "Válassz frissítést"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
-msgctxt "@action"
-msgid "Level build plate"
-msgstr "Tárgyasztal szint"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
-msgctxt "@title:tab"
-msgid "Recommended"
-msgstr "Ajánlott"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
-msgctxt "@title:tab"
-msgid "Custom"
-msgstr "Egyedi"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
-#, python-brace-format
-msgctxt "@info:status Don't translate the XML tags or !"
-msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead."
-msgstr "A projekt fájl {0} egy ismeretlen {1} géptípust tartalmaz.Gépet nem lehet importálni. Importálj helyette modelleket."
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
-msgctxt "@info:title"
-msgid "Open Project File"
-msgstr "Projekt fájl megnyitása"
-
-#: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
-#, python-brace-format
-msgctxt "@info:error Don't translate the XML tags or !"
-msgid "Project file