mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-30 03:55:09 +08:00
Merge branch '2.1'
This commit is contained in:
commit
9b88f06970
@ -42,6 +42,14 @@ class ConvexHullJob(Job):
|
||||
# Don't use data below 0.
|
||||
# TODO; We need a better check for this as this gives poor results for meshes with long edges.
|
||||
vertex_data = vertex_data[vertex_data[:,1] >= 0]
|
||||
|
||||
# Round the vertex data to 1/10th of a mm, then remove all duplicate vertices
|
||||
# This is done to greatly speed up further convex hull calculations as the convex hull
|
||||
# becomes much less complex when dealing with highly detailed models.
|
||||
vertex_data = numpy.round(vertex_data, 1)
|
||||
duplicates = (vertex_data[:,0] == vertex_data[:,1]) | (vertex_data[:,1] == vertex_data[:,2]) | (vertex_data[:,0] == vertex_data[:,2])
|
||||
vertex_data = numpy.delete(vertex_data, numpy.where(duplicates), axis = 0)
|
||||
|
||||
hull = Polygon(vertex_data[:, [0, 2]])
|
||||
|
||||
# First, calculate the normal convex hull around the points
|
||||
|
@ -156,10 +156,10 @@ msgctxt "@label"
|
||||
msgid "Removable Drive Output Device Plugin"
|
||||
msgstr "Ausgabegerät-Plugin für Wechseldatenträger"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
#: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides removable drive hotplugging and writing support"
|
||||
msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben"
|
||||
msgid "Provides removable drive hotplugging and writing support."
|
||||
msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||
msgctxt "@item:inmenu"
|
||||
@ -171,10 +171,10 @@ msgctxt "@label"
|
||||
msgid "Changelog"
|
||||
msgstr "Änderungsprotokoll"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Shows changes since latest checked version"
|
||||
msgstr "Zeigt die Änderungen seit der letzten geprüften Version an"
|
||||
msgid "Shows changes since latest checked version."
|
||||
msgstr "Zeigt die Änderungen seit der letzten geprüften Version an."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||
msgctxt "@info:status"
|
||||
@ -192,20 +192,20 @@ msgctxt "@label"
|
||||
msgid "CuraEngine Backend"
|
||||
msgstr "CuraEngine Backend"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the link to the CuraEngine slicing backend"
|
||||
msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her"
|
||||
msgid "Provides the link to the CuraEngine slicing backend."
|
||||
msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||
msgctxt "@label"
|
||||
msgid "GCode Writer"
|
||||
msgstr "G-Code-Writer"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Writes GCode to a file"
|
||||
msgstr "Schreibt G-Code in eine Datei"
|
||||
msgid "Writes GCode to a file."
|
||||
msgstr "Schreibt G-Code in eine Datei."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||
msgctxt "@item:inlistbox"
|
||||
@ -1267,6 +1267,26 @@ msgctxt "@title:window"
|
||||
msgid "Open file"
|
||||
msgstr "Datei öffnen"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:102
|
||||
msgctxt "@action:inmenu menubar:profile"
|
||||
msgid "&Add Profile..."
|
||||
msgstr "&Profil hinzufügen ..."
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:66
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Italian"
|
||||
msgstr "Italienisch"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:67
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Dutch"
|
||||
msgstr "Niederländisch"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:68
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Spanish"
|
||||
msgstr "Spanisch"
|
||||
|
||||
msgctxt "@label"
|
||||
msgid "Variant:"
|
||||
msgstr "Variante:"
|
||||
@ -1291,18 +1311,10 @@ msgctxt "@item:inlistbox"
|
||||
msgid "Czech"
|
||||
msgstr "Tschechisch"
|
||||
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Italian"
|
||||
msgstr "Italienisch"
|
||||
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Russian"
|
||||
msgstr "Russisch"
|
||||
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Spanish"
|
||||
msgstr "Spanisch"
|
||||
|
||||
msgctxt "@label:textbox"
|
||||
msgid "Printjob Name"
|
||||
msgstr "Name des Druckauftrags"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -159,10 +159,10 @@ msgctxt "@label"
|
||||
msgid "Removable Drive Output Device Plugin"
|
||||
msgstr "Complemento de dispositivo de salida de unidad extraíble"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
#: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides removable drive hotplugging and writing support"
|
||||
msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble"
|
||||
msgid "Provides removable drive hotplugging and writing support."
|
||||
msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||
msgctxt "@item:inmenu"
|
||||
@ -174,10 +174,10 @@ msgctxt "@label"
|
||||
msgid "Changelog"
|
||||
msgstr "Registro de cambios"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Shows changes since latest checked version"
|
||||
msgstr "Muestra los cambios desde la última versión comprobada"
|
||||
msgid "Shows changes since latest checked version."
|
||||
msgstr "Muestra los cambios desde la última versión comprobada."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||
msgctxt "@info:status"
|
||||
@ -195,20 +195,20 @@ msgctxt "@label"
|
||||
msgid "CuraEngine Backend"
|
||||
msgstr "Backend de CuraEngine"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the link to the CuraEngine slicing backend"
|
||||
msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine"
|
||||
msgid "Provides the link to the CuraEngine slicing backend."
|
||||
msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||
msgctxt "@label"
|
||||
msgid "GCode Writer"
|
||||
msgstr "Escritor de GCode"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Writes GCode to a file"
|
||||
msgstr "Escribe GCode en un archivo"
|
||||
msgid "Writes GCode to a file."
|
||||
msgstr "Escribe GCode en un archivo."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||
msgctxt "@item:inlistbox"
|
||||
@ -1318,3 +1318,23 @@ msgstr "Ver"
|
||||
msgctxt "@title:window"
|
||||
msgid "Open file"
|
||||
msgstr "Abrir archivo"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:102
|
||||
msgctxt "@action:inmenu menubar:profile"
|
||||
msgid "&Add Profile..."
|
||||
msgstr "&Agregar perfil..."
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:66
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Italian"
|
||||
msgstr "Italiano"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:67
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Dutch"
|
||||
msgstr "Holandés"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:68
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Spanish"
|
||||
msgstr "Español"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -160,10 +160,10 @@ msgctxt "@label"
|
||||
msgid "Removable Drive Output Device Plugin"
|
||||
msgstr "Irrotettavan aseman tulostusvälineen lisäosa"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
#: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides removable drive hotplugging and writing support"
|
||||
msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista"
|
||||
msgid "Provides removable drive hotplugging and writing support."
|
||||
msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||
msgctxt "@item:inmenu"
|
||||
@ -175,10 +175,10 @@ msgctxt "@label"
|
||||
msgid "Changelog"
|
||||
msgstr "Muutosloki"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Shows changes since latest checked version"
|
||||
msgstr "Näyttää viimeisimmän tarkistetun version jälkeen tapahtuneet muutokset"
|
||||
msgid "Shows changes since latest checked version."
|
||||
msgstr "Näyttää viimeisimmän tarkistetun version jälkeen tapahtuneet muutokset."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||
msgctxt "@info:status"
|
||||
@ -196,20 +196,20 @@ msgctxt "@label"
|
||||
msgid "CuraEngine Backend"
|
||||
msgstr "CuraEngine-taustaosa"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the link to the CuraEngine slicing backend"
|
||||
msgstr "Linkki CuraEngine-viipalointiin taustalla"
|
||||
msgid "Provides the link to the CuraEngine slicing backend."
|
||||
msgstr "Linkki CuraEngine-viipalointiin taustalla."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||
msgctxt "@label"
|
||||
msgid "GCode Writer"
|
||||
msgstr "GCode-kirjoitin"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Writes GCode to a file"
|
||||
msgstr "Kirjoittaa GCodea tiedostoon"
|
||||
msgid "Writes GCode to a file."
|
||||
msgstr "Kirjoittaa GCodea tiedostoon."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||
msgctxt "@item:inlistbox"
|
||||
@ -1320,6 +1320,26 @@ msgctxt "@title:window"
|
||||
msgid "Open file"
|
||||
msgstr "Avaa tiedosto"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:102
|
||||
msgctxt "@action:inmenu menubar:profile"
|
||||
msgid "&Add Profile..."
|
||||
msgstr "&Lisää profiili..."
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:66
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Italian"
|
||||
msgstr "Italia"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:67
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Dutch"
|
||||
msgstr "Hollanti"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:68
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Spanish"
|
||||
msgstr "Espanja"
|
||||
|
||||
msgctxt "@label"
|
||||
msgid "Variant:"
|
||||
msgstr "Variantti:"
|
||||
@ -1344,18 +1364,10 @@ msgctxt "@item:inlistbox"
|
||||
msgid "Czech"
|
||||
msgstr "Tsekki"
|
||||
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Italian"
|
||||
msgstr "Italia"
|
||||
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Russian"
|
||||
msgstr "Venäjä"
|
||||
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Spanish"
|
||||
msgstr "Espanja"
|
||||
|
||||
msgctxt "@label:textbox"
|
||||
msgid "Printjob Name"
|
||||
msgstr "Tulostustyön nimi"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -155,10 +155,10 @@ msgctxt "@label"
|
||||
msgid "Removable Drive Output Device Plugin"
|
||||
msgstr "Plugin de périphérique de sortie sur disque amovible"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
#: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides removable drive hotplugging and writing support"
|
||||
msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible"
|
||||
msgid "Provides removable drive hotplugging and writing support."
|
||||
msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||
msgctxt "@item:inmenu"
|
||||
@ -170,10 +170,10 @@ msgctxt "@label"
|
||||
msgid "Changelog"
|
||||
msgstr "Récapitulatif des changements"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Shows changes since latest checked version"
|
||||
msgstr "Affiche les changements depuis la dernière version"
|
||||
msgid "Shows changes since latest checked version."
|
||||
msgstr "Affiche les changements depuis la dernière version."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||
msgctxt "@info:status"
|
||||
@ -190,20 +190,20 @@ msgctxt "@label"
|
||||
msgid "CuraEngine Backend"
|
||||
msgstr "Système CuraEngine"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the link to the CuraEngine slicing backend"
|
||||
msgstr "Fournit le lien vers le système de découpage CuraEngine"
|
||||
msgid "Provides the link to the CuraEngine slicing backend."
|
||||
msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||
msgctxt "@label"
|
||||
msgid "GCode Writer"
|
||||
msgstr "Générateur de GCode"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Writes GCode to a file"
|
||||
msgstr "Enregistre le GCode dans un fichier"
|
||||
msgid "Writes GCode to a file."
|
||||
msgstr "Enregistre le GCode dans un fichier."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||
msgctxt "@item:inlistbox"
|
||||
@ -600,6 +600,11 @@ msgctxt "@title:tab"
|
||||
msgid "Advanced"
|
||||
msgstr "Avancée"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:102
|
||||
msgctxt "@action:inmenu menubar:profile"
|
||||
msgid "&Add Profile..."
|
||||
msgstr "&Ajouter un profil..."
|
||||
|
||||
#: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:18
|
||||
msgctxt "@title:window"
|
||||
msgid "Add Printer"
|
||||
@ -1247,70 +1252,18 @@ msgctxt "@title:window"
|
||||
msgid "Open file"
|
||||
msgstr "Ouvrir un fichier"
|
||||
|
||||
#~ msgctxt "@label"
|
||||
#~ msgid "Variant:"
|
||||
#~ msgstr "Variante:"
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:66
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Italian"
|
||||
msgstr "Italien"
|
||||
|
||||
#~ msgctxt "@label"
|
||||
#~ msgid "Global Profile:"
|
||||
#~ msgstr "Globales Profil:"
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:67
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Dutch"
|
||||
msgstr "Néerlandais"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Heated printer bed (standard kit)"
|
||||
#~ msgstr "Heizbares Druckbett (Standard-Kit)"
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:68
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Spanish"
|
||||
msgstr "Espagnol"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Dual extrusion (experimental)"
|
||||
#~ msgstr "Dual-Extruder (experimental)"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Bulgarian"
|
||||
#~ msgstr "Bulgarisch"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Czech"
|
||||
#~ msgstr "Tschechisch"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Italian"
|
||||
#~ msgstr "Italienisch"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Russian"
|
||||
#~ msgstr "Russisch"
|
||||
|
||||
#~ msgctxt "@item:inlistbox"
|
||||
#~ msgid "Spanish"
|
||||
#~ msgstr "Spanisch"
|
||||
|
||||
#~ msgctxt "@label:textbox"
|
||||
#~ msgid "Printjob Name"
|
||||
#~ msgstr "Name des Druckauftrags"
|
||||
|
||||
#~ msgctxt "@label"
|
||||
#~ msgid "Sparse"
|
||||
#~ msgstr "Dünn"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Enable Skirt Adhesion"
|
||||
#~ msgstr "Activer l'Adhérence de Jupe"
|
||||
|
||||
#~ msgctxt "@option:check"
|
||||
#~ msgid "Enable Support"
|
||||
#~ msgstr "Stützstruktur aktivieren"
|
||||
|
||||
#~ msgctxt "@label:listbox"
|
||||
#~ msgid "Machine:"
|
||||
#~ msgstr "Gerät:"
|
||||
|
||||
#~ msgctxt "@title:menu"
|
||||
#~ msgid "&Machine"
|
||||
#~ msgstr "&Gerät"
|
||||
|
||||
#~ msgctxt "Save button tooltip"
|
||||
#~ msgid "Save to Disk"
|
||||
#~ msgstr "Auf Datenträger speichern"
|
||||
|
||||
#~ msgctxt "Message action tooltip, {0} is sdcard"
|
||||
#~ msgid "Eject SD Card {0}"
|
||||
#~ msgstr "SD-Karte auswerfen {0}"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -159,10 +159,10 @@ msgctxt "@label"
|
||||
msgid "Removable Drive Output Device Plugin"
|
||||
msgstr "Plugin dispositivo di output unità rimovibile"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
#: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides removable drive hotplugging and writing support"
|
||||
msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura"
|
||||
msgid "Provides removable drive hotplugging and writing support."
|
||||
msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||
msgctxt "@item:inmenu"
|
||||
@ -174,10 +174,10 @@ msgctxt "@label"
|
||||
msgid "Changelog"
|
||||
msgstr "Registro modifiche"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Shows changes since latest checked version"
|
||||
msgstr "Mostra le modifiche dall'ultima versione selezionata"
|
||||
msgid "Shows changes since latest checked version."
|
||||
msgstr "Mostra le modifiche dall'ultima versione selezionata."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||
msgctxt "@info:status"
|
||||
@ -195,20 +195,20 @@ msgctxt "@label"
|
||||
msgid "CuraEngine Backend"
|
||||
msgstr "Back-end CuraEngine"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the link to the CuraEngine slicing backend"
|
||||
msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine"
|
||||
msgid "Provides the link to the CuraEngine slicing backend."
|
||||
msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||
msgctxt "@label"
|
||||
msgid "GCode Writer"
|
||||
msgstr "Writer GCode"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Writes GCode to a file"
|
||||
msgstr "Scrive il GCode in un file"
|
||||
msgid "Writes GCode to a file."
|
||||
msgstr "Scrive il GCode in un file."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||
msgctxt "@item:inlistbox"
|
||||
@ -1318,3 +1318,23 @@ msgstr "Visualizza"
|
||||
msgctxt "@title:window"
|
||||
msgid "Open file"
|
||||
msgstr "Apri file"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:102
|
||||
msgctxt "@action:inmenu menubar:profile"
|
||||
msgid "&Add Profile..."
|
||||
msgstr "&Aggiungi profilo..."
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:66
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Italian"
|
||||
msgstr "Italiano"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:67
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Dutch"
|
||||
msgstr "Olandese"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:68
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Spanish"
|
||||
msgstr "Spagnolo"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -159,10 +159,10 @@ msgctxt "@label"
|
||||
msgid "Removable Drive Output Device Plugin"
|
||||
msgstr "Invoegtoepassing voor verwijderbaar uitvoerapparaat"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
#: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/__init__.py:14
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides removable drive hotplugging and writing support"
|
||||
msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations"
|
||||
msgid "Provides removable drive hotplugging and writing support."
|
||||
msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||
msgctxt "@item:inmenu"
|
||||
@ -174,10 +174,10 @@ msgctxt "@label"
|
||||
msgid "Changelog"
|
||||
msgstr "Wijzigingenlogboek"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Shows changes since latest checked version"
|
||||
msgstr "Dit logboek geeft de wijzigingen weer ten opzichte van de meest recente versie"
|
||||
msgid "Shows changes since latest checked version."
|
||||
msgstr "Geeft de wijzigingen weer ten opzichte van de laatst gecontroleerde versie."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||
msgctxt "@info:status"
|
||||
@ -195,20 +195,20 @@ msgctxt "@label"
|
||||
msgid "CuraEngine Backend"
|
||||
msgstr "CuraEngine-back-end"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Provides the link to the CuraEngine slicing backend"
|
||||
msgstr "Deze optie voorziet in de koppeling naar het slicing-back-end van de CuraEngine"
|
||||
msgid "Provides the link to the CuraEngine slicing backend."
|
||||
msgstr "Deze optie voorziet in de koppeling naar het slicing-back-end van de CuraEngine."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||
msgctxt "@label"
|
||||
msgid "GCode Writer"
|
||||
msgstr "G-code-schrijver"
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
#: /home/ruben/Projects/Cura/plugins/GCodeWriter/__init__.py:15
|
||||
msgctxt "@info:whatsthis"
|
||||
msgid "Writes GCode to a file"
|
||||
msgstr "Schrijft G-code naar een bestand"
|
||||
msgid "Writes GCode to a file."
|
||||
msgstr "Schrijft G-code naar een bestand."
|
||||
|
||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||
msgctxt "@item:inlistbox"
|
||||
@ -1318,3 +1318,23 @@ msgstr "Beeld"
|
||||
msgctxt "@title:window"
|
||||
msgid "Open file"
|
||||
msgstr "Bestand openen"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/Actions.qml:102
|
||||
msgctxt "@action:inmenu menubar:profile"
|
||||
msgid "&Add Profile..."
|
||||
msgstr "&Profiel toevoegen ..."
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:66
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Italian"
|
||||
msgstr "Italiaans"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:67
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Dutch"
|
||||
msgstr "Nederlands"
|
||||
|
||||
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:68
|
||||
msgctxt "@item:inlistbox"
|
||||
msgid "Spanish"
|
||||
msgstr "Spaans"
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user