Compare commits
95 Commits
v2.0.0-bet
...
v2.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a187356b93 | ||
|
|
88f94c82ea | ||
|
|
1ba0afbc7e | ||
|
|
e82ea69e65 | ||
|
|
7a0c701dea | ||
|
|
a34a25985b | ||
|
|
ed14598eb1 | ||
|
|
6826c38962 | ||
|
|
676a190a77 | ||
|
|
7910e2aecc | ||
|
|
64d0c324c1 | ||
|
|
6ae128b9e7 | ||
|
|
45ef4ae790 | ||
|
|
a980bb6a6a | ||
|
|
9f3bafb04e | ||
|
|
f36c22385b | ||
|
|
a2d24cd67f | ||
|
|
5dfc624e11 | ||
|
|
197ea20d1d | ||
|
|
3b251ca89c | ||
|
|
dcb8d09af6 | ||
|
|
116169ea03 | ||
|
|
6c4ba5c794 | ||
|
|
2841476e86 | ||
|
|
c550a6e148 | ||
|
|
f88e3f2c64 | ||
|
|
19cde6989d | ||
|
|
5bc87d0de6 | ||
|
|
4ae7e4536b | ||
|
|
f626e4dd27 | ||
|
|
d601e9d544 | ||
|
|
52c57ad77e | ||
|
|
143087bb2a | ||
|
|
e29bbac193 | ||
|
|
f3b3e92782 | ||
|
|
9e56941416 | ||
|
|
8fe565ce3f | ||
|
|
ccf3b009f3 | ||
|
|
9e3cb4b1c5 | ||
|
|
1e08b855df | ||
|
|
2d737f62b5 | ||
|
|
98e1291c17 | ||
|
|
74d1831dac | ||
|
|
3b438ae6e4 | ||
|
|
f1c91dc551 | ||
|
|
2bda9db207 | ||
|
|
6fd5c2cbf3 | ||
|
|
80a49092cc | ||
|
|
8801c50aa0 | ||
|
|
3b34c5df8f | ||
|
|
c7bf364f9c | ||
|
|
8d4a47301a | ||
|
|
b736a0bc38 | ||
|
|
28533dd175 | ||
|
|
059acc74d2 | ||
|
|
6d0369f5d7 | ||
|
|
dec33a93e8 | ||
|
|
b30b22f66d | ||
|
|
7241305f11 | ||
|
|
a9d23a2433 | ||
|
|
2c5e78e9c7 | ||
|
|
e23e71bec5 | ||
|
|
8d34e22d7f | ||
|
|
53e45310f3 | ||
|
|
d88dda8131 | ||
|
|
afabd955ac | ||
|
|
e76ca8febf | ||
|
|
587fab285c | ||
|
|
350a2e4c4a | ||
|
|
6ab5bc8bef | ||
|
|
7a54131f39 | ||
|
|
550c4d6ca1 | ||
|
|
1943259ac3 | ||
|
|
cca218039c | ||
|
|
56524b6c0a | ||
|
|
1471ac4204 | ||
|
|
630262689e | ||
|
|
265d0b888c | ||
|
|
f0a193c476 | ||
|
|
5203173418 | ||
|
|
0176285888 | ||
|
|
401af407a4 | ||
|
|
02702ccfca | ||
|
|
bfb4a897f6 | ||
|
|
db2f50b844 | ||
|
|
0e78891671 | ||
|
|
5d19385564 | ||
|
|
cab5fe715d | ||
|
|
242ad33eb4 | ||
|
|
15247f3aa0 | ||
|
|
334f7cf3a1 | ||
|
|
b0246cfeab | ||
|
|
0de3655e05 | ||
|
|
a59275daee | ||
|
|
dec282b9bc |
1
.gitattributes
vendored
@@ -1 +0,0 @@
|
||||
*.exe filter=lfs diff=lfs merge=lfs -text
|
||||
|
||||
16
DockerBuild.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
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,
|
||||
# the simplicity of a single Docker image and a one-time compilation
|
||||
# seems better.
|
||||
docker build -t orcaslicer \
|
||||
--build-arg USER=$USER \
|
||||
--build-arg UID=$(id -u) \
|
||||
--build-arg GID=$(id -g) \
|
||||
--build-arg NCORES=$NCORES \
|
||||
$PROJECT_ROOT
|
||||
25
DockerRun.sh
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
set -x
|
||||
# Just in case, here's some other things that might help:
|
||||
# Force the container's hostname to be the same as your workstation
|
||||
# -h $HOSTNAME \
|
||||
# If there's problems with the X display, try this
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
docker run \
|
||||
`# Use the hosts networking. Printer wifi and also dbus communication` \
|
||||
--net=host \
|
||||
`# Some X installs will not have permissions to talk to sockets for shared memory` \
|
||||
--ipc host \
|
||||
`# Run as your workstations username to keep permissions the same` \
|
||||
-u $USER \
|
||||
`# Bind mount your home directory into the container for loading/saving files` \
|
||||
-v $HOME:/home/$USER \
|
||||
`# Pass the X display number to the container` \
|
||||
-e DISPLAY=$DISPLAY \
|
||||
`# It seems that libGL and dbus things need privileged mode` \
|
||||
--privileged=true \
|
||||
`# Attach tty for running orca slicer with command line things` \
|
||||
-ti \
|
||||
`# Pass all parameters from this script to the orca slicer ENTRYPOINT binary` \
|
||||
orcaslicer $*
|
||||
|
||||
95
Dockerfile
Normal file
@@ -0,0 +1,95 @@
|
||||
FROM docker.io/ubuntu:22.04
|
||||
LABEL maintainer "DeftDawg <DeftDawg@gmail.com>"
|
||||
|
||||
# Disable interactive package configuration
|
||||
RUN apt-get update && \
|
||||
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
||||
|
||||
# Add a deb-src
|
||||
RUN echo deb-src http://archive.ubuntu.com/ubuntu \
|
||||
$(cat /etc/*release | grep VERSION_CODENAME | cut -d= -f2) main universe>> /etc/apt/sources.list
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
autoconf \
|
||||
build-essential \
|
||||
cmake \
|
||||
curl \
|
||||
eglexternalplatform-dev \
|
||||
extra-cmake-modules \
|
||||
file \
|
||||
git \
|
||||
gstreamer1.0-plugins-bad \
|
||||
gstreamer1.0-libav \
|
||||
libcairo2-dev \
|
||||
libcurl4-openssl-dev \
|
||||
libdbus-1-dev \
|
||||
libglew-dev \
|
||||
libglu1-mesa-dev \
|
||||
libglu1-mesa-dev \
|
||||
libgstreamer1.0-dev \
|
||||
libgstreamerd-3-dev \
|
||||
libgstreamer-plugins-base1.0-dev \
|
||||
libgstreamer-plugins-good1.0-dev \
|
||||
libgtk-3-dev \
|
||||
libgtk-3-dev \
|
||||
libosmesa6-dev \
|
||||
libsecret-1-dev \
|
||||
libsoup2.4-dev \
|
||||
libssl3 \
|
||||
libssl-dev \
|
||||
libudev-dev \
|
||||
libwayland-dev \
|
||||
libwebkit2gtk-4.0-dev \
|
||||
libxkbcommon-dev \
|
||||
locales \
|
||||
locales-all \
|
||||
m4 \
|
||||
pkgconf \
|
||||
sudo \
|
||||
wayland-protocols \
|
||||
wget
|
||||
|
||||
# Change your locale here if you want. See the output
|
||||
# of `locale -a` to pick the correct string formatting.
|
||||
ENV LC_ALL=en_US.utf8
|
||||
RUN locale-gen $LC_ALL
|
||||
|
||||
# Set this so that Orca Slicer doesn't complain about
|
||||
# the CA cert path on every startup
|
||||
ENV SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
||||
|
||||
COPY ./ OrcaSlicer
|
||||
|
||||
WORKDIR OrcaSlicer
|
||||
|
||||
# These can run together, but we run them seperate for podman caching
|
||||
# Update System dependencies
|
||||
RUN ./BuildLinux.sh -u
|
||||
|
||||
# Build dependencies in ./deps
|
||||
RUN ./BuildLinux.sh -d; exit 0
|
||||
|
||||
RUN apt-get install -y libcgal-dev
|
||||
# Build slic3r
|
||||
RUN ./BuildLinux.sh -s
|
||||
|
||||
# Build AppImage
|
||||
ENV container podman
|
||||
RUN ./BuildLinux.sh -i
|
||||
|
||||
# It's easier to run Orca Slicer as the same username,
|
||||
# UID and GID as your workstation. Since we bind mount
|
||||
# your home directory into the container, it's handy
|
||||
# to keep permissions the same. Just in case, defaults
|
||||
# are root.
|
||||
SHELL ["/bin/bash", "-l", "-c"]
|
||||
ARG USER=root
|
||||
ARG UID=0
|
||||
ARG GID=0
|
||||
RUN [[ "$UID" != "0" ]] \
|
||||
&& groupadd -f -g $GID $USER \
|
||||
&& useradd -u $UID -g $GID $USER
|
||||
|
||||
# Using an entrypoint instead of CMD because the binary
|
||||
# accepts several command line arguments.
|
||||
ENTRYPOINT ["/OrcaSlicer/build/package/bin/orca-slicer"]
|
||||
@@ -28,7 +28,8 @@ The implementation is designed to be straightforward, requiring no additional pl
|
||||
|
||||
### Marlin:
|
||||
```
|
||||
G29 X{bed_mesh_probe_count[0]} Y{bed_mesh_probe_count[1]} L{adaptive_bed_mesh_min[0]} R{adaptive_bed_mesh_max[0]} F{adaptive_bed_mesh_min[1]} B{adaptive_bed_mesh_max[1]} T V4
|
||||
; Marlin don't support speicify the probe count yet, so we only specify the probe area
|
||||
G29 L{adaptive_bed_mesh_min[0]} R{adaptive_bed_mesh_max[0]} F{adaptive_bed_mesh_min[1]} B{adaptive_bed_mesh_max[1]} T V4
|
||||
```
|
||||
### Klipper:
|
||||
```
|
||||
|
||||
27
doc/bed-types.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# Multiple bed types
|
||||
|
||||
You can enable it in printer settings.
|
||||
|
||||
|
||||
Once enabled, you can select the bed type in the drop-down menu, corresponding bed temperature will be set automatically.
|
||||
You can set the bed temperature for each bed type in the filament settings as demonstrated in the following image.
|
||||

|
||||
|
||||
|
||||
Orca also support `curr_bed_type` variable in custom G-code.
|
||||
For example, the following sample G-codes can detect the selected bed type and adjust the G-code offset accordingly for Klipper:
|
||||
```
|
||||
{if curr_bed_type=="Textured PEI Plate"}
|
||||
SET_GCODE_OFFSET Z=-0.05
|
||||
{else}
|
||||
SET_GCODE_OFFSET Z=0.0
|
||||
{endif}
|
||||
```
|
||||
|
||||
available bed types are:
|
||||
```
|
||||
"Cool Plate"
|
||||
"Engineering Plate"
|
||||
"High Temp Plate"
|
||||
"Textured PEI Plate"
|
||||
```
|
||||
BIN
doc/images/bed-types.gif
Normal file
|
After Width: | Height: | Size: 463 KiB |
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\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"
|
||||
@@ -3173,14 +3173,14 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
@@ -3211,6 +3211,11 @@ msgid ""
|
||||
"Thus, reset the skirt layer to 1 to avoid that."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr ""
|
||||
|
||||
@@ -5735,6 +5740,9 @@ msgstr ""
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr ""
|
||||
|
||||
@@ -5788,6 +5796,9 @@ msgstr ""
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
|
||||
@@ -8025,12 +8036,12 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
@@ -8104,6 +8115,12 @@ msgstr ""
|
||||
msgid "Printer preset names"
|
||||
msgstr ""
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr ""
|
||||
|
||||
@@ -8454,7 +8471,7 @@ msgid ""
|
||||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -10390,6 +10407,10 @@ msgstr ""
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr ""
|
||||
|
||||
@@ -10451,6 +10472,18 @@ msgid ""
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
@@ -12504,7 +12537,7 @@ msgstr ""
|
||||
msgid "Export Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "System Version:"
|
||||
@@ -12513,10 +12546,10 @@ msgstr ""
|
||||
msgid "DNS Server:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Bing.com"
|
||||
@@ -12525,39 +12558,6 @@ msgstr ""
|
||||
msgid "Test bing.com:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr ""
|
||||
|
||||
@@ -13016,6 +13016,9 @@ msgstr ""
|
||||
msgid "Success!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr ""
|
||||
|
||||
@@ -13041,6 +13044,9 @@ msgid ""
|
||||
"Keychain."
|
||||
msgstr ""
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr ""
|
||||
|
||||
@@ -13165,6 +13171,47 @@ msgid ""
|
||||
"Message body: \"%1%\"\n"
|
||||
"Error: \"%2%\""
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid "Precise wall\nDid you know that turning on precise wall can improve precision and layer consistency?"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"PO-Revision-Date: 2023-09-30 15:15+0200\n"
|
||||
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -3354,14 +3354,14 @@ msgstr ""
|
||||
"Ne - zrušit povolení spirálového režimu"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,6 +3407,11 @@ msgstr ""
|
||||
"Během tisku podle objektu může extruder narazit na obrys.\n"
|
||||
"Takže resetujte vrstvu obrysu na 1, abyste tomu zabránili."
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Automatické vyrovnávání podložky"
|
||||
|
||||
@@ -6064,6 +6069,9 @@ msgstr "Región přihlášení"
|
||||
msgid "Stealth Mode"
|
||||
msgstr "Tajný Režim"
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr ""
|
||||
|
||||
@@ -6119,6 +6127,9 @@ msgstr ""
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Automatická synchronizace uživatelských předvoleb (Tiskárna/Filament/Proces)"
|
||||
@@ -8554,12 +8565,12 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
@@ -8641,6 +8652,12 @@ msgstr ""
|
||||
msgid "Printer preset names"
|
||||
msgstr "Názvy přednastavení tiskáren"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "Název serveru, IP nebo URL"
|
||||
|
||||
@@ -9067,7 +9084,7 @@ msgid ""
|
||||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -11333,6 +11350,10 @@ msgstr "Zobrazit automatické kalibrační značky"
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "Pozice švu"
|
||||
|
||||
@@ -11400,6 +11421,18 @@ msgid ""
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
@@ -13767,7 +13800,7 @@ msgstr ""
|
||||
msgid "Export Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "System Version:"
|
||||
@@ -13776,10 +13809,10 @@ msgstr ""
|
||||
msgid "DNS Server:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Bing.com"
|
||||
@@ -13788,39 +13821,6 @@ msgstr ""
|
||||
msgid "Test bing.com:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr ""
|
||||
|
||||
@@ -14282,6 +14282,9 @@ msgstr "Nelze získat platný odkaz na tiskový server"
|
||||
msgid "Success!"
|
||||
msgstr "Úspěch!"
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Obnovit tiskárny"
|
||||
|
||||
@@ -14313,6 +14316,9 @@ msgstr ""
|
||||
"Chcete-li použít vlastní soubor CA, importujte soubor CA do Certificate "
|
||||
"Store / Keychain."
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr ""
|
||||
"Připojení k tiskárnám připojených prostřednictvím tiskového serveru se "
|
||||
@@ -14440,6 +14446,47 @@ msgid ""
|
||||
"Error: \"%2%\""
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -3455,22 +3455,22 @@ msgstr ""
|
||||
"Nein - Spiralmodus nicht aktivieren"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
"Die alternative zusätzliche Wand funktioniert nur, wenn die vertikale "
|
||||
"Schalendicke deaktiviert ist."
|
||||
"Der alternative zusätzliche Wandmodus funktioniert nicht gut, wenn die "
|
||||
"vertikale Wanddicke auf Alle eingestellt ist."
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"Diese Einstellungen automatisch ändern? \n"
|
||||
"Ja - Vertikale Schalendicke deaktivieren und alternative zusätzliche Wand "
|
||||
"aktivieren\n"
|
||||
"Nein - Keine alternative zusätzliche Wand verwenden"
|
||||
"Ja - Ändern Sie die vertikale Wanddicke auf Moderate und aktivieren Sie "
|
||||
"alternative zusätzliche Wand\n"
|
||||
"Nein - Verwenden Sie keine alternative zusätzliche Wand"
|
||||
|
||||
msgid ""
|
||||
"Prime tower does not work when Adaptive Layer Height or Independent Support "
|
||||
@@ -3517,6 +3517,13 @@ msgstr ""
|
||||
"stoßen.\n"
|
||||
"Daher sollten die Skirt-Ebenen zurückgesetzt werden."
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
"seam_slope_start_height muss kleiner als layer_height sein.\n"
|
||||
"auf 0 gesetzt"
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Automatische Druckbettnivellierung"
|
||||
|
||||
@@ -3732,50 +3739,52 @@ msgstr "Standard"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
msgstr "Benutzerdefinierten G-Code bearbeiten (%1%)"
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
"Eingebaute Platzhalter (Doppelklicken Sie auf ein Element, um es zum G-Code "
|
||||
"hinzuzufügen)"
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
msgstr "G-Code-Platzhalter suchen"
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
msgstr "Ausgewählten Platzhalter zum G-Code hinzufügen"
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
msgstr "Platzhalter auswählen"
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
msgstr "[Global] Slicing-Status"
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
msgstr "Nur lesen"
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
msgstr "Lesen Schreiben"
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
msgstr "Slicing-Status"
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
msgstr "Druckstatistiken"
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
msgstr "Objektinformationen"
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
msgstr "Abmessungen"
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
msgstr "Temperaturen"
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
msgstr "Zeitstempel"
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
msgstr "Spezifisch für %1%"
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Voreinstellungen"
|
||||
@@ -3787,7 +3796,7 @@ msgid "Filament settings"
|
||||
msgstr "Filamenteinstellungen"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
msgstr "SLA-Material-Einstellungen"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Drucker-Einstellungen"
|
||||
@@ -6228,6 +6237,9 @@ msgstr "Login-Region"
|
||||
msgid "Stealth Mode"
|
||||
msgstr "Unsichtbarer Modus"
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Netzwerk-Plugin aktivieren"
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr "Nur nach stabilen Updates suchen"
|
||||
|
||||
@@ -6283,6 +6295,9 @@ msgstr "Reinigungsvolumen: Auto-Berechnung bei jeder Farbänderung."
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr "Wenn aktiviert, wird bei jeder Farbänderung automatisch berechnet."
|
||||
|
||||
msgid "Network"
|
||||
msgstr "Netzwerk"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "Benutzerprofile automatisch synchronisieren (Drucker/Filament/Prozess)"
|
||||
|
||||
@@ -8811,6 +8826,12 @@ msgid ""
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
"Die Ruckgeschwindigkeitseinstellung überschreitet den maximalen Ruck des "
|
||||
"Druckers (machine_max_jerk_x/machine_max_jerk_y).\n"
|
||||
"Orca wird automatisch die Ruckgeschwindigkeit begrenzen, um sicherzustellen, "
|
||||
"dass sie nicht die Fähigkeiten des Druckers überschreitet.\n"
|
||||
"Sie können die maximale Ruckgeschwindigkeitseinstellung in der Konfiguration "
|
||||
"Ihres Druckers anpassen, um höhere Geschwindigkeiten zu erreichen."
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
@@ -8820,15 +8841,29 @@ msgid ""
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
"Die Beschleunigungseinstellung überschreitet die maximale Beschleunigung des "
|
||||
"Druckers (machine_max_acceleration_extruding).\n"
|
||||
"Orca wird automatisch die Beschleunigungsgeschwindigkeit begrenzen, um "
|
||||
"sicherzustellen, dass sie nicht die Fähigkeiten des Druckers überschreitet.\n"
|
||||
"Sie können den Wert von machine_max_acceleration_extruding in der "
|
||||
"Konfiguration Ihres Druckers anpassen, um höhere Geschwindigkeiten zu "
|
||||
"erreichen."
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
"Die Beschleunigungseinstellung für das Verfahren überschreitet die maximale "
|
||||
"Verfahrensbeschleunigung des Druckers (machine_max_acceleration_travel).\n"
|
||||
"Orca wird automatisch die Verfahrensbeschleunigungsgeschwindigkeit "
|
||||
"begrenzen, um sicherzustellen, dass sie nicht die Fähigkeiten des Druckers "
|
||||
"überschreitet.\n"
|
||||
"Sie können den Wert von machine_max_acceleration_travel in der Konfiguration "
|
||||
"Ihres Druckers anpassen, um höhere Geschwindigkeiten zu erreichen."
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Generieren von Schürze und Rand (skirt & brim)"
|
||||
@@ -8915,6 +8950,14 @@ msgstr "Automatische Ausrichtung von STLs auf der Z-Achse beim Import"
|
||||
msgid "Printer preset names"
|
||||
msgstr "Drucker Profilname"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr "Benutze Drittanbieter-Druck-Hosts"
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr ""
|
||||
"Erlauben Sie die Steuerung von BambuLab-Druckern durch Drittanbieter-Druck-"
|
||||
"Hosts"
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "Hostname, IP oder URL"
|
||||
|
||||
@@ -9392,7 +9435,7 @@ msgstr ""
|
||||
"Schichten unabhängig von ihrem Überhangsgrad in abwechselnden Richtungen "
|
||||
"gedruckt werden."
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "Brücken für Senkungen"
|
||||
|
||||
msgid ""
|
||||
@@ -9788,12 +9831,21 @@ msgid ""
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
"Fügen Sie massives Infill in der Nähe von geneigten Oberflächen hinzu, um "
|
||||
"die vertikale Wanddicke (obere + untere feste Schichten) zu garantieren\n"
|
||||
"Keine: Kein massives Infill wird irgendwo hinzugefügt. Vorsicht: Verwenden "
|
||||
"Sie diese Option vorsichtig, wenn Ihr Modell geneigte Oberflächen hat\n"
|
||||
"Nur kritisch: Vermeiden Sie das Hinzufügen von massivem Infill für Wände\n"
|
||||
"Moderat: Fügen Sie massives Infill nur für stark geneigte Oberflächen hinzu\n"
|
||||
"Alle: Fügen Sie massives Infill für alle geeigneten geneigten Oberflächen "
|
||||
"hinzu\n"
|
||||
"Der Standardwert ist Alle."
|
||||
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
msgstr "Nur kritisch"
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
msgstr "Moderat"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Muster der Oberfläche"
|
||||
@@ -11851,6 +11903,12 @@ msgstr "Zeige automatische Kalibrierungsmarkierungen"
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr "Deaktiviere die verbleibende Druckzeit"
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
"Deaktiviert das Generieren von M73: Setze die verbleibende Druckzeit im "
|
||||
"endgültigen G-Code"
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "Nahtposition"
|
||||
|
||||
@@ -11897,23 +11955,25 @@ msgstr ""
|
||||
"um das endgültige Produkt glatter und nahtloser aussehen zu lassen."
|
||||
|
||||
msgid "Scarf joint seam (beta)"
|
||||
msgstr "Schaltnaht (Beta)"
|
||||
msgstr "Schrägnaht (Beta)"
|
||||
|
||||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
"Benutze Schaltnaht um die Sichtbarkeit der Naht zu minimieren und die "
|
||||
"Benutze die Schrägnaht um die Sichtbarkeit der Naht zu minimieren und die "
|
||||
"Nahtstärke zu erhöhen."
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
msgstr "Bedingte Schrägnaht"
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
"Wenden Sie Schaltnähte nur auf glatte Umfänge an, bei denen traditionelle "
|
||||
"Nahtstellen die Nähte an scharfen Ecken nicht effektiv verbergen."
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
msgstr "Winkel-Schwellenwert"
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
@@ -11922,9 +11982,26 @@ msgid ""
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
"Diese Option legt den Schwellenwinkel für das Anwenden einer bedingten "
|
||||
"Schrägnaht fest.\n"
|
||||
"Wenn der maximale Winkel innerhalb der Umfangsschleife diesen Wert "
|
||||
"überschreitet (was auf das Fehlen von scharfen Ecken hinweist), wird eine "
|
||||
"Schrägnaht verwendet. Der Standardwert beträgt 155°."
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
msgstr "Schrägnaht Geschwindigkeit"
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
@@ -11936,12 +12013,23 @@ msgid ""
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
"Diese Option legt die Druckgeschwindigkeit für Schaltnähte fest. Es wird "
|
||||
"empfohlen, Schaltnähte mit einer langsamen Geschwindigkeit (weniger als 100 "
|
||||
"mm/s) zu drucken. Es ist auch ratsam, die 'Glättung der Extrusionsrate' zu "
|
||||
"aktivieren, wenn die eingestellte Geschwindigkeit erheblich von der "
|
||||
"Geschwindigkeit der äußeren oder inneren Wände abweicht. Wenn die hier "
|
||||
"angegebene Geschwindigkeit höher ist als die Geschwindigkeit der äußeren "
|
||||
"oder inneren Wände, wird der Drucker auf die langsamere der beiden "
|
||||
"Geschwindigkeiten zurückgesetzt. Wenn sie als Prozentsatz angegeben wird (z."
|
||||
"B. 80%), wird die Geschwindigkeit auf der Grundlage der jeweiligen "
|
||||
"Geschwindigkeit der äußeren oder inneren Wand berechnet. Der Standardwert "
|
||||
"ist auf 100% eingestellt."
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
msgstr "Schrägnaht Flussverhältnis"
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
msgstr "Dieser Faktor beeinflusst die Menge an Material für Schaltnähte."
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr "Start Höhe des Schalnaht"
|
||||
@@ -11951,38 +12039,38 @@ msgid ""
|
||||
"This amount can be specified in millimeters or as a percentage of the "
|
||||
"current layer height. The default value for this parameter is 0."
|
||||
msgstr ""
|
||||
"Start Höhe des Schaltnaht.\n"
|
||||
"Start Höhe der Schrägnaht.\n"
|
||||
"Diese Menge kann in Millimetern oder als Prozentsatz der aktuellen "
|
||||
"Schichthöhe angegeben werden.\n"
|
||||
"Der Standardwert für diesen Parameter beträgt 0."
|
||||
|
||||
msgid "Scarf around entire wall"
|
||||
msgstr "Schaltnaht um die gesamte Wand"
|
||||
msgstr "Schrägnaht um die gesamte Wand"
|
||||
|
||||
msgid "The scarf extends to the entire length of the wall."
|
||||
msgstr "Die Schaltnaht erstreckt sich über die gesamte Länge der Wand."
|
||||
msgstr "Die Schrägnaht erstreckt sich über die gesamte Länge der Wand."
|
||||
|
||||
msgid "Scarf length"
|
||||
msgstr "Länge der Schaltnaht"
|
||||
msgstr "Länge der Schrägnaht"
|
||||
|
||||
msgid ""
|
||||
"Length of the scarf. Setting this parameter to zero effectively disables the "
|
||||
"scarf."
|
||||
msgstr ""
|
||||
"Länge der Schaltnaht. Das Einstellen dieses Parameters auf Null deaktiviert "
|
||||
"effektiv die Schaltnaht."
|
||||
"Länge der Schrägnaht. Das Einstellen dieses Parameters auf Null deaktiviert "
|
||||
"effektiv die Schrägnaht."
|
||||
|
||||
msgid "Scarf steps"
|
||||
msgstr "Schaltnaht Schritte"
|
||||
msgstr "Schrägnaht Schritte"
|
||||
|
||||
msgid "Minimum number of segments of each scarf."
|
||||
msgstr "Mindestanzahl von Segmenten jeder Schaltnaht."
|
||||
msgstr "Mindestanzahl von Segmenten jeder Schrägnaht."
|
||||
|
||||
msgid "Scarf joint for inner walls"
|
||||
msgstr "Schaltnaht für innere Wände"
|
||||
msgstr "Schrägnaht für innere Wände"
|
||||
|
||||
msgid "Use scarf joint for inner walls as well."
|
||||
msgstr "Verwenden Sie Schaltnaht auch für innere Wände."
|
||||
msgstr "Verwenden Sie Schrägnaht auch für innere Wände."
|
||||
|
||||
msgid "Role base wipe speed"
|
||||
msgstr "Rollenbasierte Wipe Geschwindigkeit"
|
||||
@@ -14450,8 +14538,8 @@ msgstr "Starten Sie den Test mit einem Thread"
|
||||
msgid "Export Log"
|
||||
msgstr "Protokoll exportieren"
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgstr "Studio Version:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr "OrcaSlicer Version:"
|
||||
|
||||
msgid "System Version:"
|
||||
msgstr "System Version:"
|
||||
@@ -14459,11 +14547,11 @@ msgstr "System Version:"
|
||||
msgid "DNS Server:"
|
||||
msgstr "DNS Server:"
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgstr "Test BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr "Test OrcaSlicer(GitHub)"
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgstr "Test BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr "Test OrcaSlicer(GitHub):"
|
||||
|
||||
msgid "Test Bing.com"
|
||||
msgstr "Test Bing.com"
|
||||
@@ -14471,39 +14559,6 @@ msgstr "Test Bing.com"
|
||||
msgid "Test bing.com:"
|
||||
msgstr "Test bing.com:"
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr "Test HTTP"
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr "Test HTTP Service:"
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr "Test Speicher"
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr "Test Speicher hochladen:"
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr "Test Speicher Upgrade"
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr "Test Speicher Upgrade:"
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr "Test Speicher Download"
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr "Test Speicher Download:"
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr "Test Plugin Download"
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr "Test Plugin Download:"
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr "Test Speicher hochladen"
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr "Protokoll Info"
|
||||
|
||||
@@ -15045,6 +15100,9 @@ msgstr "Konnte keine gültige Referenz zum Druck-Host erhalten"
|
||||
msgid "Success!"
|
||||
msgstr "Erfolgreich!"
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr "Sind Sie sicher, dass Sie sich abmelden möchten?"
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Drucker aktualisieren"
|
||||
|
||||
@@ -15076,6 +15134,9 @@ msgstr ""
|
||||
"Um eine benutzerdefinierte CA-Datei zu verwenden, importieren Sie bitte Ihre "
|
||||
"CA-Datei in den Zertifikatspeicher / das Schlüsselbund."
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr "Login/Test"
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr ""
|
||||
"Die Verbindung zu den über den Druck-Host verbundenen Druckern ist "
|
||||
@@ -15215,6 +15276,55 @@ msgstr ""
|
||||
"Nachrichtentext: \"%1%\"\n"
|
||||
"Fehler: \"%2%\""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr "Erfolgreich mit Obico verbunden!"
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr "Konnte keine Verbindung zu Obico herstellen"
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr "Erfolgreich mit SimplyPrint verbunden!"
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr "Konnte keine Verbindung zu SimplyPrint herstellen"
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
"SimplyPrint-Konto nicht verknüpft. Gehen Sie zu den Verbindungsoptionen, um "
|
||||
"es einzurichten."
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
"Die Dateigröße überschreitet das 100-MB-Upload-Limit. Bitte laden Sie Ihre "
|
||||
"Datei über das Panel hoch."
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Unbekannter Fehler"
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr "Verbindung zu Flashforge funktioniert korrekt."
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr "Konnte keine Verbindung zu Flashforge herstellen"
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "Der bereitgestellte Status ist nicht korrekt."
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
"Bitte geben Sie die erforderlichen Berechtigungen an, wenn Sie diese "
|
||||
"Anwendung autorisieren."
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr ""
|
||||
"Es ist etwas Unerwartetes passiert, als Sie versucht haben, sich anzumelden. "
|
||||
"Bitte versuchen Sie es erneut."
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr "Benutzer abgebrochen."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
@@ -15608,6 +15718,85 @@ msgstr ""
|
||||
"wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die "
|
||||
"Wahrscheinlichkeit von Verwerfungen verringert werden kann."
|
||||
|
||||
#~ msgid "Timeout when authenticating with the account server."
|
||||
#~ msgstr "Zeitüberschreitung bei der Authentifizierung mit dem Kontoserver."
|
||||
|
||||
#~ msgid "Studio Version:"
|
||||
#~ msgstr "Studio Version:"
|
||||
|
||||
#~ msgid "Test BambuLab"
|
||||
#~ msgstr "Test BambuLab"
|
||||
|
||||
#~ msgid "Test BambuLab:"
|
||||
#~ msgstr "Test BambuLab:"
|
||||
|
||||
#~ msgid "Test HTTP"
|
||||
#~ msgstr "Test HTTP"
|
||||
|
||||
#~ msgid "Test HTTP Service:"
|
||||
#~ msgstr "Test HTTP Service:"
|
||||
|
||||
#~ msgid "Test storage"
|
||||
#~ msgstr "Test Speicher"
|
||||
|
||||
#~ msgid "Test Storage Upload:"
|
||||
#~ msgstr "Test Speicher hochladen:"
|
||||
|
||||
#~ msgid "Test storage upgrade"
|
||||
#~ msgstr "Test Speicher Upgrade"
|
||||
|
||||
#~ msgid "Test Storage Upgrade:"
|
||||
#~ msgstr "Test Speicher Upgrade:"
|
||||
|
||||
#~ msgid "Test storage download"
|
||||
#~ msgstr "Test Speicher Download"
|
||||
|
||||
#~ msgid "Test Storage Download:"
|
||||
#~ msgstr "Test Speicher Download:"
|
||||
|
||||
#~ msgid "Test plugin download"
|
||||
#~ msgstr "Test Plugin Download"
|
||||
|
||||
#~ msgid "Test Plugin Download:"
|
||||
#~ msgstr "Test Plugin Download:"
|
||||
|
||||
#~ msgid "Test Storage Upload"
|
||||
#~ msgstr "Test Speicher hochladen"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The speed setting exceeds the printer's maximum speed "
|
||||
#~ "(machine_max_speed_x/machine_max_speed_y).\n"
|
||||
#~ "Orca will automatically cap the print speed to ensure it doesn't surpass "
|
||||
#~ "the printer's capabilities.\n"
|
||||
#~ "You can adjust the maximum speed setting in your printer's configuration "
|
||||
#~ "to get higher speeds."
|
||||
#~ msgstr ""
|
||||
#~ "Die Geschwindigkeitseinstellung überschreitet die maximale "
|
||||
#~ "Geschwindigkeit des Druckers (machine_max_speed_x/machine_max_speed_y).\n"
|
||||
#~ "Orca wird automatisch die Druckgeschwindigkeit begrenzen, um "
|
||||
#~ "sicherzustellen, dass sie nicht die Fähigkeiten des Druckers "
|
||||
#~ "überschreitet.\n"
|
||||
#~ "Sie können die maximale Geschwindigkeitseinstellung in der Konfiguration "
|
||||
#~ "Ihres Druckers anpassen, um höhere Geschwindigkeiten zu erreichen."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Alternate extra wall only works with ensure vertical shell thickness "
|
||||
#~ "disabled. "
|
||||
#~ msgstr ""
|
||||
#~ "Die alternative zusätzliche Wand funktioniert nur, wenn die vertikale "
|
||||
#~ "Schalendicke deaktiviert ist."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Change these settings automatically? \n"
|
||||
#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
#~ "wall\n"
|
||||
#~ "No - Dont use alternate extra wall"
|
||||
#~ msgstr ""
|
||||
#~ "Diese Einstellungen automatisch ändern? \n"
|
||||
#~ "Ja - Vertikale Schalendicke deaktivieren und alternative zusätzliche Wand "
|
||||
#~ "aktivieren\n"
|
||||
#~ "Nein - Keine alternative zusätzliche Wand verwenden"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -3307,14 +3307,14 @@ msgstr ""
|
||||
"No - Cancel enabling spiral mode"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
@@ -3360,6 +3360,11 @@ msgstr ""
|
||||
"While printing by object, the extruder may collide with a skirt.\n"
|
||||
"Thus, reset the skirt layer to 1 to avoid collisions."
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Auto bed leveling"
|
||||
|
||||
@@ -5956,6 +5961,9 @@ msgstr "Login Region"
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr ""
|
||||
|
||||
@@ -6011,6 +6019,9 @@ msgstr ""
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "Auto sync user presets (Printer/Filament/Process)"
|
||||
|
||||
@@ -8401,12 +8412,12 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
@@ -8489,6 +8500,12 @@ msgstr ""
|
||||
msgid "Printer preset names"
|
||||
msgstr "Printer preset names"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "Hostname, IP or URL"
|
||||
|
||||
@@ -8898,7 +8915,7 @@ msgid ""
|
||||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -10968,6 +10985,10 @@ msgstr ""
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "Seam position"
|
||||
|
||||
@@ -11029,6 +11050,18 @@ msgid ""
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
@@ -13212,7 +13245,7 @@ msgstr ""
|
||||
msgid "Export Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "System Version:"
|
||||
@@ -13221,10 +13254,10 @@ msgstr ""
|
||||
msgid "DNS Server:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Bing.com"
|
||||
@@ -13233,39 +13266,6 @@ msgstr ""
|
||||
msgid "Test bing.com:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr ""
|
||||
|
||||
@@ -13725,6 +13725,9 @@ msgstr ""
|
||||
msgid "Success!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr ""
|
||||
|
||||
@@ -13750,6 +13753,9 @@ msgid ""
|
||||
"Keychain."
|
||||
msgstr ""
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr ""
|
||||
|
||||
@@ -13875,6 +13881,47 @@ msgid ""
|
||||
"Error: \"%2%\""
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -3330,14 +3330,14 @@ msgstr ""
|
||||
"Nem - Ne használja a spirál módot ez alkalommal"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
@@ -3384,6 +3384,11 @@ msgstr ""
|
||||
"While printing by object, the extruder may collide with a skirt.\n"
|
||||
"Thus, reset the skirt layer to 1 to avoid collisions."
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Automatikus asztalszintezés"
|
||||
|
||||
@@ -5987,6 +5992,9 @@ msgstr "Régió"
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr ""
|
||||
|
||||
@@ -6042,6 +6050,9 @@ msgstr ""
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Felhasználói beállítások automatikus szinkronizálása (Nyomtató/Filament/"
|
||||
@@ -8469,12 +8480,12 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
@@ -8557,6 +8568,12 @@ msgstr ""
|
||||
msgid "Printer preset names"
|
||||
msgstr "Nyomtató beállítások neve"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "Hosztnév, IP vagy URL"
|
||||
|
||||
@@ -8969,7 +8986,7 @@ msgid ""
|
||||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -11047,6 +11064,10 @@ msgstr ""
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "Varrat pozíció"
|
||||
|
||||
@@ -11108,6 +11129,18 @@ msgid ""
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
@@ -13305,7 +13338,7 @@ msgstr ""
|
||||
msgid "Export Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "System Version:"
|
||||
@@ -13314,10 +13347,10 @@ msgstr ""
|
||||
msgid "DNS Server:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Bing.com"
|
||||
@@ -13326,39 +13359,6 @@ msgstr ""
|
||||
msgid "Test bing.com:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr ""
|
||||
|
||||
@@ -13817,6 +13817,9 @@ msgstr ""
|
||||
msgid "Success!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr ""
|
||||
|
||||
@@ -13842,6 +13845,9 @@ msgid ""
|
||||
"Keychain."
|
||||
msgstr ""
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr ""
|
||||
|
||||
@@ -13967,6 +13973,47 @@ msgid ""
|
||||
"Error: \"%2%\""
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -3248,14 +3248,14 @@ msgstr ""
|
||||
"いいえ - 変更せず、スパイラルモードを有効しません"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
@@ -3301,6 +3301,11 @@ msgstr ""
|
||||
"While printing by object, the extruder may collide with a skirt.\n"
|
||||
"Thus, reset the skirt layer to 1 to avoid collisions."
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "自動ベッドレベリング"
|
||||
|
||||
@@ -5873,6 +5878,9 @@ msgstr "地域"
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr ""
|
||||
|
||||
@@ -5928,6 +5936,9 @@ msgstr ""
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "ユーザープリセットの自動同期 (プリンター/フィラメント/プロセス)"
|
||||
|
||||
@@ -8255,12 +8266,12 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
@@ -8335,6 +8346,12 @@ msgstr ""
|
||||
msgid "Printer preset names"
|
||||
msgstr "プリセット名"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "Hostname、IPまたはURL"
|
||||
|
||||
@@ -8721,7 +8738,7 @@ msgid ""
|
||||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -10732,6 +10749,10 @@ msgstr ""
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "継ぎ目位置"
|
||||
|
||||
@@ -10793,6 +10814,18 @@ msgid ""
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
@@ -12931,7 +12964,7 @@ msgstr ""
|
||||
msgid "Export Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "System Version:"
|
||||
@@ -12940,10 +12973,10 @@ msgstr ""
|
||||
msgid "DNS Server:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Bing.com"
|
||||
@@ -12952,39 +12985,6 @@ msgstr ""
|
||||
msgid "Test bing.com:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr ""
|
||||
|
||||
@@ -13442,6 +13442,9 @@ msgstr ""
|
||||
msgid "Success!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr ""
|
||||
|
||||
@@ -13467,6 +13470,9 @@ msgid ""
|
||||
"Keychain."
|
||||
msgstr ""
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr ""
|
||||
|
||||
@@ -13592,6 +13598,47 @@ msgid ""
|
||||
"Error: \"%2%\""
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
|
||||
@@ -158,4 +158,9 @@ src/slic3r/Utils/Duet.cpp
|
||||
src/slic3r/Utils/FlashAir.cpp
|
||||
src/slic3r/Utils/MKS.cpp
|
||||
src/slic3r/Utils/OctoPrint.cpp
|
||||
src/slic3r/Utils/Repetier.cpp
|
||||
src/slic3r/Utils/Repetier.cpp
|
||||
src/slic3r/Utils/Obico.cpp
|
||||
src/slic3r/Utils/SimplyPrint.cpp
|
||||
src/slic3r/Utils/Flashforge.cpp
|
||||
src/slic3r/GUI/Jobs/OAuthJob.cpp
|
||||
src/slic3r/GUI/BackgroundSlicingProcess.cpp
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -3359,14 +3359,14 @@ msgstr ""
|
||||
"Nee - Pas de vaas modus deze keer niet toe"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
@@ -3413,6 +3413,11 @@ msgstr ""
|
||||
"While printing by object, the extruder may collide with a skirt.\n"
|
||||
"Thus, reset the skirt layer to 1 to avoid collisions."
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Automatisch bed levellen"
|
||||
|
||||
@@ -6038,6 +6043,9 @@ msgstr "Inlogregio"
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr ""
|
||||
|
||||
@@ -6094,6 +6102,9 @@ msgstr ""
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Gebruikersvoorinstellingen automatisch synchroniseren (printer/filament/"
|
||||
@@ -8547,12 +8558,12 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
@@ -8636,6 +8647,12 @@ msgstr ""
|
||||
msgid "Printer preset names"
|
||||
msgstr "Namen van printer voorinstellingen"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "Hostnaam, IP of URL"
|
||||
|
||||
@@ -9051,7 +9068,7 @@ msgid ""
|
||||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -11152,6 +11169,10 @@ msgstr ""
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "Naad positie"
|
||||
|
||||
@@ -11213,6 +11234,18 @@ msgid ""
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
@@ -13419,7 +13452,7 @@ msgstr ""
|
||||
msgid "Export Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "System Version:"
|
||||
@@ -13428,10 +13461,10 @@ msgstr ""
|
||||
msgid "DNS Server:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Bing.com"
|
||||
@@ -13440,39 +13473,6 @@ msgstr ""
|
||||
msgid "Test bing.com:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr ""
|
||||
|
||||
@@ -13931,6 +13931,9 @@ msgstr ""
|
||||
msgid "Success!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr ""
|
||||
|
||||
@@ -13956,6 +13959,9 @@ msgid ""
|
||||
"Keychain."
|
||||
msgstr ""
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr ""
|
||||
|
||||
@@ -14081,6 +14087,47 @@ msgid ""
|
||||
"Error: \"%2%\""
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
|
||||
@@ -2,9 +2,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Krzysztof Morga <tlumaczenieBS@gmail.com>\n"
|
||||
"Last-Translator: Krzysztof Morga <tlumaczeniebs@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: pl_PL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -3226,7 +3226,7 @@ msgid "Succeed to export G-code to %1%"
|
||||
msgstr "Pomyślnie wyeksportowano G-code do %1%"
|
||||
|
||||
msgid "Running post-processing scripts"
|
||||
msgstr "Uruchamianie skryptów po obróbce"
|
||||
msgstr "Uruchamianie skryptu post-procesingu"
|
||||
|
||||
msgid "Copying of the temporary G-code to the output G-code failed"
|
||||
msgstr "Kopiowanie tymczasowego kodu G do kodu G wynikowego nie powiodło się"
|
||||
@@ -3238,7 +3238,7 @@ msgstr ""
|
||||
"drukarki"
|
||||
|
||||
msgid "Origin"
|
||||
msgstr "Pochodzenie"
|
||||
msgstr "Punkt bazowy"
|
||||
|
||||
msgid "Size in X and Y of the rectangular plate."
|
||||
msgstr "Rozmiar w osi X i Y prostokątnej płyty."
|
||||
@@ -3413,16 +3413,16 @@ msgstr ""
|
||||
"Nie - Zrezygnuj tym razem z używania trybu Wazy"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
"Alternatywna dodatkowa ściana działa tylko wtedy, gdy jest wyłączona opcja "
|
||||
"\"zapewnij stałą grubość pionowej powłoki\". "
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"Zmienić te ustawienia automatycznie?\n"
|
||||
@@ -3475,6 +3475,13 @@ msgstr ""
|
||||
"skirtu.\n"
|
||||
"Dlatego zresetuj wysokość skirtu na 1, aby tego uniknąć."
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
"seam_slope_start_height musi być mniejsza niż wysokość warstwy. \n"
|
||||
"Zresetuj do wartości 0"
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Automatyczne poziomowanie stołu"
|
||||
|
||||
@@ -4088,7 +4095,7 @@ msgid "Assembly Return"
|
||||
msgstr "Powrót do montażu"
|
||||
|
||||
msgid "return"
|
||||
msgstr "Wróć"
|
||||
msgstr "wróć"
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Pasek narzędzi do malowania"
|
||||
@@ -5312,7 +5319,7 @@ msgid "Open Folder."
|
||||
msgstr "Otwórz folder."
|
||||
|
||||
msgid "Safely remove hardware."
|
||||
msgstr "Bezpiecznie usuń sprzęt"
|
||||
msgstr "Bezpiecznie usuń sprzęt."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%1$d Object has custom supports."
|
||||
@@ -6163,6 +6170,9 @@ msgstr "Region Logowania"
|
||||
msgid "Stealth Mode"
|
||||
msgstr "Tryb \"Niewidzialny\""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Włącz wtyczkę sieciową (BambuLab)"
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr "Sprawdzaj aktualizacje (tylko wersje stabilne)"
|
||||
|
||||
@@ -6222,6 +6232,9 @@ msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
"Jeśli włączone, automatyczne obliczanie za każdym razem, gdy zmieni się kolor"
|
||||
|
||||
msgid "Network"
|
||||
msgstr "Sieć"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Automatyczna synchronizacja profili użytkownika (Drukarka/Filament/Proces)"
|
||||
@@ -6667,7 +6680,7 @@ msgid "Synchronizing device information"
|
||||
msgstr "Synchronizacja informacji o urządzeniu"
|
||||
|
||||
msgid "Synchronizing device information time out"
|
||||
msgstr "Czas synchronizacji informacji o urządzeniu minął"
|
||||
msgstr "Upłynął czas synchronizacji informacji o urządzeniu"
|
||||
|
||||
msgid "Cannot send the print job when the printer is updating firmware"
|
||||
msgstr ""
|
||||
@@ -7100,9 +7113,9 @@ msgid ""
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Podczas nagrywania timelapse'a bez głowicy narzędziowej zaleca się dodanie "
|
||||
"\"Wieżyczki Czyszczącej Timelapse\" \n"
|
||||
"\"Timelaps - Wieża Czyszcząca\" \n"
|
||||
"przez kliknięcie prawym przyciskiem myszy na pustym miejscu płyty i wybranie "
|
||||
"\"Dodaj Prymityw\"->\"Wieża czyszcząca Timelaps\"."
|
||||
"\"Dodaj Prymityw\"->\"Timelaps - Wieża Czyszcząca\"."
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Szerokość linii"
|
||||
@@ -8715,6 +8728,12 @@ msgid ""
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
"Ustawienie jerk przekracza maksymalne jerk drukarki (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca automatycznie ograniczy prędkość jerku, aby nie przekroczyć zdolności "
|
||||
"drukarki.\n"
|
||||
"Możesz dostosować ustawienie maksymalnego jerku w konfiguracji swojej "
|
||||
"drukarki, aby uzyskać wyższe prędkości."
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
@@ -8724,15 +8743,27 @@ msgid ""
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
"Ustawienie przyspieszenia przekracza maksymalne przyspieszenie drukarki "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca automatycznie ograniczy prędkość przyspieszenia, aby nie przekroczyć "
|
||||
"zdolności drukarki.\n"
|
||||
"Możesz dostosować wartość machine_max_acceleration_extruding w konfiguracji "
|
||||
"swojej drukarki, aby uzyskać wyższe prędkości."
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
"Ustawienie przyspieszenia przekracza maksymalne przyspieszenie drukarki "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca automatycznie ograniczy prędkość przyspieszenia, aby nie przekroczyć "
|
||||
"zdolności drukarki.\n"
|
||||
"Możesz dostosować wartość machine_max_acceleration_extruding w konfiguracji "
|
||||
"swojej drukarki, aby uzyskać wyższe prędkości."
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Generowanie Skirtu i Brimu"
|
||||
@@ -8820,6 +8851,13 @@ msgstr ""
|
||||
msgid "Printer preset names"
|
||||
msgstr "Nazwy profilu drukarki"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr "Użyj innego serwera druku"
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr ""
|
||||
"Zezwól na kontrolowanie drukarki BambuLab przez serwery druku innych firm"
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "Nazwa hosta, IP lub URL"
|
||||
|
||||
@@ -9295,8 +9333,8 @@ msgstr ""
|
||||
"przemiennych kierunkach na nieparzystych warstwach, niezależnie od stopnia "
|
||||
"nawisu."
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgstr "Most dla fazowanych otworów"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "Mostek dla fazowanych otworów"
|
||||
|
||||
msgid ""
|
||||
"This option creates bridges for counterbore holes, allowing them to be "
|
||||
@@ -9305,10 +9343,10 @@ msgid ""
|
||||
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
|
||||
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
|
||||
msgstr ""
|
||||
"Ta opcja generuje mosty dla otworów z fazowaniem, co pozwala na ich "
|
||||
"drukowanie bez konieczności stosowania dodatkowych podpór. Wybierz:\n"
|
||||
"Ta opcja generuje mostki (wsparcie) dla otworów z fazowaniem, co pozwala na "
|
||||
"ich drukowanie bez konieczności stosowania dodatkowych podpór. Wybierz:\n"
|
||||
"1. Brak (czyli wyłączone)\n"
|
||||
"2. Częściowy most (most będzie konstruowany tylko nad niektórymi obszarami "
|
||||
"2. Częściowy most (mostek będzie konstruowany tylko nad niektórymi obszarami "
|
||||
"bez podpory)\n"
|
||||
"3. Warstwa pomocnicza (tworzy pełnowartościową warstwę podpory mostu)."
|
||||
|
||||
@@ -9689,12 +9727,27 @@ msgid ""
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
"Dodaj pełne wypełnienie w pobliżu nachylonych powierzchni, aby zagwarantować "
|
||||
"grubość pionowej powłoki (górne + dolne pełne warstwy).\n"
|
||||
"\n"
|
||||
"Brak: Nie umieszczaj pełnego wypełnienia w żadnym miejscu. Uwaga: Korzystaj "
|
||||
"z tej opcji ostrożnie, jeśli twój model posiada nachylone powierzchnie.\n"
|
||||
"\n"
|
||||
"Tylko krytyczne: Unikaj dodawania pełnego wypełnienia dla ścian.\n"
|
||||
"\n"
|
||||
"Umiarkowane: Dodaj pełne wypełnienie tylko dla silnie nachylonych "
|
||||
"powierzchni.\n"
|
||||
"\n"
|
||||
"Wszystkie: Dodaj pełne wypełnienie dla wszystkich odpowiednio nachylonych "
|
||||
"powierzchni.\n"
|
||||
"\n"
|
||||
"Domyślna wartość to Wszystkie."
|
||||
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
msgstr "Tylko krytyczne"
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
msgstr "Umiarkowane"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Wzór górnej powierzchni"
|
||||
@@ -11756,6 +11809,12 @@ msgstr "Pokaż znaczniki autokalibracji"
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr "Wyłącz ustawianie pozostałego czasu druku"
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
"Zablokuj generowanie polecenia M73: Ustaw pozostały czas druku w końcowym "
|
||||
"kodzie G-code"
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "Pozycja szwu"
|
||||
|
||||
@@ -11799,23 +11858,25 @@ msgstr ""
|
||||
"extrudera. Domyślna wartość tego parametru to 10%."
|
||||
|
||||
msgid "Scarf joint seam (beta)"
|
||||
msgstr "Szew szalikowy (beta)"
|
||||
msgstr "Szew ukośny (beta)"
|
||||
|
||||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
"Zastosuj szew szalikowy, aby zminimalizować widoczność szwu i zwiększyć jego "
|
||||
"Zastosuj szew ukośny, aby zminimalizować widoczność szwu i zwiększyć jego "
|
||||
"wytrzymałość."
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
msgstr "Warunkowe szwy ukośne"
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
"Zastosuj szwy ukośne jedynie do gładkich obwodów, gdzie tradycyjne szwy nie "
|
||||
"maskują skutecznie szwów w ostrych narożnikach."
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
msgstr "Warunkowy próg kąta"
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
@@ -11824,9 +11885,25 @@ msgid ""
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
"Ta opcja ustawia próg kątowy do zastosowania warunkowo szwu ukośnego.\n"
|
||||
"Jeśli maksymalny kąt w obrębie pętli obwodu przekroczy tę wartość (co "
|
||||
"wskazuje na brak ostrych narożników), zostanie użyty szew ukośny. Domyślna "
|
||||
"wartość to 155°."
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
msgstr "Prędkość szwu ukośnego"
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
@@ -11838,52 +11915,61 @@ msgid ""
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
"Ta opcja ustawia prędkość druku dla szwów ukośnych. Zaleca się drukowanie "
|
||||
"szwów ukośnych z niższą prędkością (poniżej 100 mm/s). Zaleca się również "
|
||||
"włączenie 'Wygładzania współczynnika ekstruzji', jeśli ustawiona prędkość "
|
||||
"znacząco różni się od prędkości zewnętrznych lub wewnętrznych obwodów. "
|
||||
"Jeżeli prędkość określona tutaj jest wyższa niż prędkość zewnętrznych lub "
|
||||
"wewnętrznych obwodów, drukarka domyślnie użyje wolniejszej z dwóch "
|
||||
"prędkości. Jeśli prędkość jest podana w procentach (np. 80%), jest ona "
|
||||
"obliczana na podstawie prędkości zewnętrznego lub wewnętrznego obwodu. "
|
||||
"Wartość domyślna wynosi 100%."
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
msgstr "Współczynnik przepływu szwu ukośnego"
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
"Ten współczynnik wpływa na ilość materiału potrzebną dla szwów ukośnych."
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr "Wysokość początkowa szwu szalikowego"
|
||||
msgstr "Wysokość początkowa szwu ukośnego"
|
||||
|
||||
msgid ""
|
||||
"Start height of the scarf.\n"
|
||||
"This amount can be specified in millimeters or as a percentage of the "
|
||||
"current layer height. The default value for this parameter is 0."
|
||||
msgstr ""
|
||||
"Początkowa wysokość szwu szalikowego.\n"
|
||||
"Początkowa wysokość szwu ukośnego.\n"
|
||||
"Ta wartość może być określona w milimetrach lub jako procent bieżącej "
|
||||
"wysokości warstwy. Domyślna wartość tego parametru to 0."
|
||||
|
||||
msgid "Scarf around entire wall"
|
||||
msgstr "Szew szalikowy obejmujący cały obrys ściany"
|
||||
msgstr "Szew ukośny obejmujący cały obrys ściany"
|
||||
|
||||
msgid "The scarf extends to the entire length of the wall."
|
||||
msgstr "Szew szalikowy rozciąga się na całej długość ściany"
|
||||
msgstr "Szew rozciąga się na całą długość ściany"
|
||||
|
||||
msgid "Scarf length"
|
||||
msgstr "Długość szwu szalikowego"
|
||||
msgstr "Długość szwu ukośnego"
|
||||
|
||||
msgid ""
|
||||
"Length of the scarf. Setting this parameter to zero effectively disables the "
|
||||
"scarf."
|
||||
msgstr ""
|
||||
"Długość szwu szalikowego. Ustawienie tego parametru na zero wyłączy tą "
|
||||
"funkcje."
|
||||
"Długość szwu ukośnego. Ustawienie tego parametru na zero wyłączy tą funkcje."
|
||||
|
||||
msgid "Scarf steps"
|
||||
msgstr "Krok szwu szalikowego"
|
||||
msgstr "Kroki szwu ukośnego"
|
||||
|
||||
msgid "Minimum number of segments of each scarf."
|
||||
msgstr "Minimalna liczba segmentów szwu szalikowego."
|
||||
msgstr "Minimalna liczba segmentów każdego szwu ukośnego."
|
||||
|
||||
msgid "Scarf joint for inner walls"
|
||||
msgstr "Szwy szalikowe dla ścian wewnętrznych"
|
||||
msgstr "Szwy ukośne dla wewnętrznych obwodów"
|
||||
|
||||
msgid "Use scarf joint for inner walls as well."
|
||||
msgstr "Zastosuj szwy szalikowe również do ścian wewnętrznych."
|
||||
msgstr "Zastosuj szwy ukośne również do wewnętrznych obrysów."
|
||||
|
||||
msgid "Role base wipe speed"
|
||||
msgstr "Prędkość czyszczenia w oparciu o rolę ekstruzji"
|
||||
@@ -12776,7 +12862,7 @@ msgstr ""
|
||||
"obiektów. Może to zmniejszyć ilość odpadów i skrócić czas druku. Jeśli "
|
||||
"ściany są drukowane przezroczystym filamentem, mieszane kolorowe wypełnienie "
|
||||
"będzie widoczne na zewnątrz. Nie będzie miało efektu, chyba że wieża "
|
||||
"załadowania jest włączona."
|
||||
"czyszcząca jest włączona."
|
||||
|
||||
msgid ""
|
||||
"Purging after filament change will be done inside objects' support. This may "
|
||||
@@ -12785,7 +12871,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Czyszczenie po zmianie filamentu będzie wykonane wewnątrz podpory obiektów. "
|
||||
"Może to zmniejszyć ilość odpadów i skrócić czas druku. Nie będzie miało "
|
||||
"efektu, chyba że wieża załadowania jest włączona."
|
||||
"efektu, chyba że wieża czyszcząca jest włączona."
|
||||
|
||||
msgid ""
|
||||
"This object will be used to purge the nozzle after a filament change to save "
|
||||
@@ -14316,8 +14402,8 @@ msgstr "Rozpocznij test jednowątkowy"
|
||||
msgid "Export Log"
|
||||
msgstr "Eksportuj log"
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgstr "Wersja Studio:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr "Wersja OrcaSlicer:"
|
||||
|
||||
msgid "System Version:"
|
||||
msgstr "Wersja systemu:"
|
||||
@@ -14325,11 +14411,11 @@ msgstr "Wersja systemu:"
|
||||
msgid "DNS Server:"
|
||||
msgstr "Serwer DNS:"
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgstr "Test BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr "Test OrcaSlicer(GitHub)"
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgstr "Test BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr "Test OrcaSlicer(GitHub):"
|
||||
|
||||
msgid "Test Bing.com"
|
||||
msgstr "Test Bing.com"
|
||||
@@ -14337,39 +14423,6 @@ msgstr "Test Bing.com"
|
||||
msgid "Test bing.com:"
|
||||
msgstr "Test bing.com:"
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr "Test HTTP"
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr "Test usługi HTTP:"
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr "Test pamięci"
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr "Test Przesyłu:"
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr "Test aktualizacji pamięci masowej"
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr "Test aktualizacji pamięci masowej:"
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr "Test pamięci dla pobierania"
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr "Test pamięci dla pobierania:"
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr "Test pobierania pluginów"
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr "Test pobierania Pluginów:"
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr "Test załadunku przechowywania"
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr "Informacje o logu"
|
||||
|
||||
@@ -14723,7 +14776,7 @@ msgid "finalize fail"
|
||||
msgstr "Finalizacja nie powiodła się"
|
||||
|
||||
msgid "open zip written fail"
|
||||
msgstr "Błąd zapisu ZIP"
|
||||
msgstr "błąd zapisu ZIP"
|
||||
|
||||
msgid "Export successful"
|
||||
msgstr "Eksport zakończony sukcesem"
|
||||
@@ -14812,7 +14865,7 @@ msgstr ""
|
||||
"ustawienia tego filamentu zostaną skasowane po wyjściu z okna dialogowego."
|
||||
|
||||
msgid "Presets inherited by other presets can not be deleted"
|
||||
msgstr "Nie można usunąć profili dziedziczonych przez inne profile!"
|
||||
msgstr "Nie można usunąć profili dziedziczonych przez inne profile"
|
||||
|
||||
msgid "The following presets inherits this preset."
|
||||
msgid_plural "The following preset inherits this preset."
|
||||
@@ -14902,6 +14955,9 @@ msgstr "Nie można uzyskać ważnego odniesienia do hosta drukarki"
|
||||
msgid "Success!"
|
||||
msgstr "Sukces!"
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr "Czy na pewno chcesz się wylogować?"
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Odśwież drukarki"
|
||||
|
||||
@@ -14933,6 +14989,9 @@ msgstr ""
|
||||
"Aby użyć własnego certyfikatu, zaimportuj plik do magazynu (Certificate "
|
||||
"Store / Keychain)."
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr "Logowanie/Test"
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr ""
|
||||
"Połączenie z drukarkami podłączonymi przez hosta drukowania nie powiodło się."
|
||||
@@ -15070,6 +15129,52 @@ msgstr ""
|
||||
"Treść wiadomości: \"%1%\"\n"
|
||||
"Błąd: \"%2%\""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr "Pomyślnie połączono z SimplyPrint!"
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr "Nie można połączyć się z Obico"
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr "Pomyślnie połączono z SimplyPrint!"
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr "Nie można połączyć się z SimplyPrint"
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
"Nie połączono z kontem SimplyPrint. Przejdź do opcji Połącz, aby go "
|
||||
"skonfigurować."
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
"Rozmiar pliku przekracza limit przesyłania 100 MB. Proszę przesłać plik za "
|
||||
"pomocą panelu."
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Nieznany błąd"
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr "Połączenie z Flashforge działa poprawnie."
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr "Nie można połączyć się z Flashforge"
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "Podany stan nie jest właściwy"
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
"Proszę udzielić wymaganych uprawnień podczas autoryzacji tej aplikacji."
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr "Wystąpił problem podczas próby logowania, proszę spróbować ponownie."
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr "Anulowane przez użytkownika."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
@@ -15428,7 +15533,7 @@ msgid ""
|
||||
"density to improve the strength of the model?"
|
||||
msgstr ""
|
||||
"Zwiększanie wytrzymałości\n"
|
||||
"Czy wiesz, że możesz użyć więcej pętli ścien i większej gęstości "
|
||||
"Czy wiesz, że możesz użyć więcej pętli ścian i większej gęstości "
|
||||
"wypełnienia, aby zwiększyć wytrzymałość modelu?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:When need to print with the printer door
|
||||
@@ -15457,6 +15562,74 @@ msgstr ""
|
||||
"takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może "
|
||||
"zmniejszyć prawdopodobieństwo odkształceń."
|
||||
|
||||
#~ msgid "Timeout when authenticating with the account server."
|
||||
#~ msgstr "Przekroczono limit czasu serwera podczas uwierzytelniania."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Air filtration/Exhuast Fan\n"
|
||||
#~ "Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?"
|
||||
#~ msgstr ""
|
||||
#~ "Filtracja powietrza/Wentylator wyciągowy\n"
|
||||
#~ "Czy wiesz, że OrcaSlicer może obsługiwać filtrację powietrza/wentylator "
|
||||
#~ "wyciągowy?"
|
||||
|
||||
#~ msgid "Studio Version:"
|
||||
#~ msgstr "Wersja Studio:"
|
||||
|
||||
#~ msgid "Test BambuLab"
|
||||
#~ msgstr "Test BambuLab"
|
||||
|
||||
#~ msgid "Test BambuLab:"
|
||||
#~ msgstr "Test BambuLab:"
|
||||
|
||||
#~ msgid "Test HTTP"
|
||||
#~ msgstr "Test HTTP"
|
||||
|
||||
#~ msgid "Test HTTP Service:"
|
||||
#~ msgstr "Test usługi HTTP:"
|
||||
|
||||
#~ msgid "Test storage"
|
||||
#~ msgstr "Test pamięci"
|
||||
|
||||
#~ msgid "Test Storage Upload:"
|
||||
#~ msgstr "Test Przesyłu:"
|
||||
|
||||
#~ msgid "Test storage upgrade"
|
||||
#~ msgstr "Test aktualizacji pamięci masowej"
|
||||
|
||||
#~ msgid "Test Storage Upgrade:"
|
||||
#~ msgstr "Test aktualizacji pamięci masowej:"
|
||||
|
||||
#~ msgid "Test storage download"
|
||||
#~ msgstr "Test pamięci dla pobierania"
|
||||
|
||||
#~ msgid "Test Storage Download:"
|
||||
#~ msgstr "Test pamięci dla pobierania:"
|
||||
|
||||
#~ msgid "Test plugin download"
|
||||
#~ msgstr "Test pobierania pluginów"
|
||||
|
||||
#~ msgid "Test Plugin Download:"
|
||||
#~ msgstr "Test pobierania Pluginów:"
|
||||
|
||||
#~ msgid "Test Storage Upload"
|
||||
#~ msgstr "Test załadunku przechowywania"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The speed setting exceeds the printer's maximum speed "
|
||||
#~ "(machine_max_speed_x/machine_max_speed_y).\n"
|
||||
#~ "Orca will automatically cap the print speed to ensure it doesn't surpass "
|
||||
#~ "the printer's capabilities.\n"
|
||||
#~ "You can adjust the maximum speed setting in your printer's configuration "
|
||||
#~ "to get higher speeds."
|
||||
#~ msgstr ""
|
||||
#~ "Ustawienie prędkości przekracza maksymalną prędkość drukarki "
|
||||
#~ "(machine_max_speed_x/machine_max_speed_y).\n"
|
||||
#~ "Orca automatycznie ograniczy prędkość druku, aby nie przekroczyć "
|
||||
#~ "zdolności drukarki.\n"
|
||||
#~ "Możesz dostosować ustawienie maksymalnej prędkości w konfiguracji swojej "
|
||||
#~ "drukarki, aby uzyskać wyższe prędkości."
|
||||
|
||||
#~ msgid "Choose ZIP file"
|
||||
#~ msgstr "Wybierz plik ZIP"
|
||||
|
||||
@@ -15526,14 +15699,6 @@ msgstr ""
|
||||
#~ "ograniczona, upewnij się, że używasz odpowiedniej liczby ścian do "
|
||||
#~ "podparcia części na nachylonych powierzchniach."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Air filtration/Exhuast Fan\n"
|
||||
#~ "Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?"
|
||||
#~ msgstr ""
|
||||
#~ "Filtracja powietrza/Wentylator wyciągowy\n"
|
||||
#~ "Czy wiesz, że OrcaSlicer może obsługiwać filtrację powietrza/wentylator "
|
||||
#~ "wyciągowy?"
|
||||
|
||||
#~ msgid "Scarf joint seam"
|
||||
#~ msgstr "Szew szalikowy (beta)"
|
||||
|
||||
@@ -16529,12 +16694,6 @@ msgstr ""
|
||||
#~ "masz na następnej warstwie jakieś cienkie elementy, na przykład litery. "
|
||||
#~ "Ustaw tę opcję na 0, aby usunąć te artefakty."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
#~ msgstr ""
|
||||
#~ "Zablokuj generowanie polecenia M73: Ustaw pozostały czas druku w końcowym "
|
||||
#~ "kodzie G-code"
|
||||
|
||||
#~ msgid "Layer order"
|
||||
#~ msgstr "Kolejność warstw"
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -3320,14 +3320,14 @@ msgstr ""
|
||||
"NEJ -Avbryt Spiral läge denna gång"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
@@ -3373,6 +3373,11 @@ msgstr ""
|
||||
"Vid utskrift av objekt kan extrudern kollidera med en skirt.\n"
|
||||
"Återställ därför skirt lagret till 1 för att undvika kollisioner."
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Auto justera byggplattan"
|
||||
|
||||
@@ -5970,6 +5975,9 @@ msgstr "Logga in Region"
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr ""
|
||||
|
||||
@@ -6025,6 +6033,9 @@ msgstr ""
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Automatisk synkronisering av användarens förinställningar (skrivare/filament/"
|
||||
@@ -8421,12 +8432,12 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
@@ -8507,6 +8518,12 @@ msgstr ""
|
||||
msgid "Printer preset names"
|
||||
msgstr "Namn på förinställda skrivare"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "Värdnamn, IP eller URL"
|
||||
|
||||
@@ -8914,7 +8931,7 @@ msgid ""
|
||||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -10984,6 +11001,10 @@ msgstr ""
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "Söm position"
|
||||
|
||||
@@ -11045,6 +11066,18 @@ msgid ""
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
@@ -13231,7 +13264,7 @@ msgstr ""
|
||||
msgid "Export Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "System Version:"
|
||||
@@ -13240,10 +13273,10 @@ msgstr ""
|
||||
msgid "DNS Server:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Bing.com"
|
||||
@@ -13252,39 +13285,6 @@ msgstr ""
|
||||
msgid "Test bing.com:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr ""
|
||||
|
||||
@@ -13743,6 +13743,9 @@ msgstr ""
|
||||
msgid "Success!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr ""
|
||||
|
||||
@@ -13768,6 +13771,9 @@ msgid ""
|
||||
"Keychain."
|
||||
msgstr ""
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr ""
|
||||
|
||||
@@ -13893,6 +13899,47 @@ msgid ""
|
||||
"Error: \"%2%\""
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
|
||||
@@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"PO-Revision-Date: 2024-03-03 22:12+0300\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"PO-Revision-Date: 2024-03-29 21:50+0300\n"
|
||||
"Last-Translator: Olcay ÖREN\n"
|
||||
"Language-Team: Türkçe\n"
|
||||
"Language: tr_TR\n"
|
||||
@@ -3382,21 +3382,21 @@ msgstr ""
|
||||
"Hayır - Bu sefer spiral modunu kullanmaktan vazgeçin"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
"Alternatif ekstra duvar yalnızca dikey kabuk kalınlığının devre dışı "
|
||||
"bırakılmasıyla çalışır. "
|
||||
"Alternatif ekstra duvar, dikey kabuk kalınlığının Tümü olarak "
|
||||
"ayarlandığından emin olunduğunda iyi çalışmaz. "
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"Bu ayarlar otomatik olarak değiştirilsin mi?\n"
|
||||
"Evet - Dikey kabuk kalınlığını sağlamayı devre dışı bırakın ve alternatif "
|
||||
"ekstra duvarı etkinleştirin\n"
|
||||
"Bu ayarlar otomatik olarak değiştirilsin mi? \n"
|
||||
"Evet - Dikey kabuk kalınlığını Orta olarak değiştirin ve alternatif ekstra "
|
||||
"duvarı etkinleştirin\n"
|
||||
"Hayır - Alternatif ekstra duvar kullanmayın"
|
||||
|
||||
msgid ""
|
||||
@@ -3442,6 +3442,13 @@ msgstr ""
|
||||
"Nesne ile yazdırma sırasında ekstruder etekle çarpışabilir.\n"
|
||||
"Bu durumu önlemek için etek katmanını 1'e sıfırlayın."
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
"Dikiş eğimi başlangıç yüksekliğinin katman yüksekliğinden daha küçük olması gerekir.\n"
|
||||
"0 a sıfırla."
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Otomatik yatak tesviyesi"
|
||||
|
||||
@@ -3654,50 +3661,50 @@ msgstr "varsayılan"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
msgstr "Özel G Kodunu Düzenle (%1%)"
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
msgstr "Yerleşik yer tutucular (G koduna eklemek için öğeye çift tıklayın)"
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
msgstr "Gcode yer tutucularını arayın"
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
msgstr "Seçili yer tutucuyu G koduna ekle"
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
msgstr "Yer tutucuyu seçin"
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
msgstr "[Global] Dilimleme Durumu"
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
msgstr "Sadece okunabilir"
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
msgstr "Okuma yazma"
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
msgstr "Dilimleme Durumu"
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
msgstr "Yazdırma İstatistikleri"
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
msgstr "Nesne Bilgisi"
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
msgstr "Boyutlar"
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
msgstr "Sıcaklıklar"
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
msgstr "Zaman damgaları"
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
msgstr "%1%'e özel"
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Ön ayarlar"
|
||||
@@ -3709,7 +3716,7 @@ msgid "Filament settings"
|
||||
msgstr "Filament Ayarları"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
msgstr "SLA Malzemeleri ayarları"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Yazıcı Ayarları"
|
||||
@@ -6115,6 +6122,9 @@ msgstr "Giriş Bölgesi"
|
||||
msgid "Stealth Mode"
|
||||
msgstr "Gizli mod"
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "Ağ eklentisini etkinleştir"
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr "Yalnızca kararlı güncellemeleri kontrol edin"
|
||||
|
||||
@@ -6172,6 +6182,9 @@ msgstr "Hacimleri temizleme: Renk her değiştiğinde otomatik olarak hesapla."
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr "Etkinleştirilirse, renk her değiştiğinde otomatik hesapla."
|
||||
|
||||
msgid "Network"
|
||||
msgstr "Ağ"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "Kullanıcı ön ayarları otomatik senkronizasyon (Yazıcı/Filament/İşlem)"
|
||||
|
||||
@@ -8641,6 +8654,12 @@ msgid ""
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
"Sarsıntı ayarı yazıcının maksimum sarsıntısını aşıyor (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca, yazıcının yeteneklerini aşmadığından emin olmak için sarsıntı hızını "
|
||||
"otomatik olarak sınırlayacaktır.\n"
|
||||
"Daha yüksek hızlar elde etmek için yazıcınızın yapılandırmasında maksimum "
|
||||
"sarsıntı ayarını yapabilirsiniz."
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
@@ -8650,14 +8669,20 @@ msgid ""
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
"Hızlanma ayarı yazıcının maksimum hızlanmasını aşıyor "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca, yazıcının yeteneklerini aşmadığından emin olmak için hızlanma hızını "
|
||||
"otomatik olarak sınırlayacaktır.\n"
|
||||
"Daha yüksek hızlar elde etmek için yazıcınızın yapılandırmasındaki "
|
||||
"machine_max_acceleration_extruding değerini ayarlayabilirsiniz."
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
@@ -8742,6 +8767,12 @@ msgstr ""
|
||||
msgid "Printer preset names"
|
||||
msgstr "Yazıcı ön ayar adları"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr "3. taraf yazdırma ana bilgisayarını kullanın"
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr "BambuLab yazıcısının 3. taraf yazdırma ana bilgisayarları aracılığıyla kontrol edilmesine izin ver"
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "Ana bilgisayar adı, IP veya URL"
|
||||
|
||||
@@ -9203,7 +9234,7 @@ msgstr ""
|
||||
"bakılmaksızın tek katmanlar üzerine değişen yönlerde yazdırılması için Ters "
|
||||
"Eşiği 0'a ayarlamanız önerilir."
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "Köprü havşa delikleri"
|
||||
|
||||
msgid ""
|
||||
@@ -9591,12 +9622,20 @@ msgid ""
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
"Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına katı "
|
||||
"dolgu ekleyin (üst + alt katı katmanlar)\n"
|
||||
"Yok: Hiçbir yere katı dolgu eklenmez. Dikkat: Modelinizin eğimli yüzeyleri "
|
||||
"varsa bu seçeneği dikkatli kullanın.\n"
|
||||
"Yalnızca Kritik: Duvarlar için katı dolgu eklemekten kaçının\n"
|
||||
"Orta: Yalnızca çok eğimli yüzeyler için katı dolgu ekleyin\n"
|
||||
"Hepsi: Tüm uygun eğimli yüzeyler için katı dolgu ekleyin\n"
|
||||
"Varsayılan değer Tümü'dür."
|
||||
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
msgstr "Yalnızca Kritik"
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
msgstr "Orta"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Üst yüzey deseni"
|
||||
@@ -11613,6 +11652,11 @@ msgstr "Otomatik kalibrasyon işaretlerini göster"
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr "Kalan yazdırma süresini ayarlamayı devre dışı bırak"
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
"M73'ün oluşturulmasını devre dışı bırakın: Son gcode'da kalan yazdırma süresini ayarlayın"
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "Dikiş konumu"
|
||||
|
||||
@@ -11656,23 +11700,25 @@ msgstr ""
|
||||
"belirtilebilir. Bu parametrenin varsayılan değeri %10'dur."
|
||||
|
||||
msgid "Scarf joint seam (beta)"
|
||||
msgstr "Eşarp birleşim yeri dikişi (beta)"
|
||||
msgstr "Atkı birleşim dikişi (beta)"
|
||||
|
||||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
"Dikiş görünürlüğünü en aza indirmek ve dikiş mukavemetini arttırmak için "
|
||||
"eşarp eklemini kullanın."
|
||||
"atkı birleşimini kullanın."
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
msgstr "Koşullu atkı birleşimi"
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
"Atkı bağlantılarını yalnızca geleneksel dikişlerin keskin köşelerdeki "
|
||||
"dikişleri etkili bir şekilde gizleyemediği düzgün kenarlara uygulayın."
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
msgstr "Koşullu açı eşiği"
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
@@ -11681,9 +11727,31 @@ msgid ""
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
"Bu seçenek, koşullu bir atkı eklem dikişi uygulamak için eşik açısını "
|
||||
"ayarlar.\n"
|
||||
"Çevre halkası içindeki maksimum açı bu değeri aşarsa (keskin köşelerin "
|
||||
"bulunmadığını gösterir), bir atkı birleştirme dikişi kullanılacaktır. "
|
||||
"Varsayılan değer 155°'dir."
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr "Koşullu çıkıntı eşiği"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
"Bu seçenek, atkı bağlantı dikişlerinin uygulanması için sarkma "
|
||||
"eşiğini belirler. Çevrenin desteklenmeyen kısmı bu eşikten az ise atkı "
|
||||
"birleştirme dikişleri uygulanacaktır. Varsayılan eşik, dış duvar genişliğinin "
|
||||
"%40'ına ayarlanmıştır. Performans değerlendirmeleri nedeniyle çıkıntının "
|
||||
"derecesi tahmin edilir."
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
msgstr "Atkı birleşim hızı"
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
@@ -11695,52 +11763,61 @@ msgid ""
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
"Bu seçenek, atkı bağlantılarının yazdırma hızını ayarlar. Atkı "
|
||||
"bağlantılarının yavaş bir hızda (100 mm/s'den az) yazdırılması tavsiye "
|
||||
"edilir. Ayarlanan hızın dış veya iç duvarların hızından önemli ölçüde farklı "
|
||||
"olması durumunda 'Ekstrüzyon hızı yumuşatma' seçeneğinin etkinleştirilmesi "
|
||||
"de tavsiye edilir. Burada belirtilen hız, dış veya iç duvarların hızından "
|
||||
"daha yüksekse, yazıcı varsayılan olarak iki hızdan daha yavaş olanı "
|
||||
"seçecektir. Yüzde olarak belirtildiğinde (örn. %80), hız, ilgili dış veya iç "
|
||||
"duvar hızına göre hesaplanır. Varsayılan değer %100 olarak ayarlanmıştır."
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
msgstr "Atkı birleşimi akış oranı"
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
"Bu faktör atkı birleşimlerinde kullanılacak materyal miktarını değiştirir."
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr "Eşarp başlangıç yüksekliği"
|
||||
msgstr "Atkı başlangıç yüksekliği"
|
||||
|
||||
msgid ""
|
||||
"Start height of the scarf.\n"
|
||||
"This amount can be specified in millimeters or as a percentage of the "
|
||||
"current layer height. The default value for this parameter is 0."
|
||||
msgstr ""
|
||||
"Eşarpın yüksekliğini başlatın.\n"
|
||||
"Atkı başlangıç yüksekliği.\n"
|
||||
"Bu miktar milimetre cinsinden veya geçerli katman yüksekliğinin yüzdesi "
|
||||
"olarak belirtilebilir. Bu parametrenin varsayılan değeri 0'dır."
|
||||
|
||||
msgid "Scarf around entire wall"
|
||||
msgstr "Tüm duvarın etrafında eşarp"
|
||||
msgstr "Tüm duvarın etrafına atkıla"
|
||||
|
||||
msgid "The scarf extends to the entire length of the wall."
|
||||
msgstr "Eşarp duvarın tüm uzunluğu boyunca uzanır."
|
||||
msgstr "Atkı duvarın tüm uzunluğu boyunca uzanır."
|
||||
|
||||
msgid "Scarf length"
|
||||
msgstr "Eşarp uzunluğu"
|
||||
msgstr "Atkı uzunluğu"
|
||||
|
||||
msgid ""
|
||||
"Length of the scarf. Setting this parameter to zero effectively disables the "
|
||||
"scarf."
|
||||
msgstr ""
|
||||
"Eşarpın uzunluğu. Bu parametrenin 0 a ayarlanması eşarpı etkili bir şekilde "
|
||||
"Atkının uzunluğu. Bu parametrenin 0 a ayarlanması atkıyı dolaylı yoldan "
|
||||
"devre dışı bırakır."
|
||||
|
||||
msgid "Scarf steps"
|
||||
msgstr "Eşarp adımları"
|
||||
msgstr "Atkı kademesi"
|
||||
|
||||
msgid "Minimum number of segments of each scarf."
|
||||
msgstr "Her eşarpın minimum segment sayısı."
|
||||
msgstr "Her atkının minimum segment sayısı."
|
||||
|
||||
msgid "Scarf joint for inner walls"
|
||||
msgstr "İç duvarlar için eşarp bağlantısı"
|
||||
msgstr "İç duvarlar için atkı birleşimi"
|
||||
|
||||
msgid "Use scarf joint for inner walls as well."
|
||||
msgstr "İç duvarlar için de eşarp eklemi kullanın."
|
||||
msgstr "İç duvarlar için de atkı birleşimini kullanın."
|
||||
|
||||
msgid "Role base wipe speed"
|
||||
msgstr "Otomatik temizleme hızı"
|
||||
@@ -14154,8 +14231,8 @@ msgstr "Tek İş Parçacığı Testini Başlat"
|
||||
msgid "Export Log"
|
||||
msgstr "Logu Dışa Aktar"
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgstr "Stüdyo Sürümü:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr "OrcaSlicer Sürümü:"
|
||||
|
||||
msgid "System Version:"
|
||||
msgstr "Sistem Versiyonu:"
|
||||
@@ -14163,11 +14240,11 @@ msgstr "Sistem Versiyonu:"
|
||||
msgid "DNS Server:"
|
||||
msgstr "Dns sunucusu:"
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgstr "BambuLab'ı test edin"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr "OrcaSlicer'ı (GitHub) test edin"
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgstr "BambuLab'ı test edin"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr "OrcaSlicer'ı (GitHub) test edin:"
|
||||
|
||||
msgid "Test Bing.com"
|
||||
msgstr "Bing.com'u test edin"
|
||||
@@ -14175,39 +14252,6 @@ msgstr "Bing.com'u test edin"
|
||||
msgid "Test bing.com:"
|
||||
msgstr "Bing.com'u test edin:"
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr "HTTP'yi test et"
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr "HTTP Hizmetini Test Edin:"
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr "Test depolaması"
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr "Depolama Yüklemesini Test Et:"
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr "Depolama yükseltmesini test edin"
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr "Depolama Yükseltmesini Test Edin:"
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr "Test depolama indirmesi"
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr "Test Depolama İndirme:"
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr "Test eklentisi indirme"
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr "Test Eklentisini İndirin:"
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr "Depolama Yüklemesini Test Etme"
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr "Günlük Bilgisi"
|
||||
|
||||
@@ -14725,6 +14769,9 @@ msgstr "Geçerli bir Yazıcı Ana Bilgisayarı referansı alınamadı"
|
||||
msgid "Success!"
|
||||
msgstr "Başarılı!"
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr "Çıkış yaptığınızdan emin misiniz?"
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Yazıcıları Yenile"
|
||||
|
||||
@@ -14756,6 +14803,9 @@ msgstr ""
|
||||
"Özel bir CA dosyası kullanmak için lütfen CA dosyanızı Sertifika Deposuna/"
|
||||
"Anahtarlığa aktarın."
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr "Giriş/Test"
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr ""
|
||||
"Yazdırma ana bilgisayarı aracılığıyla bağlanan yazıcılara bağlantı başarısız "
|
||||
@@ -14893,6 +14943,49 @@ msgstr ""
|
||||
"Mesaj gövdesi: \"%1%\"\n"
|
||||
"Hata: \"%2%\""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr "Obico'ya başarıyla bağlanıldı!"
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr "Obico'ya bağlanılamadı"
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr "SimplyPrint'e başarıyla bağlanıldı!"
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr "SimplyPrint'e bağlanılamadı"
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr "SimplyPrint hesabı bağlı değil. Ayarlamak için Bağlantı seçeneklerine gidin."
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
"Dosya boyutu 100 MB yükleme sınırını aşıyor. Lütfen dosyanızı panel "
|
||||
"üzerinden yükleyiniz."
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Bilinmeyen hata"
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr "Flashforge bağlantısı düzgün çalışıyor."
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr "Flashforge'a bağlanılamadı"
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr "Sağlanan durum doğru değil."
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr "Lütfen bu uygulamaya yetki verirken gerekli izinleri verin."
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr "Giriş yapmaya çalışırken beklenmeyen bir şey oldu, lütfen tekrar deneyin."
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr "Kullanıcı iptal edildi."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
@@ -15281,6 +15374,81 @@ msgstr ""
|
||||
"sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını "
|
||||
"azaltabileceğini biliyor muydunuz?"
|
||||
|
||||
#~ msgid "Studio Version:"
|
||||
#~ msgstr "Stüdyo Sürümü:"
|
||||
|
||||
#~ msgid "Test BambuLab"
|
||||
#~ msgstr "BambuLab'ı test edin"
|
||||
|
||||
#~ msgid "Test BambuLab:"
|
||||
#~ msgstr "BambuLab'ı test edin"
|
||||
|
||||
#~ msgid "Test HTTP"
|
||||
#~ msgstr "HTTP'yi test et"
|
||||
|
||||
#~ msgid "Test HTTP Service:"
|
||||
#~ msgstr "HTTP Hizmetini Test Edin:"
|
||||
|
||||
#~ msgid "Test storage"
|
||||
#~ msgstr "Test depolaması"
|
||||
|
||||
#~ msgid "Test Storage Upload:"
|
||||
#~ msgstr "Depolama Yüklemesini Test Et:"
|
||||
|
||||
#~ msgid "Test storage upgrade"
|
||||
#~ msgstr "Depolama yükseltmesini test edin"
|
||||
|
||||
#~ msgid "Test Storage Upgrade:"
|
||||
#~ msgstr "Depolama Yükseltmesini Test Edin:"
|
||||
|
||||
#~ msgid "Test storage download"
|
||||
#~ msgstr "Test depolama indirmesi"
|
||||
|
||||
#~ msgid "Test Storage Download:"
|
||||
#~ msgstr "Test Depolama İndirme:"
|
||||
|
||||
#~ msgid "Test plugin download"
|
||||
#~ msgstr "Test eklentisi indirme"
|
||||
|
||||
#~ msgid "Test Plugin Download:"
|
||||
#~ msgstr "Test Eklentisini İndirin:"
|
||||
|
||||
#~ msgid "Test Storage Upload"
|
||||
#~ msgstr "Depolama Yüklemesini Test Etme"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The speed setting exceeds the printer's maximum speed "
|
||||
#~ "(machine_max_speed_x/machine_max_speed_y).\n"
|
||||
#~ "Orca will automatically cap the print speed to ensure it doesn't surpass "
|
||||
#~ "the printer's capabilities.\n"
|
||||
#~ "You can adjust the maximum speed setting in your printer's configuration "
|
||||
#~ "to get higher speeds."
|
||||
#~ msgstr ""
|
||||
#~ "Hız ayarı yazıcının maksimum hızını aşıyor (machine_max_speed_x/"
|
||||
#~ "machine_max_speed_y).\n"
|
||||
#~ "Orca, yazıcının yeteneklerini aşmadığından emin olmak için yazdırma "
|
||||
#~ "hızını otomatik olarak sınırlayacaktır.\n"
|
||||
#~ "Daha yüksek hızlar elde etmek için yazıcınızın yapılandırmasındaki "
|
||||
#~ "maksimum hız ayarını yapabilirsiniz."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Alternate extra wall only works with ensure vertical shell thickness "
|
||||
#~ "disabled. "
|
||||
#~ msgstr ""
|
||||
#~ "Alternatif ekstra duvar yalnızca dikey kabuk kalınlığının devre dışı "
|
||||
#~ "bırakılmasıyla çalışır. "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Change these settings automatically? \n"
|
||||
#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
#~ "wall\n"
|
||||
#~ "No - Dont use alternate extra wall"
|
||||
#~ msgstr ""
|
||||
#~ "Bu ayarlar otomatik olarak değiştirilsin mi?\n"
|
||||
#~ "Evet - Dikey kabuk kalınlığını sağlamayı devre dışı bırakın ve alternatif "
|
||||
#~ "ekstra duvarı etkinleştirin\n"
|
||||
#~ "Hayır - Alternatif ekstra duvar kullanmayın"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"PO-Revision-Date: 2023-08-10 20:25-0400\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -3350,14 +3350,14 @@ msgstr ""
|
||||
"Ні - цього разу відмовитися від використання режиму спіралі"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
@@ -3403,6 +3403,11 @@ msgstr ""
|
||||
"Під час друку об'єкта екструдер може зіткнутися зі спідницею.\n"
|
||||
"Таким чином, скиньте шар спідниці до 1, щоб уникнути цього."
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Автоматичне вирівнювання столу"
|
||||
|
||||
@@ -6025,6 +6030,9 @@ msgstr "Регіон входу"
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr ""
|
||||
|
||||
@@ -6079,6 +6087,9 @@ msgstr ""
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Автоматична синхронізація користувацьких пресетів (принтер/філамент/процес)"
|
||||
@@ -8472,12 +8483,12 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
@@ -8557,6 +8568,12 @@ msgstr ""
|
||||
msgid "Printer preset names"
|
||||
msgstr "Імена налаштувань принтера"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "Ім'я хоста, IP або URL"
|
||||
|
||||
@@ -8980,7 +8997,7 @@ msgid ""
|
||||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -11142,6 +11159,10 @@ msgstr "Показати мітки автоматичного калібрув
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "Положення шва"
|
||||
|
||||
@@ -11208,6 +11229,18 @@ msgid ""
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
@@ -13399,7 +13432,7 @@ msgstr ""
|
||||
msgid "Export Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "System Version:"
|
||||
@@ -13408,10 +13441,10 @@ msgstr ""
|
||||
msgid "DNS Server:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Bing.com"
|
||||
@@ -13420,39 +13453,6 @@ msgstr ""
|
||||
msgid "Test bing.com:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr ""
|
||||
|
||||
@@ -13912,6 +13912,9 @@ msgstr "Неможливо отримати дійсне посилання на
|
||||
msgid "Success!"
|
||||
msgstr "Успіх!"
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Оновити принтери"
|
||||
|
||||
@@ -13943,6 +13946,9 @@ msgstr ""
|
||||
"Щоб використовувати власний файл ЦС, імпортуйте файл ЦС в сховище "
|
||||
"сертифікатів/Keychain."
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr "Не вдалося підключитися до принтерів, підключених через вузол друку."
|
||||
|
||||
@@ -14068,6 +14074,47 @@ msgid ""
|
||||
"Error: \"%2%\""
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Slic3rPE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"PO-Revision-Date: 2023-04-01 13:21+0800\n"
|
||||
"Last-Translator: SoftFever <softfeverever@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -3228,16 +3228,19 @@ msgstr ""
|
||||
"否 - 暂不使用旋转模式"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
msgstr ""
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr "“交替添加额外”与“确保垂直外壳厚度”的”全部“选项不兼容。"
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"自动调整这些设置?\n"
|
||||
"是 - 自动调整确保垂直外壳厚度为“适量”,并开启交替添加额外内墙\n"
|
||||
"否 - 不使用交替添加额外内墙"
|
||||
|
||||
msgid ""
|
||||
"Prime tower does not work when Adaptive Layer Height or Independent Support "
|
||||
@@ -3278,6 +3281,13 @@ msgid ""
|
||||
"Thus, reset the skirt layer to 1 to avoid that."
|
||||
msgstr "逐件打印时,挤出机可能与裙边碰撞。因此将裙边的层数重置为1。"
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
"seam_slope_start_height需要小于layer_height。\n"
|
||||
"重置为0。"
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "自动热床调平"
|
||||
|
||||
@@ -4296,22 +4306,22 @@ msgid "Use Orthogonal View"
|
||||
msgstr "使用正交视角"
|
||||
|
||||
msgid "Show &G-code Window"
|
||||
msgstr ""
|
||||
msgstr "显示G-code窗口"
|
||||
|
||||
msgid "Show g-code window in Previce scene"
|
||||
msgstr ""
|
||||
msgstr "显示G-code窗口"
|
||||
|
||||
msgid "Show 3D Navigator"
|
||||
msgstr ""
|
||||
msgstr "显示3D导航器"
|
||||
|
||||
msgid "Show 3D navigator in Prepare and Preview scene"
|
||||
msgstr ""
|
||||
msgstr "显示3D导航器"
|
||||
|
||||
msgid "Reset Window Layout"
|
||||
msgstr ""
|
||||
msgstr "重置窗口布局"
|
||||
|
||||
msgid "Reset to default window layout"
|
||||
msgstr ""
|
||||
msgstr "重置为默认窗口布局"
|
||||
|
||||
msgid "Show &Labels"
|
||||
msgstr "显示名称"
|
||||
@@ -5853,8 +5863,11 @@ msgstr "登录区域"
|
||||
msgid "Stealth Mode"
|
||||
msgstr "局域网模式"
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr "启用网络插件"
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr ""
|
||||
msgstr "仅检测正式版的更新"
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "公制"
|
||||
@@ -5906,6 +5919,9 @@ msgstr "冲刷体积:每一次更换颜色时自动计算。"
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr "如果启用,会在每一次更换颜色时自动计算。"
|
||||
|
||||
msgid "Network"
|
||||
msgstr "网络"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "同步用户预设(打印机/耗材丝/工艺)"
|
||||
|
||||
@@ -8197,8 +8213,7 @@ msgstr "盘 %d: %s 不支持耗材丝 %s"
|
||||
|
||||
msgid ""
|
||||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
"将抖动(jerk)速度设置得太低可能会导致打印曲面时出现瑕疵"
|
||||
msgstr "将抖动(jerk)速度设置得太低可能会导致打印曲面时出现瑕疵"
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
@@ -8208,7 +8223,8 @@ msgid ""
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
"抖动速度设置超过了打印机的最大抖动速度(machine_max_jerk_x/machine_max_jerk_y)。\n"
|
||||
"抖动速度设置超过了打印机的最大抖动速度(machine_max_jerk_x/"
|
||||
"machine_max_jerk_y)。\n"
|
||||
"Orca将自动限制抖动速度,以确保不超过打印机的速度限制。\n"
|
||||
"您可以调整打印机配置中的最大抖动速度设置,以获得更高的速度。"
|
||||
|
||||
@@ -8222,19 +8238,21 @@ msgid ""
|
||||
msgstr ""
|
||||
"加速度设置超过了打印机的最大加速度(machine_max_acceleration_extruding)。\n"
|
||||
"Orca将自动限制加速度,以确保不超过打印机的速度限制。\n"
|
||||
"您可以调整打印机配置中的machine_max_acceleration_extruding值,以获得更高的速度。"
|
||||
"您可以调整打印机配置中的machine_max_acceleration_extruding值,以获得更高的速"
|
||||
"度。"
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
"速度设置超过了打印机的最大速度(machine_max_speed_x/machine_max_speed_y)。\n"
|
||||
"Orca将自动限制打印速度,以确保不超过打印机的速度限制。\n"
|
||||
"您可以调整打印机配置中的最大速度设置,以获得更高的速度。"
|
||||
"空驶加速度设置超过了打印机的最大空驶加速度"
|
||||
"(machine_max_acceleration_travel)。\n"
|
||||
"Orca将自动限制加速度,以确保不超过打印机的速度限制。\n"
|
||||
"您可以调整打印机配置中的machine_max_acceleration_travel值,以获得更高的速度。"
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "正在生成skirt和brim"
|
||||
@@ -8309,6 +8327,12 @@ msgstr "导入模型时自动旋转到指定的朝向"
|
||||
msgid "Printer preset names"
|
||||
msgstr "打印机预设名"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr "启用第三方网络连接"
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr "允许通过第三方网络连接控制BambuLab的打印机"
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "主机名,IP或者URL"
|
||||
|
||||
@@ -8699,7 +8723,7 @@ msgstr ""
|
||||
"为了使这个设置最有效,建议将反转阈值设置为0,这样所有的内墙都会在奇数层交替打"
|
||||
"印。"
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "沉孔搭桥"
|
||||
|
||||
msgid ""
|
||||
@@ -9004,7 +9028,6 @@ msgstr ""
|
||||
"无过滤 - 在每个潜在的内部悬垂上创建内部搭桥。这个选项对于严重倾斜的顶部表面模"
|
||||
"型很有用。然而,在大多数情况下,它会创建太多不必要的桥接。"
|
||||
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "禁用"
|
||||
|
||||
@@ -9056,13 +9079,13 @@ msgid ""
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
"在倾斜表面附近添加实心填充,以保证垂直外壳的厚度(顶部+底部实心层)\n"
|
||||
"无:任何地方都不会添加实心填充。注意:如果您的模型有倾斜表面,请谨慎使用此选项\n"
|
||||
"无:任何地方都不会添加实心填充。注意:如果您的模型有倾斜表面,请谨慎使用此选"
|
||||
"项\n"
|
||||
"仅关键区域:避免为墙壁添加实心填充\n"
|
||||
"适量:仅为严重倾斜的表面添加实心填充\n"
|
||||
"全部:为所有适当的倾斜表面添加实心填充\n"
|
||||
"默认值为全部。"
|
||||
|
||||
|
||||
msgid "Critical Only"
|
||||
msgstr "仅关键区域"
|
||||
|
||||
@@ -9118,14 +9141,12 @@ msgstr ""
|
||||
msgid ""
|
||||
"Line width of outer wall. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter."
|
||||
msgstr ""
|
||||
"外墙的线宽。如果以%表示,它将基于喷嘴直径来计算"
|
||||
msgstr "外墙的线宽。如果以%表示,它将基于喷嘴直径来计算"
|
||||
|
||||
msgid ""
|
||||
"Speed of outer wall which is outermost and visible. It's used to be slower "
|
||||
"than inner wall speed to get better quality."
|
||||
msgstr ""
|
||||
"外墙的打印速度。它通常使用比内壁速度慢的速度,以获得更好的质量。"
|
||||
msgstr "外墙的打印速度。它通常使用比内壁速度慢的速度,以获得更好的质量。"
|
||||
|
||||
msgid "Small perimeters"
|
||||
msgstr "微小部位"
|
||||
@@ -9232,7 +9253,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"从顶部往下看时,墙壁被打印的方向。\n"
|
||||
"\n"
|
||||
"默认情况下,所有墙壁都按逆时针方向被打印,除非启用了奇数层翻转选项。将此选项设置为除自动之外的任何选项,都会强制指定墙壁方向,而不受奇数层翻转选项的影响。\n"
|
||||
"默认情况下,所有墙壁都按逆时针方向被打印,除非启用了奇数层翻转选项。将此选项设"
|
||||
"置为除自动之外的任何选项,都会强制指定墙壁方向,而不受奇数层翻转选项的影响。\n"
|
||||
"\n"
|
||||
"如果启用了螺旋花瓶模式,此选项将被禁用。"
|
||||
|
||||
@@ -9248,8 +9270,7 @@ msgstr "到横杆高度"
|
||||
msgid ""
|
||||
"Distance of the nozzle tip to the lower rod. Used for collision avoidance in "
|
||||
"by-object printing."
|
||||
msgstr ""
|
||||
"喷嘴尖端到下方滑杆的距离。用于在逐件打印中避免碰撞。"
|
||||
msgstr "喷嘴尖端到下方滑杆的距离。用于在逐件打印中避免碰撞。"
|
||||
|
||||
msgid "Height to lid"
|
||||
msgstr "到顶盖高度"
|
||||
@@ -9257,19 +9278,16 @@ msgstr "到顶盖高度"
|
||||
msgid ""
|
||||
"Distance of the nozzle tip to the lid. Used for collision avoidance in by-"
|
||||
"object printing."
|
||||
msgstr ""
|
||||
"喷嘴尖端到顶盖的距离。用于在逐件打印中避免碰撞。"
|
||||
msgstr "喷嘴尖端到顶盖的距离。用于在逐件打印中避免碰撞。"
|
||||
|
||||
msgid ""
|
||||
"Clearance radius around extruder. Used for collision avoidance in by-object "
|
||||
"printing."
|
||||
msgstr ""
|
||||
"挤出机四周的避让半径。用于在逐件打印中避免碰撞。"
|
||||
msgstr "挤出机四周的避让半径。用于在逐件打印中避免碰撞。"
|
||||
|
||||
msgid "Bed mesh min"
|
||||
msgstr "网床最小点"
|
||||
|
||||
|
||||
msgid ""
|
||||
"This option sets the min point for the allowed bed mesh area. Due to the "
|
||||
"probe's XY offset, most printers are unable to probe the entire bed. To "
|
||||
@@ -9280,11 +9298,11 @@ msgid ""
|
||||
"your printer manufacturer. The default setting is (-99999, -99999), which "
|
||||
"means there are no limits, thus allowing probing across the entire bed."
|
||||
msgstr ""
|
||||
"此选项设置了允许的网床探测区域的最小点。由于探针的XY偏移,大多数打印机无法探测整个"
|
||||
"打印床。为了确保探针不会超出床的范围,应适当设置网床的最小和最大点。逆戟鲸切片确"
|
||||
"保adaptive_bed_mesh_min/adaptive_bed_mesh_max值不超过这些最小/最大点。这些信息通"
|
||||
"常可以从您的打印机制造商那里获得。默认设置为(-99999, -99999),这意味着没有限制"
|
||||
",因此允许在整个床上进行探测。"
|
||||
"此选项设置了允许的网床探测区域的最小点。由于探针的XY偏移,大多数打印机无法探"
|
||||
"测整个打印床。为了确保探针不会超出床的范围,应适当设置网床的最小和最大点。逆"
|
||||
"戟鲸切片确保adaptive_bed_mesh_min/adaptive_bed_mesh_max值不超过这些最小/最大"
|
||||
"点。这些信息通常可以从您的打印机制造商那里获得。默认设置为(-99999, -99999),"
|
||||
"这意味着没有限制,因此允许在整个床上进行探测。"
|
||||
|
||||
msgid "Bed mesh max"
|
||||
msgstr "网床最大点"
|
||||
@@ -9299,11 +9317,11 @@ msgid ""
|
||||
"your printer manufacturer. The default setting is (99999, 99999), which "
|
||||
"means there are no limits, thus allowing probing across the entire bed."
|
||||
msgstr ""
|
||||
"此选项设置了允许的网床探测区域的最大点。由于探针的XY偏移,大多数打印机无法探测整个"
|
||||
"打印床。为了确保探针不会超出床的范围,应适当设置网床的最小和最大点。逆戟鲸切片确"
|
||||
"保adaptive_bed_mesh_min/adaptive_bed_mesh_max值不超过这些最小/最大点。这些信息通"
|
||||
"常可以从您的打印机制造商那里获得。默认设置为(99999, 99999),这意味着没有限制,"
|
||||
"因此允许在整个床上进行探测。"
|
||||
"此选项设置了允许的网床探测区域的最大点。由于探针的XY偏移,大多数打印机无法探"
|
||||
"测整个打印床。为了确保探针不会超出床的范围,应适当设置网床的最小和最大点。逆"
|
||||
"戟鲸切片确保adaptive_bed_mesh_min/adaptive_bed_mesh_max值不超过这些最小/最大"
|
||||
"点。这些信息通常可以从您的打印机制造商那里获得。默认设置为(99999, 99999),这"
|
||||
"意味着没有限制,因此允许在整个床上进行探测。"
|
||||
|
||||
msgid "Probe point distance"
|
||||
msgstr "网格点间距离"
|
||||
@@ -9312,7 +9330,8 @@ msgid ""
|
||||
"This option sets the preferred distance between probe points (grid size) for "
|
||||
"the X and Y directions, with the default being 50mm for both X and Y."
|
||||
msgstr ""
|
||||
"此选项设置了X和Y方向的探针点(网格大小)之间的首选距离,其默认值为X和Y方向均为50mm。"
|
||||
"此选项设置了X和Y方向的探针点(网格大小)之间的首选距离,其默认值为X和Y方向均"
|
||||
"为50mm。"
|
||||
|
||||
msgid "Mesh margin"
|
||||
msgstr "网床边缘外扩"
|
||||
@@ -9320,8 +9339,7 @@ msgstr "网床边缘外扩"
|
||||
msgid ""
|
||||
"This option determines the additional distance by which the adaptive bed "
|
||||
"mesh area should be expanded in the XY directions."
|
||||
msgstr ""
|
||||
"此选项决定了自适应网床网格区域在XY方向上应扩展的额外距离。"
|
||||
msgstr "此选项决定了自适应网床网格区域在XY方向上应扩展的额外距离。"
|
||||
|
||||
msgid "Extruder Color"
|
||||
msgstr "挤出机颜色"
|
||||
@@ -9352,8 +9370,7 @@ msgstr "启用压力提前"
|
||||
msgid ""
|
||||
"Enable pressure advance, auto calibration result will be overwriten once "
|
||||
"enabled."
|
||||
msgstr ""
|
||||
"启用压力提前,一旦启用会覆盖自动检测的结果"
|
||||
msgstr "启用压力提前,一旦启用会覆盖自动检测的结果"
|
||||
|
||||
msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)"
|
||||
msgstr "压力提前(Klipper)或者线性提前(Marlin)"
|
||||
@@ -9361,8 +9378,7 @@ msgstr "压力提前(Klipper)或者线性提前(Marlin)"
|
||||
msgid ""
|
||||
"Default line width if other line widths are set to 0. If expressed as a %, "
|
||||
"it will be computed over the nozzle diameter."
|
||||
msgstr ""
|
||||
"当线宽设置为0时走线的默认线宽。如果以%表示,它将基于喷嘴直径来计算。"
|
||||
msgstr "当线宽设置为0时走线的默认线宽。如果以%表示,它将基于喷嘴直径来计算。"
|
||||
|
||||
msgid "Keep fan always on"
|
||||
msgstr "保持风扇常开"
|
||||
@@ -9535,8 +9551,7 @@ msgstr "尖端成型参数"
|
||||
msgid ""
|
||||
"This string is edited by RammingDialog and contains ramming specific "
|
||||
"parameters."
|
||||
msgstr ""
|
||||
"此内容由尖端成型窗口编辑,包含尖端成型的特定参数。"
|
||||
msgstr "此内容由尖端成型窗口编辑,包含尖端成型的特定参数。"
|
||||
|
||||
msgid ""
|
||||
"Time for the printer firmware (or the Multi Material Unit 2.0) to unload a "
|
||||
@@ -9587,16 +9602,14 @@ msgstr "可溶性材料"
|
||||
|
||||
msgid ""
|
||||
"Soluble material is commonly used to print support and support interface"
|
||||
msgstr ""
|
||||
"可溶性材料通常用于打印支撑和支撑面"
|
||||
msgstr "可溶性材料通常用于打印支撑和支撑面"
|
||||
|
||||
msgid "Support material"
|
||||
msgstr "支撑材料"
|
||||
|
||||
msgid ""
|
||||
"Support material is commonly used to print support and support interface"
|
||||
msgstr ""
|
||||
"支撑材料通常用于打印支撑体和支撑接触面"
|
||||
msgstr "支撑材料通常用于打印支撑体和支撑接触面"
|
||||
|
||||
msgid "Softening temperature"
|
||||
msgstr "软化温度"
|
||||
@@ -9633,8 +9646,7 @@ msgstr "填充方向"
|
||||
msgid ""
|
||||
"Angle for sparse infill pattern, which controls the start or main direction "
|
||||
"of line"
|
||||
msgstr ""
|
||||
"稀疏填充图案的角度,决定走线的开始或整体方向。"
|
||||
msgstr "稀疏填充图案的角度,决定走线的开始或整体方向。"
|
||||
|
||||
msgid "Sparse infill density"
|
||||
msgstr "稀疏填充密度"
|
||||
@@ -9743,8 +9755,7 @@ msgstr "空驶加速度"
|
||||
msgid ""
|
||||
"Acceleration of top surface infill. Using a lower value may improve top "
|
||||
"surface quality"
|
||||
msgstr ""
|
||||
"顶面填充的加速度。使用较低值可能会改善顶面质量"
|
||||
msgstr "顶面填充的加速度。使用较低值可能会改善顶面质量"
|
||||
|
||||
msgid "Acceleration of outer wall. Using a lower value can improve quality"
|
||||
msgstr "外墙加速度。使用较小的值可以提高质量。"
|
||||
@@ -9776,8 +9787,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"Acceleration of initial layer. Using a lower value can improve build plate "
|
||||
"adhesive"
|
||||
msgstr ""
|
||||
"首层加速度。使用较低值可以改善和构建板的粘接。"
|
||||
msgstr "首层加速度。使用较低值可以改善和构建板的粘接。"
|
||||
|
||||
msgid "Enable accel_to_decel"
|
||||
msgstr "启用制动速度"
|
||||
@@ -9791,8 +9801,7 @@ msgstr "制动速度"
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration"
|
||||
msgstr ""
|
||||
"Klipper的max_accel_to_decel将被调整为该加速度的百分比"
|
||||
msgstr "Klipper的max_accel_to_decel将被调整为该加速度的百分比"
|
||||
|
||||
msgid "Jerk of outer walls"
|
||||
msgstr "外墙抖动值"
|
||||
@@ -9815,8 +9824,7 @@ msgstr "空驶抖动值"
|
||||
msgid ""
|
||||
"Line width of initial layer. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
msgstr ""
|
||||
"首层的线宽。如果以%表示,它将基于喷嘴直径来计算。"
|
||||
msgstr "首层的线宽。如果以%表示,它将基于喷嘴直径来计算。"
|
||||
|
||||
msgid "Initial layer height"
|
||||
msgstr "首层层高"
|
||||
@@ -9824,8 +9832,7 @@ msgstr "首层层高"
|
||||
msgid ""
|
||||
"Height of initial layer. Making initial layer height to be thick slightly "
|
||||
"can improve build plate adhension"
|
||||
msgstr ""
|
||||
"首层层高"
|
||||
msgstr "首层层高"
|
||||
|
||||
msgid "Speed of initial layer except the solid infill part"
|
||||
msgstr "首层除实心填充之外的其他部分的打印速度"
|
||||
@@ -10083,10 +10090,10 @@ msgid "Klipper"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support multi bed types"
|
||||
msgstr ""
|
||||
msgstr "支持多种打印床类型"
|
||||
|
||||
msgid "Enable this option if you want to use multiple bed types"
|
||||
msgstr ""
|
||||
msgstr "如果要使用多种打印床类型,请启用此选项"
|
||||
|
||||
msgid "Label objects"
|
||||
msgstr "标注模型"
|
||||
@@ -10097,6 +10104,9 @@ msgid ""
|
||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
||||
"setup and Wipe into Object / Wipe into Infill."
|
||||
msgstr ""
|
||||
"启用此选项,将在G-code中添加注释,标记打印移动属于哪个对象,这对Octoprint "
|
||||
"CancelObject插件非常有用。此设置与单挤出机多材料设置和擦拭到对象/擦拭到填充不"
|
||||
"兼容。"
|
||||
|
||||
msgid "Exclude objects"
|
||||
msgstr "对象排除"
|
||||
@@ -10112,6 +10122,8 @@ msgid ""
|
||||
"descriptive text. If you print from SD card, the additional weight of the "
|
||||
"file could make your firmware slow down."
|
||||
msgstr ""
|
||||
"启用此选项,将获得带有注释的G-code文件,每行都有描述性文本解释。如果您从SD卡"
|
||||
"打印,文件的额外重量可能会使您的固件变慢。"
|
||||
|
||||
msgid "Infill combination"
|
||||
msgstr "合并填充"
|
||||
@@ -10220,7 +10232,7 @@ msgstr "熨烫角度"
|
||||
msgid ""
|
||||
"The angle ironing is done at. A negative number disables this function and "
|
||||
"uses the default method."
|
||||
msgstr ""
|
||||
msgstr "熨烫的角度。设为负值将禁用此功能并使用默认方法。"
|
||||
|
||||
msgid "This gcode part is inserted at every layer change after lift z"
|
||||
msgstr "在每次换层抬升Z高度之后插入这段G-code。"
|
||||
@@ -10243,6 +10255,8 @@ msgid ""
|
||||
"If enabled, the machine limits will be emitted to G-code file.\n"
|
||||
"This option will be ignored if the g-code flavor is set to Klipper."
|
||||
msgstr ""
|
||||
"如果启用,机器限制将写入到G-code文件。\n"
|
||||
"如果G-code风格设置为Klipper,则此选项将被忽略。"
|
||||
|
||||
msgid ""
|
||||
"This G-code will be used as a code for the pause print. User can insert "
|
||||
@@ -10267,8 +10281,8 @@ msgid ""
|
||||
"and flow correction factors, one per line, in the following format: "
|
||||
"\"1.234,5.678\""
|
||||
msgstr ""
|
||||
"流量补偿模型,用于调整小区域填充的流量。模型以逗号分隔的形式表示,每行一个值,"
|
||||
"格式如下:\"1.234,5.678\""
|
||||
"流量补偿模型,用于调整小区域填充的流量。模型以逗号分隔的形式表示,每行一个"
|
||||
"值,格式如下:\"1.234,5.678\""
|
||||
|
||||
msgid "Maximum speed X"
|
||||
msgstr "X最大速度"
|
||||
@@ -10631,7 +10645,7 @@ msgid "Number of walls of every layer"
|
||||
msgstr "每一层的外墙"
|
||||
|
||||
msgid "Alternate extra wall"
|
||||
msgstr "交替额外内墙"
|
||||
msgstr "交替添加额外内墙"
|
||||
|
||||
msgid ""
|
||||
"This setting adds an extra wall to every other layer. This way the infill "
|
||||
@@ -10853,6 +10867,10 @@ msgstr "显示雷达标定线"
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr "禁用M73剩余打印时间"
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "接缝位置"
|
||||
|
||||
@@ -10912,8 +10930,24 @@ msgid ""
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr "此选项设置判断是否应用斜拼接缝的角度阈值。\n如果围墙环内的最大角度超过了"
|
||||
"这个值(表示没有足够锐的角),则使用斜拼接缝接缝。默认值为155°。"
|
||||
msgstr ""
|
||||
"此选项设置判断是否应用斜拼接缝的角度阈值。\n"
|
||||
"如果围墙环内的最大角度超过了这个值(表示没有足够锐的角),则使用斜拼接缝接"
|
||||
"缝。默认值为155°。"
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr "悬垂阈值"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
"此选项设置斜拼接缝应用的悬垂阈值。如果围墙的未支撑部分小于此阈值,则应用斜拼"
|
||||
"接缝接缝。默认阈值设置为外墙宽度的40%。由于性能考虑,悬垂程度是粗略估算。"
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr "斜拼接缝速度"
|
||||
@@ -10927,11 +10961,11 @@ msgid ""
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr "这个选项设置斜拼接缝的打印速度。建议以较慢的速度(小于100mm/s)打印斜拼接缝。"
|
||||
"如果设置的速度与外墙或内墙的速度相差较大,建议启用“平滑挤出率”。如果此处指定的速度"
|
||||
"高于外墙或内墙的速度,则打印机将默认使用两者中较慢的速度。当以百分比(例如80%)指定时,"
|
||||
"速度将基于外墙或内墙的速度进行计算。默认值为100%。"
|
||||
|
||||
msgstr ""
|
||||
"这个选项设置斜拼接缝的打印速度。建议以较慢的速度(小于100mm/s)打印斜拼接缝。"
|
||||
"如果设置的速度与外墙或内墙的速度相差较大,建议启用“平滑挤出率”。如果此处指定"
|
||||
"的速度高于外墙或内墙的速度,则打印机将默认使用两者中较慢的速度。当以百分比"
|
||||
"(例如80%)指定时,速度将基于外墙或内墙的速度进行计算。默认值为100%。"
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr "斜拼接缝流量"
|
||||
@@ -10946,7 +10980,9 @@ msgid ""
|
||||
"Start height of the scarf.\n"
|
||||
"This amount can be specified in millimeters or as a percentage of the "
|
||||
"current layer height. The default value for this parameter is 0."
|
||||
msgstr "斜拼接缝的起始高度。\n这个数值可以用毫米或者当前层高的百分比表示。默认值为0。"
|
||||
msgstr ""
|
||||
"斜拼接缝的起始高度。\n"
|
||||
"这个数值可以用毫米或者当前层高的百分比表示。默认值为0。"
|
||||
|
||||
msgid "Scarf around entire wall"
|
||||
msgstr "围绕整个围墙"
|
||||
@@ -10981,7 +11017,9 @@ msgid ""
|
||||
"The wipe speed is determined by the speed of the current extrusion role.e.g. "
|
||||
"if a wipe action is executed immediately following an outer wall extrusion, "
|
||||
"the speed of the outer wall extrusion will be utilized for the wipe action."
|
||||
msgstr "擦拭速度由当前挤出类型的速度决定。例如,如果擦拭动作紧随外墙,擦拭速度将使用外墙的速度。"
|
||||
msgstr ""
|
||||
"擦拭速度由当前挤出类型的速度决定。例如,如果擦拭动作紧随外墙,擦拭速度将使用"
|
||||
"外墙的速度。"
|
||||
|
||||
msgid "Wipe on loops"
|
||||
msgstr "闭环擦拭"
|
||||
@@ -11933,7 +11971,7 @@ msgstr ""
|
||||
"征将被加宽到墙最小宽度。参数值表示为相对喷嘴直径的百分比"
|
||||
|
||||
msgid "Minimum wall length"
|
||||
msgstr ""
|
||||
msgstr "最小允许的墙长度"
|
||||
|
||||
msgid ""
|
||||
"Adjust this value to prevent short, unclosed walls from being printed, which "
|
||||
@@ -11945,6 +11983,12 @@ msgid ""
|
||||
"top-surface. 'One wall threshold' is only visibile if this setting is set "
|
||||
"above the default value of 0.5, or if single-wall top surfaces is enabled."
|
||||
msgstr ""
|
||||
"调整这个值以省略打印短的、未闭合的墙,这些可能会增加打印时间。设置较高的值将"
|
||||
"移除更多和更长的墙。\n"
|
||||
"\n"
|
||||
"注意:底部和顶部表面不会受到这个值的影响,以防止模型外部出现肉眼可见间隙。调"
|
||||
"整下面的高级设置中的“单层墙阈值”来调整什么被认为是顶部表面的敏感度。只有当这"
|
||||
"个设置高于默认值0.5,或者启用了单层顶部表面时,“单层墙阈值”才会显示。"
|
||||
|
||||
msgid "First layer minimum wall width"
|
||||
msgstr "首层墙最小线宽"
|
||||
@@ -12192,69 +12236,69 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom-left corner of first layer bounding box"
|
||||
msgstr ""
|
||||
msgstr "第一层边界框的左下角"
|
||||
|
||||
msgid "Top-right corner of first layer bounding box"
|
||||
msgstr ""
|
||||
msgstr "第一层边界框的右上角"
|
||||
|
||||
msgid "Size of the first layer bounding box"
|
||||
msgstr ""
|
||||
msgstr "第一层边界框"
|
||||
|
||||
msgid "Bottom-left corner of print bed bounding box"
|
||||
msgstr ""
|
||||
msgstr "热床边界框的左下角"
|
||||
|
||||
msgid "Top-right corner of print bed bounding box"
|
||||
msgstr ""
|
||||
msgstr "热床边界框的右上角"
|
||||
|
||||
msgid "Size of the print bed bounding box"
|
||||
msgstr ""
|
||||
msgstr "热床边界框"
|
||||
|
||||
msgid "Timestamp"
|
||||
msgstr ""
|
||||
msgstr "时间戳"
|
||||
|
||||
msgid "String containing current time in yyyyMMdd-hhmmss format."
|
||||
msgstr ""
|
||||
msgstr "包含当前时间的字符串,格式为yyyyMMdd-hhmmss。"
|
||||
|
||||
msgid "Day"
|
||||
msgstr ""
|
||||
msgstr "日"
|
||||
|
||||
msgid "Hour"
|
||||
msgstr ""
|
||||
msgstr "时"
|
||||
|
||||
msgid "Minute"
|
||||
msgstr ""
|
||||
msgstr "分"
|
||||
|
||||
msgid "Print preset name"
|
||||
msgstr ""
|
||||
msgstr "打印预设名称"
|
||||
|
||||
msgid "Name of the print preset used for slicing."
|
||||
msgstr ""
|
||||
msgstr "用于切片的打印预设的名称。"
|
||||
|
||||
msgid "Filament preset name"
|
||||
msgstr ""
|
||||
msgstr "打印材料预设名称"
|
||||
|
||||
msgid ""
|
||||
"Names of the filament presets used for slicing. The variable is a vector "
|
||||
"containing one name for each extruder."
|
||||
msgstr ""
|
||||
msgstr "用于切片的打印材料预设的名称。该变量是一个向量,包含每个挤出机的名称。"
|
||||
|
||||
msgid "Printer preset name"
|
||||
msgstr ""
|
||||
msgstr "打印机预设名称"
|
||||
|
||||
msgid "Name of the printer preset used for slicing."
|
||||
msgstr ""
|
||||
msgstr "用于切片的打印机预设的名称。"
|
||||
|
||||
msgid "Physical printer name"
|
||||
msgstr ""
|
||||
msgstr "物理打印机名称"
|
||||
|
||||
msgid "Name of the physical printer used for slicing."
|
||||
msgstr ""
|
||||
msgstr "用于切片的物理打印机的名称。"
|
||||
|
||||
msgid "Layer number"
|
||||
msgstr ""
|
||||
msgstr "层编号"
|
||||
|
||||
msgid "Index of the current layer. One-based (i.e. first layer is number 1)."
|
||||
msgstr ""
|
||||
msgstr "当前层编号。从1开始编号(即第一层编号为1)。"
|
||||
|
||||
msgid "Layer z"
|
||||
msgstr ""
|
||||
@@ -13143,8 +13187,8 @@ msgstr "单线程开始测试"
|
||||
msgid "Export Log"
|
||||
msgstr "输出日志"
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgstr "Studio 版本:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr "逆戟鲸版本:"
|
||||
|
||||
msgid "System Version:"
|
||||
msgstr "系统版本:"
|
||||
@@ -13152,11 +13196,11 @@ msgstr "系统版本:"
|
||||
msgid "DNS Server:"
|
||||
msgstr "DNS服务:"
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgstr "测试 BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr "测试逆戟鲸项目网站(GitHub)"
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgstr "测试 BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr "测试逆戟鲸项目网站(GitHub)"
|
||||
|
||||
msgid "Test Bing.com"
|
||||
msgstr "测试 Bing.com"
|
||||
@@ -13164,39 +13208,6 @@ msgstr "测试 Bing.com"
|
||||
msgid "Test bing.com:"
|
||||
msgstr "测试 Bing.com:"
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr "测试 HTTP"
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr "测试 HTTP 服务:"
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr "测试存储"
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr "测试存储上传:"
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr "测试存储升级"
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr "测试存储升级:"
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr "测试存储下载"
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr "测试存储下载:"
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr "测试插件下载"
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr "测试插件下载:"
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr "测试存储上传"
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr "日志信息"
|
||||
|
||||
@@ -13677,6 +13688,9 @@ msgstr "无法获取有效的打印机主机引用"
|
||||
msgid "Success!"
|
||||
msgstr "成功!"
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr "刷新打印机"
|
||||
|
||||
@@ -13702,6 +13716,9 @@ msgid ""
|
||||
"Keychain."
|
||||
msgstr "要使用自定义 CA 文件,请将您的 CA 文件导入到证书存储 / 密钥链中。"
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr "连接到通过打印主机连接的打印机失败。"
|
||||
|
||||
@@ -13831,6 +13848,47 @@ msgid ""
|
||||
"Error: \"%2%\""
|
||||
msgstr "主机打印机的枚举失败。消息体:\"%1%\"错误:\"%2%\""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
@@ -13845,12 +13903,17 @@ msgid ""
|
||||
"precision and layer consistency if your model doesn't have very steep "
|
||||
"overhangs?"
|
||||
msgstr ""
|
||||
"三明治模式\n"
|
||||
"您知道吗?如果您的模型没有非常陡峭的悬垂,您可以使用三明治模式(内-外-内)来"
|
||||
"提高精度和层一致性。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Chamber temperature]
|
||||
msgid ""
|
||||
"Chamber temperature\n"
|
||||
"Did you know that OrcaSlicer supports chamber temperature?"
|
||||
msgstr ""
|
||||
"仓温\n"
|
||||
"您知道吗?OrcaSlicer支持仓温。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Calibration]
|
||||
msgid ""
|
||||
@@ -13858,24 +13921,33 @@ msgid ""
|
||||
"Did you know that calibrating your printer can do wonders? Check out our "
|
||||
"beloved calibration solution in OrcaSlicer."
|
||||
msgstr ""
|
||||
"校准\n"
|
||||
"您知道吗?校准您的打印机可以带来奇迹?在OrcaSlicer中查看我们的备受欢迎的校准"
|
||||
"解决方案。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Auxiliary fan]
|
||||
msgid ""
|
||||
"Auxiliary fan\n"
|
||||
"Did you know that OrcaSlicer supports Auxiliary part cooling fan?"
|
||||
msgstr ""
|
||||
"辅助风扇\n"
|
||||
"您知道吗?OrcaSlicer支持辅助部件冷却风扇。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Air filtration]
|
||||
msgid ""
|
||||
"Air filtration/Exhaust Fan\n"
|
||||
"Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
|
||||
msgstr ""
|
||||
"空气过滤/排气扇\n"
|
||||
"您知道吗?OrcaSlicer可以支持空气过滤/排气扇。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:G-code window]
|
||||
msgid ""
|
||||
"G-code window\n"
|
||||
"You can turn on/off the G-code window by pressing the <b>C</b> key."
|
||||
msgstr ""
|
||||
"G-code预览\n"
|
||||
"您可以通过按下<b>C</b>键打开/关闭G-code预览窗口。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Switch workspaces]
|
||||
msgid ""
|
||||
@@ -13883,6 +13955,8 @@ msgid ""
|
||||
"You can switch between <b>Prepare</b> and <b>Preview</b> workspaces by "
|
||||
"pressing the <b>Tab</b> key."
|
||||
msgstr ""
|
||||
"切换工作区\n"
|
||||
"您可以通过按下<b>Tab</b>键在<b>准备</b>和<b>预览</b>工作区之间切换。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:How to use keyboard shortcuts]
|
||||
msgid ""
|
||||
@@ -13890,6 +13964,8 @@ msgid ""
|
||||
"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and "
|
||||
"3D scene operations."
|
||||
msgstr ""
|
||||
"如何使用键盘快捷键\n"
|
||||
"您知道吗?Orca Slicer提供了广泛的键盘快捷键和3D场景操作。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Reverse on odd]
|
||||
msgid ""
|
||||
@@ -13897,6 +13973,8 @@ msgid ""
|
||||
"Did you know that <b>Reverse on odd</b> feature can significantly improve "
|
||||
"the surface quality of your overhangs?"
|
||||
msgstr ""
|
||||
"奇数层反转\n"
|
||||
"您知道吗?<b>奇数层反转</b>功能可以显著提高您悬垂的表面质量。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Cut Tool]
|
||||
msgid ""
|
||||
@@ -13968,6 +14046,8 @@ msgid ""
|
||||
"Did you know that you use the Search tool to quickly find a specific Orca "
|
||||
"Slicer setting?"
|
||||
msgstr ""
|
||||
"搜索功能\n"
|
||||
"您知道吗?您可以使用搜索工具快速查找特定的逆戟鲸设置。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Simplify Model]
|
||||
msgid ""
|
||||
@@ -13975,6 +14055,9 @@ msgid ""
|
||||
"Did you know that you can reduce the number of triangles in a mesh using the "
|
||||
"Simplify mesh feature? Right-click the model and select Simplify model."
|
||||
msgstr ""
|
||||
"简化模型\n"
|
||||
"您知道吗?您可以使用简化三角面片功能减少网格中的三角形数量。右键单击模型,然"
|
||||
"后选择简化模型。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Slicing Parameter Table]
|
||||
msgid ""
|
||||
@@ -14001,6 +14084,9 @@ msgid ""
|
||||
"part modifier? That way you can, for example, create easily resizable holes "
|
||||
"directly in Orca Slicer."
|
||||
msgstr ""
|
||||
"减去一个部分\n"
|
||||
"您知道吗,您可以使用负零件修改器从一个网格中减去另一个网格。这样,您就可以直"
|
||||
"接在逆戟鲸中创建易于调整大小的孔。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:STEP]
|
||||
msgid ""
|
||||
@@ -14156,6 +14242,75 @@ msgstr ""
|
||||
"避免翘曲\n"
|
||||
"您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。"
|
||||
|
||||
#~ msgid "Studio Version:"
|
||||
#~ msgstr "Studio 版本:"
|
||||
|
||||
#~ msgid "Test BambuLab"
|
||||
#~ msgstr "测试 BambuLab"
|
||||
|
||||
#~ msgid "Test BambuLab:"
|
||||
#~ msgstr "测试 BambuLab:"
|
||||
|
||||
#~ msgid "Test HTTP"
|
||||
#~ msgstr "测试 HTTP"
|
||||
|
||||
#~ msgid "Test HTTP Service:"
|
||||
#~ msgstr "测试 HTTP 服务:"
|
||||
|
||||
#~ msgid "Test storage"
|
||||
#~ msgstr "测试存储"
|
||||
|
||||
#~ msgid "Test Storage Upload:"
|
||||
#~ msgstr "测试存储上传:"
|
||||
|
||||
#~ msgid "Test storage upgrade"
|
||||
#~ msgstr "测试存储升级"
|
||||
|
||||
#~ msgid "Test Storage Upgrade:"
|
||||
#~ msgstr "测试存储升级:"
|
||||
|
||||
#~ msgid "Test storage download"
|
||||
#~ msgstr "测试存储下载"
|
||||
|
||||
#~ msgid "Test Storage Download:"
|
||||
#~ msgstr "测试存储下载:"
|
||||
|
||||
#~ msgid "Test plugin download"
|
||||
#~ msgstr "测试插件下载"
|
||||
|
||||
#~ msgid "Test Plugin Download:"
|
||||
#~ msgstr "测试插件下载:"
|
||||
|
||||
#~ msgid "Test Storage Upload"
|
||||
#~ msgstr "测试存储上传"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The speed setting exceeds the printer's maximum speed "
|
||||
#~ "(machine_max_speed_x/machine_max_speed_y).\n"
|
||||
#~ "Orca will automatically cap the print speed to ensure it doesn't surpass "
|
||||
#~ "the printer's capabilities.\n"
|
||||
#~ "You can adjust the maximum speed setting in your printer's configuration "
|
||||
#~ "to get higher speeds."
|
||||
#~ msgstr ""
|
||||
#~ "速度设置超过了打印机的最大速度(machine_max_speed_x/"
|
||||
#~ "machine_max_speed_y)。\n"
|
||||
#~ "Orca将自动限制打印速度,以确保不超过打印机的速度限制。\n"
|
||||
#~ "您可以调整打印机配置中的最大速度设置,以获得更高的速度。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The travel acceleration setting exceeds the printer's maximum "
|
||||
#~ "acceleration (machine_max_acceleration_travel).\n"
|
||||
#~ "Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
#~ "surpass the printer's capabilities.\n"
|
||||
#~ "You can adjust the machine_max_acceleration_travel value in your "
|
||||
#~ "printer's configuration to get higher speeds."
|
||||
#~ msgstr ""
|
||||
#~ "空驶加速度设置超过了打印机的最大空驶加速度"
|
||||
#~ "(machine_max_acceleration_travel)。\n"
|
||||
#~ "Orca将自动限制加速度,以确保不超过打印机的速度限制。\n"
|
||||
#~ "您可以调整打印机配置中的machine_max_acceleration_travel值,以获得更高的速"
|
||||
#~ "度。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-10 23:17+0800\n"
|
||||
"POT-Creation-Date: 2024-03-29 21:10+0800\n"
|
||||
"PO-Revision-Date: 2023-11-06 14:37+0800\n"
|
||||
"Last-Translator: ablegods <ablegods@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -3369,14 +3369,14 @@ msgstr ""
|
||||
"否 - 不使用花瓶模式"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
@@ -3420,6 +3420,11 @@ msgid ""
|
||||
"Thus, reset the skirt layer to 1 to avoid that."
|
||||
msgstr "逐件列印時,擠出機可能與裙邊碰撞。因此將裙邊的層數重設為 1。"
|
||||
|
||||
msgid ""
|
||||
"seam_slope_start_height need to be smaller than layer_height.\n"
|
||||
"Reset to 0."
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "熱床自動調平"
|
||||
|
||||
@@ -6114,6 +6119,9 @@ msgstr "登入區域"
|
||||
msgid "Stealth Mode"
|
||||
msgstr "區域網路模式"
|
||||
|
||||
msgid "Enable network plugin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Check for stable updates only"
|
||||
msgstr ""
|
||||
|
||||
@@ -6168,6 +6176,9 @@ msgstr ""
|
||||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "同步使用者預設(列印設備/線材/列印品質參數)"
|
||||
@@ -8631,12 +8642,12 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
"The travel acceleration setting exceeds the printer's maximum travel "
|
||||
"acceleration (machine_max_acceleration_travel).\n"
|
||||
"Orca will automatically cap the travel acceleration speed to ensure it "
|
||||
"doesn't surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_travel value in your printer's "
|
||||
"configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
@@ -8721,6 +8732,12 @@ msgstr ""
|
||||
msgid "Printer preset names"
|
||||
msgstr "列印設備預設名稱"
|
||||
|
||||
msgid "Use 3rd-party print host"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hostname, IP or URL"
|
||||
msgstr "主機名,IP 或者 URL"
|
||||
|
||||
@@ -9131,7 +9148,7 @@ msgid ""
|
||||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -11298,6 +11315,10 @@ msgstr "顯示雷達校準線"
|
||||
msgid "Disable set remaining print time"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Disable generating of the M73: Set remaining print time in the final gcode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Seam position"
|
||||
msgstr "接縫位置"
|
||||
|
||||
@@ -11359,6 +11380,18 @@ msgid ""
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional overhang threshold"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"This option determines the overhang threshold for the application of scarf "
|
||||
"joint seams. If the unsupported portion of the perimeter is less than this "
|
||||
"threshold, scarf joint seams will be applied. The default threshold is set "
|
||||
"at 40% of the external wall's width. Due to performance considerations, the "
|
||||
"degree of overhang is estimated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
@@ -13655,7 +13688,7 @@ msgstr ""
|
||||
msgid "Export Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Studio Version:"
|
||||
msgid "OrcaSlicer Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "System Version:"
|
||||
@@ -13664,10 +13697,10 @@ msgstr ""
|
||||
msgid "DNS Server:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab"
|
||||
msgid "Test OrcaSlicer(GitHub)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test BambuLab:"
|
||||
msgid "Test OrcaSlicer(GitHub):"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Bing.com"
|
||||
@@ -13676,39 +13709,6 @@ msgstr ""
|
||||
msgid "Test bing.com:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test HTTP Service:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage upgrade"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upgrade:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test storage download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test plugin download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Plugin Download:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test Storage Upload"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Info"
|
||||
msgstr ""
|
||||
|
||||
@@ -14168,6 +14168,9 @@ msgstr ""
|
||||
msgid "Success!"
|
||||
msgstr "成功!"
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Refresh Printers"
|
||||
msgstr "重新整理列印設備"
|
||||
@@ -14197,6 +14200,9 @@ msgid ""
|
||||
"Keychain."
|
||||
msgstr "若要使用自訂 CA 憑證檔,請將您的 CA 憑證檔匯入到憑證儲存庫/鑰匙圈中。"
|
||||
|
||||
msgid "Login/Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to printers connected via the print host failed."
|
||||
msgstr ""
|
||||
|
||||
@@ -14322,6 +14328,47 @@ msgid ""
|
||||
"Error: \"%2%\""
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to Obico successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Obico"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connected to SimplyPrint successfully!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not connect to Flashforge"
|
||||
msgstr ""
|
||||
|
||||
msgid "The provided state is not correct."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please give the required permissions when authorizing this application."
|
||||
msgstr ""
|
||||
|
||||
msgid "Something unexpected happened when trying to log in, please try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "User cancelled."
|
||||
msgstr ""
|
||||
|
||||
#: resources/data/hints.ini: [hint:Precise wall]
|
||||
msgid ""
|
||||
"Precise wall\n"
|
||||
|
||||
|
Before Width: | Height: | Size: 158 KiB After Width: | Height: | Size: 105 KiB |
|
Before Width: | Height: | Size: 153 KiB After Width: | Height: | Size: 75 KiB |
|
Before Width: | Height: | Size: 254 KiB After Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 254 KiB After Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 252 KiB After Width: | Height: | Size: 92 KiB |
|
Before Width: | Height: | Size: 172 KiB After Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 254 KiB After Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 735 KiB After Width: | Height: | Size: 333 KiB |
|
Before Width: | Height: | Size: 735 KiB After Width: | Height: | Size: 333 KiB |
|
Before Width: | Height: | Size: 602 KiB After Width: | Height: | Size: 160 KiB |
|
Before Width: | Height: | Size: 588 KiB After Width: | Height: | Size: 160 KiB |
|
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 141 KiB After Width: | Height: | Size: 59 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 57 KiB |
@@ -1,21 +1,25 @@
|
||||
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0 0H256V256H0V0Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2222 0H7.11111V7.11111H0V14.2222H7.11111V21.3333H0V28.4444H7.11111V35.5556H0V42.6667H7.11111V35.5556H14.2222V42.6667H21.3333V35.5556H28.4444V42.6667H35.5556V35.5556H42.6667V42.6667H49.7778V35.5556H56.8889V42.6667H64V35.5556H71.1111V42.6667H78.2222V35.5556H85.3333V28.4444H78.2222L78.2222 21.3333H85.3333V14.2222H78.2222V7.11111H85.3333V0H78.2222L78.2222 7.11111H71.1111V0H64V7.11111H56.8889V0H49.7778V7.11111H42.6667V0H35.5556V7.11111H28.4444V0H21.3333V7.11111H14.2222V0ZM14.2222 14.2222V7.11111H7.11111V14.2222H14.2222ZM21.3333 14.2222H14.2222V21.3333H7.11111V28.4444H14.2222V35.5556H21.3333V28.4444H28.4444V35.5556H35.5556V28.4444H42.6667V35.5556H49.7778V28.4444H56.8889V35.5556H64V28.4444H71.1111V35.5556H78.2222V28.4444H71.1111V21.3333H78.2222L78.2222 14.2222H71.1111V7.11111H64V14.2222H56.8889V7.11111H49.7778V14.2222H42.6667V7.11111H35.5556V14.2222H28.4444V7.11111H21.3333V14.2222ZM21.3333 21.3333V14.2222H28.4444V21.3333H21.3333ZM35.5556 21.3333V28.4444H28.4444V21.3333H35.5556ZM42.6667 21.3333V14.2222H35.5556V21.3333H42.6667ZM49.7778 21.3333V14.2222H56.8889V21.3333H49.7778ZM64 21.3333H71.1111V14.2222H64V21.3333ZM64 21.3333H56.8889V28.4444H64V21.3333ZM49.7778 21.3333H42.6667V28.4444H49.7778V21.3333ZM21.3333 21.3333V28.4444H14.2222V21.3333H21.3333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3333 42.6665H7.11111V49.7776H0V56.8889H7.11111V64H0V71.1111H7.11111V78.2222H0V85.3332H7.11111V78.2222H14.2222V85.3332H21.3333V78.2222H28.4444V85.3332H35.5556V78.2222H42.6667V85.3332H49.7778V78.2222H56.8889V85.3332H64V78.2222H71.1111V85.3332H78.2222V78.2222H85.3333V71.1111H78.2222L78.2222 64H85.3333V56.8889H78.2222V49.7778H85.3333V42.6665ZM71.1111 49.7778H78.2222L78.2222 42.6667H71.1111V49.7778ZM71.1111 56.8889V49.7778H64V42.6667H56.8889V49.7778H49.7778V42.6667H42.6667V49.7778H35.5556V42.6667H28.4444V49.7778H21.3333V42.6667H14.2222V49.7778H7.11111V56.8889H14.2222V64H7.11111V71.1111H14.2222V78.2222H21.3333V71.1111H28.4444V78.2222H35.5556V71.1111H42.6667V78.2222H49.7778V71.1111H56.8889V78.2222H64V71.1111H71.1111V78.2222H78.2222V71.1111H71.1111V64H78.2222L78.2222 56.8889H71.1111ZM64 56.8889V49.7778H56.8889V56.8889H49.7778V49.7778H42.6667V56.8889H35.5556V49.7778H28.4444V56.8889H21.3333V49.7778H14.2222V56.8889H21.3333V64H14.2222V71.1111H21.3333V64H28.4444V71.1111H35.5556V64H42.6667V71.1111H49.7778V64H56.8889V71.1111H64V64H71.1111V56.8889H64ZM64 56.8889H56.8889V64H64V56.8889ZM49.7778 64H42.6667V56.8889H49.7778V64ZM35.5556 64H28.4444V56.8889H35.5556V64Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2222 85.3335H0V85.3337H7.11111V92.4446H14.2222V99.5557H7.11111V92.4448H0V99.5557H7.11111V106.667H0V113.778L7.11111 113.778V120.889H0V128H7.11111V120.889H14.2222V128H21.3333V120.889H28.4444V128H35.5556V120.889H42.6667V128H49.7778V120.889H56.8889V128H64V120.889H71.1111V128H78.2222V120.889H85.3333V113.778H78.2222L78.2222 106.667H85.3333V99.5557H78.2222V92.4446H85.3333V85.3335H78.2222L78.2222 92.4446H71.1111V85.3335H64V92.4446H56.8889V85.3335H49.7778V92.4446H42.6667V85.3335H35.5556V92.4446H28.4444V85.3335H21.3333V92.4446H14.2222V85.3335ZM21.3333 99.5557V92.4446H28.4444V99.5557H21.3333ZM21.3333 106.667V99.5557H14.2222V106.667H7.11111V113.778L14.2222 113.778V120.889H21.3333V113.778L28.4444 113.778V120.889H35.5556V113.778L42.6667 113.778V120.889H49.7778V113.778H56.8889V120.889H64V113.778L71.1111 113.778V120.889H78.2222V113.778H71.1111V106.667H78.2222L78.2222 99.5557H71.1111V92.4446H64V99.5557H56.8889V92.4446H49.7778V99.5557H42.6667V92.4446H35.5556V99.5557H28.4444V106.667H21.3333ZM35.5556 106.667V113.778L28.4444 113.778V106.667H35.5556ZM42.6667 106.667V99.5557H35.5556V106.667H42.6667ZM49.7778 106.667V113.778H42.6667V106.667H49.7778ZM56.8889 106.667V99.5557H49.7778V106.667H56.8889ZM64 106.667H71.1111V99.5557H64V106.667ZM64 106.667H56.8889V113.778L64 113.778V106.667ZM21.3333 106.667V113.778H14.2222V106.667H21.3333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2222 128H7.11111V135.111H0V142.222H7.11111V149.333H0V156.444H7.11111V163.556H0V170.667H7.11111V163.556H14.2222V170.667H21.3333V163.556H28.4444V170.667H35.5556V163.556H42.6667V170.667H49.7778V163.556H56.8889V170.667H64V163.556H71.1111V170.667H78.2222V163.556H85.3333V156.444H78.2222L78.2222 149.333H85.3333V142.222H78.2222V135.111H85.3333V128H78.2222L78.2222 135.111H71.1111V128H64V135.111H56.8889V128H49.7778V135.111H42.6667V128H35.5556V135.111H28.4444V128H21.3333V135.111H14.2222V128ZM14.2222 142.222V135.111H7.11111V142.222H14.2222ZM21.3333 142.222H14.2222V149.333H7.11111V156.444H14.2222V163.556H21.3333V156.444H28.4444V163.556H35.5556V156.444H42.6667V163.556H49.7778V156.444H56.8889V163.556H64V156.444H71.1111V163.556H78.2222V156.444H71.1111V149.333H78.2222L78.2222 142.222H71.1111V135.111H64V142.222H56.8889V135.111H49.7778V142.222H42.6667V135.111H35.5556V142.222H28.4444V135.111H21.3333V142.222ZM21.3333 149.333V142.222H28.4444V149.333H21.3333ZM35.5556 149.333V156.444H28.4444V149.333H35.5556ZM42.6667 149.333V142.222H35.5556V149.333H42.6667ZM49.7778 149.333V142.222H56.8889V149.333H49.7778ZM64 149.333H71.1111V142.222H64V149.333ZM64 149.333H56.8889V156.444H64V149.333ZM49.7778 149.333H42.6667V156.444H49.7778V149.333ZM21.3333 149.333V156.444H14.2222V149.333H21.3333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3333 170.667H7.11111V177.778H0V184.889H7.11111V192H0V199.111H7.11111V206.222H0V213.333H7.11111V206.222H14.2222V213.333H21.3333V206.222H28.4444V213.333H35.5556V206.222H42.6667V213.333H49.7778V206.222H56.8889V213.333H64V206.222H71.1111V213.333H78.2222V206.222H85.3333V199.111H78.2222L78.2222 192H85.3333V184.889H78.2222V177.778H85.3333V170.667ZM71.1111 177.778H78.2222L78.2222 170.667H71.1111V177.778ZM71.1111 184.889V177.778H64V170.667H56.8889V177.778H49.7778V170.667H42.6667V177.778H35.5556V170.667H28.4444V177.778H21.3333V170.667H14.2222V177.778H7.11111V184.889H14.2222V192H7.11111V199.111H14.2222V206.222H21.3333V199.111H28.4444V206.222H35.5556V199.111H42.6667V206.222H49.7778V199.111H56.8889V206.222H64V199.111H71.1111V206.222H78.2222V199.111H71.1111V192H78.2222L78.2222 184.889H71.1111ZM64 184.889V177.778H56.8889V184.889H49.7778V177.778H42.6667V184.889H35.5556V177.778H28.4444V184.889H21.3333V177.778H14.2222V184.889H21.3333V192H14.2222V199.111H21.3333V192H28.4444V199.111H35.5556V192H42.6667V199.111H49.7778V192H56.8889V199.111H64V192H71.1111V184.889H64ZM64 184.889H56.8889V192H64V184.889ZM49.7778 192H42.6667V184.889H49.7778V192ZM35.5556 192H28.4444V184.889H35.5556V192Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2222 213.333H0V213.334H7.11111V220.445H14.2222V227.556H7.11111V220.445H0V227.556H7.11111V234.667H0V241.778L7.11111 241.778V248.889H0V256H7.11111V248.889H14.2222V256H21.3333V248.889H28.4444V256H35.5556V248.889H42.6667V256H49.7778V248.889H56.8889V256H64V248.889H71.1111V256H78.2222V248.889H85.3333V241.778H78.2222L78.2222 234.667H85.3333V227.556H78.2222V220.445H85.3333V213.333H78.2222L78.2222 220.445H71.1111V213.333H64V220.445H56.8889V213.333H49.7778V220.445H42.6667V213.333H35.5556V220.445H28.4444V213.333H21.3333V220.445H14.2222V213.333ZM21.3333 227.556V220.445H28.4444V227.556H21.3333ZM21.3333 234.667V227.556H14.2222V234.667H7.11111V241.778L14.2222 241.778V248.889H21.3333V241.778L28.4444 241.778V248.889H35.5556V241.778L42.6667 241.778V248.889H49.7778V241.778H56.8889V248.889H64V241.778L71.1111 241.778V248.889H78.2222V241.778H71.1111V234.667H78.2222L78.2222 227.556H71.1111V220.445H64V227.556H56.8889V220.445H49.7778V227.556H42.6667V220.445H35.5556V227.556H28.4444V234.667H21.3333ZM35.5556 234.667V241.778L28.4444 241.778V234.667H35.5556ZM42.6667 234.667V227.556H35.5556V234.667H42.6667ZM49.7778 234.667V241.778H42.6667V234.667H49.7778ZM56.8889 234.667V227.556H49.7778V234.667H56.8889ZM64 234.667H71.1111V227.556H64V234.667ZM64 234.667H56.8889V241.778L64 241.778V234.667ZM21.3333 234.667V241.778H14.2222V234.667H21.3333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3372 0H85.3359V42.6667H92.4484V35.5556H99.5595V42.6667H106.671V35.5556H113.782V42.6667H120.893V35.5556H128.004V42.6667H135.115V35.5556H142.226V42.6667H149.337V35.5556H156.448V42.6667H163.559V35.5556H170.669V28.4444H163.559V21.3333H170.669V14.2222H163.559V7.11111H170.669V0H163.559V7.11111H156.448L156.448 0H149.337V7.11111H142.226V0H135.115V7.11111H128.004V0H120.893V7.11111H113.782V0H106.671V7.11111H99.5595V0H92.4484V7.11111H85.3372V0ZM92.4484 14.2222V7.11111H99.5595V14.2222H92.4484ZM92.4484 21.3333H85.3372V14.2222H92.4484V21.3333ZM99.5595 21.3333V14.2222H106.671V21.3333H99.5595ZM99.5595 28.4444V21.3333H92.4484V28.4444H85.3372V35.5556H92.4484V28.4444H99.5595ZM106.671 28.4444V35.5556H99.5595V28.4444H106.671ZM113.782 28.4444H106.671V21.3333H113.782V28.4444ZM120.893 28.4444V35.5556H113.782V28.4444H120.893ZM120.893 21.3333V28.4444H128.004V35.5556H135.115V28.4444H142.226V35.5556H149.337V28.4444H156.448V35.5556H163.559V28.4444H156.448L156.448 21.3333H163.559V14.2222H156.448V7.11111H149.337V14.2222H142.226V7.11111H135.115V14.2222H128.004V7.11111H120.893V14.2222H113.782L113.782 7.11111H106.671V14.2222H113.782V21.3333H120.893ZM128.004 21.3333V14.2222H120.893V21.3333H128.004ZM135.115 21.3333V14.2222H142.226V21.3333H135.115ZM149.337 21.3333H156.448L156.448 14.2222H149.337V21.3333ZM149.337 21.3333H142.226V28.4444H149.337V21.3333ZM135.115 21.3333H128.004V28.4444H135.115V21.3333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.669 42.667H85.3359V85.3337H92.4484V78.2227H99.5595V85.3337H106.671V78.2227H113.782V85.3337H120.893V78.2227H128.004V85.3337H135.115V78.2227H142.226V85.3337H149.337V78.2227H156.448V85.3337H163.559V78.2227H170.669V71.1116H163.559V64.0005H170.669V56.8894H163.559V49.7783H170.669V42.667ZM156.448 49.7783H163.559V42.6672H156.448L156.448 49.7783ZM156.448 56.8894V49.7783H149.337V42.6672H142.226V49.7783H135.115V42.6672H128.004V49.7783H120.893V42.6672H113.782V49.7783H106.671V42.6672H99.5595V49.7783H92.4484V42.6672H85.3372V49.7783H92.4484V56.8894H85.3372V64.0005H92.4484V71.1116H85.3372V78.2227H92.4484V71.1116H99.5595V78.2227H106.671V71.1116H113.782V78.2227H120.893V71.1116H128.004V78.2227H135.115V71.1116H142.226V78.2227H149.337V71.1116H156.448V78.2227H163.559V71.1116H156.448L156.448 64.0005H163.559V56.8894H156.448ZM149.337 56.8894V49.7783H142.226V56.8894H135.115V49.7783H128.004V56.8894H120.893V49.7783H113.782L113.782 56.8894H106.671V49.7783H99.5595V56.8894H92.4484V64.0005H99.5595V71.1116H106.671V64.0005H113.782V71.1116H120.893V64.0005H128.004V71.1116H135.115V64.0005H142.226V71.1116H149.337V64.0005H156.448L156.448 56.8894H149.337ZM149.337 56.8894V64.0005H142.226V56.8894H149.337ZM135.115 64.0005V56.8894H128.004V64.0005H135.115ZM120.893 64.0005H113.782V56.8894H120.893V64.0005ZM106.671 64.0005V56.8894H99.5595V64.0005H106.671Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3372 85.333H85.3359V128H170.669V128H163.559V120.888H170.669V113.777H163.559V106.666H170.669V99.5551H163.559V92.444H170.669V85.333H163.559V92.444H156.448L156.448 85.333H149.337V92.444H142.226V85.333H135.115V92.444H128.004V85.333H120.893V92.444H113.782V85.333H106.671V92.444H99.5595V85.333H92.4484V92.444H85.3372V85.333ZM92.4484 99.5551V92.444H99.5595V99.5551H92.4484ZM92.4484 106.666H85.3372V99.5551H92.4484V106.666ZM99.5595 106.666V99.5551H106.671V106.666H99.5595ZM99.5595 113.777V106.666H92.4484V113.777L85.3372 113.777V120.888H92.4484V128H99.5595V120.888H106.671V128H113.782V120.888H120.893V128H128.004V120.888H135.115V128H142.226V120.888H149.337V128H156.448V120.888H163.559V113.777H156.448L156.448 106.666H163.559V99.5551H156.448V92.444H149.337V99.5551H142.226V92.444H135.115V99.5551H128.004V92.444H120.893V99.5551H113.782L113.782 92.444H106.671V99.5551H113.782V106.666H106.671V113.777H99.5595ZM113.782 113.777V106.666H120.893V113.777L113.782 113.777ZM128.004 113.777L120.893 113.777V120.888H128.004V113.777ZM128.004 106.666H120.893V99.5551H128.004V106.666ZM135.115 106.666V99.5551H142.226V106.666H135.115ZM135.115 113.777H128.004V106.666H135.115V113.777ZM142.226 113.777V120.888H135.115V113.777H142.226ZM149.337 113.777V120.888H156.448V113.777L149.337 113.777ZM149.337 106.666V99.5551H156.448L156.448 106.666H149.337ZM149.337 106.666V113.777L142.226 113.777V106.666H149.337ZM113.782 113.777V120.888H106.671V113.777L113.782 113.777ZM99.5595 113.777V120.888H92.4484V113.777L99.5595 113.777Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3372 128H85.3359V170.667H92.4484V163.556H99.5595V170.667H106.671V163.556H113.782V170.667H120.893V163.556H128.004V170.667H135.115V163.556H142.226V170.667H149.337V163.556H156.448V170.667H163.559V163.556H170.669V156.444H163.559V149.333H170.669V142.222H163.559V135.111H170.669V128H163.559V135.111H156.448L156.448 128H149.337V135.111H142.226V128H135.115V135.111H128.004V128H120.893V135.111H113.782V128H106.671V135.111H99.5595V128H92.4484V135.111H85.3372V128ZM92.4484 142.222V135.111H99.5595V142.222H92.4484ZM92.4484 149.333H85.3372V142.222H92.4484V149.333ZM99.5595 149.333V142.222H106.671V149.333H99.5595ZM99.5595 156.444V149.333H92.4484V156.444H85.3372V163.556H92.4484V156.444H99.5595ZM106.671 156.444V163.556H99.5595V156.444H106.671ZM113.782 156.444H106.671V149.333H113.782V156.444ZM120.893 156.444V163.556H113.782V156.444H120.893ZM120.893 149.333V156.444H128.004V163.556H135.115V156.444H142.226V163.556H149.337V156.444H156.448V163.556H163.559V156.444H156.448L156.448 149.333H163.559V142.222H156.448V135.111H149.337V142.222H142.226V135.111H135.115V142.222H128.004V135.111H120.893V142.222H113.782L113.782 135.111H106.671V142.222H113.782V149.333H120.893ZM128.004 149.333V142.222H120.893V149.333H128.004ZM135.115 149.333V142.222H142.226V149.333H135.115ZM149.337 149.333H156.448L156.448 142.222H149.337V149.333ZM149.337 149.333H142.226V156.444H149.337V149.333ZM135.115 149.333H128.004V156.444H135.115V149.333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.669 170.667H85.3359V213.334H92.4484V206.223H99.5595V213.334H106.671V206.223H113.782V213.334H120.893V206.223H128.004V213.334H135.115V206.223H142.226V213.334H149.337V206.223H156.448V213.334H163.559V206.223H170.669V199.112H163.559V192H170.669V184.889H163.559V177.778H170.669V170.667ZM156.448 177.778H163.559V170.667H156.448L156.448 177.778ZM156.448 184.889V177.778H149.337V170.667H142.226V177.778H135.115V170.667H128.004V177.778H120.893V170.667H113.782V177.778H106.671V170.667H99.5595V177.778H92.4484V170.667H85.3372V177.778H92.4484V184.889H85.3372V192H92.4484V199.112H85.3372V206.223H92.4484V199.112H99.5595V206.223H106.671V199.112H113.782V206.223H120.893V199.112H128.004V206.223H135.115V199.112H142.226V206.223H149.337V199.112H156.448V206.223H163.559V199.112H156.448L156.448 192H163.559V184.889H156.448ZM149.337 184.889V177.778H142.226V184.889H135.115V177.778H128.004V184.889H120.893V177.778H113.782L113.782 184.889H106.671V177.778H99.5595V184.889H92.4484V192H99.5595V199.112H106.671V192H113.782V199.112H120.893V192H128.004V199.112H135.115V192H142.226V199.112H149.337V192H156.448L156.448 184.889H149.337ZM149.337 184.889V192H142.226V184.889H149.337ZM135.115 192V184.889H128.004V192H135.115ZM120.893 192H113.782V184.889H120.893V192ZM106.671 192V184.889H99.5595V192H106.671Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3372 213.333H85.3359V256H170.669V256H163.559V248.888H170.669V241.777H163.559V234.666H170.669V227.555H163.559V220.444H170.669V213.333H163.559V220.444H156.448L156.448 213.333H149.337V220.444H142.226V213.333H135.115V220.444H128.004V213.333H120.893V220.444H113.782V213.333H106.671V220.444H99.5595V213.333H92.4484V220.444H85.3372V213.333ZM92.4484 227.555V220.444H99.5595V227.555H92.4484ZM92.4484 234.666H85.3372V227.555H92.4484V234.666ZM99.5595 234.666V227.555H106.671V234.666H99.5595ZM99.5595 241.777V234.666H92.4484V241.777L85.3372 241.777V248.888H92.4484V256H99.5595V248.888H106.671V256H113.782V248.888H120.893V256H128.004V248.888H135.115V256H142.226V248.888H149.337V256H156.448V248.888H163.559V241.777H156.448L156.448 234.666H163.559V227.555H156.448V220.444H149.337V227.555H142.226V220.444H135.115V227.555H128.004V220.444H120.893V227.555H113.782L113.782 220.444H106.671V227.555H113.782V234.666H106.671V241.777H99.5595ZM113.782 241.777V234.666H120.893V241.777L113.782 241.777ZM128.004 241.777L120.893 241.777V248.888H128.004V241.777ZM128.004 234.666H120.893V227.555H128.004V234.666ZM135.115 234.666V227.555H142.226V234.666H135.115ZM135.115 241.777H128.004V234.666H135.115V241.777ZM142.226 241.777V248.888H135.115V241.777H142.226ZM149.337 241.777V248.888H156.448V241.777L149.337 241.777ZM149.337 234.666V227.555H156.448L156.448 234.666H149.337ZM149.337 234.666V241.777L142.226 241.777V234.666H149.337ZM113.782 241.777V248.888H106.671V241.777L113.782 241.777ZM99.5595 241.777V248.888H92.4484V241.777L99.5595 241.777Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.664 7.11111V14.2222H177.774V21.3333H170.664V28.4444H177.774V35.5556H170.664V42.6667H177.774V35.5556H184.885V42.6667H191.996V35.5556H199.107V42.6667H206.218V35.5556H213.329V42.6667H220.441V35.5556H227.552V42.6667H234.663V35.5556H241.774V42.6667H248.885V35.5556H255.996V42.6667H255.997V0H248.885L248.885 7.11111H241.774V0H234.663V7.11111H227.552V0H220.441V7.11111H213.329V0H206.218V7.11111H199.107V0H191.996V7.11111H184.885V0H177.774V7.11111H170.664ZM184.885 14.2222V7.11111H177.774V14.2222H184.885ZM191.996 14.2222H184.885V21.3333H177.774V28.4444H184.885V35.5556H191.996V28.4444H199.107V35.5556H206.218V28.4444H213.329V35.5556H220.441V28.4444H227.552V35.5556H234.663V28.4444H241.774V35.5556H248.885V28.4444H255.996V21.3333H248.885L248.885 14.2222H255.996V7.11111H248.885V14.2222H241.774V7.11111H234.663V14.2222H227.552L227.552 7.11111H220.441V14.2222H213.329V7.11111H206.218V14.2222H199.107V7.11111H191.996V14.2222ZM191.996 21.3333V14.2222H199.107V21.3333H191.996ZM206.218 21.3333V28.4444H199.107V21.3333H206.218ZM213.329 21.3333V14.2222H206.218V21.3333H213.329ZM220.441 21.3333V14.2222H227.552V21.3333H220.441ZM234.663 21.3333H227.552V28.4444H234.663V21.3333ZM241.774 21.3333V28.4444H248.885L248.885 21.3333H241.774ZM241.774 21.3333H234.663V14.2222H241.774V21.3333ZM220.441 21.3333H213.329V28.4444H220.441V21.3333ZM191.996 21.3333V28.4444H184.885V21.3333H191.996Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M255.997 42.667H170.664V42.6672H177.774V49.7783H170.664V56.8894H177.774V64.0005H170.664V71.1116H177.774V78.2227H170.664V85.3337H177.774V78.2227H184.885V85.3337H191.996V78.2227H199.107V85.3337H206.218V78.2227H213.329V85.3337H220.441V78.2227H227.552V85.3337H234.663V78.2227H241.774V85.3337H248.885V78.2227H255.996V85.3337H255.997V42.667ZM248.885 71.1116V78.2227H241.774V71.1116H248.885ZM248.885 64.0005L248.885 71.1116H255.996V64.0005H248.885ZM241.774 64.0005H248.885L248.885 56.8894H255.996V49.7783H248.885L248.885 42.6672H241.774V49.7783H234.663V42.6672H227.552V49.7783H220.441V42.6672H213.329V49.7783H206.218V42.6672H199.107V49.7783H191.996V42.6672H184.885V49.7783H177.774V56.8894H184.885V64.0005H177.774V71.1116H184.885V78.2227H191.996V71.1116H199.107V78.2227H206.218V71.1116H213.329V78.2227H220.441V71.1116H227.552V78.2227H234.663V71.1116H241.774V64.0005ZM234.663 64.0005V71.1116H227.552V64.0005H234.663ZM234.663 56.8894V64.0005H241.774V56.8894H248.885V49.7783H241.774V56.8894H234.663ZM227.552 56.8894L227.552 49.7783H234.663V56.8894H227.552ZM220.441 56.8894V49.7783H213.329V56.8894H206.218V49.7783H199.107V56.8894H191.996V49.7783H184.885V56.8894H191.996V64.0005H184.885V71.1116H191.996V64.0005H199.107V71.1116H206.218V64.0005H213.329V71.1116H220.441V64.0005H227.552V56.8894H220.441ZM220.441 56.8894V64.0005H213.329V56.8894H220.441ZM206.218 64.0005H199.107V56.8894H206.218V64.0005Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.664 92.444V99.5551H177.774V106.666H170.664V113.777L177.774 113.777V120.888H170.664V128H255.997V85.333H248.885L248.885 92.444H241.774V85.333H234.663V92.444H227.552V85.333H220.441V92.444H213.329V85.333H206.218V92.444H199.107V85.333H191.996V92.444H184.885V85.333H177.774V92.444H170.664ZM184.885 99.5551V92.444H177.774V99.5551H184.885ZM191.996 99.5551H184.885V106.666H177.774V113.777L184.885 113.777V120.888H177.774V128H184.885V120.888H191.996V128H199.107V120.888H206.218V128H213.329V120.888H220.441V128H227.552V120.888H234.663V128H241.774V120.888H248.885V128H255.996V120.888H248.885V113.777H255.996V106.666H248.885L248.885 99.5551H255.996V92.444H248.885V99.5551H241.774V92.444H234.663V99.5551H227.552L227.552 92.444H220.441V99.5551H213.329V92.444H206.218V99.5551H199.107V92.444H191.996V99.5551ZM191.996 106.666V99.5551H199.107V106.666H191.996ZM191.996 113.777H184.885V106.666H191.996V113.777ZM199.107 113.777V106.666H206.218V113.777L199.107 113.777ZM213.329 113.777L206.218 113.777V120.888H213.329V113.777ZM213.329 106.666H206.218V99.5551H213.329V106.666ZM220.441 106.666V99.5551H227.552V106.666H220.441ZM220.441 113.777H213.329V106.666H220.441V113.777ZM227.552 113.777V120.888H220.441V113.777H227.552ZM234.663 113.777V120.888H241.774V113.777H248.885L248.885 106.666H241.774V99.5551H234.663V106.666H227.552V113.777L234.663 113.777ZM234.663 113.777V106.666H241.774V113.777L234.663 113.777ZM199.107 113.777V120.888H191.996V113.777L199.107 113.777Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.664 135.111V142.222H177.774V149.333H170.664V156.444H177.774V163.556H170.664V170.667H177.774V163.556H184.885V170.667H191.996V163.556H199.107V170.667H206.218V163.556H213.329V170.667H220.441V163.556H227.552V170.667H234.663V163.556H241.774V170.667H248.885V163.556H255.996V170.667H255.997V128H248.885L248.885 135.111H241.774V128H234.663V135.111H227.552V128H220.441V135.111H213.329V128H206.218V135.111H199.107V128H191.996V135.111H184.885V128H177.774V135.111H170.664ZM184.885 142.222V135.111H177.774V142.222H184.885ZM191.996 142.222H184.885V149.333H177.774V156.444H184.885V163.556H191.996V156.444H199.107V163.556H206.218V156.444H213.329V163.556H220.441V156.444H227.552V163.556H234.663V156.444H241.774V163.556H248.885V156.444H255.996V149.333H248.885L248.885 142.222H255.996V135.111H248.885V142.222H241.774V135.111H234.663V142.222H227.552L227.552 135.111H220.441V142.222H213.329V135.111H206.218V142.222H199.107V135.111H191.996V142.222ZM191.996 149.333V142.222H199.107V149.333H191.996ZM206.218 149.333V156.444H199.107V149.333H206.218ZM213.329 149.333V142.222H206.218V149.333H213.329ZM220.441 149.333V142.222H227.552V149.333H220.441ZM234.663 149.333H227.552V156.444H234.663V149.333ZM241.774 149.333V156.444H248.885L248.885 149.333H241.774ZM241.774 149.333H234.663V142.222H241.774V149.333ZM220.441 149.333H213.329V156.444H220.441V149.333ZM191.996 149.333V156.444H184.885V149.333H191.996Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M255.997 170.667H170.664V170.667H177.774V177.778H170.664V184.889H177.774V192H170.664V199.112H177.774V206.223H170.664V213.334H177.774V206.223H184.885V213.334H191.996V206.223H199.107V213.334H206.218V206.223H213.329V213.334H220.441V206.223H227.552V213.334H234.663V206.223H241.774V213.334H248.885V206.223H255.996V213.334H255.997V170.667ZM248.885 199.112V206.223H241.774V199.112H248.885ZM248.885 192L248.885 199.112H255.996V192H248.885ZM241.774 192H248.885L248.885 184.889H255.996V177.778H248.885L248.885 170.667H241.774V177.778H234.663V170.667H227.552V177.778H220.441V170.667H213.329V177.778H206.218V170.667H199.107V177.778H191.996V170.667H184.885V177.778H177.774V184.889H184.885V192H177.774V199.112H184.885V206.223H191.996V199.112H199.107V206.223H206.218V199.112H213.329V206.223H220.441V199.112H227.552V206.223H234.663V199.112H241.774V192ZM234.663 192V199.112H227.552V192H234.663ZM234.663 184.889V192H241.774V184.889H248.885V177.778H241.774V184.889H234.663ZM227.552 184.889L227.552 177.778H234.663V184.889H227.552ZM220.441 184.889V177.778H213.329V184.889H206.218V177.778H199.107V184.889H191.996V177.778H184.885V184.889H191.996V192H184.885V199.112H191.996V192H199.107V199.112H206.218V192H213.329V199.112H220.441V192H227.552V184.889H220.441ZM220.441 184.889V192H213.329V184.889H220.441ZM206.218 192H199.107V184.889H206.218V192Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.664 220.444V227.555H177.774V234.666H170.664V241.777L177.774 241.777V248.888H170.664V256H255.997V213.333H248.885L248.885 220.444H241.774V213.333H234.663V220.444H227.552V213.333H220.441V220.444H213.329V213.333H206.218V220.444H199.107V213.333H191.996V220.444H184.885V213.333H177.774V220.444H170.664ZM184.885 227.555V220.444H177.774V227.555H184.885ZM191.996 227.555H184.885V234.666H177.774V241.777L184.885 241.777V248.888H177.774V256H184.885V248.888H191.996V256H199.107V248.888H206.218V256H213.329V248.888H220.441V256H227.552V248.888H234.663V256H241.774V248.888H248.885V256H255.996V248.888H248.885V241.777H255.996V234.666H248.885L248.885 227.555H255.996V220.444H248.885V227.555H241.774V220.444H234.663V227.555H227.552L227.552 220.444H220.441V227.555H213.329V220.444H206.218V227.555H199.107V220.444H191.996V227.555ZM191.996 234.666V227.555H199.107V234.666H191.996ZM191.996 241.777H184.885V234.666H191.996V241.777ZM199.107 241.777V234.666H206.218V241.777L199.107 241.777ZM213.329 241.777L206.218 241.777V248.888H213.329V241.777ZM213.329 234.666H206.218V227.555H213.329V234.666ZM220.441 234.666V227.555H227.552V234.666H220.441ZM220.441 241.777H213.329V234.666H220.441V241.777ZM227.552 241.777V248.888H220.441V241.777H227.552ZM234.663 241.777V248.888H241.774V241.777H248.885L248.885 234.666H241.774V227.555H234.663V234.666H227.552V241.777L234.663 241.777ZM234.663 241.777V234.666H241.774V241.777L234.663 241.777ZM199.107 241.777V248.888H191.996V241.777L199.107 241.777Z" fill="#D9D9D9"/>
|
||||
</svg>
|
||||
<?xml version="1.0"?>
|
||||
<svg width="256" height="256" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<g class="layer">
|
||||
<title>Layer 1</title>
|
||||
<path d="m0,0l256,0l0,256l-256,0l0,-256z" fill="#2d2d31" id="svg_1"/>
|
||||
<path clip-rule="evenodd" d="m14.22,0l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm0,14.22l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.23,0l0,7.11l-7.12,0l0,-7.11l7.12,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-28.45,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_2"/>
|
||||
<path clip-rule="evenodd" d="m85.33,42.67l-78.22,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11zm-14.22,7.11l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm-14.22,0l-7.12,0l0,-7.11l7.12,0l0,7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_3"/>
|
||||
<path clip-rule="evenodd" d="m14.22,85.33l-14.22,0l0,0l7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.23l0,-7.12l7.11,0l0,7.12l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.12,0l0,7.11l-7.11,0zm14.23,0l0,7.11l-7.12,0l0,-7.11l7.12,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-42.67,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_4" transform="matrix(1 0 0 1 0 0)"/>
|
||||
<path clip-rule="evenodd" d="m14.22,128l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm0,14.22l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.23,0l0,7.11l-7.12,0l0,-7.11l7.12,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-28.45,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_5"/>
|
||||
<path clip-rule="evenodd" d="m85.33,170.67l-78.22,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11zm-14.22,7.11l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm-14.22,0l-7.12,0l0,-7.11l7.12,0l0,7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_6"/>
|
||||
<path clip-rule="evenodd" d="m14.22,213.33l-14.22,0l0,0l7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.23l0,-7.12l7.11,0l0,7.12l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.12,0l0,7.11l-7.11,0zm14.23,0l0,7.11l-7.12,0l0,-7.11l7.12,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-42.67,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_7"/>
|
||||
<path clip-rule="evenodd" d="m85.34,0l0,0l0,42.67l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.22l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0zm7.11,0l0,7.12l-7.11,0l0,-7.12l7.11,0zm7.11,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,7.12l-7.11,0l0,-7.12l7.11,0zm0,-7.11l0,7.11l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.12,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,0l-7.12,0l0,7.11l7.12,0l0,-7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_8"/>
|
||||
<path clip-rule="evenodd" d="m170.67,42.67l-85.33,0l0,42.66l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11zm-14.22,7.11l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,7.11l0,-7.11l-7.12,0l0,7.11l7.12,0zm-14.23,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm-14.22,0l0,-7.11l-7.11,0l0,7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_9"/>
|
||||
<path clip-rule="evenodd" d="m85.34,85.33l0,0l0,42.67l85.33,0l0,0l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.23l0,-7.12l7.11,0l0,7.12l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.12,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l-7.11,0zm14.22,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm0,-7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.12,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.12,0l0,-7.11l7.12,0l0,7.11zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0zm0,-7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-35.56,7.11l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_10"/>
|
||||
<path clip-rule="evenodd" d="m85.34,128l0,0l0,42.67l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.22l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0zm7.11,0l0,7.12l-7.11,0l0,-7.12l7.11,0zm7.11,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,7.12l-7.11,0l0,-7.12l7.11,0zm0,-7.11l0,7.11l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.12,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,0l-7.12,0l0,7.11l7.12,0l0,-7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_11"/>
|
||||
<path clip-rule="evenodd" d="m170.67,170.67l-85.33,0l0,42.66l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11zm-14.22,7.11l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,7.11l0,-7.11l-7.12,0l0,7.11l7.12,0zm-14.23,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm-14.22,0l0,-7.11l-7.11,0l0,7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_12"/>
|
||||
<path clip-rule="evenodd" d="m85.34,213.33l0,0l0,42.67l85.33,0l0,0l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.23l0,-7.12l7.11,0l0,7.12l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.12,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l-7.11,0zm14.22,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm0,-7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.12,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.12,0l0,-7.11l7.12,0l0,7.11zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0zm0,-7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-35.56,7.11l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_13"/>
|
||||
<path clip-rule="evenodd" d="m170.66,7.11l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l0,0l0,-42.67l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm14.22,7.11l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.12,0l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0zm0,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm-21.33,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-28.44,0l0,7.11l-7.12,0l0,-7.11l7.12,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_14"/>
|
||||
<path clip-rule="evenodd" d="m256,42.67l-85.34,0l0,0l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l0,0l0,-42.66zm-7.12,28.44l0,7.11l-7.11,0l0,-7.11l7.11,0zm0,-7.11l0,7.11l7.12,0l0,-7.11l-7.12,0zm-7.11,0l7.11,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11zm-7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm0,-7.11l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm-7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l7.12,0l0,7.11l-7.12,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_15"/>
|
||||
<path clip-rule="evenodd" d="m170.66,92.44l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l85.34,0l0,-42.67l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm14.22,7.12l0,-7.12l-7.11,0l0,7.12l7.11,0zm7.12,0l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.12l-7.12,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.12,0l0,-7.11l7.12,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm0,-7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0zm0,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm-35.55,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_16"/>
|
||||
<path clip-rule="evenodd" d="m170.66,135.11l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l0,0l0,-42.67l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm14.22,7.11l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.12,0l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0zm0,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm-21.33,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-28.44,0l0,7.11l-7.12,0l0,-7.11l7.12,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_17"/>
|
||||
<path clip-rule="evenodd" d="m256,170.67l-85.34,0l0,0l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l0,0l0,-42.66zm-7.12,28.44l0,7.11l-7.11,0l0,-7.11l7.11,0zm0,-7.11l0,7.11l7.12,0l0,-7.11l-7.12,0zm-7.11,0l7.11,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11zm-7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm0,-7.11l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm-7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l7.12,0l0,7.11l-7.12,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_18"/>
|
||||
<path clip-rule="evenodd" d="m170.66,220.44l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l85.34,0l0,-42.67l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm14.22,7.12l0,-7.12l-7.11,0l0,7.12l7.11,0zm7.12,0l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.12l-7.12,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.12,0l0,-7.11l7.12,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm0,-7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0zm0,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm-35.55,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_19"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 23 KiB |
@@ -28,6 +28,7 @@
|
||||
"support_print_all":false,
|
||||
"support_print_without_sd":false,
|
||||
"support_flow_calibration":true,
|
||||
"support_build_plate_marker_detect":false,
|
||||
"support_lidar_calibration":false,
|
||||
"support_ai_monitoring":false,
|
||||
"support_first_layer_inspect":false,
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
"support_print_all":false,
|
||||
"support_print_without_sd":false,
|
||||
"support_flow_calibration":true,
|
||||
"support_build_plate_marker_detect":false,
|
||||
"support_lidar_calibration":false,
|
||||
"support_ai_monitoring":false,
|
||||
"support_first_layer_inspect":false,
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Anker",
|
||||
"version": "02.00.00.00",
|
||||
"version": "02.00.02.00",
|
||||
"force_update": "0",
|
||||
"description": "Anker configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -32,9 +32,9 @@
|
||||
"printable_height": "250",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"235x0",
|
||||
"235x235",
|
||||
"0x235"
|
||||
"220x0",
|
||||
"220x220",
|
||||
"0x220"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Anycubic",
|
||||
"version": "02.00.00.00",
|
||||
"version": "02.00.02.00",
|
||||
"force_update": "0",
|
||||
"description": "Anycubic configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Artillery",
|
||||
"version": "02.00.00.00",
|
||||
"version": "02.00.02.00",
|
||||
"force_update": "0",
|
||||
"description": "Artillery configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -43,8 +43,8 @@
|
||||
"960"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"1000",
|
||||
"1000"
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"120",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "BIQU",
|
||||
"version": "02.00.00.00",
|
||||
"version": "02.00.02.00",
|
||||
"force_update": "0",
|
||||
"description": "BIQU configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "CONSTRUCT3D",
|
||||
"version": "02.00.00.00",
|
||||
"version": "02.00.02.00",
|
||||
"force_update": "0",
|
||||
"description": "Construct3D configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Comgrow",
|
||||
"version": "02.00.00.00",
|
||||
"version": "02.00.02.00",
|
||||
"force_update": "0",
|
||||
"description": "Comgrow configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Creality",
|
||||
"version": "02.00.00.00",
|
||||
"version": "02.00.02.00",
|
||||
"force_update": "0",
|
||||
"description": "Creality configurations",
|
||||
"machine_model_list": [
|
||||
@@ -12,6 +12,10 @@
|
||||
"name": "Creality CR-10 Max",
|
||||
"sub_path": "machine/Creality CR-10 Max.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality CR-10 SE",
|
||||
"sub_path": "machine/Creality CR-10 SE.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality CR-6 SE",
|
||||
"sub_path": "machine/Creality CR-6 SE.json"
|
||||
@@ -36,10 +40,18 @@
|
||||
"name": "Creality Ender-3",
|
||||
"sub_path": "machine/Creality Ender-3.json"
|
||||
},
|
||||
{
|
||||
"name":"Creality Ender-3 Pro",
|
||||
"sub_path": "machine/Creality Ender-3 Pro.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 S1 Pro",
|
||||
"sub_path": "machine/Creality Ender-3 S1 Pro.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 S1 Plus",
|
||||
"sub_path": "machine/Creality Ender-3 S1 Plus.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 V3 SE",
|
||||
"sub_path": "machine/Creality Ender-3 V3 SE.json"
|
||||
@@ -126,6 +138,86 @@
|
||||
"name": "fdm_process_creality_common_1_0",
|
||||
"sub_path": "process/fdm_process_creality_common_1_0.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Creality Ender3 Pro 0.2",
|
||||
"sub_path": "process/0.12mm Fine @Creality Ender3 Pro 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Creality Ender3 Pro 0.6",
|
||||
"sub_path": "process/0.12mm Fine @Creality Ender3 Pro 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Creality Ender3 Pro 0.8",
|
||||
"sub_path": "process/0.12mm Fine @Creality Ender3 Pro 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Creality Ender3 Pro 0.4",
|
||||
"sub_path": "process/0.12mm Fine @Creality Ender3 Pro 0.4.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3 Pro 0.2",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3 Pro 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3 Pro 0.4",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3 Pro 0.4.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3 Pro 0.6",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3 Pro 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3 Pro 0.8",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3 Pro 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3 Pro 0.2",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3 Pro 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3 Pro 0.4",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3 Pro 0.4.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3 Pro 0.6",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3 Pro 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3 Pro 0.8",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3 Pro 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3 Pro 0.2",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3 Pro 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3 Pro 0.4",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3 Pro 0.4.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3 Pro 0.6",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3 Pro 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3 Pro 0.8",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3 Pro 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm Draft @Creality Ender3 Pro 0.2",
|
||||
"sub_path": "process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm Draft @Creality Ender3 Pro 0.4",
|
||||
"sub_path": "process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm Draft @Creality Ender3 Pro 0.6",
|
||||
"sub_path": "process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm Draft @Creality Ender3 Pro 0.8",
|
||||
"sub_path": "process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.08mm SuperDetail @Creality CR-6 0.2",
|
||||
"sub_path": "process/0.08mm SuperDetail @Creality CR-6 0.2.json"
|
||||
@@ -194,13 +286,25 @@
|
||||
"name": "0.12mm Fine @Creality Ender3V2Neo",
|
||||
"sub_path": "process/0.12mm Fine @Creality Ender3V2Neo.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Creality Ender3V3KE",
|
||||
"sub_path": "process/0.12mm Fine @Creality Ender3V3KE.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Creality Ender3V3SE 0.2",
|
||||
"sub_path": "process/0.12mm Fine @Creality Ender3V3SE 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Creality Ender3V3SE",
|
||||
"sub_path": "process/0.12mm Fine @Creality Ender3V3SE.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Creality Ender3V3KE",
|
||||
"sub_path": "process/0.12mm Fine @Creality Ender3V3KE.json"
|
||||
"name": "0.12mm Fine @Creality Ender3V3SE 0.6",
|
||||
"sub_path": "process/0.12mm Fine @Creality Ender3V3SE 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Creality Ender3V3SE 0.8",
|
||||
"sub_path": "process/0.12mm Fine @Creality Ender3V3SE 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Detail @Creality Ender5Pro (2019) 0.2",
|
||||
@@ -275,13 +379,41 @@
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3S1Pro.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3V3SE",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3V3SE.json"
|
||||
"name": "0.16mm Optimal @Creality Ender3S1Plus 0.2",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3S1Plus 0.4",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3S1Plus 0.6",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3S1Plus 0.8",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3V3KE",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3V3KE.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3V3SE 0.2",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3V3SE 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3V3SE",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3V3SE.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3V3SE 0.6",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3V3SE 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender3V3SE 0.8",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender3V3SE 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality Ender5",
|
||||
"sub_path": "process/0.16mm Optimal @Creality Ender5.json"
|
||||
@@ -346,6 +478,22 @@
|
||||
"name": "0.20mm Standard @Creality CR10Max",
|
||||
"sub_path": "process/0.20mm Standard @Creality CR10Max.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality CR10SE 0.2",
|
||||
"sub_path": "process/0.20mm Standard @Creality CR10SE 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality CR10SE 0.4",
|
||||
"sub_path": "process/0.20mm Standard @Creality CR10SE 0.4.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality CR10SE 0.6",
|
||||
"sub_path": "process/0.20mm Standard @Creality CR10SE 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality CR10SE 0.8",
|
||||
"sub_path": "process/0.20mm Standard @Creality CR10SE 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality CR-6 0.4",
|
||||
"sub_path": "process/0.20mm Standard @Creality CR-6 0.4.json"
|
||||
@@ -391,13 +539,41 @@
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3S1Pro.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3V3SE",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3V3SE.json"
|
||||
"name": "0.20mm Standard @Creality Ender3S1Plus 0.2",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3S1Plus 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3S1Plus 0.4",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3S1Plus 0.4.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3S1Plus 0.6",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3S1Plus 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3S1Plus 0.8",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3S1Plus 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3V3KE",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3V3KE.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3V3SE 0.2",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3V3SE 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3V3SE",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3V3SE.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3V3SE 0.6",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3V3SE 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender3V3SE 0.8",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender3V3SE 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Ender5",
|
||||
"sub_path": "process/0.20mm Standard @Creality Ender5.json"
|
||||
@@ -494,13 +670,41 @@
|
||||
"name": "0.24mm Draft @Creality Ender3V2Neo",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3V2Neo.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3V3KE",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3V3KE.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3V3SE 0.2",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3V3SE 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3V3SE",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3V3SE.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3V3KE",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3V3KE.json"
|
||||
"name": "0.24mm Draft @Creality Ender3V3SE 0.6",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3V3SE 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3V3SE 0.8",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3V3SE 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3S1Plus 0.2",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3S1Plus 0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3S1Plus 0.4",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3S1Plus 0.4.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3S1Plus 0.6",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3S1Plus 0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender3S1Plus 0.8",
|
||||
"sub_path": "process/0.24mm Draft @Creality Ender3S1Plus 0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality Ender5Pro (2019) 0.3",
|
||||
@@ -862,6 +1066,22 @@
|
||||
"name": "Creality CR-10 Max 0.4 nozzle",
|
||||
"sub_path": "machine/Creality CR-10 Max 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality CR-10 SE 0.2 nozzle",
|
||||
"sub_path": "machine/Creality CR-10 SE 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality CR-10 SE 0.4 nozzle",
|
||||
"sub_path": "machine/Creality CR-10 SE 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality CR-10 SE 0.6 nozzle",
|
||||
"sub_path": "machine/Creality CR-10 SE 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality CR-10 SE 0.8 nozzle",
|
||||
"sub_path": "machine/Creality CR-10 SE 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-6 0.4 nozzle",
|
||||
"sub_path": "machine/Creality Ender-6 0.4 nozzle.json"
|
||||
@@ -922,6 +1142,22 @@
|
||||
"name": "Creality Ender-3 0.8 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 Pro 0.4 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 Pro 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 Pro 0.2 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 Pro 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 Pro 0.6 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 Pro 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 Pro 0.8 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 Pro 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 S1 0.4 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 S1 0.4 nozzle.json"
|
||||
@@ -930,10 +1166,38 @@
|
||||
"name": "Creality Ender-3 S1 Pro 0.4 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 S1 Pro 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 S1 Plus 0.2 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 S1 Plus 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 S1 Plus 0.4 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 S1 Plus 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 S1 Plus 0.6 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 S1 Plus 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 S1 Plus 0.8 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 S1 Plus 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 V3 SE 0.2 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 V3 SE 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 V3 SE 0.4 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 V3 SE 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 V3 SE 0.6 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 V3 SE 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 V3 SE 0.8 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 V3 SE 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Creality Ender-3 V3 KE 0.4 nozzle",
|
||||
"sub_path": "machine/Creality Ender-3 V3 KE 0.4 nozzle.json"
|
||||
|
||||
BIN
resources/profiles/Creality/Creality CR-10 SE_cover.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
resources/profiles/Creality/Creality Ender-3 Pro_cover.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
resources/profiles/Creality/Creality Ender-3 S1 Plus_cover.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
resources/profiles/Creality/creality_cr10se_buildplate_model.stl
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
@@ -8,7 +8,10 @@
|
||||
"filament_max_volumetric_speed": ["9"],
|
||||
"slow_down_layer_time": ["5"],
|
||||
"compatible_printers": [
|
||||
"Creality Ender-3 V3 SE 0.2 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.4 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.6 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.8 nozzle",
|
||||
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -23,10 +23,18 @@
|
||||
"Creality Ender-3 0.4 nozzle",
|
||||
"Creality Ender-3 0.6 nozzle",
|
||||
"Creality Ender-3 0.8 nozzle",
|
||||
"Creality Ender-3 Pro 0.2 nozzle",
|
||||
"Creality Ender-3 Pro 0.4 nozzle",
|
||||
"Creality Ender-3 Pro 0.6 nozzle",
|
||||
"Creality Ender-3 Pro 0.8 nozzle",
|
||||
"Creality Ender-3 V2 0.4 nozzle",
|
||||
"Creality Ender-3 V2 Neo 0.4 nozzle",
|
||||
"Creality Ender-3 S1 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Pro 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.2 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.6 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.8 nozzle",
|
||||
"Creality Ender-5 0.4 nozzle",
|
||||
"Creality Ender-5 Plus 0.4 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.2 nozzle",
|
||||
@@ -45,7 +53,10 @@
|
||||
"Creality K1 (0.8 nozzle)",
|
||||
"Creality K1 Max (0.4 nozzle)",
|
||||
"Creality K1 Max (0.6 nozzle)",
|
||||
"Creality K1 Max (0.8 nozzle)"
|
||||
|
||||
"Creality K1 Max (0.8 nozzle)",
|
||||
"Creality CR-10 SE 0.2 nozzle",
|
||||
"Creality CR-10 SE 0.4 nozzle",
|
||||
"Creality CR-10 SE 0.6 nozzle",
|
||||
"Creality CR-10 SE 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -8,7 +8,10 @@
|
||||
"filament_max_volumetric_speed": ["9"],
|
||||
"slow_down_layer_time": ["5"],
|
||||
"compatible_printers": [
|
||||
"Creality Ender-3 V3 SE 0.2 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.4 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.6 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.8 nozzle",
|
||||
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -24,6 +24,10 @@
|
||||
"Creality Ender-3 0.4 nozzle",
|
||||
"Creality Ender-3 0.6 nozzle",
|
||||
"Creality Ender-3 0.8 nozzle",
|
||||
"Creality Ender-3 Pro 0.2 nozzle",
|
||||
"Creality Ender-3 Pro 0.4 nozzle",
|
||||
"Creality Ender-3 Pro 0.6 nozzle",
|
||||
"Creality Ender-3 Pro 0.8 nozzle",
|
||||
"Creality Ender-3 V2 Neo 0.4 nozzle",
|
||||
"Creality Ender-3 S1 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Pro 0.4 nozzle",
|
||||
|
||||
@@ -6,6 +6,9 @@
|
||||
"setting_id": "GFSN99_01",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Creality K1 (0.4 nozzle)",
|
||||
"Creality K1 (0.6 nozzle)",
|
||||
"Creality K1 (0.8 nozzle)",
|
||||
"Creality K1C 0.4 nozzle",
|
||||
"Creality K1C 0.6 nozzle",
|
||||
"Creality K1C 0.8 nozzle",
|
||||
|
||||
@@ -42,6 +42,41 @@
|
||||
"pressure_advance": [
|
||||
"0.01"
|
||||
],
|
||||
"compatible_printers": [
|
||||
]
|
||||
"compatible_printers": [
|
||||
"Creality CR-10 V2 0.4 nozzle",
|
||||
"Creality CR-10 Max 0.4 nozzle",
|
||||
"Creality CR-6 SE 0.2 nozzle",
|
||||
"Creality CR-6 SE 0.4 nozzle",
|
||||
"Creality CR-6 SE 0.6 nozzle",
|
||||
"Creality CR-6 SE 0.8 nozzle",
|
||||
"Creality CR-6 Max 0.2 nozzle",
|
||||
"Creality CR-6 Max 0.4 nozzle",
|
||||
"Creality CR-6 Max 0.6 nozzle",
|
||||
"Creality CR-6 Max 0.8 nozzle",
|
||||
"Creality Ender-3 0.2 nozzle",
|
||||
"Creality Ender-3 0.4 nozzle",
|
||||
"Creality Ender-3 0.6 nozzle",
|
||||
"Creality Ender-3 0.8 nozzle",
|
||||
"Creality Ender-3 Pro 0.2 nozzle",
|
||||
"Creality Ender-3 Pro 0.4 nozzle",
|
||||
"Creality Ender-3 Pro 0.6 nozzle",
|
||||
"Creality Ender-3 Pro 0.8 nozzle",
|
||||
"Creality Ender-3 V2 0.4 nozzle",
|
||||
"Creality Ender-3 V2 Neo 0.4 nozzle",
|
||||
"Creality Ender-3 S1 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Pro 0.4 nozzle",
|
||||
"Creality Ender-5 0.4 nozzle",
|
||||
"Creality Ender-5 Plus 0.4 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.2 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.25 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.3 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.4 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.5 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.6 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.8 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 1.0 nozzle",
|
||||
"Creality Ender-5S 0.4 nozzle",
|
||||
"Creality Ender-5 S1 0.4 nozzle",
|
||||
"Creality Ender-6 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -18,7 +18,10 @@
|
||||
"nozzle_temperature_initial_layer": ["250"],
|
||||
"nozzle_temperature": ["250"],
|
||||
"compatible_printers": [
|
||||
"Creality Ender-3 V3 SE 0.2 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.4 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.6 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.8 nozzle",
|
||||
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -33,10 +33,18 @@
|
||||
"Creality Ender-3 0.4 nozzle",
|
||||
"Creality Ender-3 0.6 nozzle",
|
||||
"Creality Ender-3 0.8 nozzle",
|
||||
"Creality Ender-3 Pro 0.2 nozzle",
|
||||
"Creality Ender-3 Pro 0.4 nozzle",
|
||||
"Creality Ender-3 Pro 0.6 nozzle",
|
||||
"Creality Ender-3 Pro 0.8 nozzle",
|
||||
"Creality Ender-3 V2 0.4 nozzle",
|
||||
"Creality Ender-3 V2 Neo 0.4 nozzle",
|
||||
"Creality Ender-3 S1 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Pro 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.2 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.6 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.8 nozzle",
|
||||
"Creality Ender-5 0.4 nozzle",
|
||||
"Creality Ender-5 Plus 0.4 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.2 nozzle",
|
||||
@@ -55,7 +63,10 @@
|
||||
"Creality K1 (0.8 nozzle)",
|
||||
"Creality K1 Max (0.4 nozzle)",
|
||||
"Creality K1 Max (0.6 nozzle)",
|
||||
"Creality K1 Max (0.8 nozzle)"
|
||||
|
||||
"Creality K1 Max (0.8 nozzle)",
|
||||
"Creality CR-10 SE 0.2 nozzle",
|
||||
"Creality CR-10 SE 0.4 nozzle",
|
||||
"Creality CR-10 SE 0.6 nozzle",
|
||||
"Creality CR-10 SE 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -7,16 +7,19 @@
|
||||
"inherits": "Creality Generic PLA",
|
||||
"filament_max_volumetric_speed": ["18"],
|
||||
"slow_down_min_speed": ["20"],
|
||||
"cool_plate_temp" : ["45"],
|
||||
"eng_plate_temp" : ["45"],
|
||||
"hot_plate_temp" : ["45"],
|
||||
"textured_plate_temp" : ["45"],
|
||||
"cool_plate_temp_initial_layer" : ["45"],
|
||||
"eng_plate_temp_initial_layer" : ["45"],
|
||||
"hot_plate_temp_initial_layer" : ["45"],
|
||||
"textured_plate_temp_initial_layer" : ["45"],
|
||||
"cool_plate_temp" : ["55"],
|
||||
"eng_plate_temp" : ["55"],
|
||||
"hot_plate_temp" : ["55"],
|
||||
"textured_plate_temp" : ["55"],
|
||||
"cool_plate_temp_initial_layer" : ["55"],
|
||||
"eng_plate_temp_initial_layer" : ["55"],
|
||||
"hot_plate_temp_initial_layer" : ["55"],
|
||||
"textured_plate_temp_initial_layer" : ["55"],
|
||||
"compatible_printers": [
|
||||
"Creality Ender-3 V3 SE 0.2 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.4 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.6 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.8 nozzle",
|
||||
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -9,7 +9,10 @@
|
||||
"23"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Creality Ender-3 V3 SE 0.2 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.4 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.6 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.8 nozzle",
|
||||
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -7,7 +7,10 @@
|
||||
"inherits": "Creality Generic PLA @Ender-3V3-all",
|
||||
"filament_max_volumetric_speed": ["18"],
|
||||
"compatible_printers": [
|
||||
"Creality Ender-3 V3 SE 0.2 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.4 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.6 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.8 nozzle",
|
||||
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -7,7 +7,10 @@
|
||||
"inherits": "Creality Generic PLA @Ender-3V3-all",
|
||||
"filament_max_volumetric_speed": ["7.5"],
|
||||
"compatible_printers": [
|
||||
"Creality Ender-3 V3 SE 0.2 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.4 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.6 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.8 nozzle",
|
||||
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -20,5 +20,41 @@
|
||||
"filament_cost": [
|
||||
"30"
|
||||
],
|
||||
"compatible_printers": []
|
||||
"compatible_printers": [
|
||||
"Creality CR-10 V2 0.4 nozzle",
|
||||
"Creality CR-10 Max 0.4 nozzle",
|
||||
"Creality CR-6 SE 0.2 nozzle",
|
||||
"Creality CR-6 SE 0.4 nozzle",
|
||||
"Creality CR-6 SE 0.6 nozzle",
|
||||
"Creality CR-6 SE 0.8 nozzle",
|
||||
"Creality CR-6 Max 0.2 nozzle",
|
||||
"Creality CR-6 Max 0.4 nozzle",
|
||||
"Creality CR-6 Max 0.6 nozzle",
|
||||
"Creality CR-6 Max 0.8 nozzle",
|
||||
"Creality Ender-3 0.2 nozzle",
|
||||
"Creality Ender-3 0.4 nozzle",
|
||||
"Creality Ender-3 0.6 nozzle",
|
||||
"Creality Ender-3 0.8 nozzle",
|
||||
"Creality Ender-3 Pro 0.2 nozzle",
|
||||
"Creality Ender-3 Pro 0.4 nozzle",
|
||||
"Creality Ender-3 Pro 0.6 nozzle",
|
||||
"Creality Ender-3 Pro 0.8 nozzle",
|
||||
"Creality Ender-3 V2 0.4 nozzle",
|
||||
"Creality Ender-3 V2 Neo 0.4 nozzle",
|
||||
"Creality Ender-3 S1 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Pro 0.4 nozzle",
|
||||
"Creality Ender-5 0.4 nozzle",
|
||||
"Creality Ender-5 Plus 0.4 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.2 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.25 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.3 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.4 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.5 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.6 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.8 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 1.0 nozzle",
|
||||
"Creality Ender-5S 0.4 nozzle",
|
||||
"Creality Ender-5 S1 0.4 nozzle",
|
||||
"Creality Ender-6 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -24,10 +24,18 @@
|
||||
"Creality Ender-3 0.4 nozzle",
|
||||
"Creality Ender-3 0.6 nozzle",
|
||||
"Creality Ender-3 0.8 nozzle",
|
||||
"Creality Ender-3 Pro 0.2 nozzle",
|
||||
"Creality Ender-3 Pro 0.4 nozzle",
|
||||
"Creality Ender-3 Pro 0.6 nozzle",
|
||||
"Creality Ender-3 Pro 0.8 nozzle",
|
||||
"Creality Ender-3 V2 0.4 nozzle",
|
||||
"Creality Ender-3 V2 Neo 0.4 nozzle",
|
||||
"Creality Ender-3 S1 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Pro 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.2 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.4 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.6 nozzle",
|
||||
"Creality Ender-3 S1 Plus 0.8 nozzle",
|
||||
"Creality Ender-5 0.4 nozzle",
|
||||
"Creality Ender-5 Plus 0.4 nozzle",
|
||||
"Creality Ender-5 Pro (2019) 0.2 nozzle",
|
||||
@@ -46,6 +54,10 @@
|
||||
"Creality K1 (0.8 nozzle)",
|
||||
"Creality K1 Max (0.4 nozzle)",
|
||||
"Creality K1 Max (0.6 nozzle)",
|
||||
"Creality K1 Max (0.8 nozzle)"
|
||||
"Creality K1 Max (0.8 nozzle)",
|
||||
"Creality CR-10 SE 0.2 nozzle",
|
||||
"Creality CR-10 SE 0.4 nozzle",
|
||||
"Creality CR-10 SE 0.6 nozzle",
|
||||
"Creality CR-10 SE 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,20 +1,23 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "GFU99_CREALITY_00",
|
||||
"name": "Creality Generic TPU @Ender-3V3-all",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Creality Generic TPU",
|
||||
"hot_plate_temp": ["30"],
|
||||
"hot_plate_temp_initial_layer": ["30"],
|
||||
"textured_plate_temp": ["30"],
|
||||
"textured_plate_temp_initial_layer": ["30"],
|
||||
"nozzle_temperature_initial_layer": ["230"],
|
||||
"nozzle_temperature": ["230"],
|
||||
"filament_max_volumetric_speed": ["3.5"],
|
||||
"slow_down_layer_time": ["5"],
|
||||
"compatible_printers": [
|
||||
"Creality Ender-3 V3 SE 0.4 nozzle",
|
||||
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||
]
|
||||
"type": "filament",
|
||||
"setting_id": "GFU99_CREALITY_00",
|
||||
"name": "Creality Generic TPU @Ender-3V3-all",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Creality Generic TPU",
|
||||
"hot_plate_temp": ["30"],
|
||||
"hot_plate_temp_initial_layer": ["30"],
|
||||
"textured_plate_temp": ["30"],
|
||||
"textured_plate_temp_initial_layer": ["30"],
|
||||
"nozzle_temperature_initial_layer": ["230"],
|
||||
"nozzle_temperature": ["230"],
|
||||
"filament_max_volumetric_speed": ["3.5"],
|
||||
"slow_down_layer_time": ["5"],
|
||||
"compatible_printers": [
|
||||
"Creality Ender-3 V3 SE 0.2 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.4 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.6 nozzle",
|
||||
"Creality Ender-3 V3 SE 0.8 nozzle",
|
||||
"Creality Ender-3 V3 KE 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -15,6 +15,10 @@
|
||||
"Creality K1 (0.8 nozzle)",
|
||||
"Creality K1 Max (0.4 nozzle)",
|
||||
"Creality K1 Max (0.6 nozzle)",
|
||||
"Creality K1 Max (0.8 nozzle)"
|
||||
"Creality K1 Max (0.8 nozzle)",
|
||||
"Creality CR-10 SE 0.2 nozzle",
|
||||
"Creality CR-10 SE 0.4 nozzle",
|
||||
"Creality CR-10 SE 0.6 nozzle",
|
||||
"Creality CR-10 SE 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -24,6 +24,10 @@
|
||||
"Creality K1 (0.8 nozzle)",
|
||||
"Creality K1 Max (0.4 nozzle)",
|
||||
"Creality K1 Max (0.6 nozzle)",
|
||||
"Creality K1 Max (0.8 nozzle)"
|
||||
"Creality K1 Max (0.8 nozzle)",
|
||||
"Creality CR-10 SE 0.2 nozzle",
|
||||
"Creality CR-10 SE 0.4 nozzle",
|
||||
"Creality CR-10 SE 0.6 nozzle",
|
||||
"Creality CR-10 SE 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -18,6 +18,10 @@
|
||||
"Creality K1 (0.8 nozzle)",
|
||||
"Creality K1 Max (0.4 nozzle)",
|
||||
"Creality K1 Max (0.6 nozzle)",
|
||||
"Creality K1 Max (0.8 nozzle)"
|
||||
"Creality K1 Max (0.8 nozzle)",
|
||||
"Creality CR-10 SE 0.2 nozzle",
|
||||
"Creality CR-10 SE 0.4 nozzle",
|
||||
"Creality CR-10 SE 0.6 nozzle",
|
||||
"Creality CR-10 SE 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,128 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality CR-10 SE 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality CR-10 SE",
|
||||
"printer_variant": "0.2",
|
||||
"printer_structure": "i3",
|
||||
"gcode_flavor": "klipper",
|
||||
"default_print_profile": "0.20mm Standard @Creality CR10SE 0.2",
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"extruder_clearance_height_to_rod": "36",
|
||||
"extruder_clearance_height_to_lid": "140",
|
||||
"extruder_clearance_radius": "65",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"support_air_filtration": "1",
|
||||
"support_chamber_temp_control": "1",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.2",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM109 S[material_print_temperature_layer_0] \nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800",
|
||||
"machine_end_gcode": "G91 ;Relative positioning \nG1 E-2 F2700 ;Retract a bit \nG1 E-2 Z0.2 F2400 ;Retract and raise Z \nG1 X5 Y5 F3000 ;Wipe out \nG1 Z3 ;Raise Z more \nG90 ;Absolute positioning \nG1 X2 Y218 F3000 ;Present print \nM106 S0 ;Turn-off fan \nM104 S0 ;Turn-off hotend \nM140 S0 ;Turn-off bed \nM84 X Y E ;Disable all steppers but Z",
|
||||
"scan_first_layer": "0",
|
||||
"thumbnails": [
|
||||
"96x96",
|
||||
"300x300"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,128 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality CR-10 SE 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality CR-10 SE",
|
||||
"printer_variant": "0.4",
|
||||
"printer_structure": "i3",
|
||||
"gcode_flavor": "klipper",
|
||||
"default_print_profile": "0.20mm Standard @Creality CR10SE 0.4",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"extruder_clearance_height_to_rod": "36",
|
||||
"extruder_clearance_height_to_lid": "140",
|
||||
"extruder_clearance_radius": "65",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"support_air_filtration": "1",
|
||||
"support_chamber_temp_control": "1",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.2",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM109 S[material_print_temperature_layer_0] \nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800",
|
||||
"machine_end_gcode": "G91 ;Relative positioning \nG1 E-2 F2700 ;Retract a bit \nG1 E-2 Z0.2 F2400 ;Retract and raise Z \nG1 X5 Y5 F3000 ;Wipe out \nG1 Z3 ;Raise Z more \nG90 ;Absolute positioning \nG1 X2 Y218 F3000 ;Present print \nM106 S0 ;Turn-off fan \nM104 S0 ;Turn-off hotend \nM140 S0 ;Turn-off bed \nM84 X Y E ;Disable all steppers but Z",
|
||||
"scan_first_layer": "0",
|
||||
"thumbnails": [
|
||||
"96x96",
|
||||
"300x300"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,128 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality CR-10 SE 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality CR-10 SE",
|
||||
"printer_variant": "0.6",
|
||||
"printer_structure": "i3",
|
||||
"gcode_flavor": "klipper",
|
||||
"default_print_profile": "0.20mm Standard @Creality CR10SE 0.6",
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"extruder_clearance_height_to_rod": "36",
|
||||
"extruder_clearance_height_to_lid": "140",
|
||||
"extruder_clearance_radius": "65",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"support_air_filtration": "1",
|
||||
"support_chamber_temp_control": "1",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.2",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM109 S[material_print_temperature_layer_0] \nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800",
|
||||
"machine_end_gcode": "G91 ;Relative positioning \nG1 E-2 F2700 ;Retract a bit \nG1 E-2 Z0.2 F2400 ;Retract and raise Z \nG1 X5 Y5 F3000 ;Wipe out \nG1 Z3 ;Raise Z more \nG90 ;Absolute positioning \nG1 X2 Y218 F3000 ;Present print \nM106 S0 ;Turn-off fan \nM104 S0 ;Turn-off hotend \nM140 S0 ;Turn-off bed \nM84 X Y E ;Disable all steppers but Z",
|
||||
"scan_first_layer": "0",
|
||||
"thumbnails": [
|
||||
"96x96",
|
||||
"300x300"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,128 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality CR-10 SE 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality CR-10 SE",
|
||||
"printer_variant": "0.8",
|
||||
"printer_structure": "i3",
|
||||
"gcode_flavor": "klipper",
|
||||
"default_print_profile": "0.20mm Standard @Creality CR10SE 0.8",
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"extruder_clearance_height_to_rod": "36",
|
||||
"extruder_clearance_height_to_lid": "140",
|
||||
"extruder_clearance_radius": "65",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"support_air_filtration": "1",
|
||||
"support_chamber_temp_control": "1",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"25",
|
||||
"25"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"12",
|
||||
"12"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"9",
|
||||
"9"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.2",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"30"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "M220 S100 ;Reset feed rate \nM221 S100 ;Reset flow rate \nG28 ;Home \nG92 E0 ;Reset extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position \nM109 S[material_print_temperature_layer_0] \nG1 X10.1 Y145.0 Z0.28 F1500.0 E15 ;Draw the first line \nG1 X10.4 Y145.0 Z0.28 F5000.0 ;Move to side a little \nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line \nG92 E0 ;Reset extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800",
|
||||
"machine_end_gcode": "G91 ;Relative positioning \nG1 E-2 F2700 ;Retract a bit \nG1 E-2 Z0.2 F2400 ;Retract and raise Z \nG1 X5 Y5 F3000 ;Wipe out \nG1 Z3 ;Raise Z more \nG90 ;Absolute positioning \nG1 X2 Y218 F3000 ;Present print \nM106 S0 ;Turn-off fan \nM104 S0 ;Turn-off hotend \nM140 S0 ;Turn-off bed \nM84 X Y E ;Disable all steppers but Z",
|
||||
"scan_first_layer": "0",
|
||||
"thumbnails": [
|
||||
"96x96",
|
||||
"300x300"
|
||||
]
|
||||
}
|
||||
12
resources/profiles/Creality/machine/Creality CR-10 SE.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Creality CR-10 SE",
|
||||
"model_id": "Creality-CR-10SE",
|
||||
"nozzle_diameter": "0.2;0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Creality",
|
||||
"bed_model": "creality_cr10se_buildplate_model.stl",
|
||||
"bed_texture": "creality_cr10se_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Creality Generic PLA;Creality HF Generic PLA;Creality HF Generic Speed PLA;Creality Generic PETG;Creality Generic TPU;Creality Generic ABS"
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality Ender-3 Pro 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality Ender-3 Pro",
|
||||
"printer_variant": "0.2",
|
||||
"printer_structure": "i3",
|
||||
"default_print_profile": "0.20mm Standard @Creality Ender3 Pro 0.2",
|
||||
"thumbnails": [""],
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"220x0",
|
||||
"220x220",
|
||||
"0x220"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"extruder_clearance_height_to_rod": "25",
|
||||
"extruder_clearance_height_to_lid": "25",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000",
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"1500",
|
||||
"1250"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60",
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5",
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"4"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM140 S[bed_temperature_initial_layer_single] ; set final bed temp\nM104 S150 ; set temporary nozzle temp to prevent oozing during homing\nG4 S10 ; allow partial nozzle warmup\nG28 ; home all axis\nG1 Z50 F240\nG1 X2 Y10 F3000\nM104 S[nozzle_temperature_initial_layer] ; set final nozzle temp\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ; wait for nozzle temp to stabilize\nG1 Z0.28 F240\nG92 E0\nG1 Y140 E10 F1500 ; prime the nozzle\nG1 X2.3 F5000\nG92 E0\nG1 Y10 E10 F1200 ; prime the nozzle\nG92 E0",
|
||||
"machine_end_gcode": "{if max_layer_z < printable_height}G1 Z{z_offset+min(max_layer_z+2, printable_height)} F600 ; Move print head up{endif}\nG1 X5 Y{print_bed_max[1]*0.8} F{travel_speed*60} ; present print\n{if max_layer_z < printable_height-10}G1 Z{z_offset+min(max_layer_z+70, printable_height-10)} F600 ; Move print head further up{endif}\n{if max_layer_z < max_print_height*0.6}G1 Z{printable_height*0.6} F600 ; Move print head further up{endif}\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM107 ; turn off fan\nM84 X Y E ; disable motors",
|
||||
"scan_first_layer": "0"
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality Ender-3 Pro 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality Ender-3 Pro",
|
||||
"printer_variant": "0.4",
|
||||
"printer_structure": "i3",
|
||||
"default_print_profile": "0.20mm Standard @Creality Ender3 Pro 0.4",
|
||||
"thumbnails": [""],
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"220x0",
|
||||
"220x220",
|
||||
"0x220"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"extruder_clearance_height_to_rod": "25",
|
||||
"extruder_clearance_height_to_lid": "25",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000",
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"1500",
|
||||
"1250"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60",
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5",
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"4"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM140 S[bed_temperature_initial_layer_single] ; set final bed temp\nM104 S150 ; set temporary nozzle temp to prevent oozing during homing\nG4 S10 ; allow partial nozzle warmup\nG28 ; home all axis\nG1 Z50 F240\nG1 X2 Y10 F3000\nM104 S[nozzle_temperature_initial_layer] ; set final nozzle temp\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ; wait for nozzle temp to stabilize\nG1 Z0.28 F240\nG92 E0\nG1 Y140 E10 F1500 ; prime the nozzle\nG1 X2.3 F5000\nG92 E0\nG1 Y10 E10 F1200 ; prime the nozzle\nG92 E0",
|
||||
"machine_end_gcode": "{if max_layer_z < printable_height}G1 Z{z_offset+min(max_layer_z+2, printable_height)} F600 ; Move print head up{endif}\nG1 X5 Y{print_bed_max[1]*0.8} F{travel_speed*60} ; present print\n{if max_layer_z < printable_height-10}G1 Z{z_offset+min(max_layer_z+70, printable_height-10)} F600 ; Move print head further up{endif}\n{if max_layer_z < max_print_height*0.6}G1 Z{printable_height*0.6} F600 ; Move print head further up{endif}\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM107 ; turn off fan\nM84 X Y E ; disable motors",
|
||||
"scan_first_layer": "0"
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality Ender-3 Pro 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality Ender-3 Pro",
|
||||
"printer_variant": "0.6",
|
||||
"printer_structure": "i3",
|
||||
"default_print_profile": "0.20mm Standard @Creality Ender3 Pro 0.6",
|
||||
"thumbnails": [""],
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"220x0",
|
||||
"220x220",
|
||||
"0x220"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"extruder_clearance_height_to_rod": "25",
|
||||
"extruder_clearance_height_to_lid": "25",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000",
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"1500",
|
||||
"1250"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60",
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5",
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"4"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM140 S[bed_temperature_initial_layer_single] ; set final bed temp\nM104 S150 ; set temporary nozzle temp to prevent oozing during homing\nG4 S10 ; allow partial nozzle warmup\nG28 ; home all axis\nG1 Z50 F240\nG1 X2 Y10 F3000\nM104 S[nozzle_temperature_initial_layer] ; set final nozzle temp\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ; wait for nozzle temp to stabilize\nG1 Z0.28 F240\nG92 E0\nG1 Y140 E10 F1500 ; prime the nozzle\nG1 X2.3 F5000\nG92 E0\nG1 Y10 E10 F1200 ; prime the nozzle\nG92 E0",
|
||||
"machine_end_gcode": "{if max_layer_z < printable_height}G1 Z{z_offset+min(max_layer_z+2, printable_height)} F600 ; Move print head up{endif}\nG1 X5 Y{print_bed_max[1]*0.8} F{travel_speed*60} ; present print\n{if max_layer_z < printable_height-10}G1 Z{z_offset+min(max_layer_z+70, printable_height-10)} F600 ; Move print head further up{endif}\n{if max_layer_z < max_print_height*0.6}G1 Z{printable_height*0.6} F600 ; Move print head further up{endif}\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM107 ; turn off fan\nM84 X Y E ; disable motors",
|
||||
"scan_first_layer": "0"
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality Ender-3 Pro 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality Ender-3 Pro",
|
||||
"printer_variant": "0.8",
|
||||
"printer_structure": "i3",
|
||||
"default_print_profile": "0.20mm Standard @Creality Ender3 Pro 0.8",
|
||||
"thumbnails": [""],
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"220x0",
|
||||
"220x220",
|
||||
"0x220"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"extruder_clearance_height_to_rod": "25",
|
||||
"extruder_clearance_height_to_lid": "25",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000",
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"1500",
|
||||
"1250"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60",
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5",
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"4"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM140 S[bed_temperature_initial_layer_single] ; set final bed temp\nM104 S150 ; set temporary nozzle temp to prevent oozing during homing\nG4 S10 ; allow partial nozzle warmup\nG28 ; home all axis\nG1 Z50 F240\nG1 X2 Y10 F3000\nM104 S[nozzle_temperature_initial_layer] ; set final nozzle temp\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ; wait for nozzle temp to stabilize\nG1 Z0.28 F240\nG92 E0\nG1 Y140 E10 F1500 ; prime the nozzle\nG1 X2.3 F5000\nG92 E0\nG1 Y10 E10 F1200 ; prime the nozzle\nG92 E0",
|
||||
"machine_end_gcode": "{if max_layer_z < printable_height}G1 Z{z_offset+min(max_layer_z+2, printable_height)} F600 ; Move print head up{endif}\nG1 X5 Y{print_bed_max[1]*0.8} F{travel_speed*60} ; present print\n{if max_layer_z < printable_height-10}G1 Z{z_offset+min(max_layer_z+70, printable_height-10)} F600 ; Move print head further up{endif}\n{if max_layer_z < max_print_height*0.6}G1 Z{printable_height*0.6} F600 ; Move print head further up{endif}\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM107 ; turn off fan\nM84 X Y E ; disable motors",
|
||||
"scan_first_layer": "0"
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Creality Ender-3 Pro",
|
||||
"model_id": "Creality-Ender3-Pro",
|
||||
"nozzle_diameter": "0.2;0.4;0.6;0.8",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Creality",
|
||||
"bed_model": "creality_ender3v2_buildplate_model.stl",
|
||||
"bed_texture": "creality_ender3v2_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Creality Generic PLA;Creality Generic PETG;Creality Generic ABS"
|
||||
}
|
||||
@@ -0,0 +1,117 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality Ender-3 S1 Plus 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality Ender-3 S1 Plus",
|
||||
"printer_variant": "0.2",
|
||||
"printer_structure": "i3",
|
||||
"default_print_profile": "0.20mm Standard @Creality Ender3S1Plus 0.2",
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "300",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000",
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60",
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5",
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.4"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"z_hop": [
|
||||
"0"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S150 ; set temporary nozzle temp to prevent oozing during homing\nM140 S[bed_temperature_initial_layer_single] ; set final bed temp\nG4 S30 ; allow partial nozzle warmup\nG28 ; home all axis and restore leveling \nM420 S1; Enable mesh leveling\nG1 Z50 F240\nG1 X2.0 Y10 F3000\nM104 S[nozzle_temperature_initial_layer] ; set final nozzle temp\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ; wait for nozzle temp to stabilize\nG1 Z0.28 F240\nG92 E0\nG1 X2.0 Y140 E10 F1500 ; prime the nozzle\nG1 X2.3 Y140 F5000\nG92 E0\nG1 X2.3 Y10 E10 F1200 ; prime the nozzle\nG92 E0",
|
||||
"machine_end_gcode": "{if max_layer_z < printable_height}G1 Z{z_offset+min(max_layer_z+2, printable_height)} F600 ; Move print head up{endif}\nG1 X5 Y{print_bed_max[1]*0.8} F{travel_speed*60} ; present print\n{if max_layer_z < printable_height-10}G1 Z{z_offset+min(max_layer_z+70, printable_height-10)} F600 ; Move print head further up{endif}\n{if max_layer_z < max_print_height*0.6}G1 Z{printable_height*0.6} F600 ; Move print head further up{endif}\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM107 ; turn off fan\nM84 X Y E ; disable motors",
|
||||
"scan_first_layer": "0"
|
||||
}
|
||||
@@ -0,0 +1,117 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality Ender-3 S1 Plus 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality Ender-3 S1 Plus",
|
||||
"printer_variant": "0.4",
|
||||
"printer_structure": "i3",
|
||||
"default_print_profile": "0.20mm Standard @Creality Ender3S1Plus 0.4",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "300",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000",
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60",
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5",
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.4"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"z_hop": [
|
||||
"0"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S150 ; set temporary nozzle temp to prevent oozing during homing\nM140 S[bed_temperature_initial_layer_single] ; set final bed temp\nG4 S30 ; allow partial nozzle warmup\nG28 ; home all axis and restore leveling\nM420 S1; Enable mesh leveling\nG1 Z50 F240\nG1 X2.0 Y10 F3000\nM104 S[nozzle_temperature_initial_layer] ; set final nozzle temp\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ; wait for nozzle temp to stabilize\nG1 Z0.28 F240\nG92 E0\nG1 X2.0 Y140 E10 F1500 ; prime the nozzle\nG1 X2.3 Y140 F5000\nG92 E0\nG1 X2.3 Y10 E10 F1200 ; prime the nozzle\nG92 E0",
|
||||
"machine_end_gcode": "{if max_layer_z < printable_height}G1 Z{z_offset+min(max_layer_z+2, printable_height)} F600 ; Move print head up{endif}\nG1 X5 Y{print_bed_max[1]*0.8} F{travel_speed*60} ; present print\n{if max_layer_z < printable_height-10}G1 Z{z_offset+min(max_layer_z+70, printable_height-10)} F600 ; Move print head further up{endif}\n{if max_layer_z < max_print_height*0.6}G1 Z{printable_height*0.6} F600 ; Move print head further up{endif}\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM107 ; turn off fan\nM84 X Y E ; disable motors",
|
||||
"scan_first_layer": "0"
|
||||
}
|
||||
@@ -0,0 +1,117 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality Ender-3 S1 Plus 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality Ender-3 S1 Plus",
|
||||
"printer_variant": "0.6",
|
||||
"printer_structure": "i3",
|
||||
"default_print_profile": "0.20mm Standard @Creality Ender3S1Plus 0.6",
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "300",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000",
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60",
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5",
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.4"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"z_hop": [
|
||||
"0"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S150 ; set temporary nozzle temp to prevent oozing during homing\nM140 S[bed_temperature_initial_layer_single] ; set final bed temp\nG4 S30 ; allow partial nozzle warmup\nG28 ; home all axis and restore leveling\nM420 S1; Enable mesh leveling\nG1 Z50 F240\nG1 X2.0 Y10 F3000\nM104 S[nozzle_temperature_initial_layer] ; set final nozzle temp\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ; wait for nozzle temp to stabilize\nG1 Z0.28 F240\nG92 E0\nG1 X2.0 Y140 E10 F1500 ; prime the nozzle\nG1 X2.3 Y140 F5000\nG92 E0\nG1 X2.3 Y10 E10 F1200 ; prime the nozzle\nG92 E0",
|
||||
"machine_end_gcode": "{if max_layer_z < printable_height}G1 Z{z_offset+min(max_layer_z+2, printable_height)} F600 ; Move print head up{endif}\nG1 X5 Y{print_bed_max[1]*0.8} F{travel_speed*60} ; present print\n{if max_layer_z < printable_height-10}G1 Z{z_offset+min(max_layer_z+70, printable_height-10)} F600 ; Move print head further up{endif}\n{if max_layer_z < max_print_height*0.6}G1 Z{printable_height*0.6} F600 ; Move print head further up{endif}\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM107 ; turn off fan\nM84 X Y E ; disable motors",
|
||||
"scan_first_layer": "0"
|
||||
}
|
||||
@@ -0,0 +1,117 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Creality Ender-3 S1 Plus 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality Ender-3 S1 Plus",
|
||||
"printer_variant": "0.8",
|
||||
"printer_structure": "i3",
|
||||
"default_print_profile": "0.20mm Standard @Creality Ender3S1Plus 0.8",
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"3000x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "300",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000",
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60",
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5",
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.36"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.4"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"45"
|
||||
],
|
||||
"z_hop": [
|
||||
"0"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S150 ; set temporary nozzle temp to prevent oozing during homing\nM140 S[bed_temperature_initial_layer_single] ; set final bed temp\nG4 S30 ; allow partial nozzle warmup\nG28 ; home all axis and restore leveling\nM420 S1; Enable mesh leveling\nG1 Z50 F240\nG1 X2.0 Y10 F3000\nM104 S[nozzle_temperature_initial_layer] ; set final nozzle temp\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp to stabilize\nM109 S[nozzle_temperature_initial_layer] ; wait for nozzle temp to stabilize\nG1 Z0.28 F240\nG92 E0\nG1 X2.0 Y140 E10 F1500 ; prime the nozzle\nG1 X2.3 Y140 F5000\nG92 E0\nG1 X2.3 Y10 E10 F1200 ; prime the nozzle\nG92 E0",
|
||||
"machine_end_gcode": "{if max_layer_z < printable_height}G1 Z{z_offset+min(max_layer_z+2, printable_height)} F600 ; Move print head up{endif}\nG1 X5 Y{print_bed_max[1]*0.8} F{travel_speed*60} ; present print\n{if max_layer_z < printable_height-10}G1 Z{z_offset+min(max_layer_z+70, printable_height-10)} F600 ; Move print head further up{endif}\n{if max_layer_z < max_print_height*0.6}G1 Z{printable_height*0.6} F600 ; Move print head further up{endif}\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM107 ; turn off fan\nM84 X Y E ; disable motors",
|
||||
"scan_first_layer": "0"
|
||||
}
|
||||