Merge branch 'main' into feature/flatpak_improvement

This commit is contained in:
SoftFever 2024-12-30 23:07:20 +08:00 committed by GitHub
commit 00eeab93fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
438 changed files with 6291 additions and 1176 deletions

2
.devcontainer/Dockerfile Normal file
View file

@ -0,0 +1,2 @@
ARG BASE_IMAGE
FROM ${BASE_IMAGE}

View file

@ -1,6 +1,13 @@
{
"name": "OrcaSlicer",
"image": "mcr.microsoft.com/devcontainers/cpp:ubuntu-20.04",
"build": {
"dockerfile": "Dockerfile",
"args": {
"PLATFORM": "linux/amd64",
"BASE_IMAGE": "mcr.microsoft.com/devcontainers/cpp:ubuntu-20.04"
},
"options": ["--platform=linux/amd64"]
},
"runArgs": ["--env-file", "/tmp/devcontainer.env"],
"features": {
"ghcr.io/devcontainers/features/desktop-lite:1": {

View file

@ -302,6 +302,10 @@ if (NOT MSVC AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMP
add_compile_options(-gz=zstd)
endif()
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 14)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=template-id-cdtor" )
endif()
endif()
if (SLIC3R_ASAN)
@ -407,12 +411,14 @@ if(SLIC3R_STATIC)
set(Boost_USE_STATIC_LIBS ON)
# Use boost libraries linked statically to the C++ runtime.
# set(Boost_USE_STATIC_RUNTIME ON)
else()
add_definitions(-DBOOST_LOG_DYN_LINK)
endif()
#set(Boost_DEBUG ON)
# set(Boost_COMPILER "-mgw81")
# boost::process was introduced first in version 1.64.0,
# boost::beast::detail::base64 was introduced first in version 1.66.0
find_package(Boost 1.66 REQUIRED COMPONENTS system filesystem thread log locale regex chrono atomic date_time iostreams program_options)
find_package(Boost 1.66 REQUIRED COMPONENTS system filesystem thread log log_setup locale regex chrono atomic date_time iostreams program_options)
add_library(boost_libs INTERFACE)
add_library(boost_headeronly INTERFACE)

View file

@ -2,7 +2,6 @@
PROJECT_ROOT=$(cd -P -- "$(dirname -- "$0")" && printf '%s\n' "$(pwd -P)")
set -x
# Wishlist hint: For developers, creating a Docker Compose
# setup with persistent volumes for the build & deps directories
# would speed up recompile times significantly. For end users,

View file

@ -5,6 +5,8 @@ set -x
# -h $HOSTNAME \
# If there's problems with the X display, try this
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# If you get an error like "Authorization required, but no authorization protocol specified," run line 9 in your terminal before rerunning this program
# xhost +local:docker
docker run \
`# Use the hosts networking. Printer wifi and also dbus communication` \
--net=host \

View file

@ -68,14 +68,14 @@ WORKDIR OrcaSlicer
RUN ./BuildLinux.sh -u
# Build dependencies in ./deps
RUN ./BuildLinux.sh -d
RUN ./BuildLinux.sh -dr
# Build slic3r
RUN ./BuildLinux.sh -s
RUN ./BuildLinux.sh -sr
# Build AppImage
ENV container podman
RUN ./BuildLinux.sh -i
RUN ./BuildLinux.sh -ir
# It's easier to run Orca Slicer as the same username,
# UID and GID as your workstation. Since we bind mount

View file

@ -103,12 +103,20 @@ Explore the latest developments in Orca Slicer with our nightly builds. Feedback
- Run => Options tab => Document Versions: uncheck `Allow debugging when browsing versions`
- menu bar: Product => Run
- Linux (All Distros)
- Docker
- Dependencies: Docker [Installation Instructions](https://www.docker.com/get-started/), git
- clone this repository `git clone https://github.com/SoftFever/OrcaSlicer`
- run `cd OrcaSlicer`
- run `./DockerBuild.sh`
- To run OrcaSlicer:
- run `./DockerRun.sh`
- For most common errors, open `DockerRun.sh` and read the comments.
- Ubuntu
- Dependencies **Will be auto-installed with the shell script**: `libmspack-dev libgstreamerd-3-dev libsecret-1-dev libwebkit2gtk-4.0-dev libosmesa6-dev libssl-dev libcurl4-openssl-dev eglexternalplatform-dev libudev-dev libdbus-1-dev extra-cmake-modules libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev cmake git texinfo`
- Dependencies **Will be auto installed with the shell script**: `libmspack-dev libgstreamerd-3-dev libsecret-1-dev libwebkit2gtk-4.0-dev libosmesa6-dev libssl-dev libcurl4-openssl-dev eglexternalplatform-dev libudev-dev libdbus-1-dev extra-cmake-modules libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev cmake git texinfo`
- run 'sudo ./BuildLinux.sh -u'
- run './BuildLinux.sh -dsir'
# Note:
If you're running Klipper, it's recommended to add the following configuration to your `printer.cfg` file.
```

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 37 KiB

Before After
Before After

View file

@ -4,3 +4,4 @@ This is a documentation from someone exploring the code and is by no means compl
- [Preset, PresetBundle and PresetCollection](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/Preset-and-bundle.md)
- [Plater, Sidebar, Tab, ComboBox](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/plater-sidebar-tab-combobox.md)
- [Slicing Call Hierarchy](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/slicing-hierarchy.md)

View file

@ -0,0 +1,5 @@
## Slicing Call Hierarchy
The Slicing logic is not the easiest to locate in the code base. Below is a flow diagram of function calls that are made after clicking the `Slice Plate` button in the UI. Most of the processing happens in different threads. Note the calls after `BackgroundSlicingProcess::start()`, but this is how you can find the slicing logic.
<img src="../images/slicing_call_heirarchy.svg" alt="Example Image" width="320">

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 390 KiB

View file

@ -1,4 +1,4 @@
FOUND_GTK3=$(dpkg -l libgtk* | grep gtk-3)
FOUND_GTK3=$(dpkg -l libgtk* | grep gtk-3 || echo '')
REQUIRED_DEV_PACKAGES=(
autoconf

View file

@ -16,6 +16,7 @@ REQUIRED_DEV_PACKAGES=(
gstreamermm-devel
gtk3-devel
libmspack-devel
libquadmath-devel
libsecret-devel
libtool
m4

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -4116,7 +4116,7 @@ msgstr ""
msgid "Size:"
msgstr ""
#, possible-c-format, possible-boost-format
#, possible-boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7102,8 +7102,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
msgid "Line width"
@ -10441,10 +10441,10 @@ msgstr ""
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@ -11365,6 +11365,14 @@ msgstr ""
msgid "Force a retraction when changes layer"
msgstr ""
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr ""
@ -12275,8 +12283,8 @@ msgstr ""
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -13953,8 +13961,8 @@ msgid ""
msgstr ""
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: 2024-07-07 18:43+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@ -4427,7 +4427,7 @@ msgstr "Volum:"
msgid "Size:"
msgstr "Mida:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7740,8 +7740,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Quan graveu timelapse sense capçal d'impressió, es recomana afegir una "
"\"Torre de Purga Timelapse\" \n"
@ -11658,15 +11658,15 @@ msgstr "Velocitat màxima del ventilador a la capa"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"La velocitat del ventilador augmentarà linealment de zero a la capa "
"\"close_fan_the_first_x_layers\" al màxim a la capa \"full_fan_speed_layer"
"\". S'ignorarà \"full_fan_speed_layer\" si és inferior a "
"\"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a "
"\"close_fan_the_first_x_layers\" al màxim a la capa "
"\"full_fan_speed_layer\". S'ignorarà \"full_fan_speed_layer\" si és inferior "
"a \"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a "
"la velocitat màxima permesa a la capa \"close_fan_the_first_x_layers\" + 1."
msgid "layer"
@ -12822,6 +12822,14 @@ msgstr "Retracció quan canvia de capa"
msgid "Force a retraction when changes layer"
msgstr "Forçar una retracció quan canvia de capa"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Longitud de Retracció"
@ -13947,8 +13955,8 @@ msgstr "Activar el control de temperatura"
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -15984,8 +15992,8 @@ msgstr ""
"Vols reescriure'l?"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
"Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus "

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: 2024-11-03 20:59+0100\n"
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
"Language-Team: \n"
@ -4342,7 +4342,7 @@ msgstr "Objem:"
msgid "Size:"
msgstr "Velikost:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -12284,6 +12284,14 @@ msgstr "Retrakce při změně vrstvy"
msgid "Force a retraction when changes layer"
msgstr "Vynutit retrakci při změně vrstvy"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Vzdálenost retrakce"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
"Language-Team: \n"
@ -4470,7 +4470,7 @@ msgstr "Volumen:"
msgid "Size:"
msgstr "Größe:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -5981,7 +5981,7 @@ msgid "Edit current plate name"
msgstr "Bearbeite den Namen der aktuellen Platte"
msgid "Move plate to the front"
msgstr ""
msgstr "Bewege die Platte nach vorne"
msgid "Customize current plate"
msgstr "Aktuelle Platte anpassen"
@ -7417,8 +7417,8 @@ msgstr ""
msgid ""
"Timelapse is not supported because Print sequence is set to \"By object\"."
msgstr ""
"Zeitraffer wird nicht unterstützt, da die Druckreihenfolge auf \"Nach Objekt"
"\" eingestellt ist."
"Zeitraffer wird nicht unterstützt, da die Druckreihenfolge auf \"Nach "
"Objekt\" eingestellt ist."
msgid "Errors"
msgstr "Fehler"
@ -7812,13 +7812,13 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Wenn Sie einen Zeitraffer ohne Werkzeugkopf aufnehmen, wird empfohlen, einen "
"\"Timelapse Wischturm\" hinzuzufügen, indem Sie mit der rechten Maustaste "
"auf die leere Position der Bauplatte klicken und \"Primitiv hinzufügen\"->"
"\"Timelapse Wischturm\" wählen."
"auf die leere Position der Bauplatte klicken und \"Primitiv hinzufügen\"-"
">\"Timelapse Wischturm\" wählen."
msgid "Line width"
msgstr "Breite der Linie"
@ -10404,6 +10404,14 @@ msgid ""
"When Detect overhang wall is not enabled, this option is ignored and "
"reversal happens on every even layers regardless."
msgstr ""
"Die Anzahl der Millimeter, die der Überhang betragen muss, damit die "
"Umkehrung als nützlich angesehen wird. Kann ein Prozentsatz der "
"Umfangsbreite sein.\n"
"Der Wert 0 aktiviert die Umkehrung auf jeder geraden Schicht unabhängig "
"davon.\n"
"Wenn die Erkennung der Überhangswand nicht aktiviert ist, wird diese Option "
"ignoriert und die Umkehrung erfolgt auf jeder geraden Schicht unabhängig "
"davon."
msgid "Classic mode"
msgstr "Klassicher Modus"
@ -11997,13 +12005,13 @@ msgstr "Volle Lüfterdrehzahl ab Schicht"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"Die Lüftergeschwindigkeit wird linear von Null bei der Schicht"
"\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
"Die Lüftergeschwindigkeit wird linear von Null bei der "
"Schicht\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
"\"full_fan_speed_layer\" erhöht. \"full_fan_speed_layer\" wird ignoriert, "
"wenn es niedriger ist als \"close_fan_the_first_x_layers\",in diesem Fall "
"läuft der Lüfter bei Schicht \"close_fan_the_first_x_layers\"+ 1 mit maximal "
@ -13174,6 +13182,17 @@ msgstr "Zurückziehen beim Schichtwechsel"
msgid "Force a retraction when changes layer"
msgstr "Erzwingen eines Rückzugs beim Schichtwechsel"
msgid "Retract on top layer"
msgstr "Rückzug auf der obersten Schicht"
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
"Forciert einen Rückzug auf der obersten Schicht. Das Deaktivieren könnte "
"eine Verstopfung bei sehr langsamen Mustern mit kleinen Bewegungen wie der "
"Hilbert-Kurve verhindern."
msgid "Retraction Length"
msgstr "Rückzugslänge"
@ -14334,8 +14353,8 @@ msgstr "aktiviere Temperaturkontrolle"
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -16418,8 +16437,8 @@ msgstr ""
"Möchten Sie es überschreiben?"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
"Wir würden die Voreinstellungen als \"Hersteller Typ Seriennummer @Drucker, "
@ -18475,8 +18494,8 @@ msgstr ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
#~ "Wählen Sie einen AMS-Slot und drücken Sie dann \"Laden\" oder \"Entladen"
#~ "\", um automatisch Filament zu laden oder zu entladen."
#~ "Wählen Sie einen AMS-Slot und drücken Sie dann \"Laden\" oder "
#~ "\"Entladen\", um automatisch Filament zu laden oder zu entladen."
#~ msgid "MC"
#~ msgstr "MC"
@ -18792,8 +18811,8 @@ msgstr ""
#~ msgstr "Keine dünnen Schichten (EXPERIMENTELL)"
#~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n"
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
#~ "selected\". \n"
#~ "To add preset for more prinetrs, Please go to printer selection"
#~ msgstr ""
#~ "Wir würden die Voreinstellungen als \"Hersteller Typ Seriennummer "

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@ -4298,7 +4298,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Size:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7494,13 +7494,13 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgid "Line width"
msgstr "Line width"
@ -11084,10 +11084,10 @@ msgstr "Full fan speed at layer"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@ -12071,6 +12071,14 @@ msgstr "Retract on layer change"
msgid "Force a retraction when changes layer"
msgstr "This forces a retraction on layer changes."
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Retraction Length"
@ -13071,8 +13079,8 @@ msgstr ""
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -14912,8 +14920,8 @@ msgstr ""
"Do you want to rewrite it?"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Carlos Fco. Caruncho Serrano <puzzlero@gmail.com>\n"
"Language-Team: \n"
@ -4463,7 +4463,7 @@ msgstr "Volumen:"
msgid "Size:"
msgstr "Tamaño:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7421,8 +7421,8 @@ msgid ""
"start printing."
msgstr ""
"Hay algunos filamentos desconocidos en los mapeados AMS. Por favor, "
"compruebe si son los filamentos requeridos. Si lo son, presione \"Confirmar"
"\" para empezar a imprimir."
"compruebe si son los filamentos requeridos. Si lo son, presione "
"\"Confirmar\" para empezar a imprimir."
#, c-format, boost-format
msgid "nozzle in preset: %s %s"
@ -7784,13 +7784,13 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Cuando se graba un timelapse sin cabezal, se recomienda añadir una \"Torre "
"de Purga de Timelapse\" haciendo clic con el botón derecho del ratón en una "
"posición vacía de la bandeja de impresión y seleccionando \"Añadir Primitivo"
"\"->Torre de Purga de Timelapse\"."
"posición vacía de la bandeja de impresión y seleccionando \"Añadir "
"Primitivo\"->Torre de Purga de Timelapse\"."
msgid "Line width"
msgstr "Ancho de linea"
@ -11954,16 +11954,16 @@ msgstr "Velocidad máxima del ventilador en la capa"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"La velocidad de ventilador se incrementará linealmente de cero desde la capa "
"\"close_fan_the_first_x_layers\" al máximo en la capa \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" se ignorará si es menor que "
"\"close_fan_the_first_x_layers\", en cuyo caso el ventilador funcionará al "
"máximo permitido en la capa \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" al máximo en la capa "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" se ignorará si es menor "
"que \"close_fan_the_first_x_layers\", en cuyo caso el ventilador funcionará "
"al máximo permitido en la capa \"close_fan_the_first_x_layers\" + 1."
msgid "layer"
msgstr "Capa"
@ -13145,6 +13145,14 @@ msgstr "Retracción al cambiar de capa"
msgid "Force a retraction when changes layer"
msgstr "Forzar una retracción al cambiar de capa"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Longitud de retracción"
@ -14297,8 +14305,8 @@ msgstr "Activar control de temperatura"
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -15631,12 +15639,12 @@ msgstr ""
"impresión de varios colores/materiales, la impresora utilizará el parámetro "
"de compensación por defecto para el filamento durante cada cambio de "
"filamento que tendrá un buen resultado en la mayoría de los casos.\n"
"un solo color/material, con la opción \"calibración de la dinámica de flujo"
"\" marcada en el menú de inicio de impresión, la impresora seguirá el camino "
"antiguo, calibrar el filamento antes de la impresión; cuando se inicia una "
"impresión de varios colores/materiales, la impresora utilizará el parámetro "
"de compensación por defecto para el filamento durante cada cambio de "
"filamento que tendrá un buen resultado en la mayoría de los casos.\n"
"un solo color/material, con la opción \"calibración de la dinámica de "
"flujo\" marcada en el menú de inicio de impresión, la impresora seguirá el "
"camino antiguo, calibrar el filamento antes de la impresión; cuando se "
"inicia una impresión de varios colores/materiales, la impresora utilizará el "
"parámetro de compensación por defecto para el filamento durante cada cambio "
"de filamento que tendrá un buen resultado en la mayoría de los casos.\n"
"\n"
"Tenga en cuenta que hay algunos casos que pueden hacer que los resultados de "
"la calibración no sean fiables, como una adhesión insuficiente en la bandeja "
@ -16391,8 +16399,8 @@ msgstr ""
"¿Quieres reescribirlo?"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
"Cambiaremos el nombre de los perfiles a \"Tipo Número de Serie @impresora "
@ -18166,14 +18174,14 @@ msgstr ""
#~ "Cuando grabamos timelapse sin cabezal de impresión, es recomendable "
#~ "añadir un \"Torre de Purga de Intervalo\" \n"
#~ "presionando con el botón derecho la posición vacía de la bandeja de "
#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de Purga"
#~ "\"."
#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de "
#~ "Purga\"."
#~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n"
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n"
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
#~ "selected\". \n"
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
#~ "selected\". \n"
#~ "To add preset for more printers, Please go to printer selection"
#~ msgstr ""
#~ "Cambiaríamos el nombre de los preajustes a \"Número de serie del Vendedor "

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: Guislain Cyril, Thomas Lété\n"
@ -4456,7 +4456,7 @@ msgstr "Le volume:"
msgid "Size:"
msgstr "Taille:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -13274,6 +13274,14 @@ msgstr "Rétracter lors de changement de couche"
msgid "Force a retraction when changes layer"
msgstr "Cela force une rétraction sur les changements de couche."
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Longueur de Rétraction"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -4339,7 +4339,7 @@ msgstr "Térfogat:"
msgid "Size:"
msgstr "Méret:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7565,8 +7565,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Ha a nyomtatófej nélküli timelapse engedélyezve van, javasoljuk, hogy "
"helyezz el a tálcán egy „Timelapse törlőtornyot“. Ehhez kattints jobb "
@ -11208,10 +11208,10 @@ msgstr "Teljes ventilátor fordulatszám ennél a rétegnél"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@ -12215,6 +12215,14 @@ msgstr "Visszahúzás rétegváltáskor"
msgid "Force a retraction when changes layer"
msgstr "Kényszeríti a visszahúzást minden rétegváltáskor"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Visszahúzás hossza"
@ -13242,8 +13250,8 @@ msgstr ""
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -15099,8 +15107,8 @@ msgstr ""
"Szeretnéd felülírni?"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@ -4438,7 +4438,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Dimensione:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7717,8 +7717,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Quando si registra un timelapse senza testa di stampa, si consiglia di "
"aggiungere un \"Timelapse Torre di pulizia\"\n"
@ -9012,8 +9012,8 @@ msgid ""
msgstr ""
"È stato rilevato un aggiornamento importante che deve essere eseguito prima "
"che la stampa possa continuare. Si desidera aggiornare ora? È possibile "
"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna firmware"
"\"."
"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna "
"firmware\"."
msgid ""
"The firmware version is abnormal. Repairing and updating are required before "
@ -11616,16 +11616,17 @@ msgstr "Massima velocità della ventola al layer"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"La velocità della ventola aumenterà linearmente da zero al livello "
"\"close_fan_the_first_x_layers\" al massimo al livello \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" verrà ignorato se inferiore a "
"\"close_fan_the_first_x_layers\", nel qual caso la ventola funzionerà alla "
"massima velocità consentita al livello \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" al massimo al livello "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" verrà ignorato se "
"inferiore a \"close_fan_the_first_x_layers\", nel qual caso la ventola "
"funzionerà alla massima velocità consentita al livello "
"\"close_fan_the_first_x_layers\" + 1."
msgid "layer"
msgstr ""
@ -12754,6 +12755,14 @@ msgstr "Ritrai al cambio layer"
msgid "Force a retraction when changes layer"
msgstr "Questo forza una retrazione nei cambi layer."
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Lunghezza Retrazione"
@ -13871,8 +13880,8 @@ msgstr "Attiva il controllo della temperatura"
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -15868,8 +15877,8 @@ msgstr ""
"Vuoi riscriverlo?"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
"Rinomineremo le preimpostazioni come \"Tipo di fornitore seriale @printer "
@ -17583,12 +17592,13 @@ msgstr ""
#~ "nostro wiki.\n"
#~ "\n"
#~ "Di solito la calibrazione non è necessaria. Quando si avvia una stampa a "
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del flusso"
#~ "\" selezionata nel menu di avvio della stampa, la stampante seguirà il "
#~ "vecchio modo, calibrando il filamento prima della stampa; Quando si avvia "
#~ "una stampa multicolore/materiale, la stampante utilizzerà il parametro di "
#~ "compensazione predefinito per il filamento durante ogni cambio di "
#~ "filamento, che avrà un buon risultato nella maggior parte dei casi.\n"
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del "
#~ "flusso\" selezionata nel menu di avvio della stampa, la stampante seguirà "
#~ "il vecchio modo, calibrando il filamento prima della stampa; Quando si "
#~ "avvia una stampa multicolore/materiale, la stampante utilizzerà il "
#~ "parametro di compensazione predefinito per il filamento durante ogni "
#~ "cambio di filamento, che avrà un buon risultato nella maggior parte dei "
#~ "casi.\n"
#~ "\n"
#~ "Si prega di notare che ci sono alcuni casi che renderanno il risultato "
#~ "della calibrazione non affidabile: utilizzo di una piastra di texture per "
@ -17978,8 +17988,8 @@ msgstr ""
#~ msgstr "Nessun layer sparso (SPERIMENTALE)"
#~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n"
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
#~ "selected\". \n"
#~ "To add preset for more prinetrs, Please go to printer selection"
#~ msgstr ""
#~ "Rinomineremo le impostazioni predefinite come \"Tipo di fornitore seriale "

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@ -1466,7 +1466,8 @@ msgid "Choose one file (3mf):"
msgstr "ファイルを選択 (3mf):"
msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):"
msgstr "1つ以上のファイルを選択してください (3mf/step/stl/svg/obj/amf/usd*/abc/ply):"
msgstr ""
"1つ以上のファイルを選択してください (3mf/step/stl/svg/obj/amf/usd*/abc/ply):"
msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):"
msgstr "ファイルを選択 (3mf/step/stl/svg/obj/amf)"
@ -2340,7 +2341,9 @@ msgid "Failed to connect to cloud service"
msgstr "クラウドサービスへの接続に失敗しました。"
msgid "Please click on the hyperlink above to view the cloud service status"
msgstr "クラウドサービスのステータスを確認するには、上記のハイパーリンクをクリックしてください。"
msgstr ""
"クラウドサービスのステータスを確認するには、上記のハイパーリンクをクリックし"
"てください。"
msgid "Failed to connect to the printer"
msgstr "プリンターへ接続できませんでした"
@ -4280,7 +4283,7 @@ msgstr "ボリューム"
msgid "Size:"
msgstr "サイズ:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7435,8 +7438,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」"
"を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム"
@ -8614,7 +8617,9 @@ msgid "Where to find your printer's IP and Access Code?"
msgstr "どこでプリンターのIPアドレスとアクセスコードを確認できますか"
msgid "Step 3: Ping the IP address to check for packet loss and latency."
msgstr "ステップ3: パケットロスとレイテンシを確認するために、IPアドレスに対してpingを実行します。"
msgstr ""
"ステップ3: パケットロスとレイテンシを確認するために、IPアドレスに対してpingを"
"実行します。"
msgid "Test"
msgstr "テスト"
@ -9028,15 +9033,15 @@ msgid ""
"Ooze prevention is only supported with the wipe tower when "
"'single_extruder_multi_material' is off."
msgstr ""
"オーズ防止は、'single_extruder_multi_material'がオフの場合にのみ、 "
"ワイプタワーと併用してサポートされます。"
"オーズ防止は、'single_extruder_multi_material'がオフの場合にのみ、 ワイプタ"
"ワーと併用してサポートされます。"
msgid ""
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
"RepRapFirmware and Repetier G-code flavors."
msgstr ""
"プライムタワーは現在、Marlin、RepRap/Sprinter、RepRapFirmware、"
"およびRepetierのGコード形式のみサポートされています。"
"プライムタワーは現在、Marlin、RepRap/Sprinter、RepRapFirmware、およびRepetier"
"のGコード形式のみサポートされています。"
msgid "The prime tower is not supported in \"By object\" print."
msgstr "オブジェクト順で造形する場合、プライムタワーを利用できません"
@ -10971,10 +10976,10 @@ msgstr "最大回転速度の積層"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@ -11945,6 +11950,14 @@ msgstr "積層変更時のリトラクション"
msgid "Force a retraction when changes layer"
msgstr "この設定により、積層を変更時にリトラクションを実行します。"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "リトラクション長さ"
@ -12945,8 +12958,8 @@ msgstr ""
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -14801,8 +14814,8 @@ msgstr ""
"Do you want to rewrite it?"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
@ -15439,8 +15452,9 @@ msgid ""
"height, and results in slightly visible layer lines, but shorter printing "
"time."
msgstr ""
"0.2 mmズルのデフォルトプロファイルと比較すると、レイヤー高さが大きくなっています。"
"そのため、レイヤーラインがわずかに見えますが、印刷時間は短縮されます。"
"0.2 mmズルのデフォルトプロファイルと比較すると、レイヤー高さが大きくなって"
"います。そのため、レイヤーラインがわずかに見えますが、印刷時間は短縮されま"
"す。"
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: 2024-11-06 21:10+0900\n"
"Last-Translator: ElectricalBoy <15651807+ElectricalBoy@users.noreply.github."
"com>\n"
@ -4309,7 +4309,7 @@ msgstr "용량:"
msgid "Size:"
msgstr "크기:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -12540,6 +12540,14 @@ msgstr "레이어 변경 시 후퇴"
msgid "Force a retraction when changes layer"
msgstr "레이어 변경 시 강제로 후퇴를 실행합니다"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "후퇴 길이"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@ -4379,7 +4379,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Maat:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7675,8 +7675,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Bij het opnemen van timelapse zonder toolhead is het aan te raden om een "
"„Timelapse Wipe Tower” toe te voegen \n"
@ -11358,10 +11358,10 @@ msgstr "Volledige snelheid op laag"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@ -12377,6 +12377,14 @@ msgstr ""
"Dit forceert retraction (terugtrekken van filament) als er gewisseld wordt "
"van laag"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Terugtrek (retraction) lengte"
@ -13404,8 +13412,8 @@ msgstr "Temperatuurregeling activeren"
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -13762,10 +13770,11 @@ msgid ""
"Wipe tower is only compatible with relative mode. It is recommended on most "
"printers. Default is checked"
msgstr ""
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie \"label_objects"
"\". Sommige extruders werken beter als deze optie niet is aangevinkt "
"(absolute extrusiemodus). Wipe tower is alleen compatibel met relatieve "
"modus. Het wordt aanbevolen op de meeste printers. Standaard is aangevinkt"
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie "
"\"label_objects\". Sommige extruders werken beter als deze optie niet is "
"aangevinkt (absolute extrusiemodus). Wipe tower is alleen compatibel met "
"relatieve modus. Het wordt aanbevolen op de meeste printers. Standaard is "
"aangevinkt"
msgid ""
"Classic wall generator produces walls with constant extrusion width and for "
@ -15290,8 +15299,8 @@ msgstr ""
"Wil je het herschrijven?"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer 2.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Krzysztof Morga <tlumaczeniebs@gmail.com>\n"
"Language-Team: \n"
@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
"|| n%100>14) ? 1 : 2);\n"
"X-Generator: Poedit 3.4.2\n"
"X-Generator: Poedit 3.5\n"
msgid "Supports Painting"
msgstr "Malowanie podpór"
@ -4419,7 +4419,7 @@ msgstr "Objętość:"
msgid "Size:"
msgstr "Rozmiar:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -10195,7 +10195,7 @@ msgstr ""
"można zakotwiczyć mostów. "
msgid "Reverse on even"
msgstr "Znień kierunek na parzystych"
msgstr "Zmień kierunek na parzystych"
msgid "Overhang reversal"
msgstr "Przeciwny kierunek przy nawisach"
@ -13045,6 +13045,17 @@ msgstr "Retrakcja przy zmianie warstwy"
msgid "Force a retraction when changes layer"
msgstr "Wymuś retrakcję przy zmianie warstwy"
msgid "Retract on top layer"
msgstr "Retrakcja na górnej warstwie"
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
"Włącz wymuszanie retrakcji na górnej warstwie. Wyłączenie tej opcji może "
"prowadzić do gromadzenia się materiału i zatkania dyszy, zwłaszcza przy "
"drukowaniu skomplikowanych i wolnych wzorów, takich jak krzywa Hilberta."
msgid "Retraction Length"
msgstr "Długość retrakcji"

View file

@ -2,7 +2,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: 2024-06-01 21:51-0300\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
@ -4420,7 +4420,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Tamanho:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7716,8 +7716,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Ao gravar um timelapse sem o hotend aparecer, é recomendável adicionar uma "
"\"Torre Prime para Timelapse\" \n"
@ -11581,10 +11581,10 @@ msgstr "Velocidade total do ventilador na camada"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"A velocidade do ventilador aumentará linearmente de zero na camada "
"\"close_fan_the_first_x_layers\" para o máximo na camada "
@ -12729,6 +12729,14 @@ msgstr "Retrair ao mudar de camada"
msgid "Force a retraction when changes layer"
msgstr "Forçar uma retração ao mudar de camada"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Distância de retração"
@ -13834,8 +13842,8 @@ msgstr "Ativar controle de temperatura"
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -15824,8 +15832,8 @@ msgstr ""
"Você deseja reescrevê-lo?"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
"Renomearíamos os presets como \"Fornecedor Tipo Serial @ impressora que você "

View file

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer V2.2.0 Official Release\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"PO-Revision-Date: 2024-11-30 20:56+0700\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: 2024-09-25 22:36+0700\n"
"Last-Translator: \n"
"Language-Team: Andylg <andylg@yandex.ru>\n"
"Language: ru_RU\n"
@ -4472,7 +4472,7 @@ msgstr "Объём:"
msgid "Size:"
msgstr "Размер:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -11097,7 +11097,7 @@ msgstr ""
"максимальные точки. OrcaSlicer следит за тем, чтобы значения "
"adaptive_bed_mesh_min/adaptive_bed_mesh_max не превышают эти минимальные/"
"максимальные значения. Эту информацию можно получить у производителя "
"принтера. По умолчанию установлено значение (-99999, -99999), которое "
"принтера. По умолчанию установлено значение (99999, 99999), которое "
"означает отсутствие ограничений, что позволяет проводить зондирование по "
"всему столу."
@ -13214,6 +13214,14 @@ msgstr "Откат при смене слоя"
msgid "Force a retraction when changes layer"
msgstr "Эта опция включает принудительный откат при переходе со слоя на слой."
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Длина отката"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -4310,7 +4310,7 @@ msgstr "Volym:"
msgid "Size:"
msgstr "Storlek:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7143,8 +7143,8 @@ msgstr ""
msgid ""
"Timelapse is not supported because Print sequence is set to \"By object\"."
msgstr ""
"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per objekt"
"\"."
"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per "
"objekt\"."
msgid "Errors"
msgstr "Fel"
@ -7516,8 +7516,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"När du spelar in timelapse utan verktygshuvud rekommenderas att du lägger "
"till ett \"Timelapse Wipe Tower\".\n"
@ -10002,9 +10002,9 @@ msgid ""
"quality for needle and small details"
msgstr ""
"Aktivera detta val för att sänka utskifts hastigheten för att göra den sista "
"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets tröskel"
"\", detta så att lager kan kylas under en längre tid. Detta kan förbättra "
"kylnings kvaliteten för små detaljer"
"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets "
"tröskel\", detta så att lager kan kylas under en längre tid. Detta kan "
"förbättra kylnings kvaliteten för små detaljer"
msgid "Normal printing"
msgstr "Normal utskrift"
@ -11096,10 +11096,10 @@ msgstr "Full fläkthastighet vid lager"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@ -12085,6 +12085,14 @@ msgstr "Retraktera vid lager byte"
msgid "Force a retraction when changes layer"
msgstr "Tvinga retraktion vid lager byte"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Retraktions längd"
@ -13082,8 +13090,8 @@ msgstr ""
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -14938,8 +14946,8 @@ msgstr ""
"Vill du skriva om det?"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: 2024-10-01 22:31+0300\n"
"Last-Translator: GlauTech\n"
"Language-Team: \n"
@ -4376,7 +4376,7 @@ msgstr "Hacim:"
msgid "Size:"
msgstr "Boyut:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7649,8 +7649,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Araç başlığı olmadan timelapse kaydederken, bir \"Timelapse Wipe Tower\" "
"eklenmesi önerilir.\n"
@ -9267,8 +9267,8 @@ msgid ""
"Please select \"By object\" print sequence to print multiple objects in "
"spiral vase mode."
msgstr ""
"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye göre"
"\" yazdırma sırasını seçin."
"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye "
"göre\" yazdırma sırasını seçin."
msgid ""
"The spiral vase mode does not work when an object contains more than one "
@ -11720,16 +11720,17 @@ msgstr "Maksimum fan hızı"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan "
"\"ful_fan_speed_layer\" katmanında maksimuma doğrusal olarak artırılacaktır. "
"\"full_fan_speed_layer\", \"close_fan_the_first_x_layers\" değerinden "
"düşükse göz ardı edilecektir; bu durumda fan, \"close_fan_the_first_x_layers"
"\" + 1 katmanında izin verilen maksimum hızda çalışacaktır."
"düşükse göz ardı edilecektir; bu durumda fan, "
"\"close_fan_the_first_x_layers\" + 1 katmanında izin verilen maksimum hızda "
"çalışacaktır."
msgid "layer"
msgstr "katman"
@ -12884,6 +12885,14 @@ msgstr "Katman değişiminde geri çek"
msgid "Force a retraction when changes layer"
msgstr "Katmanı değiştirdiğinde geri çekilmeyi zorla"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "Geri Çekme Uzunluğu"
@ -14012,8 +14021,8 @@ msgstr "Sıcaklık kontrolünü etkinleştirin"
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -16049,8 +16058,8 @@ msgstr ""
"Yeniden yazmak ister misin?"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
"Ön ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri "
@ -18389,12 +18398,12 @@ msgstr ""
#~ msgstr "Seyrek katman yok (DENEYSEL)"
#~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n"
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
#~ "selected\". \n"
#~ "To add preset for more prinetrs, Please go to printer selection"
#~ msgstr ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n"
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
#~ "selected\". \n"
#~ "To add preset for more prinetrs, Please go to printer selection"
#~ msgid "The Config can not be loaded."

File diff suppressed because it is too large Load diff

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Slic3rPE\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: 2024-07-28 07:12+0000\n"
"Last-Translator: Handle <mail@bysb.net>\n"
"Language-Team: \n"
@ -4229,7 +4229,7 @@ msgstr "体积:"
msgid "Size:"
msgstr "尺寸:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7315,8 +7315,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"在录制无工具头延时摄影视频时,建议添加“延时摄影擦料塔”\n"
"右键单击打印板的空白位置,选择“添加标准模型”->“延时摄影擦料塔”。"
@ -9592,7 +9592,6 @@ msgstr ""
"值0表示在每个偶数层上都启用反转。\n"
"当未启用检测悬垂时,此选项将被忽略,反转将在每个偶数层上发生。"
msgid "Classic mode"
msgstr "经典模式"
@ -10878,10 +10877,10 @@ msgstr "满速风扇在"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"风扇速度将从“禁用第一层”的零线性上升到“全风扇速度层”的最大。如果低于“禁用风扇"
"第一层”,则“全风扇速度第一层”将被忽略,在这种情况下,风扇将在“禁用风扇第一"
@ -11883,6 +11882,14 @@ msgstr "换层时回抽"
msgid "Force a retraction when changes layer"
msgstr "强制在换层时回抽。"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "回抽长度"
@ -12874,8 +12881,8 @@ msgstr "激活温度控制"
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -14713,8 +14720,8 @@ msgstr ""
"你想重写预设吗"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
"我们将会把预设重命名为“供应商类型名 @ 您选择的打印机”\n"
@ -16440,8 +16447,8 @@ msgstr ""
#~ msgstr "无稀疏层(实验)"
#~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n"
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
#~ "selected\". \n"
#~ "To add preset for more prinetrs, Please go to printer selection"
#~ msgstr ""
#~ "我们会将预设重命名为“供应商 类型 系列 @您选择的打印机”。\n"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"PO-Revision-Date: 2023-11-06 14:37+0800\n"
"Last-Translator: ablegods <ablegods@gmail.com>\n"
"Language-Team: \n"
@ -4362,7 +4362,7 @@ msgstr "體積:"
msgid "Size:"
msgstr "尺寸:"
#, fuzzy, c-format, boost-format
#, fuzzy, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@ -7575,8 +7575,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"在錄製無工具頭縮時錄影影片時,建議增加“縮時錄影擦拭塔”\n"
"右鍵單擊列印板的空白位置,選擇“新增標準模型”->“縮時錄影擦拭塔”。"
@ -11216,10 +11216,10 @@ msgstr "滿速風扇在"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"風扇速度將從“禁用第一層”的零線性上升到“全風扇速度層”的最大。如果低於“禁用風扇"
"第一層”,則“全風扇速度第一層”將被忽略,在這種情況下,風扇將在“禁用風扇第一"
@ -12237,6 +12237,14 @@ msgstr "換層時回抽"
msgid "Force a retraction when changes layer"
msgstr "強制在換層時回抽。"
msgid "Retract on top layer"
msgstr ""
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
msgid "Retraction Length"
msgstr "回抽長度"
@ -13213,8 +13221,8 @@ msgstr "啟動溫度控制"
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present. \n"
@ -15056,8 +15064,8 @@ msgid ""
msgstr ""
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\". \n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.7 KiB

View file

@ -0,0 +1,34 @@
<svg width="31" height="507" viewBox="0 0 31 507" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1_421)">
<path d="M23.9769 127.531H6.49071C4.80136 127.531 3.40839 128.894 3.40839 130.554V145.491H6.87599V133.251C6.87599 132.747 7.26128 132.392 7.73549 132.392H22.7025C23.1767 132.392 23.562 132.777 23.562 133.251V145.491H27V130.554C27 128.865 25.6366 127.531 23.9769 127.531Z" fill="#B3B3B3"/>
<path d="M21.4872 163.6V151.3C21.4872 149.611 20.1535 148.307 18.4938 148.307H6.46091C4.77156 148.307 3.43787 149.641 3.43787 151.3V163.6C3.43787 165.23 4.8012 166.593 6.46091 166.593H18.4938C20.1832 166.593 21.4872 165.23 21.4872 163.6ZM6.34236 161.881V152.99H18.5827V161.881H6.34236Z" fill="#B3B3B3"/>
<path d="M21.4872 184.317V172.017C21.4872 170.328 20.1535 169.024 18.4938 169.024H6.46091C4.77156 169.024 3.43787 170.357 3.43787 172.017V184.317C3.43787 185.947 4.8012 187.31 6.46091 187.31H18.4938C20.1832 187.31 21.4872 185.947 21.4872 184.317ZM6.34236 182.627V173.736H18.5827V182.627H6.34236Z" fill="#B3B3B3"/>
<path d="M27 194.631V189.77H6.54998C4.80136 189.77 3.40839 191.163 3.40839 192.882V199.521H6.43143V194.631H27Z" fill="#B3B3B3"/>
<path d="M27 231.381V212.087H3.40839V216.948H11.0549V231.411C11.0549 233.1 12.4182 234.464 14.078 234.464H23.9769C25.6663 234.464 27 233.1 27 231.411V231.381ZM15.2931 229.574C14.7893 229.574 14.4336 229.188 14.4336 228.714V216.948H23.6213V228.684C23.6213 229.159 23.236 229.603 22.7618 229.603H15.2931V229.574Z" fill="#B3B3B3"/>
<path d="M27 242.081V237.22H6.54998C4.80136 237.22 3.40839 238.613 3.40839 240.332V246.971H6.43143V242.081H27Z" fill="#B3B3B3"/>
<path d="M21.4874 263.657V250.557H18.494V263.094H14.5818V252.157C14.5818 250.438 13.1888 249.045 11.4698 249.045H6.52034C4.80136 249.045 3.40839 250.438 3.40839 252.157V267.954H18.0494C19.9462 267.954 21.4577 266.028 21.4577 263.657H21.4874ZM6.40179 263.094V253.906H11.5291V263.094H6.40179Z" fill="#B3B3B3"/>
<path d="M27 279.394V274.534H21.4577V270.74H18.4643V274.534H6.52034C4.80136 274.534 3.40839 275.927 3.40839 277.646V283.158H6.43143V280.58C6.43143 279.958 6.96491 279.394 7.5873 279.394H18.4347V283.158H21.4281V279.394H27Z" fill="#B3B3B3"/>
<path d="M21.3688 301.297V288.701C21.3688 286.982 19.9758 285.618 18.2568 285.618H6.49065C4.77166 285.618 3.37869 286.982 3.37869 288.701V304.112H6.34246V290.449H10.3435V304.409H18.2272C19.9462 304.409 21.3391 303.016 21.3391 301.297H21.3688ZM13.3962 299.548V290.42H18.4643V299.548H13.3962Z" fill="#B3B3B3"/>
<path d="M16.5971 20.8057H23.4731C25.1624 20.8057 26.4665 19.4423 26.4665 17.8122V0H3.2009V19.057C3.2009 20.6871 4.56423 22.0504 6.22394 22.0504H14.0779C14.9967 22.0504 15.8562 21.6651 16.4193 20.9242L16.5675 20.776L16.5971 20.8057ZM23.1174 4.83094V15.1745C23.1174 15.6191 22.7321 16.034 22.2579 16.034H17.3973C16.9231 16.034 16.5379 15.6191 16.5379 15.1745V4.83094H23.1174ZM7.46872 17.2788C6.96488 17.2788 6.60923 16.8935 6.60923 16.4193V4.83094H13.1592V16.4193C13.1592 16.9231 12.7739 17.2788 12.3293 17.2788H7.46872Z" fill="#B3B3B3"/>
<path d="M21.3096 39.4478V26.3479H18.3162V38.8846H14.404V27.9483C14.404 26.2294 13.011 24.8364 11.292 24.8364H6.34255C4.62356 24.8364 3.23059 26.2294 3.23059 27.9483V43.7452H17.8716C19.7684 43.7452 21.2799 41.8188 21.2799 39.4478H21.3096ZM6.224 38.8846V29.697H11.3513V38.8846H6.224Z" fill="#B3B3B3"/>
<path d="M21.3095 69.0854V46.5311H3.23053V51.4214H18.2568V56.934H3.2009V61.7946H18.2865V67.3072H3.2009V72.1974H18.1976C19.9166 72.1974 21.3095 70.8044 21.3095 69.0854Z" fill="#B3B3B3"/>
<path d="M21.3096 90.4246V79.5476H26.8222V74.6573H3.23059V90.4246C3.23059 92.1732 4.62356 93.5662 6.34255 93.5662H18.1976C19.9166 93.5662 21.3096 92.1732 21.3096 90.4246ZM6.25363 88.676V79.5179H18.2865V88.676H6.25363Z" fill="#B3B3B3"/>
<path d="M6.10545 109.63V100.738H21.3096V96.0261H6.25363C4.56429 96.0261 3.23059 97.3894 3.23059 99.0491V114.313H21.3096V109.63H6.10545Z" fill="#B3B3B3"/>
<path d="M26.4665 322.162L14.9078 313.745L3.34906 322.162V325.066L14.9078 316.619L26.4665 325.066V322.162Z" fill="#B3B3B3"/>
<path d="M26.4665 498.654V495.779L14.9078 504.196L3.34906 495.779V498.654L14.9078 507.071L26.4665 498.654Z" fill="#B3B3B3"/>
<path d="M16.1821 351.651V340.626C16.1821 340.241 16.5081 339.915 16.8934 339.915H21.2502C21.6355 339.915 21.9911 340.241 21.9911 340.626V353.489H24.7474V338.433C24.7474 337.04 23.6508 335.914 22.2875 335.914H15.9154C14.5817 335.914 13.4555 337.01 13.4555 338.373V349.458C13.4555 349.843 13.0998 350.229 12.7145 350.229H9.158C8.74308 350.229 8.32815 349.873 8.32815 349.488V336.566H5.54221V351.681C5.54221 353.044 6.66844 354.141 8.03177 354.141H13.6926C15.0559 354.141 16.1821 353.014 16.1821 351.681V351.651Z" fill="#B3B3B3"/>
<path d="M7.85389 367.478V360.216H20.2424V356.363H7.97244C6.60911 356.363 5.51251 357.46 5.51251 358.823V371.242H20.2424V367.418H7.88353V367.478H7.85389Z" fill="#B3B3B3"/>
<path d="M20.2425 386.149V373.287H-3.05176e-05V377.228H5.51258V386.12C5.51258 387.542 6.63881 388.669 8.03178 388.669H17.6937C19.0866 388.669 20.2129 387.542 20.2129 386.12L20.2425 386.149ZM7.94287 384.727V377.258H17.7529V384.727H7.94287Z" fill="#B3B3B3"/>
<path d="M20.1536 403.458V393.203C20.1536 391.81 19.0274 390.714 17.6344 390.714H8.06141C6.66844 390.714 5.54221 391.81 5.54221 393.203V405.74H7.9725V394.626H11.2326V406.007H17.664C19.057 406.007 20.1832 404.88 20.1832 403.487L20.1536 403.458ZM13.6333 402.035V394.626H17.7529V402.035H13.6333Z" fill="#B3B3B3"/>
<path d="M18.4642 412.557L17.5454 411.934H20.2128V407.992H5.51251V411.934H16.3006V418.277H20.2424V415.906C20.2424 414.572 19.5608 413.297 18.4642 412.557Z" fill="#B3B3B3"/>
<path d="M21.9614 420.262V426.783H5.51251V430.784H21.9614V437.274H24.7474V420.262H21.9614Z" fill="#B3B3B3"/>
<path d="M20.2424 450.878V440.209H17.7825V450.434H14.5816V441.542C14.5816 440.149 13.4554 439.023 12.0624 439.023H8.03172C6.63874 439.023 5.51251 440.149 5.51251 441.542V454.405H17.4565C18.9977 454.405 20.2424 452.834 20.2424 450.908V450.878ZM7.9428 450.434V442.965H12.1217V450.434H7.9428Z" fill="#B3B3B3"/>
<path d="M17.7233 456.657H8.06141C6.66844 456.657 5.54221 457.784 5.54221 459.177V471.625H8.00213V460.599H17.8418V471.625H20.3018V459.177C20.3018 457.784 19.1755 456.657 17.7826 456.657H17.7233Z" fill="#B3B3B3"/>
<path d="M14.3742 485.702L20.2424 488.251V484.458L15.204 482.235V477.582H24.7474V473.64H5.51251V477.582H13.0108V482.413L5.54215 484.991V488.666L14.2556 485.643L14.3742 485.702Z" fill="#B3B3B3"/>
</g>
<defs>
<clipPath id="clip0_1_421">
<rect width="31" height="507" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 6.4 KiB

View file

@ -1,7 +1,7 @@
{
"name": "Bambulab",
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
"version": "01.09.00.23",
"version": "01.10.00.26",
"force_update": "0",
"description": "the initial version of BBL configurations",
"machine_model_list": [
@ -797,6 +797,14 @@
"name": "Bambu TPU 95A HF @base",
"sub_path": "filament/Bambu TPU 95A HF @base.json"
},
{
"name": "Generic TPU for AMS @base",
"sub_path": "filament/Generic TPU for AMS @base.json"
},
{
"name": "Bambu TPU for AMS @base",
"sub_path": "filament/Bambu TPU for AMS @base.json"
},
{
"name": "Bambu PETG Basic @base",
"sub_path": "filament/Bambu PETG Basic @base.json"
@ -833,6 +841,22 @@
"name": "Bambu PETG HF @base",
"sub_path": "filament/Bambu PETG HF @base.json"
},
{
"name": "Fiberon PETG-ESD @base",
"sub_path": "filament/Fiberon PETG-ESD @base.json"
},
{
"name": "Fiberon PETG-rCF @base",
"sub_path": "filament/Fiberon PETG-rCF @base.json"
},
{
"name": "Fiberon PET-CF @base",
"sub_path": "filament/Fiberon PET-CF @base.json"
},
{
"name": "Generic PETG HF @base",
"sub_path": "filament/Generic PETG HF @base.json"
},
{
"name": "Bambu ABS @base",
"sub_path": "filament/Bambu ABS @base.json"
@ -877,6 +901,10 @@
"name": "Bambu ASA-Aero @base",
"sub_path": "filament/Bambu ASA-Aero @base.json"
},
{
"name": "Bambu ASA-CF @base",
"sub_path": "filament/Bambu ASA-CF @base.json"
},
{
"name": "Generic PVA @base",
"sub_path": "filament/Generic PVA @base.json"
@ -925,6 +953,22 @@
"name": "Bambu PA6-GF @base",
"sub_path": "filament/Bambu PA6-GF @base.json"
},
{
"name": "Fiberon PA6-CF @base",
"sub_path": "filament/Fiberon PA6-CF @base.json"
},
{
"name": "Fiberon PA6-GF @base",
"sub_path": "filament/Fiberon PA6-GF @base.json"
},
{
"name": "Fiberon PA12-CF @base",
"sub_path": "filament/Fiberon PA12-CF @base.json"
},
{
"name": "Fiberon PA612-CF @base",
"sub_path": "filament/Fiberon PA612-CF @base.json"
},
{
"name": "Generic HIPS @base",
"sub_path": "filament/Generic HIPS @base.json"
@ -1745,6 +1789,38 @@
"name": "Bambu TPU 95A HF @BBL A1",
"sub_path": "filament/Bambu TPU 95A HF @BBL A1.json"
},
{
"name": "Generic TPU for AMS @BBL X1C",
"sub_path": "filament/Generic TPU for AMS @BBL X1C.json"
},
{
"name": "Generic TPU for AMS @BBL P1P",
"sub_path": "filament/Generic TPU for AMS @BBL P1P.json"
},
{
"name": "Generic TPU for AMS @BBL A1",
"sub_path": "filament/Generic TPU for AMS @BBL A1.json"
},
{
"name": "Generic TPU for AMS @BBL A1M",
"sub_path": "filament/Generic TPU for AMS @BBL A1M.json"
},
{
"name": "Bambu TPU for AMS @BBL X1C",
"sub_path": "filament/Bambu TPU for AMS @BBL X1C.json"
},
{
"name": "Bambu TPU for AMS @BBL P1P",
"sub_path": "filament/Bambu TPU for AMS @BBL P1P.json"
},
{
"name": "Bambu TPU for AMS @BBL A1",
"sub_path": "filament/Bambu TPU for AMS @BBL A1.json"
},
{
"name": "Bambu TPU for AMS @BBL A1M",
"sub_path": "filament/Bambu TPU for AMS @BBL A1M.json"
},
{
"name": "Bambu PETG Basic @BBL X1C",
"sub_path": "filament/Bambu PETG Basic @BBL X1C.json"
@ -1945,6 +2021,50 @@
"name": "Generic PCTG @BBL A1M",
"sub_path": "filament/Generic PCTG @BBL A1M.json"
},
{
"name": "Fiberon PETG-ESD @BBL X1C",
"sub_path": "filament/Fiberon PETG-ESD @BBL X1C.json"
},
{
"name": "Fiberon PETG-rCF @BBL X1C",
"sub_path": "filament/Fiberon PETG-rCF @BBL X1C.json"
},
{
"name": "Fiberon PET-CF @BBL X1C",
"sub_path": "filament/Fiberon PET-CF @BBL X1C.json"
},
{
"name": "Generic PETG HF @BBL X1C",
"sub_path": "filament/Generic PETG HF @BBL X1C.json"
},
{
"name": "Generic PETG HF @BBL X1C 0.2 nozzle",
"sub_path": "filament/Generic PETG HF @BBL X1C 0.2 nozzle.json"
},
{
"name": "Generic PETG HF @BBL P1P",
"sub_path": "filament/Generic PETG HF @BBL P1P.json"
},
{
"name": "Generic PETG HF @BBL P1P 0.2 nozzle",
"sub_path": "filament/Generic PETG HF @BBL P1P 0.2 nozzle.json"
},
{
"name": "Generic PETG HF @BBL A1",
"sub_path": "filament/Generic PETG HF @BBL A1.json"
},
{
"name": "Generic PETG HF @BBL A1 0.2 nozzle",
"sub_path": "filament/Generic PETG HF @BBL A1 0.2 nozzle.json"
},
{
"name": "Generic PETG HF @BBL A1M",
"sub_path": "filament/Generic PETG HF @BBL A1M.json"
},
{
"name": "Generic PETG HF @BBL A1M 0.2 nozzle",
"sub_path": "filament/Generic PETG HF @BBL A1M 0.2 nozzle.json"
},
{
"name": "Bambu ABS @BBL X1C",
"sub_path": "filament/Bambu ABS @BBL X1C.json"
@ -2173,6 +2293,30 @@
"name": "Bambu ASA-Aero @BBL A1",
"sub_path": "filament/Bambu ASA-Aero @BBL A1.json"
},
{
"name": "Bambu ASA-CF @BBL X1C",
"sub_path": "filament/Bambu ASA-CF @BBL X1C.json"
},
{
"name": "Bambu ASA-CF @BBL X1C 0.6 nozzle",
"sub_path": "filament/Bambu ASA-CF @BBL X1C 0.6 nozzle.json"
},
{
"name": "Bambu ASA-CF @BBL P1P",
"sub_path": "filament/Bambu ASA-CF @BBL P1P.json"
},
{
"name": "Bambu ASA-CF @BBL P1P 0.6 nozzle",
"sub_path": "filament/Bambu ASA-CF @BBL P1P 0.6 nozzle.json"
},
{
"name": "Bambu ASA-CF @BBL A1",
"sub_path": "filament/Bambu ASA-CF @BBL A1.json"
},
{
"name": "Bambu ASA-CF @BBL A1 0.6 nozzle",
"sub_path": "filament/Bambu ASA-CF @BBL A1 0.6 nozzle.json"
},
{
"name": "Generic PVA @0.2 nozzle",
"sub_path": "filament/Generic PVA @0.2 nozzle.json"
@ -2321,6 +2465,22 @@
"name": "Bambu PA6-GF @BBL A1",
"sub_path": "filament/Bambu PA6-GF @BBL A1.json"
},
{
"name": "Fiberon PA6-CF @BBL X1C",
"sub_path": "filament/Fiberon PA6-CF @BBL X1C.json"
},
{
"name": "Fiberon PA6-GF @BBL X1C",
"sub_path": "filament/Fiberon PA6-GF @BBL X1C.json"
},
{
"name": "Fiberon PA12-CF @BBL X1C",
"sub_path": "filament/Fiberon PA12-CF @BBL X1C.json"
},
{
"name": "Fiberon PA612-CF @BBL X1C",
"sub_path": "filament/Fiberon PA612-CF @BBL X1C.json"
},
{
"name": "Generic HIPS @BBL X1C",
"sub_path": "filament/Generic HIPS @BBL X1C.json"

View file

@ -75,80 +75,100 @@
"Bambu Lab X1": {
"downward_check": {
"Bambu Lab X1 0.2 nozzle": [
"Bambu Lab A1 mini 0.2 nozzle"
"Bambu Lab A1 mini 0.2 nozzle",
"Bambu Lab A1 0.2 nozzle"
],
"Bambu Lab X1 0.4 nozzle": [
"Bambu Lab A1 mini 0.4 nozzle"
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 0.4 nozzle"
],
"Bambu Lab X1 0.6 nozzle": [
"Bambu Lab A1 mini 0.6 nozzle"
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 0.6 nozzle"
],
"Bambu Lab X1 0.8 nozzle": [
"Bambu Lab A1 mini 0.8 nozzle"
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.8 nozzle"
]
}
},
"Bambu Lab X1 Carbon": {
"downward_check": {
"Bambu Lab X1 Carbon 0.2 nozzle": [
"Bambu Lab A1 mini 0.2 nozzle"
"Bambu Lab A1 mini 0.2 nozzle",
"Bambu Lab A1 0.2 nozzle"
],
"Bambu Lab X1 Carbon 0.4 nozzle": [
"Bambu Lab A1 mini 0.4 nozzle"
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 0.4 nozzle"
],
"Bambu Lab X1 Carbon 0.6 nozzle": [
"Bambu Lab A1 mini 0.6 nozzle"
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 0.6 nozzle"
],
"Bambu Lab X1 Carbon 0.8 nozzle": [
"Bambu Lab A1 mini 0.8 nozzle"
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.8 nozzle"
]
}
},
"Bambu Lab X1E": {
"downward_check": {
"Bambu Lab X1E 0.2 nozzle": [
"Bambu Lab A1 mini 0.2 nozzle"
"Bambu Lab A1 mini 0.2 nozzle",
"Bambu Lab A1 0.2 nozzle"
],
"Bambu Lab X1E 0.4 nozzle": [
"Bambu Lab A1 mini 0.4 nozzle"
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 0.4 nozzle"
],
"Bambu Lab X1E 0.6 nozzle": [
"Bambu Lab A1 mini 0.6 nozzle"
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 0.6 nozzle"
],
"Bambu Lab X1E 0.8 nozzle": [
"Bambu Lab A1 mini 0.8 nozzle"
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.8 nozzle"
]
}
},
"Bambu Lab P1P": {
"downward_check": {
"Bambu Lab P1P 0.2 nozzle": [
"Bambu Lab A1 mini 0.2 nozzle"
"Bambu Lab A1 mini 0.2 nozzle",
"Bambu Lab A1 0.2 nozzle"
],
"Bambu Lab P1P 0.4 nozzle": [
"Bambu Lab A1 mini 0.4 nozzle"
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 0.4 nozzle"
],
"Bambu Lab P1P 0.6 nozzle": [
"Bambu Lab A1 mini 0.6 nozzle"
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 0.6 nozzle"
],
"Bambu Lab P1P 0.8 nozzle": [
"Bambu Lab A1 mini 0.8 nozzle"
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.8 nozzle"
]
}
},
"Bambu Lab P1S": {
"downward_check": {
"Bambu Lab P1S 0.2 nozzle": [
"Bambu Lab A1 mini 0.2 nozzle"
"Bambu Lab A1 mini 0.2 nozzle",
"Bambu Lab A1 0.2 nozzle"
],
"Bambu Lab P1S 0.4 nozzle": [
"Bambu Lab A1 mini 0.4 nozzle"
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 0.4 nozzle"
],
"Bambu Lab P1S 0.6 nozzle": [
"Bambu Lab A1 mini 0.6 nozzle"
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 0.6 nozzle"
],
"Bambu Lab P1S 0.8 nozzle": [
"Bambu Lab A1 mini 0.8 nozzle"
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.8 nozzle"
]
}
}

View file

@ -8,9 +8,15 @@
"fan_max_speed": [
"20"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"2"
],
"filament_retraction_distances_when_cut": [
"18"
],
"hot_plate_temp": [
"100"
],

View file

@ -8,9 +8,15 @@
"fan_max_speed": [
"20"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"16"
],
"filament_retraction_distances_when_cut": [
"18"
],
"hot_plate_temp": [
"100"
],

View file

@ -8,9 +8,15 @@
"fan_max_speed": [
"60"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"2"
],
"filament_retraction_distances_when_cut": [
"18"
],
"slow_down_layer_time": [
"12"
],

View file

@ -8,9 +8,15 @@
"fan_max_speed": [
"60"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_retraction_distances_when_cut": [
"18"
],
"nozzle_temperature": [
"260"
],

View file

@ -8,9 +8,15 @@
"fan_max_speed": [
"60"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"16"
],
"filament_retraction_distances_when_cut": [
"18"
],
"slow_down_layer_time": [
"12"
],

View file

@ -5,12 +5,13 @@
"from": "system",
"filament_id": "GFB00",
"instantiation": "false",
"filament_flow_ratio": [
"0.95"
],
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
"filament_cost": [
"24.99"
],
"filament_flow_ratio": [
"0.95"
],
"filament_vendor": [
"Bambu Lab"
]

View file

@ -5,6 +5,12 @@
"from": "system",
"setting_id": "GFSB50_02",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",

View file

@ -5,6 +5,12 @@
"from": "system",
"setting_id": "GFSB50_01",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1P 0.6 nozzle",

View file

@ -5,6 +5,12 @@
"from": "system",
"setting_id": "GFSB50_00",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",

View file

@ -5,6 +5,7 @@
"from": "system",
"filament_id": "GFB50",
"instantiation": "false",
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
"fan_cooling_layer_time": [
"12"
],
@ -17,15 +18,15 @@
"filament_density": [
"1.08"
],
"filament_type": [
"ABS-GF"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_type": [
"ABS-GF"
],
"filament_vendor": [
"Bambu Lab"
],

View file

@ -5,9 +5,15 @@
"from": "system",
"setting_id": "GFSB01_10",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"2"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab A1 0.2 nozzle"
]

View file

@ -8,6 +8,12 @@
"chamber_temperatures": [
"60"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab A1 0.4 nozzle"
]

View file

@ -8,6 +8,12 @@
"fan_min_speed": [
"25"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle"

View file

@ -5,9 +5,15 @@
"from": "system",
"setting_id": "GFSB01_03",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"2"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab X1 0.2 nozzle"
]

View file

@ -8,6 +8,12 @@
"fan_min_speed": [
"25"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"filament_retraction_speed": [
"0.4"
],

View file

@ -5,9 +5,15 @@
"from": "system",
"setting_id": "GFSB01_01",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"2"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.2 nozzle",
"Bambu Lab P1S 0.2 nozzle",

View file

@ -8,6 +8,12 @@
"chamber_temperatures": [
"60"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab P1S 0.4 nozzle",

View file

@ -8,6 +8,12 @@
"fan_min_speed": [
"25"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",

View file

@ -5,6 +5,7 @@
"from": "system",
"filament_id": "GFB01",
"instantiation": "false",
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
"fan_max_speed": [
"35"
],

View file

@ -5,6 +5,7 @@
"from": "system",
"filament_id": "GFB02",
"instantiation": "false",
"description": "This filament is only used to print models with a low density usually, and some special parameters are required. To get better printing quality, please refer to this wiki: ASA Aero Printing Guide.",
"fan_cooling_layer_time": [
"30"
],
@ -26,9 +27,6 @@
"filament_max_volumetric_speed": [
"12"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retraction_length": [
"1.5"
],
@ -58,5 +56,8 @@
],
"slow_down_layer_time": [
"5"
],
"filament_scarf_seam_type": [
"none"
]
}

View file

@ -0,0 +1,12 @@
{
"type": "filament",
"name": "Bambu ASA-CF @BBL A1 0.6 nozzle",
"inherits": "Bambu ASA-CF @base",
"from": "system",
"setting_id": "GFSB51_05",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle"
]
}

View file

@ -0,0 +1,11 @@
{
"type": "filament",
"name": "Bambu ASA-CF @BBL A1",
"inherits": "Bambu ASA-CF @base",
"from": "system",
"setting_id": "GFSB51_04",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab A1 0.4 nozzle"
]
}

View file

@ -0,0 +1,12 @@
{
"type": "filament",
"name": "Bambu ASA-CF @BBL P1P 0.6 nozzle",
"inherits": "Bambu ASA-CF @base",
"from": "system",
"setting_id": "GFSB51_03",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle"
]
}

View file

@ -0,0 +1,11 @@
{
"type": "filament",
"name": "Bambu ASA-CF @BBL P1P",
"inherits": "Bambu ASA-CF @base",
"from": "system",
"setting_id": "GFSB51_02",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab P1P 0.4 nozzle"
]
}

View file

@ -0,0 +1,18 @@
{
"type": "filament",
"name": "Bambu ASA-CF @BBL X1C 0.6 nozzle",
"inherits": "Bambu ASA-CF @base",
"from": "system",
"setting_id": "GFSB51_01",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle"
]
}

View file

@ -0,0 +1,14 @@
{
"type": "filament",
"name": "Bambu ASA-CF @BBL X1C",
"inherits": "Bambu ASA-CF @base",
"from": "system",
"setting_id": "GFSB51_00",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab X1E 0.4 nozzle"
]
}

View file

@ -0,0 +1,44 @@
{
"type": "filament",
"name": "Bambu ASA-CF @base",
"inherits": "fdm_filament_asa",
"from": "system",
"filament_id": "GFB51",
"instantiation": "false",
"fan_max_speed": [
"25"
],
"filament_cost": [
"36.99"
],
"filament_density": [
"1.02"
],
"filament_flow_ratio": [
"0.9"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_type": [
"ASA-CF"
],
"filament_vendor": [
"Bambu Lab"
],
"nozzle_temperature": [
"275"
],
"nozzle_temperature_initial_layer": [
"275"
],
"nozzle_temperature_range_low": [
"250"
],
"slow_down_layer_time": [
"12"
],
"temperature_vitrification": [
"108"
]
}

View file

@ -5,6 +5,7 @@
"from": "system",
"filament_id": "GFN03",
"instantiation": "false",
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
"filament_cost": [
"84.99"
],

View file

@ -5,6 +5,7 @@
"from": "system",
"filament_id": "GFN05",
"instantiation": "false",
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
"fan_cooling_layer_time": [
"5"
],

View file

@ -5,6 +5,7 @@
"from": "system",
"filament_id": "GFN08",
"instantiation": "false",
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
"fan_cooling_layer_time": [
"5"
],

View file

@ -5,20 +5,18 @@
"from": "system",
"filament_id": "GFN04",
"instantiation": "false",
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"10"
],
"fan_cooling_layer_time": [
"5"
],
"full_fan_speed_layer": [
"2"
],
"filament_vendor": [
"Bambu Lab"
"filament_cost": [
"94.99"
],
"filament_density": [
"1.06"
@ -26,17 +24,20 @@
"filament_flow_ratio": [
"0.96"
],
"overhang_fan_threshold": [
"0%"
"filament_type": [
"PA-CF"
],
"filament_vendor": [
"Bambu Lab"
],
"full_fan_speed_layer": [
"2"
],
"overhang_fan_speed": [
"40"
],
"filament_type": [
"PA-CF"
],
"filament_cost": [
"94.99"
"overhang_fan_threshold": [
"0%"
],
"temperature_vitrification": [
"180"

View file

@ -5,6 +5,7 @@
"from": "system",
"filament_id": "GFT01",
"instantiation": "false",
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
"cool_plate_temp": [
"0"
],
@ -68,6 +69,12 @@
"required_nozzle_HRC": [
"40"
],
"supertack_plate_temp": [
"80"
],
"supertack_plate_temp_initial_layer": [
"80"
],
"slow_down_layer_time": [
"2"
],

View file

@ -8,6 +8,12 @@
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.2 nozzle"
]

View file

@ -8,9 +8,15 @@
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_max_volumetric_speed": [
"9"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle"
]

View file

@ -8,9 +8,15 @@
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle"

View file

@ -5,6 +5,7 @@
"from": "system",
"filament_id": "GFG00",
"instantiation": "false",
"description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.",
"cool_plate_temp": [
"0"
],

View file

@ -17,9 +17,15 @@
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"nozzle_temperature": [
"240"
],

View file

@ -17,9 +17,15 @@
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_retraction_distances_when_cut": [
"18"
],
"nozzle_temperature": [
"240"
],

View file

@ -17,9 +17,15 @@
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_retraction_distances_when_cut": [
"18"
],
"nozzle_temperature": [
"240"
],

View file

@ -17,9 +17,15 @@
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"nozzle_temperature": [
"240"
],

View file

@ -17,9 +17,15 @@
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_retraction_distances_when_cut": [
"18"
],
"nozzle_temperature": [
"240"
],

View file

@ -17,9 +17,15 @@
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_retraction_distances_when_cut": [
"18"
],
"nozzle_temperature": [
"240"
],

View file

@ -11,9 +11,15 @@
"fan_min_speed": [
"20"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"overhang_fan_speed": [
"100"
],

View file

@ -11,6 +11,12 @@
"fan_min_speed": [
"20"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"overhang_fan_speed": [
"100"
],

View file

@ -11,6 +11,12 @@
"fan_min_speed": [
"20"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"overhang_fan_speed": [
"100"
],

View file

@ -11,9 +11,15 @@
"fan_min_speed": [
"20"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"16"
],
"filament_retraction_distances_when_cut": [
"18"
],
"filament_retraction_length": [
"0.2"
],

View file

@ -5,6 +5,12 @@
"from": "system",
"setting_id": "GFSG01_05",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"filament_retraction_length": [
"0.3"
],

View file

@ -11,9 +11,15 @@
"fan_min_speed": [
"20"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"16"
],
"filament_retraction_distances_when_cut": [
"18"
],
"filament_retraction_length": [
"0.2"
],

View file

@ -5,6 +5,12 @@
"from": "system",
"setting_id": "GFSG01_02",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"filament_retraction_length": [
"0.3"
],

View file

@ -11,9 +11,15 @@
"fan_min_speed": [
"20"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"16"
],
"filament_retraction_distances_when_cut": [
"18"
],
"filament_retraction_length": [
"0.2"
],

View file

@ -5,6 +5,12 @@
"from": "system",
"setting_id": "GFSG01_00",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"filament_retraction_length": [
"0.3"
],

View file

@ -5,6 +5,7 @@
"from": "system",
"filament_id": "GFG01",
"instantiation": "false",
"description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.",
"cool_plate_temp": [
"0"
],

View file

@ -14,9 +14,15 @@
"fan_min_speed": [
"5"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"9"
],
"filament_retraction_distances_when_cut": [
"18"
],
"overhang_fan_speed": [
"100"
],

View file

@ -14,9 +14,15 @@
"fan_min_speed": [
"5"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"9"
],
"filament_retraction_distances_when_cut": [
"18"
],
"overhang_fan_speed": [
"100"
],

View file

@ -5,9 +5,15 @@
"from": "system",
"setting_id": "GFSG50_00",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"9"
],
"filament_retraction_distances_when_cut": [
"18"
],
"textured_plate_temp_initial_layer": [
"65"
],

View file

@ -14,9 +14,15 @@
"fan_min_speed": [
"5"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"11.5"
],
"filament_retraction_distances_when_cut": [
"18"
],
"overhang_fan_speed": [
"100"
],

View file

@ -14,9 +14,15 @@
"fan_min_speed": [
"5"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"11.5"
],
"filament_retraction_distances_when_cut": [
"18"
],
"overhang_fan_speed": [
"100"
],

View file

@ -5,6 +5,7 @@
"from": "system",
"filament_id": "GFA11",
"instantiation": "false",
"description": "This filament is only used to print models with a low density usually, and some special parameters are required. To get better printing quality, please refer to this wiki: Instructions for printing RC model with foaming PLA (PLA Aero).",
"fan_min_speed": [
"30"
],
@ -26,12 +27,21 @@
"filament_vendor": [
"Bambu Lab"
],
"nozzle_temperature_range_high": [
"260"
"filament_scarf_seam_type": [
"none"
],
"nozzle_temperature_range_low": [
"210"
],
"nozzle_temperature_range_high": [
"260"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]

View file

@ -14,9 +14,15 @@
"fan_min_speed": [
"60"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"2"
],
"filament_retraction_distances_when_cut": [
"18"
],
"hot_plate_temp": [
"65"
],

View file

@ -14,6 +14,12 @@
"fan_min_speed": [
"60"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"hot_plate_temp": [
"65"
],

View file

@ -14,9 +14,15 @@
"fan_min_speed": [
"60"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_max_volumetric_speed": [
"2"
],
"filament_retraction_distances_when_cut": [
"18"
],
"hot_plate_temp": [
"60"
],

View file

@ -14,6 +14,12 @@
"fan_min_speed": [
"60"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"hot_plate_temp": [
"60"
],

Some files were not shown because too many files have changed in this diff Show more