mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-08-08 16:58:19 +03:00
Compare commits
63 Commits
dependabot
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
af9fd10d7a | ||
|
|
74aed7a2bb | ||
|
|
8bff9aaf32 | ||
|
|
83723e2a7b | ||
|
|
e2fd46f82c | ||
|
|
b216813bf0 | ||
|
|
b3296fa199 | ||
|
|
6d9a9eeb04 | ||
|
|
8e243faa3a | ||
|
|
b5412221b6 | ||
|
|
f444176df8 | ||
|
|
a684c6daf6 | ||
|
|
7f10c73dce | ||
|
|
945520b827 | ||
|
|
b281c91b99 | ||
|
|
b57d7a67e2 | ||
|
|
18ca06ec6b | ||
|
|
32a4e0fb37 | ||
|
|
f9ed5843c0 | ||
|
|
7c73739e1a | ||
|
|
aa4e28b2b5 | ||
|
|
408db4b3b0 | ||
|
|
b97ca3c0ac | ||
|
|
f73566dd2b | ||
|
|
7fbfb7ba87 | ||
|
|
23bd320076 | ||
|
|
a10d9e77cf | ||
|
|
1d023216f2 | ||
|
|
dc2796209f | ||
|
|
194ef34080 | ||
|
|
4e1caa39eb | ||
|
|
38f5c84e7f | ||
|
|
4d8ce0e8a7 | ||
|
|
38cb1ae8d1 | ||
|
|
32f82b64e7 | ||
|
|
e56d7aeb80 | ||
|
|
4758dc6c68 | ||
|
|
596cbb8b2d | ||
|
|
6312caaf13 | ||
|
|
0051768206 | ||
|
|
1d078e005a | ||
|
|
82759d3899 | ||
|
|
59155f26ac | ||
|
|
79dcace1ac | ||
|
|
8dfc7a14b9 | ||
|
|
1534268183 | ||
|
|
501af81ba9 | ||
|
|
16c44940d2 | ||
|
|
40eab797c6 | ||
|
|
ca7fbfb007 | ||
|
|
7b404596e9 | ||
|
|
06ef58bad8 | ||
|
|
74c4a7e450 | ||
|
|
dbb991bf07 | ||
|
|
66d3f3f9c3 | ||
|
|
6b5c8af1c8 | ||
|
|
e72a3a65b2 | ||
|
|
1b71835337 | ||
|
|
f9fa1c117f | ||
|
|
6f3ca7d1b9 | ||
|
|
13ae3a1c90 | ||
|
|
fb36d5e73b | ||
|
|
abb2ab8d3f |
10
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
10
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@@ -32,9 +32,17 @@ body:
|
|||||||
attributes:
|
attributes:
|
||||||
label: OrcaSlicer Version
|
label: OrcaSlicer Version
|
||||||
description: Which version of Orca Slicer are you running? You can see the full version in `Help` -> `About Orca Slicer`.
|
description: Which version of Orca Slicer are you running? You can see the full version in `Help` -> `About Orca Slicer`.
|
||||||
placeholder: e.g. 1.9.0
|
placeholder: e.g. 2.5.0
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
- type: input
|
||||||
|
id: working_version
|
||||||
|
attributes:
|
||||||
|
label: Regression compared to a previous version
|
||||||
|
description: Did it work in a previous version?
|
||||||
|
placeholder: e.g. 2.3.2
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
id: os_type
|
id: os_type
|
||||||
attributes:
|
attributes:
|
||||||
|
|||||||
@@ -80,8 +80,12 @@ endif()
|
|||||||
|
|
||||||
if (DEFINED BBL_RELEASE_TO_PUBLIC)
|
if (DEFINED BBL_RELEASE_TO_PUBLIC)
|
||||||
add_compile_definitions("BBL_RELEASE_TO_PUBLIC=${BBL_RELEASE_TO_PUBLIC}")
|
add_compile_definitions("BBL_RELEASE_TO_PUBLIC=${BBL_RELEASE_TO_PUBLIC}")
|
||||||
|
if (BBL_RELEASE_TO_PUBLIC)
|
||||||
|
add_compile_definitions(WXINSPECTOR_DISABLE)
|
||||||
|
endif ()
|
||||||
else ()
|
else ()
|
||||||
add_compile_definitions("BBL_RELEASE_TO_PUBLIC=$<CONFIG:Release>")
|
add_compile_definitions("BBL_RELEASE_TO_PUBLIC=$<CONFIG:Release>")
|
||||||
|
add_compile_definitions("$<$<CONFIG:Release>:WXINSPECTOR_DISABLE>")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
find_package(Git)
|
find_package(Git)
|
||||||
|
|||||||
8
deps/OpenSSL/OpenSSL.cmake
vendored
8
deps/OpenSSL/OpenSSL.cmake
vendored
@@ -52,6 +52,14 @@ ExternalProject_Add(dep_OpenSSL
|
|||||||
CONFIGURE_COMMAND ${_conf_cmd} ${_cross_arch}
|
CONFIGURE_COMMAND ${_conf_cmd} ${_cross_arch}
|
||||||
"--openssldir=${DESTDIR}"
|
"--openssldir=${DESTDIR}"
|
||||||
"--prefix=${DESTDIR}"
|
"--prefix=${DESTDIR}"
|
||||||
|
# OpenSSL's linux-x86_64 target sets multilib=64, so it installs to
|
||||||
|
# <prefix>/lib64 while every other dep uses <prefix>/lib. CPython's
|
||||||
|
# --with-openssl only ever emits -L<dir>/lib, so it misses the bundled
|
||||||
|
# static libs and silently links the system OpenSSL instead -- which,
|
||||||
|
# against 1.1.1w headers, leaves _ssl.so with an undefined
|
||||||
|
# SSL_get_peer_certificate (removed in OpenSSL 3.x). Pin libdir so the
|
||||||
|
# prefix stays single-layout.
|
||||||
|
"--libdir=lib"
|
||||||
${_cross_comp_prefix_line}
|
${_cross_comp_prefix_line}
|
||||||
no-shared
|
no-shared
|
||||||
no-asm
|
no-asm
|
||||||
|
|||||||
@@ -465,6 +465,57 @@ static void stb_textedit_click(STB_TEXTEDIT_STRING *str, STB_TexteditState *stat
|
|||||||
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
y = r.ymin;
|
y = r.ymin;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// In multi-line mode, clamp y to stay within the text vertical bounds.
|
||||||
|
// This lets the click still land at a valid location if the mouse is slightly
|
||||||
|
// above or below the text.
|
||||||
|
StbTexteditRow r;
|
||||||
|
int n = STB_TEXTEDIT_STRINGLEN(str);
|
||||||
|
int i = 0;
|
||||||
|
float base_y = 0, y_min, y_max;
|
||||||
|
|
||||||
|
// Get the first row to establish y_min and start the iteration
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
{
|
||||||
|
state->cursor = 0;
|
||||||
|
state->select_start = state->cursor;
|
||||||
|
state->select_end = state->cursor;
|
||||||
|
state->has_preferred_x = 0;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
y_min = r.ymin;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i = r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
|
||||||
|
// Walk the remaining rows to find the bottom of the last row
|
||||||
|
while (i < n)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, i);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
break;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i += r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the text ends with a newline, account for the empty trailing line
|
||||||
|
// so the cursor can be placed on it
|
||||||
|
if (n > 0 && STB_TEXTEDIT_GETCHAR(str, n - 1) == STB_TEXTEDIT_NEWLINE)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, n);
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Subtract half the last line height to avoid rounding issues when the mouse
|
||||||
|
// is just barely below the last line (keep cursor on the last line, not after the text)
|
||||||
|
y_max -= (r.ymax - r.ymin) * 0.5f;
|
||||||
|
|
||||||
|
if (y < y_min) y = y_min;
|
||||||
|
if (y > y_max) y = y_max;
|
||||||
|
}
|
||||||
|
|
||||||
state->cursor = stb_text_locate_coord(str, x, y);
|
state->cursor = stb_text_locate_coord(str, x, y);
|
||||||
state->select_start = state->cursor;
|
state->select_start = state->cursor;
|
||||||
@@ -485,6 +536,50 @@ static void stb_textedit_drag(STB_TEXTEDIT_STRING *str, STB_TexteditState *state
|
|||||||
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
y = r.ymin;
|
y = r.ymin;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// In multi-line mode, clamp y to stay within the text vertical bounds.
|
||||||
|
// This lets the drag keep working if the mouse goes off the top or bottom of the text.
|
||||||
|
StbTexteditRow r;
|
||||||
|
int n = STB_TEXTEDIT_STRINGLEN(str);
|
||||||
|
int i = 0;
|
||||||
|
float base_y = 0, y_min, y_max;
|
||||||
|
|
||||||
|
// Get the first row to establish y_min and start the iteration
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
return;
|
||||||
|
y_min = r.ymin;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i = r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
|
||||||
|
// Walk the remaining rows to find the bottom of the last row
|
||||||
|
while (i < n)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, i);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
break;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i += r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the text ends with a newline, account for the empty trailing line
|
||||||
|
// so the cursor can be placed on it
|
||||||
|
if (n > 0 && STB_TEXTEDIT_GETCHAR(str, n - 1) == STB_TEXTEDIT_NEWLINE)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, n);
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Subtract half the last line height to avoid rounding issues when the mouse
|
||||||
|
// is just barely below the last line (keep cursor on the last line, not after the text)
|
||||||
|
y_max -= (r.ymax - r.ymin) * 0.5f;
|
||||||
|
|
||||||
|
if (y < y_min) y = y_min;
|
||||||
|
if (y > y_max) y = y_max;
|
||||||
|
}
|
||||||
|
|
||||||
if (state->select_start == state->select_end)
|
if (state->select_start == state->select_end)
|
||||||
state->select_start = state->cursor;
|
state->select_start = state->cursor;
|
||||||
|
|||||||
@@ -7781,19 +7781,19 @@ msgid "Replaced with 3D files from directory:\n"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-boost-format
|
#, possible-boost-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-boost-format
|
#, possible-boost-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-boost-format
|
#, possible-boost-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-boost-format
|
#, possible-boost-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
|
|||||||
@@ -8361,21 +8361,21 @@ msgstr "No s'ha seleccionat el directori per a la substitució"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "Substituït amb fitxers 3D del directori:\n"
|
msgstr "Substituït amb fitxers 3D del directori:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Omès %1%: mateix fitxer.\n"
|
msgstr "✖ Omès %s: mateix fitxer.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Omès %1%: el fitxer no existeix.\n"
|
msgstr "✖ Omès %s: el fitxer no existeix.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Omès %1%: la substitució ha fallat.\n"
|
msgstr "✖ Omès %s: la substitució ha fallat.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Substituït %1%.\n"
|
msgstr "✔ Substituït %s.\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "Volums substituïts"
|
msgstr "Volums substituïts"
|
||||||
|
|||||||
@@ -8320,21 +8320,21 @@ msgstr "Nebyla vybrána složka pro nahrazení"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "Nahrazeno 3D soubory ze složky:\n"
|
msgstr "Nahrazeno 3D soubory ze složky:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Přeskočeno %1%: stejný soubor.\n"
|
msgstr "✖ Přeskočeno %s: stejný soubor.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Přeskočeno %1%: soubor neexistuje.\n"
|
msgstr "✖ Přeskočeno %s: soubor neexistuje.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Přeskočeno %1%: nahrazení se nezdařilo.\n"
|
msgstr "✖ Přeskočeno %s: nahrazení se nezdařilo.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Nahrazeno %1%.\n"
|
msgstr "✔ Nahrazeno %s.\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "Nahrazené objemy"
|
msgstr "Nahrazené objemy"
|
||||||
|
|||||||
@@ -8191,21 +8191,21 @@ msgstr "Verzeichnis um daraus zu ersetzen wurde nicht ausgewählt"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "Ersetzt durch 3D-Dateien aus Verzeichnis:\n"
|
msgstr "Ersetzt durch 3D-Dateien aus Verzeichnis:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Übersprungen %1%: gleiche Datei.\n"
|
msgstr "✖ Übersprungen %s: gleiche Datei.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Übersprungen %1%: Datei existiert nicht.\n"
|
msgstr "✖ Übersprungen %s: Datei existiert nicht.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Übersprungen %1%: Ersetzen fehlgeschlagen.\n"
|
msgstr "✖ Übersprungen %s: Ersetzen fehlgeschlagen.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Ersetzt %1%.\n"
|
msgstr "✔ Ersetzt %s.\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "Ersetzte Volumen"
|
msgstr "Ersetzte Volumen"
|
||||||
|
|||||||
@@ -7776,20 +7776,20 @@ msgstr ""
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
|
|||||||
@@ -7997,21 +7997,21 @@ msgstr "No se seleccionó el directorio para el reemplazo"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "Reemplazado con archivos 3D desde el directorio:\n"
|
msgstr "Reemplazado con archivos 3D desde el directorio:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Omitido %1%: mismo archivo.\n"
|
msgstr "✖ Omitido %s: mismo archivo.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Omitido %1%: el archivo no existe.\n"
|
msgstr "✖ Omitido %s: el archivo no existe.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Omitido %1%: fallo al reemplazar.\n"
|
msgstr "✖ Omitido %s: fallo al reemplazar.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Reemplazado %1%.\n"
|
msgstr "✔ Reemplazado %s.\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "Volúmenes reemplazados"
|
msgstr "Volúmenes reemplazados"
|
||||||
|
|||||||
@@ -8064,21 +8064,21 @@ msgstr "Ez da ordezkatzeko direktoriorik hautatu"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "Direktorio honetako 3D fitxategiekin ordeztuta:\n"
|
msgstr "Direktorio honetako 3D fitxategiekin ordeztuta:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ %1% saltatu da: fitxategi bera.\n"
|
msgstr "✖ %s saltatu da: fitxategi bera.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ %1% saltatu da: fitxategia ez da existitzen.\n"
|
msgstr "✖ %s saltatu da: fitxategia ez da existitzen.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ %1% saltatu da: ezin izan da ordeztu.\n"
|
msgstr "✖ %s saltatu da: ezin izan da ordeztu.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ %1% ordezkatu da.\n"
|
msgstr "✔ %s ordezkatu da.\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "Ordeztutako bolumenak"
|
msgstr "Ordeztutako bolumenak"
|
||||||
|
|||||||
@@ -8120,21 +8120,21 @@ msgstr "Le répertoire pour le remplacement n'a pas été sélectionné"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "Remplacé par des fichiers 3D depuis le répertoire :\n"
|
msgstr "Remplacé par des fichiers 3D depuis le répertoire :\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Ignoré %1% : même fichier.\n"
|
msgstr "✖ Ignoré %s : même fichier.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Ignoré %1% : le fichier n'existe pas.\n"
|
msgstr "✖ Ignoré %s : le fichier n'existe pas.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Ignoré %1% : échec du remplacement.\n"
|
msgstr "✖ Ignoré %s : échec du remplacement.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Remplacé %1%.\n"
|
msgstr "✔ Remplacé %s.\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "Volumes remplacés"
|
msgstr "Volumes remplacés"
|
||||||
@@ -9283,22 +9283,22 @@ msgid "DEV host: api-dev.bambu-lab.com/v1"
|
|||||||
msgstr "Hôte DEV : api-dev.bambu-lab.com/v1"
|
msgstr "Hôte DEV : api-dev.bambu-lab.com/v1"
|
||||||
|
|
||||||
msgid "QA host: api-qa.bambu-lab.com/v1"
|
msgid "QA host: api-qa.bambu-lab.com/v1"
|
||||||
msgstr "Hôte AQ : api-qa.bambu-lab.com/v1"
|
msgstr "Hôte QA : api-qa.bambu-lab.com/v1"
|
||||||
|
|
||||||
msgid "PRE host: api-pre.bambu-lab.com/v1"
|
msgid "PRE host: api-pre.bambu-lab.com/v1"
|
||||||
msgstr "Hébergeur PRE : api-pre.bambu-lab.com/v1"
|
msgstr "Hôte PRE : api-pre.bambu-lab.com/v1"
|
||||||
|
|
||||||
msgid "Product host"
|
msgid "Product host"
|
||||||
msgstr "Hôte du produit"
|
msgstr "Hôte du produit"
|
||||||
|
|
||||||
msgid "Debug save button"
|
msgid "Debug save button"
|
||||||
msgstr "bouton d'enregistrement de débogage"
|
msgstr "Bouton d'enregistrement de debugage"
|
||||||
|
|
||||||
msgid "Save debug settings"
|
msgid "Save debug settings"
|
||||||
msgstr "enregistrer les paramètres de débogage"
|
msgstr "Enregistrer les paramètres de debugage"
|
||||||
|
|
||||||
msgid "Debug settings have been saved successfully!"
|
msgid "Debug settings have been saved successfully!"
|
||||||
msgstr "Les paramètres DEBUG ont été enregistrés avec succès !"
|
msgstr "Les paramètres de debug ont été enregistrés avec succès !"
|
||||||
|
|
||||||
msgid "Cloud environment switched; please login again!"
|
msgid "Cloud environment switched; please login again!"
|
||||||
msgstr "L'environnement Cloud a changé, veuillez vous reconnecter !"
|
msgstr "L'environnement Cloud a changé, veuillez vous reconnecter !"
|
||||||
|
|||||||
@@ -8244,21 +8244,21 @@ msgstr "A cseréhez nem lett mappa kiválasztva"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "Cserélve a mappából származó 3D fájlokra:\n"
|
msgstr "Cserélve a mappából származó 3D fájlokra:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Kihagyva %1%: azonos fájl.\n"
|
msgstr "✖ %s kihagyva: azonos fájl.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Kihagyva %1%: a fájl nem létezik.\n"
|
msgstr "✖ %s kihagyva: a fájl nem létezik.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Kihagyva %1%: a csere sikertelen.\n"
|
msgstr "✖ %s kihagyva: a csere sikertelen.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Lecserélve: %1%.\n"
|
msgstr "✔%s lecserélve.\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "Lecserélt térfogatok"
|
msgstr "Lecserélt térfogatok"
|
||||||
|
|||||||
@@ -8244,21 +8244,21 @@ msgstr "La directory per la sostituzione non è stata selezionata"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "Sostituito con file 3D dalla directory:\n"
|
msgstr "Sostituito con file 3D dalla directory:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Saltato %1%: stesso file.\n"
|
msgstr "✖ Saltato %s: stesso file.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Saltato %1%: il file non esiste.\n"
|
msgstr "✖ Saltato %s: il file non esiste.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Saltato %1%: sostituzione fallita.\n"
|
msgstr "✖ Saltato %s: sostituzione fallita.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Sostituito %1%.\n"
|
msgstr "✔ Sostituito %s.\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "Volumi sostituiti"
|
msgstr "Volumi sostituiti"
|
||||||
|
|||||||
@@ -8262,21 +8262,21 @@ msgstr "置換用のディレクトリが選択されていません"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "ディレクトリの3Dファイルで置換しました:\n"
|
msgstr "ディレクトリの3Dファイルで置換しました:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ スキップ %1%: 同一ファイル。\n"
|
msgstr "✖ スキップ %s: 同一ファイル。\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ スキップ %1%: ファイルが存在しません。\n"
|
msgstr "✖ スキップ %s: ファイルが存在しません。\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ スキップ %1%: 置換に失敗しました。\n"
|
msgstr "✖ スキップ %s: 置換に失敗しました。\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ 置換しました %1%。\n"
|
msgstr "✔ 置換しました %s。\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "置換されたボリューム"
|
msgstr "置換されたボリューム"
|
||||||
|
|||||||
@@ -8288,24 +8288,24 @@ msgid "Replaced with 3D files from directory:\n"
|
|||||||
msgstr "다음 디렉터리의 3D 파일로 교체했습니다:\n"
|
msgstr "다음 디렉터리의 3D 파일로 교체했습니다:\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ 건너뜀 %1%: 동일한 파일입니다.\n"
|
msgstr "✖ 건너뜀 %s: 동일한 파일입니다.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ 건너뜀 %1%: 파일이 존재하지 않습니다.\n"
|
msgstr "✖ 건너뜀 %s: 파일이 존재하지 않습니다.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ 건너뜀 %1%: 교체하지 못했습니다.\n"
|
msgstr "✖ 건너뜀 %s: 교체하지 못했습니다.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ %1%을(를) 교체했습니다.\n"
|
msgstr "✔ %s을(를) 교체했습니다.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
|
|||||||
@@ -8239,21 +8239,21 @@ msgstr ""
|
|||||||
"Pakeista 3D failais iš katalogo:\n"
|
"Pakeista 3D failais iš katalogo:\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Praleistas %1%: tas pats failas.\n"
|
msgstr "✖ Praleistas %s: tas pats failas.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Praleistas %1%: failas neegzistuoja.\n"
|
msgstr "✖ Praleistas %s: failas neegzistuoja.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Praleistas %1%: nepavyko pakeisti.\n"
|
msgstr "✖ Praleistas %s: nepavyko pakeisti.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Pakeistas %1%.\n"
|
msgstr "✔ Pakeistas %s.\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "Pakeisti tūriai"
|
msgstr "Pakeisti tūriai"
|
||||||
|
|||||||
@@ -8999,24 +8999,24 @@ msgid "Replaced with 3D files from directory:\n"
|
|||||||
msgstr "Vervangen door 3D-bestanden uit de map:\n"
|
msgstr "Vervangen door 3D-bestanden uit de map:\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Overgeslagen %1%: hetzelfde bestand.\n"
|
msgstr "✖ Overgeslagen %s: hetzelfde bestand.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Overgeslagen %1%: bestand bestaat niet.\n"
|
msgstr "✖ Overgeslagen %s: bestand bestaat niet.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Overgeslagen %1%: vervangen is mislukt.\n"
|
msgstr "✖ Overgeslagen %s: vervangen is mislukt.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Vervangen %1%.\n"
|
msgstr "✔ Vervangen %s.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
|
|||||||
@@ -8444,24 +8444,24 @@ msgid "Replaced with 3D files from directory:\n"
|
|||||||
msgstr "Zastąpiono plikami 3D z katalogu:\n"
|
msgstr "Zastąpiono plikami 3D z katalogu:\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Pominięto %1%: ten sam plik.\n"
|
msgstr "✖ Pominięto %s: ten sam plik.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Pominięto %1%: plik nie istnieje.\n"
|
msgstr "✖ Pominięto %s: plik nie istnieje.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Pominięto %1%: nie udało się zastąpić.\n"
|
msgstr "✖ Pominięto %s: nie udało się zastąpić.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Zastąpiono %1%.\n"
|
msgstr "✔ Zastąpiono %s.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
|
|||||||
@@ -8026,21 +8026,21 @@ msgstr "Diretório para substituição não foi selecionado"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "Substituído por arquivos 3D do diretório:\n"
|
msgstr "Substituído por arquivos 3D do diretório:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ %1% Ignorados: mesmo arquivo.\n"
|
msgstr "✖ %s Ignorados: mesmo arquivo.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ %1% Ignorados: arquivo não existe.\n"
|
msgstr "✖ %s Ignorados: arquivo não existe.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ %1% Ignorados: falha ao substituir.\n"
|
msgstr "✖ %s Ignorados: falha ao substituir.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ %1% Substituídos.\n"
|
msgstr "✔ %s Substituídos.\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "Volumes substiruídos"
|
msgstr "Volumes substiruídos"
|
||||||
@@ -17130,15 +17130,12 @@ msgstr "Quando este valor de retração for modificado, ele será usado como a q
|
|||||||
msgid "Support fast purge mode"
|
msgid "Support fast purge mode"
|
||||||
msgstr "Suporte ao modo de purga rápida"
|
msgstr "Suporte ao modo de purga rápida"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Whether this printer supports fast purge mode with optimized temperature and multiplier."
|
msgid "Whether this printer supports fast purge mode with optimized temperature and multiplier."
|
||||||
msgstr "Se esta impressora suporta o modo de purga rápida com temperatura e multiplicador otimizados."
|
msgstr "Se esta impressora suporta o modo de purga rápida com temperatura e multiplicador otimizados."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Filament change"
|
msgid "Filament change"
|
||||||
msgstr "Troca de filamento"
|
msgstr "Troca de filamento"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "The volume of material required to prime the extruder on the tower, excluding a hotend change."
|
msgid "The volume of material required to prime the extruder on the tower, excluding a hotend change."
|
||||||
msgstr "O volume de material necessário para preparar a extrusora na torre, excluindo uma troca de hotend."
|
msgstr "O volume de material necessário para preparar a extrusora na torre, excluindo uma troca de hotend."
|
||||||
|
|
||||||
@@ -18323,11 +18320,9 @@ msgstr ""
|
|||||||
"Há vários endereços IP resolvendo para o nome do host %1%.\n"
|
"Há vários endereços IP resolvendo para o nome do host %1%.\n"
|
||||||
"Por favor, selecione um que deve ser usado."
|
"Por favor, selecione um que deve ser usado."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Auto-scale for nozzle"
|
msgid "Auto-scale for nozzle"
|
||||||
msgstr "Escala automática para o bico"
|
msgstr "Escala automática para o bico"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"This model is designed around a 0.4 mm nozzle with a 0.2 mm layer height. \n"
|
"This model is designed around a 0.4 mm nozzle with a 0.2 mm layer height. \n"
|
||||||
"When the scaling option is enabled (recommended), it dynamically resizes to match your current nozzle diameter and an appropriate layer height, making the test both accurate and easy to read.\n"
|
"When the scaling option is enabled (recommended), it dynamically resizes to match your current nozzle diameter and an appropriate layer height, making the test both accurate and easy to read.\n"
|
||||||
@@ -18473,11 +18468,9 @@ msgstr "Velocidade Inicial: "
|
|||||||
msgid "End speed: "
|
msgid "End speed: "
|
||||||
msgstr "Velocidade Final: "
|
msgstr "Velocidade Final: "
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Auto-adjust to max volumetric speed"
|
msgid "Auto-adjust to max volumetric speed"
|
||||||
msgstr "Ajuste automático à velocidade volumétrica máxima"
|
msgstr "Ajuste automático à velocidade volumétrica máxima"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "If the end speed would exceed the filament's maximum volumetric speed, automatically lower the layer height (keeping standard values and staying within the machine's limits) to reach it. If even the minimum layer height is not enough, lower the end speed instead."
|
msgid "If the end speed would exceed the filament's maximum volumetric speed, automatically lower the layer height (keeping standard values and staying within the machine's limits) to reach it. If even the minimum layer height is not enough, lower the end speed instead."
|
||||||
msgstr "Se a velocidade final ultrapassar a velocidade volumétrica máxima do filamento, reduz automaticamente a altura de camada (mantendo valores padrão e respeitando os limites da máquina) para alcançá-la. Se nem mesmo a altura de camada mínima for suficiente, reduz a velocidade final."
|
msgstr "Se a velocidade final ultrapassar a velocidade volumétrica máxima do filamento, reduz automaticamente a altura de camada (mantendo valores padrão e respeitando os limites da máquina) para alcançá-la. Se nem mesmo a altura de camada mínima for suficiente, reduz a velocidade final."
|
||||||
|
|
||||||
@@ -18492,7 +18485,6 @@ msgstr ""
|
|||||||
"passo >= 0\n"
|
"passo >= 0\n"
|
||||||
"fim > início + passo"
|
"fim > início + passo"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s), which limits the outer wall to about %.0f mm/s at this line width and layer height.\n"
|
"The end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s), which limits the outer wall to about %.0f mm/s at this line width and layer height.\n"
|
||||||
@@ -18500,12 +18492,11 @@ msgid ""
|
|||||||
"\n"
|
"\n"
|
||||||
"%s"
|
"%s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"A velocidade final (%.0f mm/s) ultrapassa a velocidade volumétrica máxima do filamento (%.1f mm³/s), o que limita a parede externa a cerca de %.0f mm/s com esta largura de linha e altura de camada.\n"
|
"A velocidade final (%.0f mm/s) excede a velocidade volumétrica máxima do filamento (%.1f mm³/s), o que limita a parede externa a cerca de %.0f mm/s com esta largura de linha e altura de camada.\n"
|
||||||
" Velocidades acima disso serão limitadas, portanto os blocos superiores da torre não serão impressos na velocidade solicitada.\n"
|
" Velocidades acima disso serão limitadas, portanto os blocos superiores da torre não serão impressos na velocidade solicitada.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"%s"
|
"%s"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"The end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s) at the default layer height (%.2f mm).\n"
|
"The end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s) at the default layer height (%.2f mm).\n"
|
||||||
@@ -18516,7 +18507,6 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
"A altura de camada foi reduzida para %.2f mm (um valor usado pelos perfis desta impressora) para que a torre possa atingir a velocidade solicitada."
|
"A altura de camada foi reduzida para %.2f mm (um valor usado pelos perfis desta impressora) para que a torre possa atingir a velocidade solicitada."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Even at the smallest layer height used by this printer's profiles (%.2f mm) the end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s).\n"
|
"Even at the smallest layer height used by this printer's profiles (%.2f mm) the end speed (%.0f mm/s) exceeds the filament's maximum volumetric speed (%.1f mm³/s).\n"
|
||||||
@@ -18531,15 +18521,12 @@ msgstr ""
|
|||||||
"\n"
|
"\n"
|
||||||
"Continuar?"
|
"Continuar?"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Continue anyway?"
|
msgid "Continue anyway?"
|
||||||
msgstr "Continuar mesmo assim?"
|
msgstr "Continuar mesmo assim?"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Enable \"Auto-adjust\" to fix this automatically, or continue anyway?"
|
msgid "Enable \"Auto-adjust\" to fix this automatically, or continue anyway?"
|
||||||
msgstr "Ativar \"Ajuste automático\" para corrigir isso automaticamente ou continuar mesmo assim?"
|
msgstr "Ativar \"Ajuste automático\" para corrigir isso automaticamente ou continuar mesmo assim?"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Enable \"Auto-scale for nozzle\" and \"Auto-adjust\" to fix this automatically, or continue anyway?"
|
msgid "Enable \"Auto-scale for nozzle\" and \"Auto-adjust\" to fix this automatically, or continue anyway?"
|
||||||
msgstr "Ativar \"Escala automática para o bico\" e \"Ajuste automático\" para corrigir isso automaticamente ou continuar mesmo assim?"
|
msgstr "Ativar \"Escala automática para o bico\" e \"Ajuste automático\" para corrigir isso automaticamente ou continuar mesmo assim?"
|
||||||
|
|
||||||
@@ -19644,9 +19631,8 @@ msgstr "Não foi possível decifrar a resposta do servidor."
|
|||||||
msgid "Error saving session to file"
|
msgid "Error saving session to file"
|
||||||
msgstr "Erro salvando sessão para arquivo"
|
msgstr "Erro salvando sessão para arquivo"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Error session check"
|
msgid "Error session check"
|
||||||
msgstr "Verificação de sessão de erro"
|
msgstr "Erro na verificação de sessão"
|
||||||
|
|
||||||
msgid "Error during file upload"
|
msgid "Error during file upload"
|
||||||
msgstr "Erro durante a subida do arquivo"
|
msgstr "Erro durante a subida do arquivo"
|
||||||
@@ -20079,9 +20065,8 @@ msgstr "Impressão Falhou"
|
|||||||
msgid "Removed"
|
msgid "Removed"
|
||||||
msgstr "Removido"
|
msgstr "Removido"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Enable smart filament assign: Assign one filament to multiple nozzles to maximize savings"
|
msgid "Enable smart filament assign: Assign one filament to multiple nozzles to maximize savings"
|
||||||
msgstr "Ativar atribuição inteligente de filamento: atribui um filamento a vários bicos para maximizar a economia"
|
msgstr "Ativar atribuição inteligente de filamento: Atribui um filamento a vários bicos para maximizar a economia"
|
||||||
|
|
||||||
msgid "Fila Saving"
|
msgid "Fila Saving"
|
||||||
msgstr "Econo Filamento"
|
msgstr "Econo Filamento"
|
||||||
@@ -20119,7 +20104,6 @@ msgstr "Tutorial em vídeo"
|
|||||||
msgid "(Sync with printer)"
|
msgid "(Sync with printer)"
|
||||||
msgstr "(Sinc. com impressora)"
|
msgstr "(Sinc. com impressora)"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Error: %s extruder has no available %s nozzle, current group result is invalid."
|
msgid "Error: %s extruder has no available %s nozzle, current group result is invalid."
|
||||||
msgstr "Erro: a extrusora %s não tem nenhum bico %s disponível, o resultado do grupo atual é inválido."
|
msgstr "Erro: a extrusora %s não tem nenhum bico %s disponível, o resultado do grupo atual é inválido."
|
||||||
@@ -20130,17 +20114,14 @@ msgstr "Vamos fatiar de acordo com este método de agrupamento:"
|
|||||||
msgid "Tip: You can drag the filaments to reassign them to different nozzles."
|
msgid "Tip: You can drag the filaments to reassign them to different nozzles."
|
||||||
msgstr "Dica: Você pode arrastar os filamentos para reatribuí-los a diferentes bicos."
|
msgstr "Dica: Você pode arrastar os filamentos para reatribuí-los a diferentes bicos."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Please adjust your grouping or click "
|
msgid "Please adjust your grouping or click "
|
||||||
msgstr "Por favor, ajuste seu agrupamento ou clique em "
|
msgstr "Por favor, ajuste seu agrupamento ou clique em "
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid " to set nozzle count"
|
msgid " to set nozzle count"
|
||||||
msgstr " para definir o número de bicos"
|
msgstr " para definir o número de bicos"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Set the physical nozzle count..."
|
msgid "Set the physical nozzle count..."
|
||||||
msgstr "Definir o número físico de bicos..."
|
msgstr "Definir o número de bicos físicos…"
|
||||||
|
|
||||||
msgid "The filament grouping method for current plate is determined by the dropdown option at the slicing plate button."
|
msgid "The filament grouping method for current plate is determined by the dropdown option at the slicing plate button."
|
||||||
msgstr "O método de agrupamento de filamentos para a placa atual é determinado pela opção no botão de fatiamento da placa."
|
msgstr "O método de agrupamento de filamentos para a placa atual é determinado pela opção no botão de fatiamento da placa."
|
||||||
@@ -20480,99 +20461,75 @@ msgstr "Numero de facetas triangulares"
|
|||||||
msgid "Calculating, please wait..."
|
msgid "Calculating, please wait..."
|
||||||
msgstr "Calculando, por favor aguarde…"
|
msgstr "Calculando, por favor aguarde…"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Save these settings as default"
|
msgid "Save these settings as default"
|
||||||
msgstr "Salvar estas configurações como padrão"
|
msgstr "Salvar estas configurações como padrão"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
|
||||||
msgstr "Se ativado, os valores acima são armazenados como os padrões usados para futuras importações STEP (e mostrados nas Preferências)."
|
msgstr "Se ativado, os valores acima são armazenados como os padrões usados para futuras importações STEP (e mostrados nas Preferências)."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "PresetBundle"
|
msgid "PresetBundle"
|
||||||
msgstr "PresetBundle"
|
msgstr "PresetBundle"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Bundle folder does not exist."
|
msgid "Bundle folder does not exist."
|
||||||
msgstr "A pasta do pacote não existe."
|
msgstr "A pasta do pacote não existe."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Failed to open folder."
|
msgid "Failed to open folder."
|
||||||
msgstr "Falha ao abrir a pasta."
|
msgstr "Falha ao abrir a pasta."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
msgid "Delete selected bundle from folder and all presets loaded from it?"
|
||||||
msgstr "Excluir o pacote selecionado da pasta e todas as predefinições carregadas a partir dele?"
|
msgstr "Excluir o pacote selecionado da pasta e todas as predefinições carregadas a partir dele?"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Delete Bundle"
|
msgid "Delete Bundle"
|
||||||
msgstr "Excluir pacote"
|
msgstr "Excluir Pacote"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Failed to remove bundle."
|
msgid "Failed to remove bundle."
|
||||||
msgstr "Falha ao remover o pacote."
|
msgstr "Falha ao remover o pacote."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Remove Bundle"
|
msgid "Remove Bundle"
|
||||||
msgstr "Remover pacote"
|
msgstr "Remover pacote"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Unsubscribe bundle?"
|
msgid "Unsubscribe bundle?"
|
||||||
msgstr "Cancelar a inscrição do pacote?"
|
msgstr "Cancelar a inscrição do pacote?"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "UnsubscribeBundle"
|
msgid "UnsubscribeBundle"
|
||||||
msgstr "UnsubscribeBundle"
|
msgstr "UnsubscribeBundle"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Failed to unsubscribe bundle."
|
msgid "Failed to unsubscribe bundle."
|
||||||
msgstr "Falha ao cancelar a inscrição do pacote."
|
msgstr "Falha ao cancelar a inscrição do pacote."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Unsubscribe Bundle"
|
msgid "Unsubscribe Bundle"
|
||||||
msgstr "Cancelar inscrição do pacote"
|
msgstr "Cancelar inscrição do Pacote"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "ExportPresetBundle"
|
msgid "ExportPresetBundle"
|
||||||
msgstr "ExportPresetBundle"
|
msgstr "ExportPresetBundle"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Save preset bundle"
|
msgid "Save preset bundle"
|
||||||
msgstr "Salvar pacote de predefinições"
|
msgstr "Salvar pacote de predefinições"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Performing desktop integration failed - boost::filesystem::canonical did not return appimage path."
|
msgid "Performing desktop integration failed - boost::filesystem::canonical did not return appimage path."
|
||||||
msgstr "Falha ao realizar a integração com a área de trabalho - boost::filesystem::canonical não retornou o caminho do appimage."
|
msgstr "Falha ao realizar a integração com a área de trabalho - boost::filesystem::canonical não retornou o caminho do appimage."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Performing desktop integration failed - Could not find executable."
|
msgid "Performing desktop integration failed - Could not find executable."
|
||||||
msgstr "Falha ao realizar a integração com a área de trabalho - não foi possível encontrar o executável."
|
msgstr "Falha ao realizar a integração com a área de trabalho - não foi possível encontrar o executável."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Performing desktop integration failed because the application directory was not found."
|
msgid "Performing desktop integration failed because the application directory was not found."
|
||||||
msgstr "Falha ao realizar a integração com a área de trabalho porque o diretório do aplicativo não foi encontrado."
|
msgstr "Falha ao realizar a integração com a área de trabalho porque o diretório do aplicativo não foi encontrado."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Performing desktop integration failed - could not create Gcodeviewer desktop file. OrcaSlicer desktop file was probably created successfully."
|
msgid "Performing desktop integration failed - could not create Gcodeviewer desktop file. OrcaSlicer desktop file was probably created successfully."
|
||||||
msgstr "Falha ao realizar a integração com a área de trabalho - não foi possível criar o arquivo desktop do Gcodeviewer. O arquivo desktop do OrcaSlicer provavelmente foi criado com sucesso."
|
msgstr "Falha ao realizar a integração com a área de trabalho - não foi possível criar o arquivo desktop do Gcodeviewer. O arquivo desktop do OrcaSlicer provavelmente foi criado com sucesso."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Performing downloader desktop integration failed - boost::filesystem::canonical did not return appimage path."
|
msgid "Performing downloader desktop integration failed - boost::filesystem::canonical did not return appimage path."
|
||||||
msgstr "Falha ao realizar a integração do downloader com a área de trabalho - boost::filesystem::canonical não retornou o caminho do appimage."
|
msgstr "Falha ao realizar a integração do downloader com a área de trabalho - boost::filesystem::canonical não retornou o caminho do appimage."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Performing downloader desktop integration failed - Could not find executable."
|
msgid "Performing downloader desktop integration failed - Could not find executable."
|
||||||
msgstr "Falha ao realizar a integração do downloader com a área de trabalho - não foi possível encontrar o executável."
|
msgstr "Falha ao realizar a integração do downloader com a área de trabalho - não foi possível encontrar o executável."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Performing downloader desktop integration failed because the application directory was not found."
|
msgid "Performing downloader desktop integration failed because the application directory was not found."
|
||||||
msgstr "Falha ao realizar a integração do downloader com a área de trabalho porque o diretório do aplicativo não foi encontrado."
|
msgstr "Falha ao realizar a integração do downloader com a área de trabalho porque o diretório do aplicativo não foi encontrado."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Desktop Integration"
|
msgid "Desktop Integration"
|
||||||
msgstr "Integração com a área de trabalho"
|
msgstr "Integração com a Área de Trabalho"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Desktop Integration sets this binary to be searchable by the system.\n"
|
"Desktop Integration sets this binary to be searchable by the system.\n"
|
||||||
"\n"
|
"\n"
|
||||||
@@ -20596,40 +20553,33 @@ msgstr "Arquivar pré-visualização"
|
|||||||
msgid "Open File"
|
msgid "Open File"
|
||||||
msgstr "Abrir Arquivo"
|
msgstr "Abrir Arquivo"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "AMS Dryness Control"
|
msgid "AMS Dryness Control"
|
||||||
msgstr "Controle de secura do AMS"
|
msgstr "Controle de Secura do AMS"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Filament Drying Settings"
|
msgid "Filament Drying Settings"
|
||||||
msgstr "Configurações de secagem de filamento"
|
msgstr "Configurações de Secagem de Filamento"
|
||||||
|
|
||||||
msgid "Stopping"
|
msgid "Stopping"
|
||||||
msgstr "Parando"
|
msgstr "Parando"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Unable to dry temporarily due to ..."
|
msgid "Unable to dry temporarily due to ..."
|
||||||
msgstr "Não é possível secar temporariamente devido a ..."
|
msgstr "Não é possível secar temporariamente devido a…"
|
||||||
|
|
||||||
msgid "Drying Error"
|
msgid "Drying Error"
|
||||||
msgstr "Erro de Secagem"
|
msgstr "Erro de Secagem"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Please check the Assistant for troubleshooting"
|
msgid "Please check the Assistant for troubleshooting"
|
||||||
msgstr "Por favor, verifique o Assistente para solução de problemas"
|
msgstr "Por favor, verifique o Assistente para solução de problemas"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Please remove and store the filament (as shown)."
|
msgid "Please remove and store the filament (as shown)."
|
||||||
msgstr "Por favor, remova e guarde o filamento (como mostrado)."
|
msgstr "Por favor, remova e guarde o filamento (como mostrado)."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "The AMS can rotate the filament which is properly stored, providing better drying results."
|
msgid "The AMS can rotate the filament which is properly stored, providing better drying results."
|
||||||
msgstr "O AMS pode girar o filamento que está corretamente armazenado, proporcionando melhores resultados de secagem."
|
msgstr "O AMS pode girar o filamento que está corretamente armazenado, proporcionando melhores resultados de secagem."
|
||||||
|
|
||||||
msgid "Rotate spool when drying"
|
msgid "Rotate spool when drying"
|
||||||
msgstr "Girar o carretel durante a secagem"
|
msgstr "Girar o carretel durante a secagem"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgctxt "amsdrying"
|
msgctxt "amsdrying"
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Voltar"
|
msgstr "Voltar"
|
||||||
@@ -20649,11 +20599,9 @@ msgstr " temperatura mínima de secagem é "
|
|||||||
msgid "This filament may not be completely dried."
|
msgid "This filament may not be completely dried."
|
||||||
msgstr "Este filamento pode não estar completamente seco."
|
msgstr "Este filamento pode não estar completamente seco."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "This AMS is currently printing. To ensure print quality, the drying temperature cannot exceed the recommended drying temperature."
|
msgid "This AMS is currently printing. To ensure print quality, the drying temperature cannot exceed the recommended drying temperature."
|
||||||
msgstr "Este AMS está imprimindo no momento. Para garantir a qualidade da impressão, a temperatura de secagem não pode exceder a temperatura de secagem recomendada."
|
msgstr "Este AMS está imprimindo no momento. Para garantir a qualidade da impressão, a temperatura de secagem não pode exceder a temperatura de secagem recomendada."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "The temperature shall not exceed the filament's heat distortion temperature"
|
msgid "The temperature shall not exceed the filament's heat distortion temperature"
|
||||||
msgstr "A temperatura não deve exceder a temperatura de distorção térmica do filamento"
|
msgstr "A temperatura não deve exceder a temperatura de distorção térmica do filamento"
|
||||||
|
|
||||||
@@ -20666,22 +20614,18 @@ msgstr "O valor máximo de tempo não pode ser superior a 24."
|
|||||||
msgid "Insufficient power"
|
msgid "Insufficient power"
|
||||||
msgstr "Potência insuficiente"
|
msgstr "Potência insuficiente"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid " Too many AMS drying simultaneously. Please plug in the power or stop other drying processes before starting."
|
msgid " Too many AMS drying simultaneously. Please plug in the power or stop other drying processes before starting."
|
||||||
msgstr " Muitos AMS secando simultaneamente. Por favor, conecte à energia ou pare outros processos de secagem antes de iniciar."
|
msgstr " Muitos AMS secando simultaneamente. Por favor, conecte à energia ou pare outros processos de secagem antes de iniciar."
|
||||||
|
|
||||||
msgid "AMS is busy"
|
msgid "AMS is busy"
|
||||||
msgstr "O AMS está ocupado"
|
msgstr "O AMS está ocupado"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid " AMS is calibrating | reading RFID | loading/unloading material, please wait."
|
msgid " AMS is calibrating | reading RFID | loading/unloading material, please wait."
|
||||||
msgstr " O AMS está calibrando | lendo RFID | carregando/descarregando material, por favor aguarde."
|
msgstr " O AMS está calibrando | lendo RFID | carregando/descarregando material, por favor aguarde."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid "Filament in AMS outlet"
|
msgid "Filament in AMS outlet"
|
||||||
msgstr "Filamento na saída do AMS"
|
msgstr "Filamento na saída do AMS"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid " The high drying temperature may cause AMS blockage, please unload first."
|
msgid " The high drying temperature may cause AMS blockage, please unload first."
|
||||||
msgstr " A alta temperatura de secagem pode causar bloqueio do AMS, por favor descarregue primeiro."
|
msgstr " A alta temperatura de secagem pode causar bloqueio do AMS, por favor descarregue primeiro."
|
||||||
|
|
||||||
@@ -20694,18 +20638,15 @@ msgstr "Não suportado no modo 2D"
|
|||||||
msgid "Task in progress"
|
msgid "Task in progress"
|
||||||
msgstr "Tarefa em progresso"
|
msgstr "Tarefa em progresso"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid " The AMS might be in use during Task."
|
msgid " The AMS might be in use during Task."
|
||||||
msgstr " O AMS pode estar em uso durante a Tarefa."
|
msgstr " O AMS pode estar em uso durante a Tarefa."
|
||||||
|
|
||||||
msgid " Firmware update in progress, please wait..."
|
msgid " Firmware update in progress, please wait..."
|
||||||
msgstr " Atualização de firmware em progresso, por favor aguarde..."
|
msgstr " Atualização de firmware em progresso, por favor aguarde…"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid " Please plug in the power and then use the drying function."
|
msgid " Please plug in the power and then use the drying function."
|
||||||
msgstr " Por favor, conecte à energia e depois use a função de secagem."
|
msgstr " Por favor, conecte à energia e então use a função de secagem."
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
msgid " The high drying temperature may cause AMS blockage. Please unload the filament manually before proceeding."
|
msgid " The high drying temperature may cause AMS blockage. Please unload the filament manually before proceeding."
|
||||||
msgstr " A alta temperatura de secagem pode causar bloqueio do AMS. Por favor, descarregue o filamento manualmente antes de prosseguir."
|
msgstr " A alta temperatura de secagem pode causar bloqueio do AMS. Por favor, descarregue o filamento manualmente antes de prosseguir."
|
||||||
|
|
||||||
@@ -20713,7 +20654,7 @@ msgid "System is busy"
|
|||||||
msgstr "O sistema está ocupado"
|
msgstr "O sistema está ocupado"
|
||||||
|
|
||||||
msgid " Initiating other drying processes, please wait a few seconds..."
|
msgid " Initiating other drying processes, please wait a few seconds..."
|
||||||
msgstr " Iniciando outros processos de secagem, por favor aguarde alguns segundos..."
|
msgstr " Iniciando outros processos de secagem, por favor aguarde alguns segundos…"
|
||||||
|
|
||||||
msgid "For better drying results, remove the filament and allow it to rotate."
|
msgid "For better drying results, remove the filament and allow it to rotate."
|
||||||
msgstr "Para obter melhores resultados de secagem, remova o filamento e permita que ele gire."
|
msgstr "Para obter melhores resultados de secagem, remova o filamento e permita que ele gire."
|
||||||
@@ -21078,17 +21019,6 @@ msgstr ""
|
|||||||
#~ msgid "Rear"
|
#~ msgid "Rear"
|
||||||
#~ msgstr "Traseira"
|
#~ msgstr "Traseira"
|
||||||
|
|
||||||
# AI Translated
|
|
||||||
#, boost-format
|
|
||||||
#~ msgid ""
|
|
||||||
#~ "Objects(%1%) have duplicated connectors. Some connectors may be missing in slicing result.\n"
|
|
||||||
#~ "Please report to PrusaSlicer team in which scenario this issue happened.\n"
|
|
||||||
#~ "Thank you."
|
|
||||||
#~ msgstr ""
|
|
||||||
#~ "Os objetos(%1%) têm conectores duplicados. Alguns conectores podem estar faltando no resultado do fatiamento.\n"
|
|
||||||
#~ "Por favor, informe à equipe do PrusaSlicer em qual cenário esse problema ocorreu.\n"
|
|
||||||
#~ "Obrigado."
|
|
||||||
|
|
||||||
#~ msgid "Skip for Now"
|
#~ msgid "Skip for Now"
|
||||||
#~ msgstr "Pular por Enquanto"
|
#~ msgstr "Pular por Enquanto"
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -9088,24 +9088,24 @@ msgid "Replaced with 3D files from directory:\n"
|
|||||||
msgstr "Ersatt med 3D-filer från mappen:\n"
|
msgstr "Ersatt med 3D-filer från mappen:\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Hoppade över %1%: samma fil.\n"
|
msgstr "✖ Hoppade över %s: samma fil.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Hoppade över %1%: filen finns inte.\n"
|
msgstr "✖ Hoppade över %s: filen finns inte.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Hoppade över %1%: det gick inte att ersätta.\n"
|
msgstr "✖ Hoppade över %s: det gick inte att ersätta.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Ersatte %1%.\n"
|
msgstr "✔ Ersatte %s.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
|
|||||||
@@ -8199,21 +8199,21 @@ msgstr "ไม่ได้เลือกไดเรกทอรีสำหร
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "แทนที่ด้วยไฟล์ 3D จากไดเรกทอรี:\n"
|
msgstr "แทนที่ด้วยไฟล์ 3D จากไดเรกทอรี:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ ข้าม %1%: ไฟล์เดียวกัน\n"
|
msgstr "✖ ข้าม %s: ไฟล์เดียวกัน\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ ข้าม %1%: ไม่มีไฟล์อยู่\n"
|
msgstr "✖ ข้าม %s: ไม่มีไฟล์อยู่\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ ข้าม %1%: ไม่สามารถแทนที่ได้\n"
|
msgstr "✖ ข้าม %s: ไม่สามารถแทนที่ได้\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔แทนที่ %1%\n"
|
msgstr "✔แทนที่ %s\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "ปริมาณที่ถูกแทนที่"
|
msgstr "ปริมาณที่ถูกแทนที่"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -8306,21 +8306,21 @@ msgstr "Каталог для заміни не вибрано"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "Замінено 3D-файлами з каталогу:\n"
|
msgstr "Замінено 3D-файлами з каталогу:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Пропущено %1%: той самий файл.\n"
|
msgstr "✖ Пропущено %s: той самий файл.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Пропущено %1%: файл не існує.\n"
|
msgstr "✖ Пропущено %s: файл не існує.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Пропущено %1%: не вдалося замінити.\n"
|
msgstr "✖ Пропущено %s: не вдалося замінити.\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Замінено %1%.\n"
|
msgstr "✔ Замінено %s.\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "Замінені обʼєми"
|
msgstr "Замінені обʼєми"
|
||||||
|
|||||||
@@ -8721,24 +8721,24 @@ msgid "Replaced with 3D files from directory:\n"
|
|||||||
msgstr "Đã thay thế bằng file 3D từ thư mục:\n"
|
msgstr "Đã thay thế bằng file 3D từ thư mục:\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ Đã bỏ qua %1%: cùng một file.\n"
|
msgstr "✖ Đã bỏ qua %s: cùng một file.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ Đã bỏ qua %1%: file không tồn tại.\n"
|
msgstr "✖ Đã bỏ qua %s: file không tồn tại.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ Đã bỏ qua %1%: thay thế thất bại.\n"
|
msgstr "✖ Đã bỏ qua %s: thay thế thất bại.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ Đã thay thế %1%.\n"
|
msgstr "✔ Đã thay thế %s.\n"
|
||||||
|
|
||||||
# AI Translated
|
# AI Translated
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
|
|||||||
@@ -8028,21 +8028,21 @@ msgstr "未选择替换目录"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "替换为目录中的 3D 文件:\n"
|
msgstr "替换为目录中的 3D 文件:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ 跳过 %1%:同一文件。\n"
|
msgstr "✖ 跳过 %s:同一文件。\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ 跳过%1%:文件不存在。\n"
|
msgstr "✖ 跳过%s:文件不存在。\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ 跳过%1%:替换失败。\n"
|
msgstr "✖ 跳过%s:替换失败。\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ 替换了 %1%。\n"
|
msgstr "✔ 替换了 %s。\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "替换的卷"
|
msgstr "替换的卷"
|
||||||
|
|||||||
@@ -8193,21 +8193,21 @@ msgstr "未選擇替換的目錄"
|
|||||||
msgid "Replaced with 3D files from directory:\n"
|
msgid "Replaced with 3D files from directory:\n"
|
||||||
msgstr "已從目錄替換為 3D 檔案:\n"
|
msgstr "已從目錄替換為 3D 檔案:\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: same file.\n"
|
msgid "✖ Skipped %s: same file.\n"
|
||||||
msgstr "✖ 已跳過 %1%:相同檔案。\n"
|
msgstr "✖ 已跳過 %s:相同檔案。\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: file does not exist.\n"
|
msgid "✖ Skipped %s: file does not exist.\n"
|
||||||
msgstr "✖ 已跳過 %1%:檔案不存在。\n"
|
msgstr "✖ 已跳過 %s:檔案不存在。\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✖ Skipped %1%: failed to replace.\n"
|
msgid "✖ Skipped %s: failed to replace.\n"
|
||||||
msgstr "✖ 已跳過 %1%:無法替換。\n"
|
msgstr "✖ 已跳過 %s:無法替換。\n"
|
||||||
|
|
||||||
#, boost-format
|
#, c-format
|
||||||
msgid "✔ Replaced %1%.\n"
|
msgid "✔ Replaced %s.\n"
|
||||||
msgstr "✔ 已替換 %1%。\n"
|
msgstr "✔ 已替換 %s。\n"
|
||||||
|
|
||||||
msgid "Replaced volumes"
|
msgid "Replaced volumes"
|
||||||
msgstr "已替換體積"
|
msgstr "已替換體積"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Creality",
|
"name": "Creality",
|
||||||
"version": "02.03.02.75",
|
"version": "02.03.02.76",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Creality configurations",
|
"description": "Creality configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -128,7 +128,7 @@
|
|||||||
"detect_narrow_internal_solid_infill": "1",
|
"detect_narrow_internal_solid_infill": "1",
|
||||||
"dont_filter_internal_bridges": "disabled",
|
"dont_filter_internal_bridges": "disabled",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enforce_support_layers": "0",
|
"enforce_support_layers": "0",
|
||||||
"ensure_vertical_shell_thickness": "ensure_all",
|
"ensure_vertical_shell_thickness": "ensure_all",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -124,7 +124,7 @@
|
|||||||
"detect_narrow_internal_solid_infill": "1",
|
"detect_narrow_internal_solid_infill": "1",
|
||||||
"dont_filter_internal_bridges": "disabled",
|
"dont_filter_internal_bridges": "disabled",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enforce_support_layers": "0",
|
"enforce_support_layers": "0",
|
||||||
"ensure_vertical_shell_thickness": "ensure_all",
|
"ensure_vertical_shell_thickness": "ensure_all",
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -128,7 +128,7 @@
|
|||||||
"detect_narrow_internal_solid_infill": "1",
|
"detect_narrow_internal_solid_infill": "1",
|
||||||
"dont_filter_internal_bridges": "disabled",
|
"dont_filter_internal_bridges": "disabled",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enforce_support_layers": "0",
|
"enforce_support_layers": "0",
|
||||||
"ensure_vertical_shell_thickness": "ensure_all",
|
"ensure_vertical_shell_thickness": "ensure_all",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -128,7 +128,7 @@
|
|||||||
"detect_narrow_internal_solid_infill": "1",
|
"detect_narrow_internal_solid_infill": "1",
|
||||||
"dont_filter_internal_bridges": "disabled",
|
"dont_filter_internal_bridges": "disabled",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enforce_support_layers": "0",
|
"enforce_support_layers": "0",
|
||||||
"ensure_vertical_shell_thickness": "ensure_all",
|
"ensure_vertical_shell_thickness": "ensure_all",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "1",
|
"enable_prime_tower": "1",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -126,7 +126,7 @@
|
|||||||
"detect_narrow_internal_solid_infill": "1",
|
"detect_narrow_internal_solid_infill": "1",
|
||||||
"dont_filter_internal_bridges": "disabled",
|
"dont_filter_internal_bridges": "disabled",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enforce_support_layers": "0",
|
"enforce_support_layers": "0",
|
||||||
"ensure_vertical_shell_thickness": "ensure_all",
|
"ensure_vertical_shell_thickness": "ensure_all",
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
"draft_shield": "disabled",
|
"draft_shield": "disabled",
|
||||||
"elefant_foot_compensation": "0.15",
|
"elefant_foot_compensation": "0.15",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enable_prime_tower": "0",
|
"enable_prime_tower": "0",
|
||||||
"enable_support": "0",
|
"enable_support": "0",
|
||||||
|
|||||||
@@ -126,7 +126,7 @@
|
|||||||
"detect_narrow_internal_solid_infill": "1",
|
"detect_narrow_internal_solid_infill": "1",
|
||||||
"dont_filter_internal_bridges": "disabled",
|
"dont_filter_internal_bridges": "disabled",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enforce_support_layers": "0",
|
"enforce_support_layers": "0",
|
||||||
"ensure_vertical_shell_thickness": "ensure_all",
|
"ensure_vertical_shell_thickness": "ensure_all",
|
||||||
|
|||||||
@@ -126,7 +126,7 @@
|
|||||||
"detect_narrow_internal_solid_infill": "1",
|
"detect_narrow_internal_solid_infill": "1",
|
||||||
"dont_filter_internal_bridges": "disabled",
|
"dont_filter_internal_bridges": "disabled",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enforce_support_layers": "0",
|
"enforce_support_layers": "0",
|
||||||
"ensure_vertical_shell_thickness": "ensure_all",
|
"ensure_vertical_shell_thickness": "ensure_all",
|
||||||
|
|||||||
@@ -126,7 +126,7 @@
|
|||||||
"detect_narrow_internal_solid_infill": "1",
|
"detect_narrow_internal_solid_infill": "1",
|
||||||
"dont_filter_internal_bridges": "disabled",
|
"dont_filter_internal_bridges": "disabled",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enforce_support_layers": "0",
|
"enforce_support_layers": "0",
|
||||||
"ensure_vertical_shell_thickness": "ensure_all",
|
"ensure_vertical_shell_thickness": "ensure_all",
|
||||||
|
|||||||
@@ -126,7 +126,7 @@
|
|||||||
"detect_narrow_internal_solid_infill": "1",
|
"detect_narrow_internal_solid_infill": "1",
|
||||||
"dont_filter_internal_bridges": "disabled",
|
"dont_filter_internal_bridges": "disabled",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enforce_support_layers": "0",
|
"enforce_support_layers": "0",
|
||||||
"ensure_vertical_shell_thickness": "ensure_all",
|
"ensure_vertical_shell_thickness": "ensure_all",
|
||||||
|
|||||||
@@ -126,7 +126,7 @@
|
|||||||
"detect_narrow_internal_solid_infill": "1",
|
"detect_narrow_internal_solid_infill": "1",
|
||||||
"dont_filter_internal_bridges": "disabled",
|
"dont_filter_internal_bridges": "disabled",
|
||||||
"elefant_foot_compensation_layers": "1",
|
"elefant_foot_compensation_layers": "1",
|
||||||
"enable_arc_fitting": "1",
|
"enable_arc_fitting": "0",
|
||||||
"enable_overhang_speed": "1",
|
"enable_overhang_speed": "1",
|
||||||
"enforce_support_layers": "0",
|
"enforce_support_layers": "0",
|
||||||
"ensure_vertical_shell_thickness": "ensure_all",
|
"ensure_vertical_shell_thickness": "ensure_all",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Custom Printer",
|
"name": "Custom Printer",
|
||||||
"version": "02.04.00.01",
|
"version": "02.04.00.03",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "My configurations",
|
"description": "My configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -116,7 +116,7 @@
|
|||||||
"deretraction_speed": [
|
"deretraction_speed": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"z_hop_types": "Normal Lift",
|
"z_hop_types": "Slope Lift",
|
||||||
"silent_mode": "0",
|
"silent_mode": "0",
|
||||||
"single_extruder_multi_material": "1",
|
"single_extruder_multi_material": "1",
|
||||||
"change_filament_gcode": "",
|
"change_filament_gcode": "",
|
||||||
|
|||||||
@@ -118,7 +118,7 @@
|
|||||||
"deretraction_speed": [
|
"deretraction_speed": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"z_hop_types": "Normal Lift",
|
"z_hop_types": "Slope Lift",
|
||||||
"silent_mode": "0",
|
"silent_mode": "0",
|
||||||
"single_extruder_multi_material": "1",
|
"single_extruder_multi_material": "1",
|
||||||
"change_filament_gcode": "",
|
"change_filament_gcode": "",
|
||||||
|
|||||||
@@ -116,7 +116,7 @@
|
|||||||
"deretraction_speed": [
|
"deretraction_speed": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"z_hop_types": "Normal Lift",
|
"z_hop_types": "Slope Lift",
|
||||||
"silent_mode": "0",
|
"silent_mode": "0",
|
||||||
"single_extruder_multi_material": "1",
|
"single_extruder_multi_material": "1",
|
||||||
"change_filament_gcode": "",
|
"change_filament_gcode": "",
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
"instantiation": "false",
|
"instantiation": "false",
|
||||||
"gcode_flavor": "klipper",
|
"gcode_flavor": "klipper",
|
||||||
"single_extruder_multi_material": "0",
|
"single_extruder_multi_material": "0",
|
||||||
|
"wait_for_temp_on_wipe_tower": "1",
|
||||||
"default_filament_profile": [
|
"default_filament_profile": [
|
||||||
"Generic PLA @MyToolChanger"
|
"Generic PLA @MyToolChanger"
|
||||||
],
|
],
|
||||||
@@ -172,11 +173,11 @@
|
|||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"z_hop_types": [
|
"z_hop_types": [
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift"
|
"Slope Lift"
|
||||||
],
|
],
|
||||||
"purge_in_prime_tower": "0",
|
"purge_in_prime_tower": "0",
|
||||||
"machine_pause_gcode": "M601",
|
"machine_pause_gcode": "M601",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "OrcaFilamentLibrary",
|
"name": "OrcaFilamentLibrary",
|
||||||
"version": "02.04.00.03",
|
"version": "02.04.00.04",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Orca Filament Library",
|
"description": "Orca Filament Library",
|
||||||
"filament_list": [
|
"filament_list": [
|
||||||
|
|||||||
@@ -36,6 +36,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PET-CF"
|
"PET-CF"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -39,6 +39,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Bambu Lab"
|
"Bambu Lab"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -39,6 +39,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Bambu Lab"
|
"Bambu Lab"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -21,6 +21,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PLA-AERO"
|
"PLA-AERO"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -27,6 +27,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_scarf_seam_type": [
|
"filament_scarf_seam_type": [
|
||||||
"none"
|
"none"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -21,6 +21,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Bambu Lab"
|
"Bambu Lab"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -36,6 +36,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
"filament_retraction_minimum_travel": [
|
||||||
"3"
|
"3"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -72,15 +72,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"599"
|
"599"
|
||||||
],
|
],
|
||||||
@@ -99,30 +90,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"15"
|
"15"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -165,21 +138,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elas"
|
"Elas"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -42,15 +42,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"445"
|
"445"
|
||||||
],
|
],
|
||||||
@@ -69,30 +60,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"18"
|
"18"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -135,21 +108,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -71,15 +71,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"449.5"
|
"449.5"
|
||||||
],
|
],
|
||||||
@@ -98,30 +89,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"25"
|
"25"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -164,21 +137,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elas"
|
"Elas"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -71,15 +71,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"100"
|
"100"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"500"
|
"500"
|
||||||
],
|
],
|
||||||
@@ -98,30 +89,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"18"
|
"18"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -164,21 +137,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elas"
|
"Elas"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,6 +24,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"290"
|
"290"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -35,6 +35,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elegoo"
|
"Elegoo"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -12,6 +12,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"220"
|
"220"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -44,5 +44,8 @@
|
|||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"10"
|
"10"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"10"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,5 +44,8 @@
|
|||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,8 @@
|
|||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PA-CF"
|
"PA-CF"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"compatible_printers": []
|
"compatible_printers": []
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,5 +8,8 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
"compatible_printers": []
|
"compatible_printers": []
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"11.5"
|
"11.5"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"13"
|
||||||
|
],
|
||||||
"overhang_fan_speed": [
|
"overhang_fan_speed": [
|
||||||
"100"
|
"100"
|
||||||
],
|
],
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user