mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-06-30 10:15:11 +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.
|
# Don't use data below 0.
|
||||||
# TODO; We need a better check for this as this gives poor results for meshes with long edges.
|
# 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]
|
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]])
|
hull = Polygon(vertex_data[:, [0, 2]])
|
||||||
|
|
||||||
# First, calculate the normal convex hull around the points
|
# First, calculate the normal convex hull around the points
|
||||||
|
@ -156,10 +156,10 @@ msgctxt "@label"
|
|||||||
msgid "Removable Drive Output Device Plugin"
|
msgid "Removable Drive Output Device Plugin"
|
||||||
msgstr "Ausgabegerät-Plugin für Wechseldatenträger"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides removable drive hotplugging and writing support"
|
msgid "Provides removable drive hotplugging and writing support."
|
||||||
msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben"
|
msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||||
msgctxt "@item:inmenu"
|
msgctxt "@item:inmenu"
|
||||||
@ -171,10 +171,10 @@ msgctxt "@label"
|
|||||||
msgid "Changelog"
|
msgid "Changelog"
|
||||||
msgstr "Änderungsprotokoll"
|
msgstr "Änderungsprotokoll"
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||||
msgctxt "@info:whatsthis"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Shows changes since latest checked version"
|
msgid "Shows changes since latest checked version."
|
||||||
msgstr "Zeigt die Änderungen seit der letzten geprüften Version an"
|
msgstr "Zeigt die Änderungen seit der letzten geprüften Version an."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
@ -192,20 +192,20 @@ msgctxt "@label"
|
|||||||
msgid "CuraEngine Backend"
|
msgid "CuraEngine Backend"
|
||||||
msgstr "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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides the link to the CuraEngine slicing backend"
|
msgid "Provides the link to the CuraEngine slicing backend."
|
||||||
msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her"
|
msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
msgid "GCode Writer"
|
msgid "GCode Writer"
|
||||||
msgstr "G-Code-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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Writes GCode to a file"
|
msgid "Writes GCode to a file."
|
||||||
msgstr "Schreibt G-Code in eine Datei"
|
msgstr "Schreibt G-Code in eine Datei."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
@ -1267,6 +1267,26 @@ msgctxt "@title:window"
|
|||||||
msgid "Open file"
|
msgid "Open file"
|
||||||
msgstr "Datei öffnen"
|
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"
|
msgctxt "@label"
|
||||||
msgid "Variant:"
|
msgid "Variant:"
|
||||||
msgstr "Variante:"
|
msgstr "Variante:"
|
||||||
@ -1291,18 +1311,10 @@ msgctxt "@item:inlistbox"
|
|||||||
msgid "Czech"
|
msgid "Czech"
|
||||||
msgstr "Tschechisch"
|
msgstr "Tschechisch"
|
||||||
|
|
||||||
msgctxt "@item:inlistbox"
|
|
||||||
msgid "Italian"
|
|
||||||
msgstr "Italienisch"
|
|
||||||
|
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
msgid "Russian"
|
msgid "Russian"
|
||||||
msgstr "Russisch"
|
msgstr "Russisch"
|
||||||
|
|
||||||
msgctxt "@item:inlistbox"
|
|
||||||
msgid "Spanish"
|
|
||||||
msgstr "Spanisch"
|
|
||||||
|
|
||||||
msgctxt "@label:textbox"
|
msgctxt "@label:textbox"
|
||||||
msgid "Printjob Name"
|
msgid "Printjob Name"
|
||||||
msgstr "Name des Druckauftrags"
|
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"
|
msgid "Removable Drive Output Device Plugin"
|
||||||
msgstr "Complemento de dispositivo de salida de unidad extraíble"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides removable drive hotplugging and writing support"
|
msgid "Provides removable drive hotplugging and writing support."
|
||||||
msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble"
|
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
|
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||||
msgctxt "@item:inmenu"
|
msgctxt "@item:inmenu"
|
||||||
@ -174,10 +174,10 @@ msgctxt "@label"
|
|||||||
msgid "Changelog"
|
msgid "Changelog"
|
||||||
msgstr "Registro de cambios"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Shows changes since latest checked version"
|
msgid "Shows changes since latest checked version."
|
||||||
msgstr "Muestra los cambios desde la última versión comprobada"
|
msgstr "Muestra los cambios desde la última versión comprobada."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
@ -195,20 +195,20 @@ msgctxt "@label"
|
|||||||
msgid "CuraEngine Backend"
|
msgid "CuraEngine Backend"
|
||||||
msgstr "Backend de CuraEngine"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides the link to the CuraEngine slicing backend"
|
msgid "Provides the link to the CuraEngine slicing backend."
|
||||||
msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine"
|
msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
msgid "GCode Writer"
|
msgid "GCode Writer"
|
||||||
msgstr "Escritor de GCode"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Writes GCode to a file"
|
msgid "Writes GCode to a file."
|
||||||
msgstr "Escribe GCode en un archivo"
|
msgstr "Escribe GCode en un archivo."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
@ -1318,3 +1318,23 @@ msgstr "Ver"
|
|||||||
msgctxt "@title:window"
|
msgctxt "@title:window"
|
||||||
msgid "Open file"
|
msgid "Open file"
|
||||||
msgstr "Abrir archivo"
|
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"
|
msgid "Removable Drive Output Device Plugin"
|
||||||
msgstr "Irrotettavan aseman tulostusvälineen lisäosa"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides removable drive hotplugging and writing support"
|
msgid "Provides removable drive hotplugging and writing support."
|
||||||
msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista"
|
msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||||
msgctxt "@item:inmenu"
|
msgctxt "@item:inmenu"
|
||||||
@ -175,10 +175,10 @@ msgctxt "@label"
|
|||||||
msgid "Changelog"
|
msgid "Changelog"
|
||||||
msgstr "Muutosloki"
|
msgstr "Muutosloki"
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||||
msgctxt "@info:whatsthis"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Shows changes since latest checked version"
|
msgid "Shows changes since latest checked version."
|
||||||
msgstr "Näyttää viimeisimmän tarkistetun version jälkeen tapahtuneet muutokset"
|
msgstr "Näyttää viimeisimmän tarkistetun version jälkeen tapahtuneet muutokset."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
@ -196,20 +196,20 @@ msgctxt "@label"
|
|||||||
msgid "CuraEngine Backend"
|
msgid "CuraEngine Backend"
|
||||||
msgstr "CuraEngine-taustaosa"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides the link to the CuraEngine slicing backend"
|
msgid "Provides the link to the CuraEngine slicing backend."
|
||||||
msgstr "Linkki CuraEngine-viipalointiin taustalla"
|
msgstr "Linkki CuraEngine-viipalointiin taustalla."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
msgid "GCode Writer"
|
msgid "GCode Writer"
|
||||||
msgstr "GCode-kirjoitin"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Writes GCode to a file"
|
msgid "Writes GCode to a file."
|
||||||
msgstr "Kirjoittaa GCodea tiedostoon"
|
msgstr "Kirjoittaa GCodea tiedostoon."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
@ -1320,6 +1320,26 @@ msgctxt "@title:window"
|
|||||||
msgid "Open file"
|
msgid "Open file"
|
||||||
msgstr "Avaa tiedosto"
|
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"
|
msgctxt "@label"
|
||||||
msgid "Variant:"
|
msgid "Variant:"
|
||||||
msgstr "Variantti:"
|
msgstr "Variantti:"
|
||||||
@ -1344,18 +1364,10 @@ msgctxt "@item:inlistbox"
|
|||||||
msgid "Czech"
|
msgid "Czech"
|
||||||
msgstr "Tsekki"
|
msgstr "Tsekki"
|
||||||
|
|
||||||
msgctxt "@item:inlistbox"
|
|
||||||
msgid "Italian"
|
|
||||||
msgstr "Italia"
|
|
||||||
|
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
msgid "Russian"
|
msgid "Russian"
|
||||||
msgstr "Venäjä"
|
msgstr "Venäjä"
|
||||||
|
|
||||||
msgctxt "@item:inlistbox"
|
|
||||||
msgid "Spanish"
|
|
||||||
msgstr "Espanja"
|
|
||||||
|
|
||||||
msgctxt "@label:textbox"
|
msgctxt "@label:textbox"
|
||||||
msgid "Printjob Name"
|
msgid "Printjob Name"
|
||||||
msgstr "Tulostustyön nimi"
|
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"
|
msgid "Removable Drive Output Device Plugin"
|
||||||
msgstr "Plugin de périphérique de sortie sur disque amovible"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides removable drive hotplugging and writing support"
|
msgid "Provides removable drive hotplugging and writing support."
|
||||||
msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible"
|
msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||||
msgctxt "@item:inmenu"
|
msgctxt "@item:inmenu"
|
||||||
@ -170,10 +170,10 @@ msgctxt "@label"
|
|||||||
msgid "Changelog"
|
msgid "Changelog"
|
||||||
msgstr "Récapitulatif des changements"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Shows changes since latest checked version"
|
msgid "Shows changes since latest checked version."
|
||||||
msgstr "Affiche les changements depuis la dernière version"
|
msgstr "Affiche les changements depuis la dernière version."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
@ -190,20 +190,20 @@ msgctxt "@label"
|
|||||||
msgid "CuraEngine Backend"
|
msgid "CuraEngine Backend"
|
||||||
msgstr "Système CuraEngine"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides the link to the CuraEngine slicing backend"
|
msgid "Provides the link to the CuraEngine slicing backend."
|
||||||
msgstr "Fournit le lien vers le système de découpage CuraEngine"
|
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
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
msgid "GCode Writer"
|
msgid "GCode Writer"
|
||||||
msgstr "Générateur de GCode"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Writes GCode to a file"
|
msgid "Writes GCode to a file."
|
||||||
msgstr "Enregistre le GCode dans un fichier"
|
msgstr "Enregistre le GCode dans un fichier."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
@ -600,6 +600,11 @@ msgctxt "@title:tab"
|
|||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Avancée"
|
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
|
#: /home/tamara/2.1/Cura/resources/qml/AddMachineWizard.qml:18
|
||||||
msgctxt "@title:window"
|
msgctxt "@title:window"
|
||||||
msgid "Add Printer"
|
msgid "Add Printer"
|
||||||
@ -1247,70 +1252,18 @@ msgctxt "@title:window"
|
|||||||
msgid "Open file"
|
msgid "Open file"
|
||||||
msgstr "Ouvrir un fichier"
|
msgstr "Ouvrir un fichier"
|
||||||
|
|
||||||
#~ msgctxt "@label"
|
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:66
|
||||||
#~ msgid "Variant:"
|
msgctxt "@item:inlistbox"
|
||||||
#~ msgstr "Variante:"
|
msgid "Italian"
|
||||||
|
msgstr "Italien"
|
||||||
|
|
||||||
#~ msgctxt "@label"
|
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:67
|
||||||
#~ msgid "Global Profile:"
|
msgctxt "@item:inlistbox"
|
||||||
#~ msgstr "Globales Profil:"
|
msgid "Dutch"
|
||||||
|
msgstr "Néerlandais"
|
||||||
|
|
||||||
#~ msgctxt "@option:check"
|
#: /home/ruben/Projects/Cura/resources/qml/GeneralPage.qml:68
|
||||||
#~ msgid "Heated printer bed (standard kit)"
|
msgctxt "@item:inlistbox"
|
||||||
#~ msgstr "Heizbares Druckbett (Standard-Kit)"
|
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"
|
msgid "Removable Drive Output Device Plugin"
|
||||||
msgstr "Plugin dispositivo di output unità rimovibile"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides removable drive hotplugging and writing support"
|
msgid "Provides removable drive hotplugging and writing support."
|
||||||
msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura"
|
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
|
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||||
msgctxt "@item:inmenu"
|
msgctxt "@item:inmenu"
|
||||||
@ -174,10 +174,10 @@ msgctxt "@label"
|
|||||||
msgid "Changelog"
|
msgid "Changelog"
|
||||||
msgstr "Registro modifiche"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Shows changes since latest checked version"
|
msgid "Shows changes since latest checked version."
|
||||||
msgstr "Mostra le modifiche dall'ultima versione selezionata"
|
msgstr "Mostra le modifiche dall'ultima versione selezionata."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
@ -195,20 +195,20 @@ msgctxt "@label"
|
|||||||
msgid "CuraEngine Backend"
|
msgid "CuraEngine Backend"
|
||||||
msgstr "Back-end CuraEngine"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides the link to the CuraEngine slicing backend"
|
msgid "Provides the link to the CuraEngine slicing backend."
|
||||||
msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine"
|
msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
msgid "GCode Writer"
|
msgid "GCode Writer"
|
||||||
msgstr "Writer GCode"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Writes GCode to a file"
|
msgid "Writes GCode to a file."
|
||||||
msgstr "Scrive il GCode in un file"
|
msgstr "Scrive il GCode in un file."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
@ -1318,3 +1318,23 @@ msgstr "Visualizza"
|
|||||||
msgctxt "@title:window"
|
msgctxt "@title:window"
|
||||||
msgid "Open file"
|
msgid "Open file"
|
||||||
msgstr "Apri 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"
|
msgid "Removable Drive Output Device Plugin"
|
||||||
msgstr "Invoegtoepassing voor verwijderbaar uitvoerapparaat"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides removable drive hotplugging and writing support"
|
msgid "Provides removable drive hotplugging and writing support."
|
||||||
msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations"
|
msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/ChangeLog.py:34
|
||||||
msgctxt "@item:inmenu"
|
msgctxt "@item:inmenu"
|
||||||
@ -174,10 +174,10 @@ msgctxt "@label"
|
|||||||
msgid "Changelog"
|
msgid "Changelog"
|
||||||
msgstr "Wijzigingenlogboek"
|
msgstr "Wijzigingenlogboek"
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
#: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/__init__.py:15
|
||||||
msgctxt "@info:whatsthis"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Shows changes since latest checked version"
|
msgid "Shows changes since latest checked version."
|
||||||
msgstr "Dit logboek geeft de wijzigingen weer ten opzichte van de meest recente versie"
|
msgstr "Geeft de wijzigingen weer ten opzichte van de laatst gecontroleerde versie."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
#: /home/tamara/2.1/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:124
|
||||||
msgctxt "@info:status"
|
msgctxt "@info:status"
|
||||||
@ -195,20 +195,20 @@ msgctxt "@label"
|
|||||||
msgid "CuraEngine Backend"
|
msgid "CuraEngine Backend"
|
||||||
msgstr "CuraEngine-back-end"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Provides the link to the CuraEngine slicing backend"
|
msgid "Provides the link to the CuraEngine slicing backend."
|
||||||
msgstr "Deze optie voorziet in de koppeling naar het slicing-back-end van de CuraEngine"
|
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
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:12
|
||||||
msgctxt "@label"
|
msgctxt "@label"
|
||||||
msgid "GCode Writer"
|
msgid "GCode Writer"
|
||||||
msgstr "G-code-schrijver"
|
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"
|
msgctxt "@info:whatsthis"
|
||||||
msgid "Writes GCode to a file"
|
msgid "Writes GCode to a file."
|
||||||
msgstr "Schrijft G-code naar een bestand"
|
msgstr "Schrijft G-code naar een bestand."
|
||||||
|
|
||||||
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
#: /home/tamara/2.1/Cura/plugins/GCodeWriter/__init__.py:22
|
||||||
msgctxt "@item:inlistbox"
|
msgctxt "@item:inlistbox"
|
||||||
@ -1318,3 +1318,23 @@ msgstr "Beeld"
|
|||||||
msgctxt "@title:window"
|
msgctxt "@title:window"
|
||||||
msgid "Open file"
|
msgid "Open file"
|
||||||
msgstr "Bestand openen"
|
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