mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-07-06 20:05:12 +08:00
Merge branch '4.11' of github.com:Ultimaker/Cura
This commit is contained in:
commit
b60ae92d60
@ -43,6 +43,10 @@ class KeyringAttribute:
|
||||
self._store_secure = False
|
||||
Logger.log("i", "Access to the keyring was denied.")
|
||||
return getattr(instance, self._name)
|
||||
except UnicodeDecodeError:
|
||||
self._store_secure = False
|
||||
Logger.log("w", "The password retrieved from the keyring cannot be used because it contains characters that cannot be decoded.")
|
||||
return getattr(instance, self._name)
|
||||
else:
|
||||
return getattr(instance, self._name)
|
||||
|
||||
|
15
plugins/DigitalLibrary/src/BackwardsCompatibleMessage.py
Normal file
15
plugins/DigitalLibrary/src/BackwardsCompatibleMessage.py
Normal file
@ -0,0 +1,15 @@
|
||||
# Copyright (c) 2021 Ultimaker B.V.
|
||||
# Cura is released under the terms of the LGPLv3 or higher.
|
||||
|
||||
from cura.CuraApplication import CuraApplication
|
||||
from UM.Message import Message
|
||||
from UM.Version import Version
|
||||
|
||||
def getBackwardsCompatibleMessage(text: str, title: str, lifetime: int, message_type_str: str) -> Message:
|
||||
if CuraApplication.getInstance().getAPIVersion() < Version("7.7.0"):
|
||||
return Message(text=text, title=title, lifetime=lifetime)
|
||||
else:
|
||||
message_type = Message.MessageType.NEUTRAL
|
||||
if ("MessageType." + message_type_str) in [str(item) for item in Message.MessageType]:
|
||||
message_type = Message.MessageType[message_type_str]
|
||||
return Message(text=text, title=title, lifetime=lifetime, message_type=message_type)
|
@ -14,6 +14,7 @@ from UM.Logger import Logger
|
||||
from UM.Message import Message
|
||||
from UM.Scene.SceneNode import SceneNode
|
||||
from cura.CuraApplication import CuraApplication
|
||||
from .BackwardsCompatibleMessage import getBackwardsCompatibleMessage
|
||||
from .DFLibraryFileUploadRequest import DFLibraryFileUploadRequest
|
||||
from .DFLibraryFileUploadResponse import DFLibraryFileUploadResponse
|
||||
from .DFPrintJobUploadRequest import DFPrintJobUploadRequest
|
||||
@ -69,11 +70,11 @@ class DFFileExportAndUploadManager:
|
||||
use_inactivity_timer = False
|
||||
)
|
||||
|
||||
self._generic_success_message = Message(
|
||||
self._generic_success_message = getBackwardsCompatibleMessage(
|
||||
text = "Your {} uploaded to '{}'.".format("file was" if len(self._file_upload_job_metadata) <= 1 else "files were", self._library_project_name),
|
||||
title = "Upload successful",
|
||||
lifetime = 0,
|
||||
message_type = Message.MessageType.POSITIVE
|
||||
message_type_str = "POSITIVE"
|
||||
)
|
||||
self._generic_success_message.addAction(
|
||||
"open_df_project",
|
||||
@ -217,11 +218,11 @@ class DFFileExportAndUploadManager:
|
||||
# Set the progress to 100% when the upload job fails, to avoid having the progress message stuck
|
||||
self._file_upload_job_metadata[filename]["upload_status"] = "failed"
|
||||
self._file_upload_job_metadata[filename]["upload_progress"] = 100
|
||||
self._file_upload_job_metadata[filename]["file_upload_failed_message"] = Message(
|
||||
self._file_upload_job_metadata[filename]["file_upload_failed_message"] = getBackwardsCompatibleMessage(
|
||||
text = "Failed to export the file '{}'. The upload process is aborted.".format(filename),
|
||||
title = "Export error",
|
||||
lifetime = 0,
|
||||
message_type = Message.MessageType.ERROR
|
||||
message_type_str = "ERROR"
|
||||
)
|
||||
self._on_upload_error()
|
||||
self._onFileUploadFinished(filename)
|
||||
@ -240,11 +241,11 @@ class DFFileExportAndUploadManager:
|
||||
self._file_upload_job_metadata[filename_3mf]["upload_progress"] = 100
|
||||
|
||||
human_readable_error = self.extractErrorTitle(reply_string)
|
||||
self._file_upload_job_metadata[filename_3mf]["file_upload_failed_message"] = Message(
|
||||
self._file_upload_job_metadata[filename_3mf]["file_upload_failed_message"] = getBackwardsCompatibleMessage(
|
||||
text = "Failed to upload the file '{}' to '{}'. {}".format(filename_3mf, self._library_project_name, human_readable_error),
|
||||
title = "File upload error",
|
||||
lifetime = 0,
|
||||
message_type = Message.MessageType.ERROR
|
||||
message_type_str = "ERROR"
|
||||
)
|
||||
self._on_upload_error()
|
||||
self._onFileUploadFinished(filename_3mf)
|
||||
@ -263,11 +264,11 @@ class DFFileExportAndUploadManager:
|
||||
self._file_upload_job_metadata[filename_ufp]["upload_progress"] = 100
|
||||
|
||||
human_readable_error = self.extractErrorTitle(reply_string)
|
||||
self._file_upload_job_metadata[filename_ufp]["file_upload_failed_message"] = Message(
|
||||
self._file_upload_job_metadata[filename_ufp]["file_upload_failed_message"] = getBackwardsCompatibleMessage(
|
||||
title = "File upload error",
|
||||
text = "Failed to upload the file '{}' to '{}'. {}".format(filename_ufp, self._library_project_name, human_readable_error),
|
||||
lifetime = 0,
|
||||
message_type = Message.MessageType.ERROR
|
||||
message_type_str = "ERROR"
|
||||
)
|
||||
self._on_upload_error()
|
||||
self._onFileUploadFinished(filename_ufp)
|
||||
@ -300,11 +301,11 @@ class DFFileExportAndUploadManager:
|
||||
self._file_upload_job_metadata[filename]["upload_status"] = "failed"
|
||||
self._file_upload_job_metadata[filename]["upload_progress"] = 100
|
||||
human_readable_error = self.extractErrorTitle(reply_string)
|
||||
self._file_upload_job_metadata[filename]["file_upload_failed_message"] = Message(
|
||||
self._file_upload_job_metadata[filename]["file_upload_failed_message"] = getBackwardsCompatibleMessage(
|
||||
title = "File upload error",
|
||||
text = "Failed to upload the file '{}' to '{}'. {}".format(self._file_name, self._library_project_name, human_readable_error),
|
||||
lifetime = 0,
|
||||
message_type = Message.MessageType.ERROR
|
||||
message_type_str = "ERROR"
|
||||
)
|
||||
|
||||
self._on_upload_error()
|
||||
@ -337,17 +338,17 @@ class DFFileExportAndUploadManager:
|
||||
"upload_progress" : -1,
|
||||
"upload_status" : "",
|
||||
"file_upload_response": None,
|
||||
"file_upload_success_message": Message(
|
||||
"file_upload_success_message": getBackwardsCompatibleMessage(
|
||||
text = "'{}' was uploaded to '{}'.".format(filename_3mf, self._library_project_name),
|
||||
title = "Upload successful",
|
||||
lifetime = 0,
|
||||
message_type = Message.MessageType.POSITIVE
|
||||
message_type_str = "POSITIVE"
|
||||
),
|
||||
"file_upload_failed_message": Message(
|
||||
"file_upload_failed_message": getBackwardsCompatibleMessage(
|
||||
text = "Failed to upload the file '{}' to '{}'.".format(filename_3mf, self._library_project_name),
|
||||
title = "File upload error",
|
||||
lifetime = 0,
|
||||
message_type = Message.MessageType.ERROR
|
||||
message_type_str = "ERROR"
|
||||
)
|
||||
}
|
||||
job_3mf = ExportFileJob(self._file_handlers["3mf"], self._nodes, self._file_name, "3mf")
|
||||
@ -361,17 +362,17 @@ class DFFileExportAndUploadManager:
|
||||
"upload_progress" : -1,
|
||||
"upload_status" : "",
|
||||
"file_upload_response": None,
|
||||
"file_upload_success_message": Message(
|
||||
"file_upload_success_message": getBackwardsCompatibleMessage(
|
||||
text = "'{}' was uploaded to '{}'.".format(filename_ufp, self._library_project_name),
|
||||
title = "Upload successful",
|
||||
lifetime = 0,
|
||||
message_type = Message.MessageType.POSITIVE
|
||||
message_type_str = "POSITIVE"
|
||||
),
|
||||
"file_upload_failed_message": Message(
|
||||
"file_upload_failed_message": getBackwardsCompatibleMessage(
|
||||
text = "Failed to upload the file '{}' to '{}'.".format(filename_ufp, self._library_project_name),
|
||||
title = "File upload error",
|
||||
lifetime = 0,
|
||||
message_type = Message.MessageType.ERROR
|
||||
message_type_str = "ERROR"
|
||||
)
|
||||
}
|
||||
job_ufp = ExportFileJob(self._file_handlers["ufp"], self._nodes, self._file_name, "ufp")
|
||||
|
@ -23,6 +23,7 @@ from UM.TaskManagement.HttpRequestManager import HttpRequestManager
|
||||
from cura.API import Account
|
||||
from cura.CuraApplication import CuraApplication
|
||||
from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope
|
||||
from .BackwardsCompatibleMessage import getBackwardsCompatibleMessage
|
||||
from .DFFileExportAndUploadManager import DFFileExportAndUploadManager
|
||||
from .DigitalFactoryApiClient import DigitalFactoryApiClient
|
||||
from .DigitalFactoryFileModel import DigitalFactoryFileModel
|
||||
@ -527,11 +528,11 @@ class DigitalFactoryController(QObject):
|
||||
except IOError as ex:
|
||||
Logger.logException("e", "Can't write Digital Library file {0}/{1} download to temp-directory {2}.",
|
||||
ex, project_name, file_name, temp_dir)
|
||||
Message(
|
||||
getBackwardsCompatibleMessage(
|
||||
text = "Failed to write to temporary file for '{}'.".format(file_name),
|
||||
title = "File-system error",
|
||||
lifetime = 10,
|
||||
message_type=Message.MessageType.ERROR
|
||||
message_type_str="ERROR"
|
||||
).show()
|
||||
return
|
||||
|
||||
@ -542,11 +543,11 @@ class DigitalFactoryController(QObject):
|
||||
f = file_name) -> None:
|
||||
progress_message.hide()
|
||||
Logger.error("An error {0} {1} occurred while downloading {2}/{3}".format(str(error), str(reply), p, f))
|
||||
Message(
|
||||
getBackwardsCompatibleMessage(
|
||||
text = "Failed Digital Library download for '{}'.".format(f),
|
||||
title = "Network error {}".format(error),
|
||||
lifetime = 10,
|
||||
message_type=Message.MessageType.ERROR
|
||||
message_type_str="ERROR"
|
||||
).show()
|
||||
|
||||
download_manager = HttpRequestManager.getInstance()
|
||||
@ -591,10 +592,10 @@ class DigitalFactoryController(QObject):
|
||||
|
||||
if filename == "":
|
||||
Logger.log("w", "The file name cannot be empty.")
|
||||
Message(text = "Cannot upload file with an empty name to the Digital Library",
|
||||
getBackwardsCompatibleMessage(text = "Cannot upload file with an empty name to the Digital Library",
|
||||
title = "Empty file name provided",
|
||||
lifetime = 0,
|
||||
message_type = Message.MessageType.ERROR).show()
|
||||
message_type_str = "ERROR").show()
|
||||
return
|
||||
|
||||
self._saveFileToSelectedProjectHelper(filename, formats)
|
||||
|
@ -651,8 +651,11 @@ class Toolbox(QObject, Extension):
|
||||
self.resetDownload()
|
||||
|
||||
if reply.attribute(QNetworkRequest.HttpStatusCodeAttribute) != 200:
|
||||
Logger.log("w", "Failed to download package. The following error was returned: %s",
|
||||
json.loads(reply.readAll().data().decode("utf-8")))
|
||||
try:
|
||||
reply_error = json.loads(reply.readAll().data().decode("utf-8"))
|
||||
except Exception as e:
|
||||
reply_error = str(e)
|
||||
Logger.log("w", "Failed to download package. The following error was returned: %s", reply_error)
|
||||
return
|
||||
# Must not delete the temporary file on Windows
|
||||
self._temp_plugin_file = tempfile.NamedTemporaryFile(mode = "w+b", suffix = ".curapackage", delete = False)
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2020-02-20 17:30+0100\n"
|
||||
"Last-Translator: DenyCZ <www.github.com/DenyCZ>\n"
|
||||
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
||||
|
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-04 19:37+0200\n"
|
||||
"Last-Translator: Miroslav Šustek <sustmidown@centrum.cz>\n"
|
||||
"Language-Team: DenyCZ <www.github.com/DenyCZ>\n"
|
||||
@ -685,8 +685,8 @@ msgstr "Kroků za milimetr (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "Kolik kroků krokových motorů vyústí v jeden milimetr vytlačování."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1433,6 +1433,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Propojte horní / dolní povrchové cesty tam, kde běží vedle sebe. Pro soustředné uspořádání umožňující toto nastavení výrazně zkracuje dobu cestování, ale protože se spojení může uskutečnit uprostřed výplně, může tato funkce snížit kvalitu povrchu."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1503,6 +1513,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zig Zag"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -5301,6 +5321,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zig Zag"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6400,6 +6430,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 "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "Kolik kroků krokových motorů vyústí v jeden milimetr vytlačování."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "Pokud nenulové, pohyby combingového pohybu, které jsou delší než tato vzdálenost, použijí zatažení."
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:15+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: German\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:16+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: German <info@lionbridge.com>, German <info@bothof.nl>\n"
|
||||
@ -686,8 +686,8 @@ msgstr "Schritte pro Millimeter (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Extrusion führen."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1434,6 +1434,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Außenhaut-Pfade oben/unten verbinden, wenn sie nebeneinander laufen. Bei konzentrischen Mustern reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich. Da die Verbindungen jedoch auf halbem Weg über der Füllung erfolgen können, kann diese Funktion die Oberflächenqualität reduzieren."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1504,6 +1514,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zickzack"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -3201,8 +3221,7 @@ msgstr "Max. Kammentfernung ohne Einziehen"
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing_max_distance description"
|
||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es"
|
||||
" keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht."
|
||||
msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_retract_before_outer_wall label"
|
||||
@ -5303,6 +5322,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zickzack"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6402,6 +6431,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 "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Extrusion führen."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "Bei Nicht-Null verwenden die Combing-Fahrbewegungen, die länger als die Distanz sind, die Einziehfunktion."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Spanish\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:15+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Spanish <info@lionbridge.com>, Spanish <info@bothof.nl>\n"
|
||||
@ -686,8 +686,8 @@ msgstr "Pasos por milímetro (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección E."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1434,6 +1434,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Conecta las trayectorias de forro superior/inferior cuando están próximas entre sí. Al habilitar este ajuste, en el patrón concéntrico se reduce considerablemente el tiempo de desplazamiento, pero las conexiones pueden producirse en mitad del relleno, con lo que bajaría la calidad de la superficie superior."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1504,6 +1514,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zigzag"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -3201,8 +3221,7 @@ msgstr "Distancia de peinada máxima sin retracción"
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing_max_distance description"
|
||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero,"
|
||||
" no hay un máximo y los movimientos de peinada no utilizarán la retracción."
|
||||
msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_retract_before_outer_wall label"
|
||||
@ -5303,6 +5322,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zigzag"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6402,6 +6431,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 "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección E."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "Si no es cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción."
|
||||
|
@ -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-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
|
@ -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-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE\n"
|
||||
@ -744,8 +744,8 @@ msgstr ""
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid ""
|
||||
"How many steps of the stepper motors will result in one millimeter of "
|
||||
"extrusion."
|
||||
"How many steps of the stepper motors will result in moving the feeder wheel "
|
||||
"by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
@ -1604,6 +1604,19 @@ msgid ""
|
||||
"reduce the top surface quality."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid ""
|
||||
"Print top/bottom lines in an ordering that causes them to always overlap "
|
||||
"with adjacent lines in a single direction. This takes slightly more time to "
|
||||
"print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1694,6 +1707,19 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid ""
|
||||
"Print ironing lines in an ordering that causes them to always overlap with "
|
||||
"adjacent lines in a single direction. This takes slightly more time to "
|
||||
"print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -6164,6 +6190,19 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid ""
|
||||
"Print top surface lines in an ordering that causes them to always overlap "
|
||||
"with adjacent lines in a single direction. This takes slightly more time to "
|
||||
"print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2017-08-11 14:31+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2017-09-27 12:27+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Finnish\n"
|
||||
@ -681,7 +681,7 @@ msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
@ -1429,6 +1429,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1499,6 +1509,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Siksak"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -5293,6 +5313,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Siksak"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:16+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: French\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:16+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: French <info@lionbridge.com>, French <info@bothof.nl>\n"
|
||||
@ -686,8 +686,8 @@ msgstr "Pas par millimètre (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "Nombre de pas du moteur pas à pas correspondant à une extrusion d'un millimètre."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1434,6 +1434,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Relier les voies de couche extérieure supérieures / inférieures lorsqu'elles sont côte à côte. Pour le motif concentrique, ce paramètre réduit considérablement le temps de parcours, mais comme les liens peuvent se trouver à mi-chemin sur le remplissage, cette fonctionnalité peut réduire la qualité de la surface supérieure."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1504,6 +1514,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zig Zag"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -3201,8 +3221,7 @@ msgstr "Distance de détour max. sans rétraction"
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing_max_distance description"
|
||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est"
|
||||
" définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction."
|
||||
msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_retract_before_outer_wall label"
|
||||
@ -5303,6 +5322,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zig Zag"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6402,6 +6431,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 "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "Nombre de pas du moteur pas à pas correspondant à une extrusion d'un millimètre."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "Lorsque cette distance n'est pas nulle, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2020-03-24 09:27+0100\n"
|
||||
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
||||
"Language-Team: AT-VLOG\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2020-03-24 09:43+0100\n"
|
||||
"Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
|
||||
"Language-Team: AT-VLOG\n"
|
||||
@ -687,8 +687,8 @@ msgstr "Lépés per milliméter (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen a nyomtatószál adagolásakor."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1435,6 +1435,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Az alsó/felső rétegpályákat kapcsolja össze, ahol egymás mellett futnak.Ha ezt a beállítást engedélyezzük a körkörös mintázatnál, jelentősen csökkenthetjük a fej átemelési időt, mivel a kapcsolódások félúton terténhetnek meg. Ez azonban ronthatja a felső felület minőségét."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1505,6 +1515,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Cikcakk"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -5303,6 +5323,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Cikcakk"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6400,6 +6430,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "A modellre alkalmazandó átalakítási mátrix, amikor azt fájlból tölti be."
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen a nyomtatószál adagolásakor."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "Ha ez az érték nem nulla, akkor a megadott értéktől hosszabb utazáskor nyomtatószál visszahúzás fog történni."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 14:58+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Italian\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 14:58+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Italian <info@lionbridge.com>, Italian <info@bothof.nl>\n"
|
||||
@ -686,8 +686,8 @@ msgstr "Passi per millimetro (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "I passi del motore passo-passo in un millimetro di estrusione."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1434,6 +1434,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Collega i percorsi del rivestimento esterno superiore/inferiore quando corrono uno accanto all’altro. Per le configurazioni concentriche, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento, tuttavia poiché i collegamenti possono aver luogo a metà del riempimento, con questa funzione la qualità della superficie superiore potrebbe risultare inferiore."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1504,6 +1514,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zig Zag"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -3201,8 +3221,7 @@ msgstr "Massima distanza di combing senza retrazione"
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing_max_distance description"
|
||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato"
|
||||
" è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione."
|
||||
msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_retract_before_outer_wall label"
|
||||
@ -5303,6 +5322,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zig Zag"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6402,6 +6431,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Matrice di rotazione da applicare al modello quando caricato dal file."
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "I passi del motore passo-passo in un millimetro di estrusione."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "Per un valore diverso da zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 14:59+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Japanese\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:00+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Japanese <info@lionbridge.com>, Japanese <info@bothof.nl>\n"
|
||||
@ -715,8 +715,8 @@ msgstr "ミリメートルあたりのステップ (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "1 ミリメートルの押出でステップモーターが行うステップの数を示します。"
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1487,6 +1487,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1561,6 +1571,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "ジグザグ"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
# msgstr "ジグザグ"
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
@ -5432,6 +5452,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "ジグザグ"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
# msgstr "ジグザグ"
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
@ -6535,6 +6565,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。"
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "1 ミリメートルの押出でステップモーターが行うステップの数を示します。"
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "ゼロ以外の場合、この距離より移動量が多い場合は、引き戻しを使用します。"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:01+0200\n"
|
||||
"Last-Translator: Korean <info@bothof.nl>\n"
|
||||
"Language-Team: Jinbum Kim <Jinbuhm.Kim@gmail.com>, Korean <info@bothof.nl>\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:02+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Korean <info@lionbridge.com>, Jinbum Kim <Jinbuhm.Kim@gmail.com>, Korean <info@bothof.nl>\n"
|
||||
@ -687,8 +687,8 @@ msgstr "밀리미터 당 스텝 수 (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1435,6 +1435,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "스킨 경로가 나란히 이어지는 상단/하단 스킨 경로를 연결합니다. 동심원 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소하지만, 내부채움의 중간에 연결될 수 있기 때문에 이 기능은 상단 표면 품질을 저하시킬 수 있습니다."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1505,6 +1515,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "지그재그"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -5303,6 +5323,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "지그재그"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6400,6 +6430,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다."
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "0이 아닌 경우 이 거리보다 긴 빗질 이동은 후퇴를 사용합니다."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:03+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Dutch\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:03+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Dutch <info@lionbridge.com>, Dutch <info@bothof.nl>\n"
|
||||
@ -686,8 +686,8 @@ msgstr "Stappen per millimeter (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een doorvoer van één millimeter."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1434,6 +1434,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Verbind skinpaden aan de boven-/onderkant waar ze naast elkaar lopen. Met deze instelling wordt bij concentrische patronen de bewegingstijd aanzienlijk verkort. Dit kan echter ten koste gaan van de kwaliteit van de bovenste laag aangezien de verbindingen in het midden van de vulling kunnen komen te liggen."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1504,6 +1514,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zigzag"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -3201,8 +3221,7 @@ msgstr "Max. combing-afstand zonder intrekken"
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing_max_distance description"
|
||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum"
|
||||
" en vindt bij combing-bewegingen geen intrekking plaats."
|
||||
msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_retract_before_outer_wall label"
|
||||
@ -5303,6 +5322,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zigzag"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6402,6 +6431,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Omzettingsmatrix die moet worden toegepast op het model wanneer dit wordt geladen vanuit een bestand."
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een doorvoer van één millimeter."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "Wanneer dit niet nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Mariusz 'Virgin71' Matłosz <matliks@gmail.com>\n"
|
||||
"Language-Team: reprapy.pl\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2019-11-15 15:34+0100\n"
|
||||
"Last-Translator: Mariusz Matłosz <matliks@gmail.com>\n"
|
||||
"Language-Team: Mariusz Matłosz <matliks@gmail.com>, reprapy.pl\n"
|
||||
@ -686,8 +686,8 @@ msgstr "Kroki na milimetr (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "Ile kroków silnika krokowego będzie skutkowało ekstruzją 1mm."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1434,6 +1434,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Połącz górne/dolne ścieżki, które przebiegają koło siebie. Włączenie tej opcji powoduje ograniczenie czasu ruchów jałowych dla wzorca koncentrycznego, ale ze względu na możliwość pojawienia się połączeń w połowie ścieżki wypełnienia, opcja ta może obniżyć jakość górnego wykończenia."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1504,6 +1514,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zygzak"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -5302,6 +5322,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zygzak"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6401,6 +6431,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Forma przesunięcia, która ma być zastosowana do modelu podczas ładowania z pliku."
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "Ile kroków silnika krokowego będzie skutkowało ekstruzją 1mm."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "Przy wartości niezerowej, kombinowane ruchy jałowe o dystansie większym niż zadany bedą używały retrakcji."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-11 17:09+0200\n"
|
||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-06-19 06:31+0200\n"
|
||||
"Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
"Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
|
||||
@ -687,8 +687,8 @@ msgstr "Passos por Milímetro (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1435,6 +1435,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1505,6 +1515,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Ziguezague"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -5303,6 +5323,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Ziguezague"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6402,6 +6432,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento do arquivo."
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 14:56+0200\n"
|
||||
"Last-Translator: Portuguese <info@bothof.nl>\n"
|
||||
"Language-Team: Paulo Miranda <av@utopica3d.com>, Portuguese <info@bothof.nl>\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 14:56+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Portuguese <info@lionbridge.com>, Paulo Miranda <av@utopica3d.com>, Portuguese <info@bothof.nl>\n"
|
||||
@ -691,8 +691,8 @@ msgstr "Passos por Milímetro (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "O numero de passos dos motores de passos (stepper motors) que irão resultar em um milímetro de extrusão."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1479,6 +1479,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Ligar caminhos de revestimento superiores/inferiores quando as trajetórias são paralelas. Para o padrão concêntrico, ativar esta definição reduz consideravelmente o tempo de deslocação mas, uma vez que as ligações podem suceder num ponto intermediário sobre o enchimento, esta funcionalidade pode reduzir a qualidade da superfície superior."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1553,6 +1563,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Ziguezague"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -3305,8 +3325,7 @@ msgstr "Distância Max. de Combing sem Retração"
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing_max_distance description"
|
||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido"
|
||||
" como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações."
|
||||
msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_retract_before_outer_wall label"
|
||||
@ -5455,6 +5474,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Ziguezague"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6568,6 +6597,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Matriz de transformação a ser aplicada ao modelo quando abrir o ficheiro."
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "O numero de passos dos motores de passos (stepper motors) que irão resultar em um milímetro de extrusão."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 14:58+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Ruslan Popov <ruslan.popov@gmail.com>, Russian <info@bothof.nl>\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 14:58+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Russian <info@lionbridge.com>, Ruslan Popov <ruslan.popov@gmail.com>, Russian <info@bothof.nl>\n"
|
||||
@ -687,8 +687,8 @@ msgstr "Количество шагов на миллиметр (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "Количество шагов шаговых двигателей, приводящее к экструзии на один миллиметр."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1435,6 +1435,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней поверхности."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1505,6 +1515,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Зигзаг"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -3202,8 +3222,7 @@ msgstr "Макс. расстояние комб. без отката"
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing_max_distance description"
|
||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю,"
|
||||
" то максимума нет и перемещения комбинга выполняются без отката."
|
||||
msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_retract_before_outer_wall label"
|
||||
@ -5304,6 +5323,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Зигзаг"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6403,6 +6432,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла."
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "Количество шагов шаговых двигателей, приводящее к экструзии на один миллиметр."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "При ненулевом значении перемещения комбинга, превышающие указанное расстояние, будут выполняться с откатом."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:03+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: Turkish\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:03+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Turkish <info@lionbridge.com>, Turkish <info@bothof.nl>\n"
|
||||
@ -686,8 +686,8 @@ msgstr "Milimetre Başına Adım (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "Kademeli motorun kaç adımının, bir milimetre ekstruzyon ile sonuçlanacağı."
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1434,6 +1434,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "Üst/alt yüzey yollarını yan yana ise bağla. Eş merkezli şekil için bu ayarı etkinleştirmek, hareket süresini önemli ölçüde kısaltır ancak bağlantılar dolgunun üzerinde meydana gelebileceğinden bu özellik üst yüzeyin kalitesini düşürebilir."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1504,6 +1514,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zikzak"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -3201,8 +3221,7 @@ msgstr "Geri Çekmesiz Maks. Tarama Mesafesi"
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "retraction_combing_max_distance description"
|
||||
msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
|
||||
msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde"
|
||||
" geri çekme kullanılmaz."
|
||||
msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz."
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "travel_retract_before_outer_wall label"
|
||||
@ -5303,6 +5322,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "Zikzak"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6402,6 +6431,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "Modeli dosyadan indirirken modele uygulanacak olan dönüşüm matrisi."
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "Kademeli motorun kaç adımının, bir milimetre ekstruzyon ile sonuçlanacağı."
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "Sıfır olmadığında, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2019-03-13 14:00+0200\n"
|
||||
"Last-Translator: Bothof <info@bothof.nl>\n"
|
||||
"Language-Team: PCDotFan <pc@edu.ax>, Bothof <info@bothof.nl>\n"
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 15:04+0200\n"
|
||||
"Last-Translator: Lionbridge <info@lionbridge.com>\n"
|
||||
"Language-Team: Chinese <info@lionbridge.com>, PCDotFan <pc@edu.ax>, Chinese <info@bothof.nl>\n"
|
||||
@ -687,8 +687,8 @@ msgstr "每毫米步数 (E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "步进电机前进多少步将导致挤出一毫米。"
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1435,6 +1435,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1505,6 +1515,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "锯齿形"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -5303,6 +5323,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "锯齿形"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6402,6 +6432,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。"
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "步进电机前进多少步将导致挤出一毫米。"
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "当非零的时候,梳理比这段距离更长的旅行移动将会使用撤回。"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-04-16 20:13+0200\n"
|
||||
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
|
||||
"Language-Team: Valen Chang <carf17771@gmail.com>/Zhang Heh Ji <dinowchang@gmail.com>\n"
|
||||
|
@ -5,9 +5,9 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cura 4.10\n"
|
||||
"Project-Id-Version: Cura 4.11\n"
|
||||
"Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
|
||||
"POT-Creation-Date: 2021-06-10 17:35+0000\n"
|
||||
"POT-Creation-Date: 2021-08-11 09:58+0000\n"
|
||||
"PO-Revision-Date: 2021-06-14 16:21+0800\n"
|
||||
"Last-Translator: Valen Chang <carf17771@gmail.com>\n"
|
||||
"Language-Team: Valen Chang <carf17771@gmail.com>/Zhang Heh Ji <dinowchang@gmail.com>\n"
|
||||
@ -687,8 +687,8 @@ msgstr "每毫米的步數(E)"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_steps_per_mm_e description"
|
||||
msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
msgstr "擠出機移動一毫米時,步進馬達所需移動的步數。"
|
||||
msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "machine_endstop_positive_direction_x label"
|
||||
@ -1435,6 +1435,16 @@ msgctxt "connect_skin_polygons description"
|
||||
msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
|
||||
msgstr "將頂部/底部表層路徑相鄰的位置連接。同心模式時啟用此設定,可以大大地減少移動時間。但因連接可能碰巧在途中跨越填充,所以此功能可能會降低頂部表層的品質。"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic label"
|
||||
msgid "Monotonic Top/Bottom Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_monotonic description"
|
||||
msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "skin_angles label"
|
||||
msgid "Top/Bottom Line Directions"
|
||||
@ -1505,6 +1515,16 @@ msgctxt "ironing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "鋸齒狀"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic label"
|
||||
msgid "Monotonic Ironing Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_monotonic description"
|
||||
msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "ironing_line_spacing label"
|
||||
msgid "Ironing Line Spacing"
|
||||
@ -5303,6 +5323,16 @@ msgctxt "roofing_pattern option zigzag"
|
||||
msgid "Zig Zag"
|
||||
msgstr "鋸齒狀"
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic label"
|
||||
msgid "Monotonic Top Surface Order"
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_monotonic description"
|
||||
msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
|
||||
msgstr ""
|
||||
|
||||
#: fdmprinter.def.json
|
||||
msgctxt "roofing_angles label"
|
||||
msgid "Top Surface Skin Line Directions"
|
||||
@ -6402,6 +6432,10 @@ msgctxt "mesh_rotation_matrix description"
|
||||
msgid "Transformation matrix to be applied to the model when loading it from file."
|
||||
msgstr "在將模型從檔案中載入時套用在模型上的轉換矩陣。"
|
||||
|
||||
#~ msgctxt "machine_steps_per_mm_e description"
|
||||
#~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
|
||||
#~ msgstr "擠出機移動一毫米時,步進馬達所需移動的步數。"
|
||||
|
||||
#~ msgctxt "retraction_combing_max_distance description"
|
||||
#~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
|
||||
#~ msgstr "當此值不為 0 時,在梳理模式空跑超過此距離時,會啟用回抽。"
|
||||
|
Loading…
x
Reference in New Issue
Block a user