Merge mainstream changes
227
BuildLinux.sh
Executable file
|
@ -0,0 +1,227 @@
|
|||
#!/bin/bash
|
||||
set -e # exit on first error
|
||||
|
||||
export ROOT=`pwd`
|
||||
export NCORES=`nproc --all`
|
||||
FOUND_GTK2=$(dpkg -l libgtk* | grep gtk2)
|
||||
FOUND_GTK3=$(dpkg -l libgtk* | grep gtk-3)
|
||||
|
||||
unset name
|
||||
while getopts ":dsiuhgb" opt; do
|
||||
case ${opt} in
|
||||
u )
|
||||
UPDATE_LIB="1"
|
||||
;;
|
||||
i )
|
||||
BUILD_IMAGE="1"
|
||||
;;
|
||||
d )
|
||||
BUILD_DEPS="1"
|
||||
;;
|
||||
s )
|
||||
BUILD_BAMBU_STUDIO="1"
|
||||
;;
|
||||
b )
|
||||
BUILD_DEBUG="1"
|
||||
;;
|
||||
g )
|
||||
FOUND_GTK3=""
|
||||
;;
|
||||
h ) echo "Usage: ./BuildLinux.sh [-i][-u][-d][-s][-b][-g]"
|
||||
echo " -i: Generate appimage (optional)"
|
||||
echo " -g: force gtk2 build"
|
||||
echo " -b: build in debug mode"
|
||||
echo " -d: build deps (optional)"
|
||||
echo " -s: build bambu-studio (optional)"
|
||||
echo " -u: only update clock & dependency packets (optional and need sudo)"
|
||||
echo "For a first use, you want to 'sudo ./BuildLinux.sh -u'"
|
||||
echo " and then './BuildLinux.sh -dsi'"
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ $OPTIND -eq 1 ]
|
||||
then
|
||||
echo "Usage: ./BuildLinux.sh [-i][-u][-d][-s][-b][-g]"
|
||||
echo " -i: Generate appimage (optional)"
|
||||
echo " -g: force gtk2 build"
|
||||
echo " -b: build in debug mode"
|
||||
echo " -d: build deps (optional)"
|
||||
echo " -s: build bambu-studio (optional)"
|
||||
echo " -u: only update clock & dependency packets (optional and need sudo)"
|
||||
echo "For a first use, you want to 'sudo ./BuildLinux.sh -u'"
|
||||
echo " and then './BuildLinux.sh -dsi'"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# mkdir build
|
||||
if [ ! -d "build" ]
|
||||
then
|
||||
mkdir build
|
||||
fi
|
||||
|
||||
# Addtional Dev packages for BambuStudio
|
||||
export REQUIRED_DEV_PACKAGES="libmspack-dev libgstreamerd-3-dev libsecret-1-dev libwebkit2gtk-4.0-dev libosmesa6-dev libssl-dev libcurl4-openssl-dev eglexternalplatform-dev libudev-dev libdbus-1-dev extra-cmake-modules"
|
||||
# libwebkit2gtk-4.1-dev ??
|
||||
export DEV_PACKAGES_COUNT=$(echo ${REQUIRED_DEV_PACKAGES} | wc -w)
|
||||
if [ $(dpkg --get-selections | grep -E "$(echo ${REQUIRED_DEV_PACKAGES} | tr ' ' '|')" | wc -l) -lt ${DEV_PACKAGES_COUNT} ]; then
|
||||
sudo apt install -y ${REQUIRED_DEV_PACKAGES} git cmake wget file
|
||||
fi
|
||||
|
||||
#FIXME: require root for -u option
|
||||
if [[ -n "$UPDATE_LIB" ]]
|
||||
then
|
||||
echo -n -e "Updating linux ...\n"
|
||||
# hwclock -s # DeftDawg: Why does SuperSlicer want to do this?
|
||||
apt update
|
||||
if [[ -z "$FOUND_GTK3" ]]
|
||||
then
|
||||
echo -e "\nInstalling: libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev cmake git\n"
|
||||
apt install -y libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev cmake git
|
||||
else
|
||||
echo -e "\nFind libgtk-3, installing: libgtk-3-dev libglew-dev libudev-dev libdbus-1-dev cmake git\n"
|
||||
apt install -y libgtk-3-dev libglew-dev libudev-dev libdbus-1-dev cmake git
|
||||
fi
|
||||
# for ubuntu 22.04:
|
||||
ubu_version="$(cat /etc/issue)"
|
||||
if [[ $ubu_version == "Ubuntu 22.04"* ]]
|
||||
then
|
||||
apt install -y curl libssl-dev libcurl4-openssl-dev m4
|
||||
fi
|
||||
if [[ -n "$BUILD_DEBUG" ]]
|
||||
then
|
||||
echo -e "\nInstalling: libssl-dev libcurl4-openssl-dev\n"
|
||||
apt install -y libssl-dev libcurl4-openssl-dev
|
||||
fi
|
||||
echo -e "done\n"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
FOUND_GTK2_DEV=$(dpkg -l libgtk* | grep gtk2.0-dev || echo '')
|
||||
FOUND_GTK3_DEV=$(dpkg -l libgtk* | grep gtk-3-dev || echo '')
|
||||
echo "FOUND_GTK2=$FOUND_GTK2)"
|
||||
if [[ -z "$FOUND_GTK2_DEV" ]]
|
||||
then
|
||||
if [[ -z "$FOUND_GTK3_DEV" ]]
|
||||
then
|
||||
echo "Error, you must install the dependencies before."
|
||||
echo "Use option -u with sudo"
|
||||
exit 0
|
||||
fi
|
||||
fi
|
||||
|
||||
echo "[1/9] Updating submodules..."
|
||||
{
|
||||
# update submodule profiles
|
||||
pushd resources/profiles
|
||||
git submodule update --init
|
||||
popd
|
||||
}
|
||||
|
||||
echo "[2/9] Changing date in version..."
|
||||
{
|
||||
# change date in version
|
||||
sed -i "s/+UNKNOWN/_$(date '+%F')/" version.inc
|
||||
}
|
||||
echo "done"
|
||||
|
||||
# mkdir in deps
|
||||
if [ ! -d "deps/build" ]
|
||||
then
|
||||
mkdir deps/build
|
||||
fi
|
||||
|
||||
if [[ -n "$BUILD_DEPS" ]]
|
||||
then
|
||||
echo "[3/9] Configuring dependencies..."
|
||||
BUILD_ARGS=""
|
||||
if [[ -n "$FOUND_GTK3_DEV" ]]
|
||||
then
|
||||
BUILD_ARGS="-DDEP_WX_GTK3=ON"
|
||||
fi
|
||||
if [[ -n "$BUILD_DEBUG" ]]
|
||||
then
|
||||
# have to build deps with debug & release or the cmake won't find evrything it needs
|
||||
mkdir deps/build/release
|
||||
pushd deps/build/release
|
||||
cmake ../.. -DDESTDIR="../destdir" $BUILD_ARGS
|
||||
make -j$NCORES
|
||||
popd
|
||||
BUILD_ARGS="${BUILD_ARGS} -DCMAKE_BUILD_TYPE=Debug"
|
||||
fi
|
||||
|
||||
# cmake deps
|
||||
pushd deps/build
|
||||
cmake .. $BUILD_ARGS
|
||||
echo "done"
|
||||
|
||||
# make deps
|
||||
echo "[4/9] Building dependencies..."
|
||||
make -j$NCORES
|
||||
echo "done"
|
||||
|
||||
# rename wxscintilla # TODO: DeftDawg: Does BambuStudio need this?
|
||||
# echo "[5/9] Renaming wxscintilla library..."
|
||||
# pushd destdir/usr/local/lib
|
||||
# if [[ -z "$FOUND_GTK3_DEV" ]]
|
||||
# then
|
||||
# cp libwxscintilla-3.1.a libwx_gtk2u_scintilla-3.1.a
|
||||
# else
|
||||
# cp libwxscintilla-3.1.a libwx_gtk3u_scintilla-3.1.a
|
||||
# fi
|
||||
# popd
|
||||
# echo "done"
|
||||
|
||||
# FIXME: only clean deps if compiling succeeds; otherwise reruns waste tonnes of time!
|
||||
# clean deps
|
||||
# echo "[6/9] Cleaning dependencies..."
|
||||
# rm -rf dep_*
|
||||
popd
|
||||
echo "done"
|
||||
fi
|
||||
|
||||
if [[ -n "$BUILD_BAMBU_STUDIO" ]]
|
||||
then
|
||||
echo "[7/9] Configuring Slic3r..."
|
||||
BUILD_ARGS=""
|
||||
if [[ -n "$FOUND_GTK3_DEV" ]]
|
||||
then
|
||||
BUILD_ARGS="-DSLIC3R_GTK=3"
|
||||
fi
|
||||
if [[ -n "$BUILD_DEBUG" ]]
|
||||
then
|
||||
BUILD_ARGS="${BUILD_ARGS} -DCMAKE_BUILD_TYPE=Debug"
|
||||
fi
|
||||
|
||||
# cmake
|
||||
pushd build
|
||||
cmake .. -DCMAKE_PREFIX_PATH="$PWD/../deps/build/destdir/usr/local" -DSLIC3R_STATIC=1 ${BUILD_ARGS}
|
||||
echo "done"
|
||||
|
||||
# make Slic3r
|
||||
echo "[8/9] Building Slic3r..."
|
||||
make -j$NCORES BambuStudio # Slic3r
|
||||
|
||||
# make .mo
|
||||
# make gettext_po_to_mo # FIXME: DeftDawg: complains about msgfmt not existing even in SuperSlicer, did this ever work?
|
||||
|
||||
popd
|
||||
echo "done"
|
||||
fi
|
||||
|
||||
if [[ -e $ROOT/build/src/BuildLinuxImage.sh ]]; then
|
||||
# Give proper permissions to script
|
||||
chmod 755 $ROOT/build/src/BuildLinuxImage.sh
|
||||
|
||||
echo "[9/9] Generating Linux app..."
|
||||
pushd build
|
||||
if [[ -n "$BUILD_IMAGE" ]]
|
||||
then
|
||||
$ROOT/build/src/BuildLinuxImage.sh -i
|
||||
else
|
||||
$ROOT/build/src/BuildLinuxImage.sh
|
||||
fi
|
||||
popd
|
||||
echo "done"
|
||||
fi
|
|
@ -675,6 +675,11 @@ if(SLIC3R_BUILD_TESTS)
|
|||
add_subdirectory(tests)
|
||||
endif()
|
||||
|
||||
if (NOT WIN32 AND NOT APPLE)
|
||||
set(SLIC3R_APP_CMD "bambu-studio")
|
||||
configure_file(${LIBDIR}/platform/unix/build_appimage.sh.in ${CMAKE_CURRENT_BINARY_DIR}/build_appimage.sh @ONLY)
|
||||
endif()
|
||||
|
||||
option(BUILD_BBS_TEST_TOOLS "Build bbs test tools" OFF)
|
||||
if(BUILD_BBS_TEST_TOOLS)
|
||||
add_subdirectory(bbs_test_tools)
|
||||
|
|
44
Containerfile
Normal file
|
@ -0,0 +1,44 @@
|
|||
# Build Bambu Slicer in a container
|
||||
#
|
||||
# Build an AppImage:
|
||||
# rm -rf build; sudo podman build .. -t bambu-studio && sudo podman run --rm localhost/bambu-studio /bin/bash -c 'tar -c $(find build | grep ubu64.AppImage | head -1)' | tar -xv
|
||||
#
|
||||
# Troubleshooting:
|
||||
# sudo podman run -it localhost/bambu-studio /bin/bash
|
||||
|
||||
FROM docker.io/ubuntu:kinetic
|
||||
LABEL maintainer "DeftDawg <DeftDawg@gmail.com>"
|
||||
|
||||
# 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 \
|
||||
git \
|
||||
build-essential \
|
||||
autoconf \
|
||||
cmake \
|
||||
libglu1-mesa-dev \
|
||||
libgtk-3-dev \
|
||||
libdbus-1-dev \
|
||||
curl \
|
||||
wget \
|
||||
sudo
|
||||
|
||||
COPY ../BambuStudio BambuStudio
|
||||
|
||||
WORKDIR BambuStudio
|
||||
|
||||
# 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
|
||||
|
||||
# Build slic3r
|
||||
RUN ./BuildLinux.sh -s
|
||||
|
||||
# Build AppImage
|
||||
ENV container podman
|
||||
RUN ./BuildLinux.sh -i
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-09 11:50+0800\n"
|
||||
"POT-Creation-Date: 2022-09-27 16:25+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"
|
||||
|
@ -668,10 +668,16 @@ msgstr ""
|
|||
msgid "Export as STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload item"
|
||||
msgid "Reload from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload items"
|
||||
msgid "Reload the selected parts from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace with STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the selected part with new STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change filament"
|
||||
|
@ -807,7 +813,10 @@ msgstr ""
|
|||
msgid "Clone"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reduce Triangles"
|
||||
msgid "Simplify Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit in Parameter Table"
|
||||
|
@ -1535,7 +1544,9 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Bed temperature is higher than vitrification temperature of this filament.\n"
|
||||
"This may cause nozzle blocked and printing failure"
|
||||
"This may cause nozzle blocked and printing failure\n"
|
||||
"Please keep the printer open during the printing process to ensure air "
|
||||
"circulation or reduce the temperature of the hot bed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
@ -1614,8 +1625,8 @@ msgid "%1% infill pattern doesn't support 100%% density."
|
|||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Switch to zig-zag pattern?\n"
|
||||
"Yes - switch to zig-zag pattern automaticlly\n"
|
||||
"Switch to rectilinear pattern?\n"
|
||||
"Yes - switch to rectilinear pattern automaticlly\n"
|
||||
"No - reset density to default non 100% value automaticlly\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1730,11 +1741,11 @@ msgstr ""
|
|||
msgid "N/A"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "%s can't be percentage"
|
||||
msgid "Invalid numeric."
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid numeric."
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "%s can't be percentage"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
|
@ -1776,7 +1787,10 @@ msgstr ""
|
|||
msgid "Tool"
|
||||
msgstr ""
|
||||
|
||||
msgid "Extruder position"
|
||||
msgid "Speed: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Flow: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading G-codes"
|
||||
|
@ -1875,6 +1889,9 @@ msgstr ""
|
|||
msgid "Flushed filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filament change times"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1908,9 +1925,6 @@ msgstr ""
|
|||
msgid "Model printing time"
|
||||
msgstr ""
|
||||
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to silent mode"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2415,11 +2429,14 @@ msgstr ""
|
|||
msgid "Initializing..."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Initialize failed [%d]!"
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading..."
|
||||
msgid "Initialize failed (Not supported)!"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Initialize failed [%d]!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stopped."
|
||||
|
@ -2441,18 +2458,45 @@ msgstr ""
|
|||
msgid "All Files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by year, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by month, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show all files, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to timelapse files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to video files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
msgid "Download selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Management"
|
||||
msgstr ""
|
||||
|
||||
msgid "Batch manage files."
|
||||
msgstr ""
|
||||
|
||||
msgid "No printers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Not supported."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2554,6 +2598,12 @@ msgstr ""
|
|||
msgid "Printing List"
|
||||
msgstr ""
|
||||
|
||||
msgid "Cancel print"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure you want to cancel this print?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Downloading..."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2753,10 +2803,10 @@ msgctxt "Layers"
|
|||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
msgid "Spaghetti Detection"
|
||||
msgid "Spaghetti and Excess Chute Pileup Detection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stop printing when spaghetti detected"
|
||||
msgid "Stop printing when Spaghetti or Excess Chute Pileup is detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer Inspection"
|
||||
|
@ -2829,6 +2879,33 @@ msgstr ""
|
|||
msgid "Flushing volumes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add one filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove last filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync material list from AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set filaments to use"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"No AMS filaments. Please select a printer in 'Device' page to load AMS info."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync filaments with AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sync filaments with AMS will drop all current selected filament presets and "
|
||||
"colors. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are no compatible filaments, and sync is not performed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Untitled"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2836,6 +2913,16 @@ msgstr ""
|
|||
msgid "Do you want to save changes to \"%1%\"?"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"Successfully unmounted. The device %s(%s) can now be safely removed from the "
|
||||
"computer."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Ejecting of device %s(%s) has failed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Previous unsaved project detected, do you want to restore it?"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2910,6 +2997,15 @@ msgstr ""
|
|||
msgid "Object too small"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This file contains several objects positioned at multiple heights.\n"
|
||||
"Instead of considering them as multiple objects, should \n"
|
||||
"the file be loaded as a single object having multiple parts?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-part object detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load these files as a single object with multiple parts?\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2939,6 +3035,15 @@ msgstr ""
|
|||
msgid "Another export job is running."
|
||||
msgstr ""
|
||||
|
||||
msgid "Select a new file"
|
||||
msgstr ""
|
||||
|
||||
msgid "File for the replace wasn't selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during replace"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please select a file"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3036,6 +3141,9 @@ msgstr ""
|
|||
msgid "Save Sliced file as:"
|
||||
msgstr ""
|
||||
|
||||
msgid "preparing, export 3mf failed!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
"Suggest to use auto-arrange to avoid collisions when printing."
|
||||
|
@ -3535,6 +3643,12 @@ msgstr ""
|
|||
msgid "Delete this preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search in preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Click to reset all settings to the last saved preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Prime tower is required by timeplase. Are you sure you want to disable both "
|
||||
"of them?"
|
||||
|
@ -4240,6 +4354,53 @@ msgstr ""
|
|||
msgid "Don't remind me of this version again"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to update? This will take about 10 minutes. Do not "
|
||||
"turn off the power while the printer is updating."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"An important update was detected and needs to be run before printing can "
|
||||
"continue. Do you want to update now? You can also update later from 'Upgrade "
|
||||
"firmware'."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
"printing. Do you want to update now? You can also update later on printer or "
|
||||
"update next time starting the studio."
|
||||
msgstr ""
|
||||
|
||||
msgid "Model:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Serial:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrade firmware"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Idle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Latest version"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading successful"
|
||||
msgstr ""
|
||||
|
||||
msgid "Saving objects into the 3mf failed."
|
||||
msgstr ""
|
||||
|
||||
|
@ -4515,6 +4676,11 @@ msgstr ""
|
|||
msgid "No extrusions under current settings."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Smooth mode of timelapse is not supported when \"by object\" sequence is "
|
||||
"enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please select \"By object\" print sequence to print multiple objects in "
|
||||
"spiral vase mode."
|
||||
|
@ -4931,7 +5097,7 @@ msgstr ""
|
|||
msgid "Concentric"
|
||||
msgstr ""
|
||||
|
||||
msgid "Zig zag"
|
||||
msgid "Rectilinear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Monotonic"
|
||||
|
@ -4940,6 +5106,12 @@ msgstr ""
|
|||
msgid "Monotonic line"
|
||||
msgstr ""
|
||||
|
||||
msgid "Aligned Rectilinear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hilbert Curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5800,6 +5972,14 @@ msgstr ""
|
|||
msgid "Don't create support on model surface, only on build plate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support critical regions only"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Only create support for critical regions including sharp tail, cantilever, "
|
||||
"etc."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr ""
|
||||
|
||||
|
@ -5856,9 +6036,6 @@ msgstr ""
|
|||
msgid "Line pattern of support"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Bambu Studio\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-09 11:50+0800\n"
|
||||
"POT-Creation-Date: 2022-09-27 16:25+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
@ -689,11 +689,17 @@ msgstr "Modell reparieren"
|
|||
msgid "Export as STL"
|
||||
msgstr "Als STL exportieren"
|
||||
|
||||
msgid "Reload item"
|
||||
msgstr "Element neu laden"
|
||||
msgid "Reload from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload items"
|
||||
msgstr "Elemente neu laden"
|
||||
msgid "Reload the selected parts from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace with STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the selected part with new STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change filament"
|
||||
msgstr "Filament wechseln"
|
||||
|
@ -830,8 +836,11 @@ msgstr "Aktuelle Druckplatte entfernen"
|
|||
msgid "Clone"
|
||||
msgstr "Klonen"
|
||||
|
||||
msgid "Reduce Triangles"
|
||||
msgstr "Dreiecke reduzieren"
|
||||
msgid "Simplify Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit in Parameter Table"
|
||||
msgstr ""
|
||||
|
@ -1644,11 +1653,10 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Bed temperature is higher than vitrification temperature of this filament.\n"
|
||||
"This may cause nozzle blocked and printing failure"
|
||||
"This may cause nozzle blocked and printing failure\n"
|
||||
"Please keep the printer open during the printing process to ensure air "
|
||||
"circulation or reduce the temperature of the hot bed"
|
||||
msgstr ""
|
||||
"Die Temperatur des Druckbett ist höher als die Verglasungstemperatur dieses "
|
||||
"Filaments.\n"
|
||||
"Dies kann zu einer Verstopfung der Düse und zu Druckfehlern führen"
|
||||
|
||||
msgid ""
|
||||
"Too small layer height.\n"
|
||||
|
@ -1768,14 +1776,10 @@ msgid "%1% infill pattern doesn't support 100%% density."
|
|||
msgstr "Das %1%-Infill-Muster unterstützt keine 100%% Dichte."
|
||||
|
||||
msgid ""
|
||||
"Switch to zig-zag pattern?\n"
|
||||
"Yes - switch to zig-zag pattern automaticlly\n"
|
||||
"Switch to rectilinear pattern?\n"
|
||||
"Yes - switch to rectilinear pattern automaticlly\n"
|
||||
"No - reset density to default non 100% value automaticlly\n"
|
||||
msgstr ""
|
||||
"Umschalten auf Zick-Zack-Muster?\n"
|
||||
"Ja - automatisch zum Zick-Zack-Muster wechseln\n"
|
||||
"Nein - setzt die Dichte automatisch auf den Standardwert von nicht 100% "
|
||||
"zurück\n"
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Automatische Druckbettnivellierung"
|
||||
|
@ -1888,13 +1892,13 @@ msgstr ""
|
|||
msgid "N/A"
|
||||
msgstr "N/A"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Ungültige Zahl."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be percentage"
|
||||
msgstr "%s kann nicht Prozent sein"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Ungültige Zahl."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Value %s is out of range, continue?"
|
||||
msgstr "Wert %s ist außerhalb der Reichweite, fortfahren?"
|
||||
|
@ -1937,8 +1941,11 @@ msgstr "Fluss"
|
|||
msgid "Tool"
|
||||
msgstr "Werkzeug"
|
||||
|
||||
msgid "Extruder position"
|
||||
msgstr "Extruderposition"
|
||||
msgid "Speed: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Flow: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading G-codes"
|
||||
msgstr "Laden von G-Codes"
|
||||
|
@ -2036,6 +2043,9 @@ msgstr "Filament 1"
|
|||
msgid "Flushed filament"
|
||||
msgstr "gereinigtes Filament"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Gesamt"
|
||||
|
||||
msgid "Filament change times"
|
||||
msgstr "Filamentwechselzeiten"
|
||||
|
||||
|
@ -2069,9 +2079,6 @@ msgstr "Vorbereitungszeit"
|
|||
msgid "Model printing time"
|
||||
msgstr "Druckzeit des Modell"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Gesamt"
|
||||
|
||||
msgid "Switch to silent mode"
|
||||
msgstr "Zum Leisemodus wechseln"
|
||||
|
||||
|
@ -2581,13 +2588,16 @@ msgstr "Initialisierung fehlgeschlagen (Kein Gerät)!"
|
|||
msgid "Initializing..."
|
||||
msgstr "Initialisieren..."
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Laden..."
|
||||
|
||||
msgid "Initialize failed (Not supported)!"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed [%d]!"
|
||||
msgstr "Initialisierung fehlgeschlagen [%d]!"
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Laden..."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Gestoppt."
|
||||
|
||||
|
@ -2607,18 +2617,45 @@ msgstr "Month"
|
|||
msgid "All Files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by year, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by month, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show all files, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to timelapse files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
msgid "Switch to video files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download"
|
||||
msgstr "Herunterladen"
|
||||
|
||||
msgid "Download selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Management"
|
||||
msgstr "Management"
|
||||
|
||||
msgid "Batch manage files."
|
||||
msgstr ""
|
||||
|
||||
msgid "No printers."
|
||||
msgstr "No printers."
|
||||
|
||||
msgid "Not supported."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting..."
|
||||
msgstr "Connecting..."
|
||||
|
||||
|
@ -2720,6 +2757,12 @@ msgstr "Debug-Informationen"
|
|||
msgid "Printing List"
|
||||
msgstr "Druckliste"
|
||||
|
||||
msgid "Cancel print"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure you want to cancel this print?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Downloading..."
|
||||
msgstr "Downloading..."
|
||||
|
||||
|
@ -2923,10 +2966,10 @@ msgctxt "Layers"
|
|||
msgid "Bottom"
|
||||
msgstr "Untere"
|
||||
|
||||
msgid "Spaghetti Detection"
|
||||
msgid "Spaghetti and Excess Chute Pileup Detection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stop printing when spaghetti detected"
|
||||
msgid "Stop printing when Spaghetti or Excess Chute Pileup is detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer Inspection"
|
||||
|
@ -2998,6 +3041,33 @@ msgstr "Druckbetttyp"
|
|||
msgid "Flushing volumes"
|
||||
msgstr "Säuberungsvolumen"
|
||||
|
||||
msgid "Add one filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove last filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync material list from AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set filaments to use"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"No AMS filaments. Please select a printer in 'Device' page to load AMS info."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync filaments with AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sync filaments with AMS will drop all current selected filament presets and "
|
||||
"colors. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are no compatible filaments, and sync is not performed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Untitled"
|
||||
msgstr "Unbenannt"
|
||||
|
||||
|
@ -3005,6 +3075,16 @@ msgstr "Unbenannt"
|
|||
msgid "Do you want to save changes to \"%1%\"?"
|
||||
msgstr "Möchten Sie Änderungen unter \" %1% \" speichern?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Successfully unmounted. The device %s(%s) can now be safely removed from the "
|
||||
"computer."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Ejecting of device %s(%s) has failed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Previous unsaved project detected, do you want to restore it?"
|
||||
msgstr ""
|
||||
"Ein früheres ungespeichertes Projekt wurde entdeckt, möchten Sie es "
|
||||
|
@ -3088,6 +3168,15 @@ msgstr ""
|
|||
msgid "Object too small"
|
||||
msgstr "Objekt zu klein"
|
||||
|
||||
msgid ""
|
||||
"This file contains several objects positioned at multiple heights.\n"
|
||||
"Instead of considering them as multiple objects, should \n"
|
||||
"the file be loaded as a single object having multiple parts?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-part object detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load these files as a single object with multiple parts?\n"
|
||||
msgstr "Diese Dateien als ein einziges Objekt mit mehreren Teilen laden?\n"
|
||||
|
||||
|
@ -3117,6 +3206,15 @@ msgstr "Das ausgewählte Objekt konnte nicht geteilt werden."
|
|||
msgid "Another export job is running."
|
||||
msgstr "Ein weiterer Exportauftrag läuft gerade."
|
||||
|
||||
msgid "Select a new file"
|
||||
msgstr ""
|
||||
|
||||
msgid "File for the replace wasn't selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during replace"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please select a file"
|
||||
msgstr "Bitte wählen Sie eine Datei"
|
||||
|
||||
|
@ -3218,6 +3316,9 @@ msgstr "Speichere G-Code Datei als:"
|
|||
msgid "Save Sliced file as:"
|
||||
msgstr "Geslicte Datei speichern unter:"
|
||||
|
||||
msgid "preparing, export 3mf failed!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
"Suggest to use auto-arrange to avoid collisions when printing."
|
||||
|
@ -3752,6 +3853,12 @@ msgstr "Speichere aktuelle %s"
|
|||
msgid "Delete this preset"
|
||||
msgstr "Lösche diese Voreinstellung"
|
||||
|
||||
msgid "Search in preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Click to reset all settings to the last saved preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Prime tower is required by timeplase. Are you sure you want to disable both "
|
||||
"of them?"
|
||||
|
@ -4517,6 +4624,53 @@ msgstr "Neue Version von Bambu Studio"
|
|||
msgid "Don't remind me of this version again"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to update? This will take about 10 minutes. Do not "
|
||||
"turn off the power while the printer is updating."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"An important update was detected and needs to be run before printing can "
|
||||
"continue. Do you want to update now? You can also update later from 'Upgrade "
|
||||
"firmware'."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
"printing. Do you want to update now? You can also update later on printer or "
|
||||
"update next time starting the studio."
|
||||
msgstr ""
|
||||
|
||||
msgid "Model:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Serial:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrade firmware"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Idle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Latest version"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading successful"
|
||||
msgstr ""
|
||||
|
||||
msgid "Saving objects into the 3mf failed."
|
||||
msgstr "Das Speichern von Objekten in der 3mf ist fehlgeschlagen."
|
||||
|
||||
|
@ -4814,6 +4968,11 @@ msgstr ""
|
|||
msgid "No extrusions under current settings."
|
||||
msgstr "Keine Extrusion unter den aktuellen Einstellungen."
|
||||
|
||||
msgid ""
|
||||
"Smooth mode of timelapse is not supported when \"by object\" sequence is "
|
||||
"enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please select \"By object\" print sequence to print multiple objects in "
|
||||
"spiral vase mode."
|
||||
|
@ -5302,8 +5461,8 @@ msgstr "Linienmuster der Füllung der oberen Oberfläche"
|
|||
msgid "Concentric"
|
||||
msgstr "Konzentrisch"
|
||||
|
||||
msgid "Zig zag"
|
||||
msgstr "Zick-Zack"
|
||||
msgid "Rectilinear"
|
||||
msgstr "Geradlinig"
|
||||
|
||||
msgid "Monotonic"
|
||||
msgstr "Monotonisch"
|
||||
|
@ -5311,6 +5470,12 @@ msgstr "Monotonisch"
|
|||
msgid "Monotonic line"
|
||||
msgstr "Monotone Linie"
|
||||
|
||||
msgid "Aligned Rectilinear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hilbert Curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Muster der unteren Oberfläche"
|
||||
|
||||
|
@ -6309,6 +6474,14 @@ msgstr ""
|
|||
"Stützen nicht auf der Modelloberfläche, sondern nur auf der Druckplatte "
|
||||
"erzeugen"
|
||||
|
||||
msgid "Support critical regions only"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Only create support for critical regions including sharp tail, cantilever, "
|
||||
"etc."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "Oberer Z-Abstand"
|
||||
|
||||
|
@ -6373,9 +6546,6 @@ msgstr "Basismuster"
|
|||
msgid "Line pattern of support"
|
||||
msgstr "Linienmuster der Supports"
|
||||
|
||||
msgid "Rectilinear"
|
||||
msgstr "Geradlinig"
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Rechtwinkliges Gitter"
|
||||
|
||||
|
@ -6827,6 +6997,34 @@ msgstr "Support: Löcher in Schicht %d repairieren"
|
|||
msgid "Support: propagate branches at layer %d"
|
||||
msgstr "Support: Verbreiten von Zweigen auf Ebene %d"
|
||||
|
||||
#~ msgid "Reduce Triangles"
|
||||
#~ msgstr "Dreiecke reduzieren"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Switch to zig-zag pattern?\n"
|
||||
#~ "Yes - switch to zig-zag pattern automaticlly\n"
|
||||
#~ "No - reset density to default non 100% value automaticlly\n"
|
||||
#~ msgstr ""
|
||||
#~ "Umschalten auf Zick-Zack-Muster?\n"
|
||||
#~ "Ja - automatisch zum Zick-Zack-Muster wechseln\n"
|
||||
#~ "Nein - setzt die Dichte automatisch auf den Standardwert von nicht 100% "
|
||||
#~ "zurück\n"
|
||||
|
||||
#~ msgid "Extruder position"
|
||||
#~ msgstr "Extruderposition"
|
||||
|
||||
#~ msgid "Zig zag"
|
||||
#~ msgstr "Zick-Zack"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Bed temperature is higher than vitrification temperature of this "
|
||||
#~ "filament.\n"
|
||||
#~ "This may cause nozzle blocked and printing failure"
|
||||
#~ msgstr ""
|
||||
#~ "Die Temperatur des Druckbett ist höher als die Verglasungstemperatur "
|
||||
#~ "dieses Filaments.\n"
|
||||
#~ "Dies kann zu einer Verstopfung der Düse und zu Druckfehlern führen"
|
||||
|
||||
#~ msgid "0%"
|
||||
#~ msgstr "0%"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Bambu Studio\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-09 11:50+0800\n"
|
||||
"POT-Creation-Date: 2022-09-27 16:25+0800\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -678,11 +678,17 @@ msgstr "Fix Model"
|
|||
msgid "Export as STL"
|
||||
msgstr "Export as STL"
|
||||
|
||||
msgid "Reload item"
|
||||
msgstr "Reload item"
|
||||
msgid "Reload from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload items"
|
||||
msgstr "Reload items"
|
||||
msgid "Reload the selected parts from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace with STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the selected part with new STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change filament"
|
||||
msgstr "Change filament"
|
||||
|
@ -817,8 +823,11 @@ msgstr "Remove the selected plate"
|
|||
msgid "Clone"
|
||||
msgstr "Clone"
|
||||
|
||||
msgid "Reduce Triangles"
|
||||
msgstr "Reduce Triangles"
|
||||
msgid "Simplify Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit in Parameter Table"
|
||||
msgstr ""
|
||||
|
@ -1605,11 +1614,10 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Bed temperature is higher than vitrification temperature of this filament.\n"
|
||||
"This may cause nozzle blocked and printing failure"
|
||||
"This may cause nozzle blocked and printing failure\n"
|
||||
"Please keep the printer open during the printing process to ensure air "
|
||||
"circulation or reduce the temperature of the hot bed"
|
||||
msgstr ""
|
||||
"The bed temperature is higher than the vitrification temperature of this "
|
||||
"filament.\n"
|
||||
"This may cause a nozzle blockage or print failure"
|
||||
|
||||
msgid ""
|
||||
"Too small layer height.\n"
|
||||
|
@ -1724,13 +1732,10 @@ msgid "%1% infill pattern doesn't support 100%% density."
|
|||
msgstr "%1% infill pattern doesn't support 100%% density."
|
||||
|
||||
msgid ""
|
||||
"Switch to zig-zag pattern?\n"
|
||||
"Yes - switch to zig-zag pattern automaticlly\n"
|
||||
"Switch to rectilinear pattern?\n"
|
||||
"Yes - switch to rectilinear pattern automaticlly\n"
|
||||
"No - reset density to default non 100% value automaticlly\n"
|
||||
msgstr ""
|
||||
"Switch to zig-zag pattern?\n"
|
||||
"Yes - Switch to zig-zag pattern automatically\n"
|
||||
"No - Reset density to default non-100% value automatically\n"
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Auto bed leveling"
|
||||
|
@ -1843,13 +1848,13 @@ msgstr ""
|
|||
msgid "N/A"
|
||||
msgstr "N/A"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Invalid numeric."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be percentage"
|
||||
msgstr "%s can’t be a percentage"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Invalid numeric."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Value %s is out of range, continue?"
|
||||
msgstr "Value %s is out of range, continue?"
|
||||
|
@ -1892,8 +1897,11 @@ msgstr "Flow"
|
|||
msgid "Tool"
|
||||
msgstr "Tool"
|
||||
|
||||
msgid "Extruder position"
|
||||
msgstr "Extruder position"
|
||||
msgid "Speed: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Flow: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading G-codes"
|
||||
msgstr "Loading G-codes"
|
||||
|
@ -1991,6 +1999,9 @@ msgstr "Filament 1"
|
|||
msgid "Flushed filament"
|
||||
msgstr "Flushed filament"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
msgid "Filament change times"
|
||||
msgstr "Filament change times"
|
||||
|
||||
|
@ -2024,9 +2035,6 @@ msgstr "Prepare time"
|
|||
msgid "Model printing time"
|
||||
msgstr "Model printing time"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
msgid "Switch to silent mode"
|
||||
msgstr "Switch to silent mode"
|
||||
|
||||
|
@ -2540,13 +2548,16 @@ msgstr "Initialization failed (No Device)!"
|
|||
msgid "Initializing..."
|
||||
msgstr "Initializing..."
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Loading..."
|
||||
|
||||
msgid "Initialize failed (Not supported)!"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed [%d]!"
|
||||
msgstr "Initalization failed [%d]!"
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Loading..."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Stopped."
|
||||
|
||||
|
@ -2566,18 +2577,45 @@ msgstr ""
|
|||
msgid "All Files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by year, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by month, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show all files, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to timelapse files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to video files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
msgid "Download selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Management"
|
||||
msgstr ""
|
||||
|
||||
msgid "Batch manage files."
|
||||
msgstr ""
|
||||
|
||||
msgid "No printers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Not supported."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2679,6 +2717,12 @@ msgstr "Debug Info"
|
|||
msgid "Printing List"
|
||||
msgstr "Printing list"
|
||||
|
||||
msgid "Cancel print"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure you want to cancel this print?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Downloading..."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2882,10 +2926,10 @@ msgctxt "Layers"
|
|||
msgid "Bottom"
|
||||
msgstr "Bottom"
|
||||
|
||||
msgid "Spaghetti Detection"
|
||||
msgid "Spaghetti and Excess Chute Pileup Detection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stop printing when spaghetti detected"
|
||||
msgid "Stop printing when Spaghetti or Excess Chute Pileup is detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer Inspection"
|
||||
|
@ -2955,6 +2999,33 @@ msgstr "Bed type"
|
|||
msgid "Flushing volumes"
|
||||
msgstr "Flushing volumes"
|
||||
|
||||
msgid "Add one filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove last filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync material list from AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set filaments to use"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"No AMS filaments. Please select a printer in 'Device' page to load AMS info."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync filaments with AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sync filaments with AMS will drop all current selected filament presets and "
|
||||
"colors. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are no compatible filaments, and sync is not performed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Untitled"
|
||||
msgstr "Untitled"
|
||||
|
||||
|
@ -2962,6 +3033,16 @@ msgstr "Untitled"
|
|||
msgid "Do you want to save changes to \"%1%\"?"
|
||||
msgstr "Do you want to save changes to \"%1%\"?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Successfully unmounted. The device %s(%s) can now be safely removed from the "
|
||||
"computer."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Ejecting of device %s(%s) has failed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Previous unsaved project detected, do you want to restore it?"
|
||||
msgstr ""
|
||||
"Previously unsaved items have been detected. Do you want to restore them?"
|
||||
|
@ -3041,6 +3122,15 @@ msgstr ""
|
|||
msgid "Object too small"
|
||||
msgstr "Object too small"
|
||||
|
||||
msgid ""
|
||||
"This file contains several objects positioned at multiple heights.\n"
|
||||
"Instead of considering them as multiple objects, should \n"
|
||||
"the file be loaded as a single object having multiple parts?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-part object detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load these files as a single object with multiple parts?\n"
|
||||
msgstr "Load these files as a single object with multiple parts?\n"
|
||||
|
||||
|
@ -3070,6 +3160,15 @@ msgstr "The selected object couldn't be split."
|
|||
msgid "Another export job is running."
|
||||
msgstr "Another export job is running."
|
||||
|
||||
msgid "Select a new file"
|
||||
msgstr ""
|
||||
|
||||
msgid "File for the replace wasn't selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during replace"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please select a file"
|
||||
msgstr "Please select a file"
|
||||
|
||||
|
@ -3169,6 +3268,9 @@ msgstr "Save G-code file as:"
|
|||
msgid "Save Sliced file as:"
|
||||
msgstr "Save Sliced file as:"
|
||||
|
||||
msgid "preparing, export 3mf failed!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
"Suggest to use auto-arrange to avoid collisions when printing."
|
||||
|
@ -3682,6 +3784,12 @@ msgstr "Save current %s"
|
|||
msgid "Delete this preset"
|
||||
msgstr "Delete this preset"
|
||||
|
||||
msgid "Search in preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Click to reset all settings to the last saved preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Prime tower is required by timeplase. Are you sure you want to disable both "
|
||||
"of them?"
|
||||
|
@ -4427,6 +4535,53 @@ msgstr "New version of Bambu Studio"
|
|||
msgid "Don't remind me of this version again"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to update? This will take about 10 minutes. Do not "
|
||||
"turn off the power while the printer is updating."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"An important update was detected and needs to be run before printing can "
|
||||
"continue. Do you want to update now? You can also update later from 'Upgrade "
|
||||
"firmware'."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
"printing. Do you want to update now? You can also update later on printer or "
|
||||
"update next time starting the studio."
|
||||
msgstr ""
|
||||
|
||||
msgid "Model:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Serial:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrade firmware"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Idle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Latest version"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading successful"
|
||||
msgstr ""
|
||||
|
||||
msgid "Saving objects into the 3mf failed."
|
||||
msgstr "Saving objects into the 3mf failed."
|
||||
|
||||
|
@ -4717,6 +4872,11 @@ msgstr ""
|
|||
msgid "No extrusions under current settings."
|
||||
msgstr "No extrusions under current settings."
|
||||
|
||||
msgid ""
|
||||
"Smooth mode of timelapse is not supported when \"by object\" sequence is "
|
||||
"enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please select \"By object\" print sequence to print multiple objects in "
|
||||
"spiral vase mode."
|
||||
|
@ -5189,8 +5349,8 @@ msgstr "This is the line pattern for top surface infill."
|
|||
msgid "Concentric"
|
||||
msgstr "Concentric"
|
||||
|
||||
msgid "Zig zag"
|
||||
msgstr "Zig zag"
|
||||
msgid "Rectilinear"
|
||||
msgstr "Rectilinear"
|
||||
|
||||
msgid "Monotonic"
|
||||
msgstr "Monotonic"
|
||||
|
@ -5198,6 +5358,12 @@ msgstr "Monotonic"
|
|||
msgid "Monotonic line"
|
||||
msgstr "Monotonic line"
|
||||
|
||||
msgid "Aligned Rectilinear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hilbert Curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Bottom surface pattern"
|
||||
|
||||
|
@ -6179,6 +6345,14 @@ msgstr "On build plate only"
|
|||
msgid "Don't create support on model surface, only on build plate"
|
||||
msgstr "This setting only generates supports that begin on the build plate."
|
||||
|
||||
msgid "Support critical regions only"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Only create support for critical regions including sharp tail, cantilever, "
|
||||
"etc."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "Top Z distance"
|
||||
|
||||
|
@ -6242,9 +6416,6 @@ msgstr "Base pattern"
|
|||
msgid "Line pattern of support"
|
||||
msgstr "This is the line pattern for support."
|
||||
|
||||
msgid "Rectilinear"
|
||||
msgstr "Rectilinear"
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Rectilinear grid"
|
||||
|
||||
|
@ -6681,6 +6852,33 @@ msgstr "Support: fix holes at layer %d"
|
|||
msgid "Support: propagate branches at layer %d"
|
||||
msgstr "Support: propagate branches at layer %d"
|
||||
|
||||
#~ msgid "Reduce Triangles"
|
||||
#~ msgstr "Reduce Triangles"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Switch to zig-zag pattern?\n"
|
||||
#~ "Yes - switch to zig-zag pattern automaticlly\n"
|
||||
#~ "No - reset density to default non 100% value automaticlly\n"
|
||||
#~ msgstr ""
|
||||
#~ "Switch to zig-zag pattern?\n"
|
||||
#~ "Yes - Switch to zig-zag pattern automatically\n"
|
||||
#~ "No - Reset density to default non-100% value automatically\n"
|
||||
|
||||
#~ msgid "Extruder position"
|
||||
#~ msgstr "Extruder position"
|
||||
|
||||
#~ msgid "Zig zag"
|
||||
#~ msgstr "Zig zag"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Bed temperature is higher than vitrification temperature of this "
|
||||
#~ "filament.\n"
|
||||
#~ "This may cause nozzle blocked and printing failure"
|
||||
#~ msgstr ""
|
||||
#~ "The bed temperature is higher than the vitrification temperature of this "
|
||||
#~ "filament.\n"
|
||||
#~ "This may cause a nozzle blockage or print failure"
|
||||
|
||||
#~ msgid "Enter a search term"
|
||||
#~ msgstr "Enter a search term"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Bambu Studio\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-09 11:50+0800\n"
|
||||
"POT-Creation-Date: 2022-09-27 16:25+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
@ -691,11 +691,17 @@ msgstr "Fijar el modelo"
|
|||
msgid "Export as STL"
|
||||
msgstr "Exportar como STL"
|
||||
|
||||
msgid "Reload item"
|
||||
msgstr "Volver a cargar el objeto"
|
||||
msgid "Reload from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload items"
|
||||
msgstr "Recarga de objetos"
|
||||
msgid "Reload the selected parts from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace with STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the selected part with new STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change filament"
|
||||
msgstr "Cambiar el filamento"
|
||||
|
@ -831,8 +837,11 @@ msgstr "Retirar la placa seleccionada"
|
|||
msgid "Clone"
|
||||
msgstr "Clonar"
|
||||
|
||||
msgid "Reduce Triangles"
|
||||
msgstr "Reducir los triángulos"
|
||||
msgid "Simplify Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit in Parameter Table"
|
||||
msgstr ""
|
||||
|
@ -1636,11 +1645,10 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Bed temperature is higher than vitrification temperature of this filament.\n"
|
||||
"This may cause nozzle blocked and printing failure"
|
||||
"This may cause nozzle blocked and printing failure\n"
|
||||
"Please keep the printer open during the printing process to ensure air "
|
||||
"circulation or reduce the temperature of the hot bed"
|
||||
msgstr ""
|
||||
"La temperatura del lecho es superior a la temperatura de vitrificación de "
|
||||
"este filamento.\n"
|
||||
"Esto puede causar el bloqueo de la boquilla y el fracaso de la impresión"
|
||||
|
||||
msgid ""
|
||||
"Too small layer height.\n"
|
||||
|
@ -1763,14 +1771,10 @@ msgid "%1% infill pattern doesn't support 100%% density."
|
|||
msgstr "El patrón de relleno %1% no soporta el 100%% de densidad."
|
||||
|
||||
msgid ""
|
||||
"Switch to zig-zag pattern?\n"
|
||||
"Yes - switch to zig-zag pattern automaticlly\n"
|
||||
"Switch to rectilinear pattern?\n"
|
||||
"Yes - switch to rectilinear pattern automaticlly\n"
|
||||
"No - reset density to default non 100% value automaticlly\n"
|
||||
msgstr ""
|
||||
"¿Cambiar al patrón en zig-zag?\n"
|
||||
"Sí - cambia automáticamente al patrón en zig-zag\n"
|
||||
"No - restablecer automáticamente la densidad al valor por defecto que no es "
|
||||
"del 100%.\n"
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Nivelación de cama automática"
|
||||
|
@ -1886,13 +1890,13 @@ msgstr ""
|
|||
msgid "N/A"
|
||||
msgstr "N/A"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Numérico inválido."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be percentage"
|
||||
msgstr "%s no puede ser un porcentaje"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Numérico inválido."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Value %s is out of range, continue?"
|
||||
msgstr "El valor %s está fuera de rango, ¿continuar?"
|
||||
|
@ -1935,8 +1939,11 @@ msgstr "Flujo"
|
|||
msgid "Tool"
|
||||
msgstr "Herramienta"
|
||||
|
||||
msgid "Extruder position"
|
||||
msgstr "Posición del extrusor"
|
||||
msgid "Speed: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Flow: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading G-codes"
|
||||
msgstr "Carga de códigos G"
|
||||
|
@ -2034,6 +2041,9 @@ msgstr "Filamento 1"
|
|||
msgid "Flushed filament"
|
||||
msgstr "Filamento limpiado"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
msgid "Filament change times"
|
||||
msgstr "Tiempos de cambio de filamento"
|
||||
|
||||
|
@ -2067,9 +2077,6 @@ msgstr "Planificar tiempo"
|
|||
msgid "Model printing time"
|
||||
msgstr "Tiempo de impresión del modelo"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
msgid "Switch to silent mode"
|
||||
msgstr "Cambiar al modo silencioso"
|
||||
|
||||
|
@ -2579,13 +2586,16 @@ msgstr "¡Inicialización fallida (No hay dispositivo)!"
|
|||
msgid "Initializing..."
|
||||
msgstr "Iniciando..."
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Cargando..."
|
||||
|
||||
msgid "Initialize failed (Not supported)!"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed [%d]!"
|
||||
msgstr "¡Ha fallado la inicialización [%d]!"
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Cargando..."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Detenido."
|
||||
|
||||
|
@ -2605,18 +2615,45 @@ msgstr "Month"
|
|||
msgid "All Files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by year, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by month, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show all files, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to timelapse files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
msgid "Switch to video files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download"
|
||||
msgstr "Descargar"
|
||||
|
||||
msgid "Download selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Management"
|
||||
msgstr "Management"
|
||||
|
||||
msgid "Batch manage files."
|
||||
msgstr ""
|
||||
|
||||
msgid "No printers."
|
||||
msgstr "No printers."
|
||||
|
||||
msgid "Not supported."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting..."
|
||||
msgstr "Connecting..."
|
||||
|
||||
|
@ -2718,6 +2755,12 @@ msgstr "Información de Depuración"
|
|||
msgid "Printing List"
|
||||
msgstr "Imprimiendo Lista"
|
||||
|
||||
msgid "Cancel print"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure you want to cancel this print?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Downloading..."
|
||||
msgstr "Downloading..."
|
||||
|
||||
|
@ -2923,10 +2966,10 @@ msgctxt "Layers"
|
|||
msgid "Bottom"
|
||||
msgstr "Inferior"
|
||||
|
||||
msgid "Spaghetti Detection"
|
||||
msgid "Spaghetti and Excess Chute Pileup Detection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stop printing when spaghetti detected"
|
||||
msgid "Stop printing when Spaghetti or Excess Chute Pileup is detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer Inspection"
|
||||
|
@ -2998,6 +3041,33 @@ msgstr "Tipo de cama"
|
|||
msgid "Flushing volumes"
|
||||
msgstr "Volúmenes de limpieza"
|
||||
|
||||
msgid "Add one filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove last filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync material list from AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set filaments to use"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"No AMS filaments. Please select a printer in 'Device' page to load AMS info."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync filaments with AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sync filaments with AMS will drop all current selected filament presets and "
|
||||
"colors. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are no compatible filaments, and sync is not performed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Untitled"
|
||||
msgstr "Sin título"
|
||||
|
||||
|
@ -3005,6 +3075,16 @@ msgstr "Sin título"
|
|||
msgid "Do you want to save changes to \"%1%\"?"
|
||||
msgstr "¿Quieres guardar los cambios en \"%1%\"?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Successfully unmounted. The device %s(%s) can now be safely removed from the "
|
||||
"computer."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Ejecting of device %s(%s) has failed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Previous unsaved project detected, do you want to restore it?"
|
||||
msgstr ""
|
||||
"Se ha detectado un proyecto anterior no guardado, ¿quieres restaurarlo?"
|
||||
|
@ -3089,6 +3169,15 @@ msgstr ""
|
|||
msgid "Object too small"
|
||||
msgstr "Objeto demasiado pequeño"
|
||||
|
||||
msgid ""
|
||||
"This file contains several objects positioned at multiple heights.\n"
|
||||
"Instead of considering them as multiple objects, should \n"
|
||||
"the file be loaded as a single object having multiple parts?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-part object detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load these files as a single object with multiple parts?\n"
|
||||
msgstr "¿Cargar estos archivos como un objeto único con múltiples partes?\n"
|
||||
|
||||
|
@ -3118,6 +3207,15 @@ msgstr "El objeto seleccionado no ha podido ser dividido."
|
|||
msgid "Another export job is running."
|
||||
msgstr "Otro trabajo de exportación está en marcha."
|
||||
|
||||
msgid "Select a new file"
|
||||
msgstr ""
|
||||
|
||||
msgid "File for the replace wasn't selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during replace"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please select a file"
|
||||
msgstr "Por favor, seleccione un archivo"
|
||||
|
||||
|
@ -3218,6 +3316,9 @@ msgstr "Guardar archivo Código G como:"
|
|||
msgid "Save Sliced file as:"
|
||||
msgstr "Guardar el archivo rebanado como:"
|
||||
|
||||
msgid "preparing, export 3mf failed!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
"Suggest to use auto-arrange to avoid collisions when printing."
|
||||
|
@ -3749,6 +3850,12 @@ msgstr "Guardar %s actuales"
|
|||
msgid "Delete this preset"
|
||||
msgstr "Borra este ajuste"
|
||||
|
||||
msgid "Search in preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Click to reset all settings to the last saved preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Prime tower is required by timeplase. Are you sure you want to disable both "
|
||||
"of them?"
|
||||
|
@ -4507,6 +4614,53 @@ msgstr "Nueva versión de Bambu Studio"
|
|||
msgid "Don't remind me of this version again"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to update? This will take about 10 minutes. Do not "
|
||||
"turn off the power while the printer is updating."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"An important update was detected and needs to be run before printing can "
|
||||
"continue. Do you want to update now? You can also update later from 'Upgrade "
|
||||
"firmware'."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
"printing. Do you want to update now? You can also update later on printer or "
|
||||
"update next time starting the studio."
|
||||
msgstr ""
|
||||
|
||||
msgid "Model:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Serial:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrade firmware"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Idle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Latest version"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading successful"
|
||||
msgstr ""
|
||||
|
||||
msgid "Saving objects into the 3mf failed."
|
||||
msgstr "El guardado de objetos en el 3mf no ha funcionado."
|
||||
|
||||
|
@ -4803,6 +4957,11 @@ msgstr ""
|
|||
msgid "No extrusions under current settings."
|
||||
msgstr "No hay extrusiones con los ajustes actuales."
|
||||
|
||||
msgid ""
|
||||
"Smooth mode of timelapse is not supported when \"by object\" sequence is "
|
||||
"enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please select \"By object\" print sequence to print multiple objects in "
|
||||
"spiral vase mode."
|
||||
|
@ -5286,8 +5445,8 @@ msgstr "Patrón de líneas del relleno de la superficie superior"
|
|||
msgid "Concentric"
|
||||
msgstr "Concéntrico"
|
||||
|
||||
msgid "Zig zag"
|
||||
msgstr "Zig zag"
|
||||
msgid "Rectilinear"
|
||||
msgstr "Rectilíneo"
|
||||
|
||||
msgid "Monotonic"
|
||||
msgstr "Monotónico"
|
||||
|
@ -5295,6 +5454,12 @@ msgstr "Monotónico"
|
|||
msgid "Monotonic line"
|
||||
msgstr "Linea continua"
|
||||
|
||||
msgid "Aligned Rectilinear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hilbert Curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Patrón de la superficie inferior"
|
||||
|
||||
|
@ -6295,6 +6460,14 @@ msgid "Don't create support on model surface, only on build plate"
|
|||
msgstr ""
|
||||
"No crear soporte en la superficie del modelo, sólo en la placa de impresión"
|
||||
|
||||
msgid "Support critical regions only"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Only create support for critical regions including sharp tail, cantilever, "
|
||||
"etc."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "Distancia Z superior"
|
||||
|
||||
|
@ -6361,9 +6534,6 @@ msgstr "Patrón de base"
|
|||
msgid "Line pattern of support"
|
||||
msgstr "Patrón lineal de apoyo"
|
||||
|
||||
msgid "Rectilinear"
|
||||
msgstr "Rectilíneo"
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Rejilla rectilínea"
|
||||
|
||||
|
@ -6811,6 +6981,34 @@ msgstr "Soporte: arreglar huecos en la capa %d"
|
|||
msgid "Support: propagate branches at layer %d"
|
||||
msgstr "Soporte: propagar ramas en la capa %d"
|
||||
|
||||
#~ msgid "Reduce Triangles"
|
||||
#~ msgstr "Reducir los triángulos"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Switch to zig-zag pattern?\n"
|
||||
#~ "Yes - switch to zig-zag pattern automaticlly\n"
|
||||
#~ "No - reset density to default non 100% value automaticlly\n"
|
||||
#~ msgstr ""
|
||||
#~ "¿Cambiar al patrón en zig-zag?\n"
|
||||
#~ "Sí - cambia automáticamente al patrón en zig-zag\n"
|
||||
#~ "No - restablecer automáticamente la densidad al valor por defecto que no "
|
||||
#~ "es del 100%.\n"
|
||||
|
||||
#~ msgid "Extruder position"
|
||||
#~ msgstr "Posición del extrusor"
|
||||
|
||||
#~ msgid "Zig zag"
|
||||
#~ msgstr "Zig zag"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Bed temperature is higher than vitrification temperature of this "
|
||||
#~ "filament.\n"
|
||||
#~ "This may cause nozzle blocked and printing failure"
|
||||
#~ msgstr ""
|
||||
#~ "La temperatura del lecho es superior a la temperatura de vitrificación de "
|
||||
#~ "este filamento.\n"
|
||||
#~ "Esto puede causar el bloqueo de la boquilla y el fracaso de la impresión"
|
||||
|
||||
#~ msgid "0%"
|
||||
#~ msgstr "0%"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Bambu Studio\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-09 11:50+0800\n"
|
||||
"POT-Creation-Date: 2022-09-27 16:25+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
@ -690,11 +690,17 @@ msgstr "Réparer le modèle"
|
|||
msgid "Export as STL"
|
||||
msgstr "Exporter en STL"
|
||||
|
||||
msgid "Reload item"
|
||||
msgstr "Recharger l'élément"
|
||||
msgid "Reload from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload items"
|
||||
msgstr "Recharger les éléments"
|
||||
msgid "Reload the selected parts from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace with STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the selected part with new STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change filament"
|
||||
msgstr "Changer de filament"
|
||||
|
@ -830,8 +836,11 @@ msgstr "Supprimer la plaque sélectionnée"
|
|||
msgid "Clone"
|
||||
msgstr "Cloner"
|
||||
|
||||
msgid "Reduce Triangles"
|
||||
msgstr "Réduire les triangles"
|
||||
msgid "Simplify Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit in Parameter Table"
|
||||
msgstr ""
|
||||
|
@ -1629,11 +1638,10 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Bed temperature is higher than vitrification temperature of this filament.\n"
|
||||
"This may cause nozzle blocked and printing failure"
|
||||
"This may cause nozzle blocked and printing failure\n"
|
||||
"Please keep the printer open during the printing process to ensure air "
|
||||
"circulation or reduce the temperature of the hot bed"
|
||||
msgstr ""
|
||||
"La température du lit est supérieure à la température de vitrification de ce "
|
||||
"filament. Cela peut entraîner le blocage de la buse et l'échec de "
|
||||
"l'impression"
|
||||
|
||||
msgid ""
|
||||
"Too small layer height.\n"
|
||||
|
@ -1741,14 +1749,10 @@ msgstr ""
|
|||
"Le motif de remplissage %1% ne prend pas en charge une densité de 100%%."
|
||||
|
||||
msgid ""
|
||||
"Switch to zig-zag pattern?\n"
|
||||
"Yes - switch to zig-zag pattern automaticlly\n"
|
||||
"Switch to rectilinear pattern?\n"
|
||||
"Yes - switch to rectilinear pattern automaticlly\n"
|
||||
"No - reset density to default non 100% value automaticlly\n"
|
||||
msgstr ""
|
||||
"Passer au motif en zigzag?\n"
|
||||
"Oui - passer automatiquement au motif en zigzag\n"
|
||||
"Non - réinitialiser automatiquement la densité à la valeur par défaut autre "
|
||||
"que 100%\n"
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Niveau de plateau automatique"
|
||||
|
@ -1862,13 +1866,13 @@ msgstr ""
|
|||
msgid "N/A"
|
||||
msgstr "N / A"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Chiffre non valide."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be percentage"
|
||||
msgstr "%s ne peut pas être un pourcentage"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Chiffre non valide."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Value %s is out of range, continue?"
|
||||
msgstr "La valeur %s est hors plage, continuer ?"
|
||||
|
@ -1908,8 +1912,11 @@ msgstr "débit"
|
|||
msgid "Tool"
|
||||
msgstr "Outil"
|
||||
|
||||
msgid "Extruder position"
|
||||
msgstr "Position de l'extrudeuse"
|
||||
msgid "Speed: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Flow: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading G-codes"
|
||||
msgstr "Chargement des codes G"
|
||||
|
@ -2007,6 +2014,9 @@ msgstr "Filament 1"
|
|||
msgid "Flushed filament"
|
||||
msgstr "Filament purgé"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
msgid "Filament change times"
|
||||
msgstr "Temps de changement de filament"
|
||||
|
||||
|
@ -2040,9 +2050,6 @@ msgstr "Temps de préparation"
|
|||
msgid "Model printing time"
|
||||
msgstr "Temps d'impression du modèle"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
msgid "Switch to silent mode"
|
||||
msgstr "Passer en mode silencieux"
|
||||
|
||||
|
@ -2553,13 +2560,16 @@ msgstr "Échec de l'initialisation (pas de périphérique) !"
|
|||
msgid "Initializing..."
|
||||
msgstr "Initialisation..."
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Chargement..."
|
||||
|
||||
msgid "Initialize failed (Not supported)!"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed [%d]!"
|
||||
msgstr "Échec de l'initialisation [%d] !"
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Chargement..."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Arrêté."
|
||||
|
||||
|
@ -2579,18 +2589,45 @@ msgstr "Month"
|
|||
msgid "All Files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by year, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by month, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show all files, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to timelapse files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
msgid "Switch to video files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download"
|
||||
msgstr "Télécharger"
|
||||
|
||||
msgid "Download selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Management"
|
||||
msgstr "Management"
|
||||
|
||||
msgid "Batch manage files."
|
||||
msgstr ""
|
||||
|
||||
msgid "No printers."
|
||||
msgstr "No printers."
|
||||
|
||||
msgid "Not supported."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting..."
|
||||
msgstr "Connecting..."
|
||||
|
||||
|
@ -2692,6 +2729,12 @@ msgstr "Les informations de débogage"
|
|||
msgid "Printing List"
|
||||
msgstr "Liste d'impression"
|
||||
|
||||
msgid "Cancel print"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure you want to cancel this print?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Downloading..."
|
||||
msgstr "Downloading..."
|
||||
|
||||
|
@ -2894,10 +2937,10 @@ msgctxt "Layers"
|
|||
msgid "Bottom"
|
||||
msgstr "Fond"
|
||||
|
||||
msgid "Spaghetti Detection"
|
||||
msgid "Spaghetti and Excess Chute Pileup Detection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stop printing when spaghetti detected"
|
||||
msgid "Stop printing when Spaghetti or Excess Chute Pileup is detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer Inspection"
|
||||
|
@ -2969,6 +3012,33 @@ msgstr "Type de lit"
|
|||
msgid "Flushing volumes"
|
||||
msgstr "Volumes de rinçage"
|
||||
|
||||
msgid "Add one filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove last filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync material list from AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set filaments to use"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"No AMS filaments. Please select a printer in 'Device' page to load AMS info."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync filaments with AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sync filaments with AMS will drop all current selected filament presets and "
|
||||
"colors. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are no compatible filaments, and sync is not performed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Untitled"
|
||||
msgstr "Sans titre"
|
||||
|
||||
|
@ -2976,6 +3046,16 @@ msgstr "Sans titre"
|
|||
msgid "Do you want to save changes to \"%1%\"?"
|
||||
msgstr "Voulez-vous enregistrer les modifications apportées à \"%1%\" ?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Successfully unmounted. The device %s(%s) can now be safely removed from the "
|
||||
"computer."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Ejecting of device %s(%s) has failed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Previous unsaved project detected, do you want to restore it?"
|
||||
msgstr "Projet précédent non enregistré détecté, voulez-vous le restaurer ?"
|
||||
|
||||
|
@ -3058,6 +3138,15 @@ msgstr ""
|
|||
msgid "Object too small"
|
||||
msgstr "Objet trop petit"
|
||||
|
||||
msgid ""
|
||||
"This file contains several objects positioned at multiple heights.\n"
|
||||
"Instead of considering them as multiple objects, should \n"
|
||||
"the file be loaded as a single object having multiple parts?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-part object detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load these files as a single object with multiple parts?\n"
|
||||
msgstr ""
|
||||
"Charger ces fichiers en tant qu'objet unique avec plusieurs parties ?\n"
|
||||
|
@ -3088,6 +3177,15 @@ msgstr "L'objet sélectionné n'a pas pu être divisé."
|
|||
msgid "Another export job is running."
|
||||
msgstr "Une autre tâche d'exportation est en cours d'exécution."
|
||||
|
||||
msgid "Select a new file"
|
||||
msgstr ""
|
||||
|
||||
msgid "File for the replace wasn't selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during replace"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please select a file"
|
||||
msgstr "Veuillez sélectionner un fichier"
|
||||
|
||||
|
@ -3190,6 +3288,9 @@ msgstr "Enregistrer le fichier G-code sous :"
|
|||
msgid "Save Sliced file as:"
|
||||
msgstr "Enregistrer le fichier découpé sous :"
|
||||
|
||||
msgid "preparing, export 3mf failed!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
"Suggest to use auto-arrange to avoid collisions when printing."
|
||||
|
@ -3723,6 +3824,12 @@ msgstr "Enregistrer le %s actuel"
|
|||
msgid "Delete this preset"
|
||||
msgstr "Supprimer ce préréglage"
|
||||
|
||||
msgid "Search in preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Click to reset all settings to the last saved preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Prime tower is required by timeplase. Are you sure you want to disable both "
|
||||
"of them?"
|
||||
|
@ -4486,6 +4593,53 @@ msgstr "Nouvelle version de Bambu Studio"
|
|||
msgid "Don't remind me of this version again"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to update? This will take about 10 minutes. Do not "
|
||||
"turn off the power while the printer is updating."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"An important update was detected and needs to be run before printing can "
|
||||
"continue. Do you want to update now? You can also update later from 'Upgrade "
|
||||
"firmware'."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
"printing. Do you want to update now? You can also update later on printer or "
|
||||
"update next time starting the studio."
|
||||
msgstr ""
|
||||
|
||||
msgid "Model:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Serial:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrade firmware"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Idle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Latest version"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading successful"
|
||||
msgstr ""
|
||||
|
||||
msgid "Saving objects into the 3mf failed."
|
||||
msgstr "L'enregistrement d'objets dans le 3mf a échoué."
|
||||
|
||||
|
@ -4786,6 +4940,11 @@ msgstr ""
|
|||
msgid "No extrusions under current settings."
|
||||
msgstr "Aucune extrusion dans les paramètres actuels."
|
||||
|
||||
msgid ""
|
||||
"Smooth mode of timelapse is not supported when \"by object\" sequence is "
|
||||
"enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please select \"By object\" print sequence to print multiple objects in "
|
||||
"spiral vase mode."
|
||||
|
@ -5275,8 +5434,8 @@ msgstr "Motif de ligne du remplissage de la surface supérieure"
|
|||
msgid "Concentric"
|
||||
msgstr "Concentrique"
|
||||
|
||||
msgid "Zig zag"
|
||||
msgstr "Zig zag"
|
||||
msgid "Rectilinear"
|
||||
msgstr "Rectiligne"
|
||||
|
||||
msgid "Monotonic"
|
||||
msgstr "Monotone"
|
||||
|
@ -5284,6 +5443,12 @@ msgstr "Monotone"
|
|||
msgid "Monotonic line"
|
||||
msgstr "Ligne monotone"
|
||||
|
||||
msgid "Aligned Rectilinear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hilbert Curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Modèle de surface inférieure"
|
||||
|
||||
|
@ -6297,6 +6462,14 @@ msgstr ""
|
|||
"Ne créez pas de support sur la surface du modèle, uniquement sur la plaque "
|
||||
"de construction"
|
||||
|
||||
msgid "Support critical regions only"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Only create support for critical regions including sharp tail, cantilever, "
|
||||
"etc."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "Distance Z supérieure"
|
||||
|
||||
|
@ -6361,9 +6534,6 @@ msgstr "Motif de base"
|
|||
msgid "Line pattern of support"
|
||||
msgstr "Motif de ligne de support"
|
||||
|
||||
msgid "Rectilinear"
|
||||
msgstr "Rectiligne"
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Grille rectiligne"
|
||||
|
||||
|
@ -6814,6 +6984,34 @@ msgstr "Support : Correction des trous dans la couche %d"
|
|||
msgid "Support: propagate branches at layer %d"
|
||||
msgstr "Support : propagation des branches à la couche %d"
|
||||
|
||||
#~ msgid "Reduce Triangles"
|
||||
#~ msgstr "Réduire les triangles"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Switch to zig-zag pattern?\n"
|
||||
#~ "Yes - switch to zig-zag pattern automaticlly\n"
|
||||
#~ "No - reset density to default non 100% value automaticlly\n"
|
||||
#~ msgstr ""
|
||||
#~ "Passer au motif en zigzag?\n"
|
||||
#~ "Oui - passer automatiquement au motif en zigzag\n"
|
||||
#~ "Non - réinitialiser automatiquement la densité à la valeur par défaut "
|
||||
#~ "autre que 100%\n"
|
||||
|
||||
#~ msgid "Extruder position"
|
||||
#~ msgstr "Position de l'extrudeuse"
|
||||
|
||||
#~ msgid "Zig zag"
|
||||
#~ msgstr "Zig zag"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Bed temperature is higher than vitrification temperature of this "
|
||||
#~ "filament.\n"
|
||||
#~ "This may cause nozzle blocked and printing failure"
|
||||
#~ msgstr ""
|
||||
#~ "La température du lit est supérieure à la température de vitrification de "
|
||||
#~ "ce filament. Cela peut entraîner le blocage de la buse et l'échec de "
|
||||
#~ "l'impression"
|
||||
|
||||
#~ msgid "0%"
|
||||
#~ msgstr "0%"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Bambu Studio\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-09 11:50+0800\n"
|
||||
"POT-Creation-Date: 2022-09-27 16:25+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
@ -688,11 +688,17 @@ msgstr "Model javítása"
|
|||
msgid "Export as STL"
|
||||
msgstr "Exportálás STL-ként"
|
||||
|
||||
msgid "Reload item"
|
||||
msgstr "Tárgy újbóli betöltése"
|
||||
msgid "Reload from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload items"
|
||||
msgstr "Tárgyak újbóli betöltése"
|
||||
msgid "Reload the selected parts from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace with STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the selected part with new STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change filament"
|
||||
msgstr "Filament csere"
|
||||
|
@ -829,8 +835,11 @@ msgstr "Kiválasztott tálca eltávolítása"
|
|||
msgid "Clone"
|
||||
msgstr "Klónozás"
|
||||
|
||||
msgid "Reduce Triangles"
|
||||
msgstr "Háromszögek csökkentése"
|
||||
msgid "Simplify Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit in Parameter Table"
|
||||
msgstr ""
|
||||
|
@ -1636,11 +1645,10 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Bed temperature is higher than vitrification temperature of this filament.\n"
|
||||
"This may cause nozzle blocked and printing failure"
|
||||
"This may cause nozzle blocked and printing failure\n"
|
||||
"Please keep the printer open during the printing process to ensure air "
|
||||
"circulation or reduce the temperature of the hot bed"
|
||||
msgstr ""
|
||||
"Az asztalhőmérséklet magasabb, mint ennek a filamentnek az üvegesedési "
|
||||
"hőmérséklete.\n"
|
||||
"Ez a fúvóka eltömődését és nyomtatási hibákat okozhat"
|
||||
|
||||
msgid ""
|
||||
"Too small layer height.\n"
|
||||
|
@ -1758,13 +1766,10 @@ msgid "%1% infill pattern doesn't support 100%% density."
|
|||
msgstr "%1% kitöltési mintázat nem támogatja a 100%%-os kitöltés."
|
||||
|
||||
msgid ""
|
||||
"Switch to zig-zag pattern?\n"
|
||||
"Yes - switch to zig-zag pattern automaticlly\n"
|
||||
"Switch to rectilinear pattern?\n"
|
||||
"Yes - switch to rectilinear pattern automaticlly\n"
|
||||
"No - reset density to default non 100% value automaticlly\n"
|
||||
msgstr ""
|
||||
"Switch to zig-zag pattern?\n"
|
||||
"Yes - Switch to zig-zag pattern automatically\n"
|
||||
"No - Reset density to default non-100% value automatically\n"
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Automatikus asztalszintezés"
|
||||
|
@ -1877,13 +1882,13 @@ msgstr ""
|
|||
msgid "N/A"
|
||||
msgstr "N/A"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Érvénytelen számjegy."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be percentage"
|
||||
msgstr "%s nem lehet százalék"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Érvénytelen számjegy."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Value %s is out of range, continue?"
|
||||
msgstr "Value %s is out of range, continue?"
|
||||
|
@ -1926,8 +1931,11 @@ msgstr "Anyagáramlás"
|
|||
msgid "Tool"
|
||||
msgstr "Tool"
|
||||
|
||||
msgid "Extruder position"
|
||||
msgstr "Extruder pozíció"
|
||||
msgid "Speed: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Flow: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading G-codes"
|
||||
msgstr "Loading G-codes"
|
||||
|
@ -2025,6 +2033,9 @@ msgstr "Filament 1"
|
|||
msgid "Flushed filament"
|
||||
msgstr "Öblített filament"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Összesen"
|
||||
|
||||
msgid "Filament change times"
|
||||
msgstr "Filamentcserék száma"
|
||||
|
||||
|
@ -2058,9 +2069,6 @@ msgstr "Előkészítési idő"
|
|||
msgid "Model printing time"
|
||||
msgstr "Modell nyomtatási ideje"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Összesen"
|
||||
|
||||
msgid "Switch to silent mode"
|
||||
msgstr "Switch to silent mode"
|
||||
|
||||
|
@ -2579,13 +2587,16 @@ msgstr "Sikertelen inicializálás (Nincs eszköz)!"
|
|||
msgid "Initializing..."
|
||||
msgstr "Initializing..."
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Loading..."
|
||||
|
||||
msgid "Initialize failed (Not supported)!"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed [%d]!"
|
||||
msgstr "Initalization failed [%d]!"
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Loading..."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Megállítva."
|
||||
|
||||
|
@ -2605,18 +2616,45 @@ msgstr "Month"
|
|||
msgid "All Files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by year, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by month, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show all files, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to timelapse files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
msgid "Switch to video files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download"
|
||||
msgstr "Letöltés"
|
||||
|
||||
msgid "Download selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Management"
|
||||
msgstr "Management"
|
||||
|
||||
msgid "Batch manage files."
|
||||
msgstr ""
|
||||
|
||||
msgid "No printers."
|
||||
msgstr "No printers."
|
||||
|
||||
msgid "Not supported."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting..."
|
||||
msgstr "Csatlakozás..."
|
||||
|
||||
|
@ -2718,6 +2756,12 @@ msgstr "Hibakeresési infó"
|
|||
msgid "Printing List"
|
||||
msgstr "Nyomtatási lista"
|
||||
|
||||
msgid "Cancel print"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure you want to cancel this print?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Downloading..."
|
||||
msgstr "Letöltés..."
|
||||
|
||||
|
@ -2921,10 +2965,10 @@ msgctxt "Layers"
|
|||
msgid "Bottom"
|
||||
msgstr "Alsó"
|
||||
|
||||
msgid "Spaghetti Detection"
|
||||
msgid "Spaghetti and Excess Chute Pileup Detection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stop printing when spaghetti detected"
|
||||
msgid "Stop printing when Spaghetti or Excess Chute Pileup is detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer Inspection"
|
||||
|
@ -2994,6 +3038,33 @@ msgstr "Asztaltípus"
|
|||
msgid "Flushing volumes"
|
||||
msgstr "Öblítési mennyiségek"
|
||||
|
||||
msgid "Add one filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove last filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync material list from AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set filaments to use"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"No AMS filaments. Please select a printer in 'Device' page to load AMS info."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync filaments with AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sync filaments with AMS will drop all current selected filament presets and "
|
||||
"colors. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are no compatible filaments, and sync is not performed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Untitled"
|
||||
msgstr "Untitled"
|
||||
|
||||
|
@ -3001,6 +3072,16 @@ msgstr "Untitled"
|
|||
msgid "Do you want to save changes to \"%1%\"?"
|
||||
msgstr "Szeretnéd elmenteni \"%1%\" változásait?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Successfully unmounted. The device %s(%s) can now be safely removed from the "
|
||||
"computer."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Ejecting of device %s(%s) has failed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Previous unsaved project detected, do you want to restore it?"
|
||||
msgstr "Korábbi, nem mentett projektet találtunk, vissza szeretnéd állítani?"
|
||||
|
||||
|
@ -3079,6 +3160,15 @@ msgstr ""
|
|||
msgid "Object too small"
|
||||
msgstr "Object too small"
|
||||
|
||||
msgid ""
|
||||
"This file contains several objects positioned at multiple heights.\n"
|
||||
"Instead of considering them as multiple objects, should \n"
|
||||
"the file be loaded as a single object having multiple parts?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-part object detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load these files as a single object with multiple parts?\n"
|
||||
msgstr "Load these files as a single object with multiple parts?\n"
|
||||
|
||||
|
@ -3108,6 +3198,15 @@ msgstr "The selected object couldn't be split."
|
|||
msgid "Another export job is running."
|
||||
msgstr "Egy másik exportálási feladat is fut."
|
||||
|
||||
msgid "Select a new file"
|
||||
msgstr ""
|
||||
|
||||
msgid "File for the replace wasn't selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during replace"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please select a file"
|
||||
msgstr "Kérjük, válassz egy fájlt"
|
||||
|
||||
|
@ -3210,6 +3309,9 @@ msgstr "G-kód fájl mentése mint:"
|
|||
msgid "Save Sliced file as:"
|
||||
msgstr "Szeletelt fájl mentése mint:"
|
||||
|
||||
msgid "preparing, export 3mf failed!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
"Suggest to use auto-arrange to avoid collisions when printing."
|
||||
|
@ -3728,6 +3830,12 @@ msgstr "Jelenlegi %s mentése"
|
|||
msgid "Delete this preset"
|
||||
msgstr "Ezen beállítás törlése"
|
||||
|
||||
msgid "Search in preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Click to reset all settings to the last saved preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Prime tower is required by timeplase. Are you sure you want to disable both "
|
||||
"of them?"
|
||||
|
@ -4484,6 +4592,53 @@ msgstr "A Bambu Studio új verziója"
|
|||
msgid "Don't remind me of this version again"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to update? This will take about 10 minutes. Do not "
|
||||
"turn off the power while the printer is updating."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"An important update was detected and needs to be run before printing can "
|
||||
"continue. Do you want to update now? You can also update later from 'Upgrade "
|
||||
"firmware'."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
"printing. Do you want to update now? You can also update later on printer or "
|
||||
"update next time starting the studio."
|
||||
msgstr ""
|
||||
|
||||
msgid "Model:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Serial:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrade firmware"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Idle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Latest version"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading successful"
|
||||
msgstr ""
|
||||
|
||||
msgid "Saving objects into the 3mf failed."
|
||||
msgstr "Az objektumok mentése a 3mf-be sikertelen volt."
|
||||
|
||||
|
@ -4784,6 +4939,11 @@ msgstr ""
|
|||
msgid "No extrusions under current settings."
|
||||
msgstr "No extrusions under current settings."
|
||||
|
||||
msgid ""
|
||||
"Smooth mode of timelapse is not supported when \"by object\" sequence is "
|
||||
"enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please select \"By object\" print sequence to print multiple objects in "
|
||||
"spiral vase mode."
|
||||
|
@ -5257,8 +5417,8 @@ msgstr "This is the line pattern for top surface infill."
|
|||
msgid "Concentric"
|
||||
msgstr "Koncentrikus"
|
||||
|
||||
msgid "Zig zag"
|
||||
msgstr "Cikcakk"
|
||||
msgid "Rectilinear"
|
||||
msgstr "Vonalak"
|
||||
|
||||
msgid "Monotonic"
|
||||
msgstr "Monotonikus"
|
||||
|
@ -5266,6 +5426,12 @@ msgstr "Monotonikus"
|
|||
msgid "Monotonic line"
|
||||
msgstr "Monotonikus vonal"
|
||||
|
||||
msgid "Aligned Rectilinear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hilbert Curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Alsó felület mintázata"
|
||||
|
||||
|
@ -6265,6 +6431,14 @@ msgstr "Csak a tárgyasztaltól"
|
|||
msgid "Don't create support on model surface, only on build plate"
|
||||
msgstr "Nem generál támaszt a modell felületén, csak a tárgyasztalon"
|
||||
|
||||
msgid "Support critical regions only"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Only create support for critical regions including sharp tail, cantilever, "
|
||||
"etc."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "Z távolság"
|
||||
|
||||
|
@ -6330,9 +6504,6 @@ msgstr "Alap mintázata"
|
|||
msgid "Line pattern of support"
|
||||
msgstr "This is the line pattern for support."
|
||||
|
||||
msgid "Rectilinear"
|
||||
msgstr "Vonalak"
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Vonalrács"
|
||||
|
||||
|
@ -6771,6 +6942,33 @@ msgstr "Support: fix holes at layer %d"
|
|||
msgid "Support: propagate branches at layer %d"
|
||||
msgstr "Support: propagate branches at layer %d"
|
||||
|
||||
#~ msgid "Reduce Triangles"
|
||||
#~ msgstr "Háromszögek csökkentése"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Switch to zig-zag pattern?\n"
|
||||
#~ "Yes - switch to zig-zag pattern automaticlly\n"
|
||||
#~ "No - reset density to default non 100% value automaticlly\n"
|
||||
#~ msgstr ""
|
||||
#~ "Switch to zig-zag pattern?\n"
|
||||
#~ "Yes - Switch to zig-zag pattern automatically\n"
|
||||
#~ "No - Reset density to default non-100% value automatically\n"
|
||||
|
||||
#~ msgid "Extruder position"
|
||||
#~ msgstr "Extruder pozíció"
|
||||
|
||||
#~ msgid "Zig zag"
|
||||
#~ msgstr "Cikcakk"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Bed temperature is higher than vitrification temperature of this "
|
||||
#~ "filament.\n"
|
||||
#~ "This may cause nozzle blocked and printing failure"
|
||||
#~ msgstr ""
|
||||
#~ "Az asztalhőmérséklet magasabb, mint ennek a filamentnek az üvegesedési "
|
||||
#~ "hőmérséklete.\n"
|
||||
#~ "Ez a fúvóka eltömődését és nyomtatási hibákat okozhat"
|
||||
|
||||
#~ msgid "0%"
|
||||
#~ msgstr "0%"
|
||||
|
||||
|
|
|
@ -56,6 +56,7 @@ src/slic3r/GUI/GLCanvas3D.cpp
|
|||
src/slic3r/GUI/Calibration.cpp
|
||||
src/slic3r/GUI/CameraPopup.cpp
|
||||
src/slic3r/GUI/ConnectPrinter.cpp
|
||||
src/slic3r/GUI/ConfirmHintDialog.cpp
|
||||
src/slic3r/GUI/HMSPanel.cpp
|
||||
src/slic3r/GUI/MainFrame.cpp
|
||||
src/slic3r/GUI/MediaPlayCtrl.cpp
|
||||
|
@ -99,6 +100,7 @@ src/slic3r/GUI/KBShortcutsDialog.hpp
|
|||
src/slic3r/GUI/KBShortcutsDialog.cpp
|
||||
src/slic3r/GUI/ReleaseNote.cpp
|
||||
src/slic3r/GUI/ReleaseNote.hpp
|
||||
src/slic3r/GUI/UpgradePanel.cpp
|
||||
src/slic3r/Utils/FixModelByWin10.cpp
|
||||
src/slic3r/Utils/PresetUpdater.cpp
|
||||
src/slic3r/Utils/Http.cpp
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Bambu Studio\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-09 11:50+0800\n"
|
||||
"POT-Creation-Date: 2022-09-27 16:25+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
@ -686,11 +686,17 @@ msgstr "Repareer model"
|
|||
msgid "Export as STL"
|
||||
msgstr "Exporteer als STL bestand"
|
||||
|
||||
msgid "Reload item"
|
||||
msgstr "Onderdeel opnieuw laden"
|
||||
msgid "Reload from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload items"
|
||||
msgstr "Onderdelen opnieuw laden"
|
||||
msgid "Reload the selected parts from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace with STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the selected part with new STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change filament"
|
||||
msgstr "Verander filament"
|
||||
|
@ -828,8 +834,11 @@ msgstr "Verwijder het huidige printbed"
|
|||
msgid "Clone"
|
||||
msgstr "Dupliceren"
|
||||
|
||||
msgid "Reduce Triangles"
|
||||
msgstr "Aantal driehoeken verkleinen (vereenvoudigen)"
|
||||
msgid "Simplify Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit in Parameter Table"
|
||||
msgstr ""
|
||||
|
@ -1639,10 +1648,10 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Bed temperature is higher than vitrification temperature of this filament.\n"
|
||||
"This may cause nozzle blocked and printing failure"
|
||||
"This may cause nozzle blocked and printing failure\n"
|
||||
"Please keep the printer open during the printing process to ensure air "
|
||||
"circulation or reduce the temperature of the hot bed"
|
||||
msgstr ""
|
||||
"De bedtemperatuur is hoger dan de verglazingstemperatuur van dit filament. "
|
||||
"Hierdoor kan de nozzle verstopt raken en kan het printen mislukken"
|
||||
|
||||
msgid ""
|
||||
"Too small layer height.\n"
|
||||
|
@ -1762,13 +1771,10 @@ msgid "%1% infill pattern doesn't support 100%% density."
|
|||
msgstr "%1% het gekozen vulling patroon ondersteund geen 100%% dichtheid."
|
||||
|
||||
msgid ""
|
||||
"Switch to zig-zag pattern?\n"
|
||||
"Yes - switch to zig-zag pattern automaticlly\n"
|
||||
"Switch to rectilinear pattern?\n"
|
||||
"Yes - switch to rectilinear pattern automaticlly\n"
|
||||
"No - reset density to default non 100% value automaticlly\n"
|
||||
msgstr ""
|
||||
"Overschakelen naar zigzagpatroon?\n"
|
||||
"Ja - Automatisch overschakelen naar zigzagpatroon\n"
|
||||
"Nee - Reset vulling automatisch naar de standaard niet-100% waarde\n"
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Automatisch bed levellen"
|
||||
|
@ -1881,13 +1887,13 @@ msgstr ""
|
|||
msgid "N/A"
|
||||
msgstr "N/B"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Onjuist getal."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be percentage"
|
||||
msgstr "%s kan geen percentage zijn"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Onjuist getal."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Value %s is out of range, continue?"
|
||||
msgstr "De %s waarde is buiten het bereik, doorgaan?"
|
||||
|
@ -1930,8 +1936,11 @@ msgstr "Flow"
|
|||
msgid "Tool"
|
||||
msgstr "Hulpmiddel"
|
||||
|
||||
msgid "Extruder position"
|
||||
msgstr "Positie van de extruder"
|
||||
msgid "Speed: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Flow: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading G-codes"
|
||||
msgstr "G-codes worden geladen"
|
||||
|
@ -2029,6 +2038,9 @@ msgstr "Filament 1"
|
|||
msgid "Flushed filament"
|
||||
msgstr "Flushed filament"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Totaal"
|
||||
|
||||
msgid "Filament change times"
|
||||
msgstr "Filamentwisseltijden"
|
||||
|
||||
|
@ -2062,9 +2074,6 @@ msgstr "Voorbereidingstijd"
|
|||
msgid "Model printing time"
|
||||
msgstr "Model print tijd"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Totaal"
|
||||
|
||||
msgid "Switch to silent mode"
|
||||
msgstr "Omzetten naar stille modus"
|
||||
|
||||
|
@ -2574,13 +2583,16 @@ msgstr "Het initializeren is mislukt (geen apparaat)!"
|
|||
msgid "Initializing..."
|
||||
msgstr "Initialiseren..."
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Laden..."
|
||||
|
||||
msgid "Initialize failed (Not supported)!"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed [%d]!"
|
||||
msgstr "Het initialiseren is mislukt [%d]!"
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Laden..."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Gestopt."
|
||||
|
||||
|
@ -2600,18 +2612,45 @@ msgstr "Maand"
|
|||
msgid "All Files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by year, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by month, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show all files, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to timelapse files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
msgid "Switch to video files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download"
|
||||
msgstr "Downloaden"
|
||||
|
||||
msgid "Download selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Management"
|
||||
msgstr "Management"
|
||||
|
||||
msgid "Batch manage files."
|
||||
msgstr ""
|
||||
|
||||
msgid "No printers."
|
||||
msgstr "Geen printers"
|
||||
|
||||
msgid "Not supported."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting..."
|
||||
msgstr "Verbinden..."
|
||||
|
||||
|
@ -2713,6 +2752,12 @@ msgstr "Informatie over Debuggen"
|
|||
msgid "Printing List"
|
||||
msgstr "Print lijst"
|
||||
|
||||
msgid "Cancel print"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure you want to cancel this print?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Downloading..."
|
||||
msgstr "Downloaden..."
|
||||
|
||||
|
@ -2924,10 +2969,10 @@ msgctxt "Layers"
|
|||
msgid "Bottom"
|
||||
msgstr "Onderste"
|
||||
|
||||
msgid "Spaghetti Detection"
|
||||
msgid "Spaghetti and Excess Chute Pileup Detection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stop printing when spaghetti detected"
|
||||
msgid "Stop printing when Spaghetti or Excess Chute Pileup is detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer Inspection"
|
||||
|
@ -2999,6 +3044,33 @@ msgstr "Printbed type"
|
|||
msgid "Flushing volumes"
|
||||
msgstr "Volumes schoonmaken"
|
||||
|
||||
msgid "Add one filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove last filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync material list from AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set filaments to use"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"No AMS filaments. Please select a printer in 'Device' page to load AMS info."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync filaments with AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sync filaments with AMS will drop all current selected filament presets and "
|
||||
"colors. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are no compatible filaments, and sync is not performed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Untitled"
|
||||
msgstr "Naamloos"
|
||||
|
||||
|
@ -3006,6 +3078,16 @@ msgstr "Naamloos"
|
|||
msgid "Do you want to save changes to \"%1%\"?"
|
||||
msgstr "Wilt u de wijzigingen opslaan in \"%1%\"?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Successfully unmounted. The device %s(%s) can now be safely removed from the "
|
||||
"computer."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Ejecting of device %s(%s) has failed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Previous unsaved project detected, do you want to restore it?"
|
||||
msgstr ""
|
||||
"Er is niet opgeslagen project data gedectereerd, wilt u deze herstellen?"
|
||||
|
@ -3088,6 +3170,15 @@ msgstr ""
|
|||
msgid "Object too small"
|
||||
msgstr "He tobject is te klein"
|
||||
|
||||
msgid ""
|
||||
"This file contains several objects positioned at multiple heights.\n"
|
||||
"Instead of considering them as multiple objects, should \n"
|
||||
"the file be loaded as a single object having multiple parts?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-part object detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load these files as a single object with multiple parts?\n"
|
||||
msgstr ""
|
||||
"Wilt u deze bestanden laden als een enkel object bestaande uit meerdere "
|
||||
|
@ -3119,6 +3210,15 @@ msgstr "Het geselecteerde object kan niet opgesplitst worden."
|
|||
msgid "Another export job is running."
|
||||
msgstr "Er is reeds een export taak actief."
|
||||
|
||||
msgid "Select a new file"
|
||||
msgstr ""
|
||||
|
||||
msgid "File for the replace wasn't selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during replace"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please select a file"
|
||||
msgstr "Selecteer een bestand"
|
||||
|
||||
|
@ -3220,6 +3320,9 @@ msgstr "Bewaar G-code bestand als:"
|
|||
msgid "Save Sliced file as:"
|
||||
msgstr "Bewaar het geslicede bestand als:"
|
||||
|
||||
msgid "preparing, export 3mf failed!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
"Suggest to use auto-arrange to avoid collisions when printing."
|
||||
|
@ -3750,6 +3853,12 @@ msgstr "Bewaar huidige %s"
|
|||
msgid "Delete this preset"
|
||||
msgstr "Verwijder deze voorinstelling"
|
||||
|
||||
msgid "Search in preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Click to reset all settings to the last saved preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Prime tower is required by timeplase. Are you sure you want to disable both "
|
||||
"of them?"
|
||||
|
@ -4512,6 +4621,53 @@ msgstr "Nieuwe versie van Bambu Studio"
|
|||
msgid "Don't remind me of this version again"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to update? This will take about 10 minutes. Do not "
|
||||
"turn off the power while the printer is updating."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"An important update was detected and needs to be run before printing can "
|
||||
"continue. Do you want to update now? You can also update later from 'Upgrade "
|
||||
"firmware'."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
"printing. Do you want to update now? You can also update later on printer or "
|
||||
"update next time starting the studio."
|
||||
msgstr ""
|
||||
|
||||
msgid "Model:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Serial:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrade firmware"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Idle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Latest version"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading successful"
|
||||
msgstr ""
|
||||
|
||||
msgid "Saving objects into the 3mf failed."
|
||||
msgstr "Het opslaan van de objecten naar het 3mf bestand is mislukt."
|
||||
|
||||
|
@ -4815,6 +4971,11 @@ msgstr ""
|
|||
msgid "No extrusions under current settings."
|
||||
msgstr "Geen extrusion onder de huidige instellingen"
|
||||
|
||||
msgid ""
|
||||
"Smooth mode of timelapse is not supported when \"by object\" sequence is "
|
||||
"enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please select \"By object\" print sequence to print multiple objects in "
|
||||
"spiral vase mode."
|
||||
|
@ -5295,8 +5456,8 @@ msgstr ""
|
|||
msgid "Concentric"
|
||||
msgstr "Concentrisch"
|
||||
|
||||
msgid "Zig zag"
|
||||
msgstr "Zig-zag"
|
||||
msgid "Rectilinear"
|
||||
msgstr "Rechtlijning"
|
||||
|
||||
msgid "Monotonic"
|
||||
msgstr "Monotoon"
|
||||
|
@ -5304,6 +5465,12 @@ msgstr "Monotoon"
|
|||
msgid "Monotonic line"
|
||||
msgstr "Monotone lijn"
|
||||
|
||||
msgid "Aligned Rectilinear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hilbert Curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Bodem oppvlakte patroon"
|
||||
|
||||
|
@ -6315,6 +6482,14 @@ msgstr "Alleen op het printbed"
|
|||
msgid "Don't create support on model surface, only on build plate"
|
||||
msgstr "Deze instelling genereert alleen support die begint op het printbed."
|
||||
|
||||
msgid "Support critical regions only"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Only create support for critical regions including sharp tail, cantilever, "
|
||||
"etc."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "Top Z afstand"
|
||||
|
||||
|
@ -6381,9 +6556,6 @@ msgstr "Basis patroon"
|
|||
msgid "Line pattern of support"
|
||||
msgstr "Dit is het lijnpatroon voor support."
|
||||
|
||||
msgid "Rectilinear"
|
||||
msgstr "Rechtlijning"
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Rechtlijnig raster"
|
||||
|
||||
|
@ -6830,6 +7002,33 @@ msgstr "Support: repareer gaten op laag %d"
|
|||
msgid "Support: propagate branches at layer %d"
|
||||
msgstr "Support: verspreid takken op laag %d"
|
||||
|
||||
#~ msgid "Reduce Triangles"
|
||||
#~ msgstr "Aantal driehoeken verkleinen (vereenvoudigen)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Switch to zig-zag pattern?\n"
|
||||
#~ "Yes - switch to zig-zag pattern automaticlly\n"
|
||||
#~ "No - reset density to default non 100% value automaticlly\n"
|
||||
#~ msgstr ""
|
||||
#~ "Overschakelen naar zigzagpatroon?\n"
|
||||
#~ "Ja - Automatisch overschakelen naar zigzagpatroon\n"
|
||||
#~ "Nee - Reset vulling automatisch naar de standaard niet-100% waarde\n"
|
||||
|
||||
#~ msgid "Extruder position"
|
||||
#~ msgstr "Positie van de extruder"
|
||||
|
||||
#~ msgid "Zig zag"
|
||||
#~ msgstr "Zig-zag"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Bed temperature is higher than vitrification temperature of this "
|
||||
#~ "filament.\n"
|
||||
#~ "This may cause nozzle blocked and printing failure"
|
||||
#~ msgstr ""
|
||||
#~ "De bedtemperatuur is hoger dan de verglazingstemperatuur van dit "
|
||||
#~ "filament. Hierdoor kan de nozzle verstopt raken en kan het printen "
|
||||
#~ "mislukken"
|
||||
|
||||
#~ msgid "0%"
|
||||
#~ msgstr "0%"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Bambu Studio\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-09 11:50+0800\n"
|
||||
"POT-Creation-Date: 2022-09-27 16:25+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
@ -682,11 +682,17 @@ msgstr "Fixa modell"
|
|||
msgid "Export as STL"
|
||||
msgstr "Exportera som STL"
|
||||
|
||||
msgid "Reload item"
|
||||
msgstr "Ladda om objektet"
|
||||
msgid "Reload from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reload items"
|
||||
msgstr "Ladda om objekten"
|
||||
msgid "Reload the selected parts from disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace with STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the selected part with new STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change filament"
|
||||
msgstr "Byta filament"
|
||||
|
@ -821,8 +827,11 @@ msgstr "Radera den valda plattan"
|
|||
msgid "Clone"
|
||||
msgstr "Klona"
|
||||
|
||||
msgid "Reduce Triangles"
|
||||
msgstr "Reducera Trianglar"
|
||||
msgid "Simplify Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit in Parameter Table"
|
||||
msgstr ""
|
||||
|
@ -1613,11 +1622,10 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Bed temperature is higher than vitrification temperature of this filament.\n"
|
||||
"This may cause nozzle blocked and printing failure"
|
||||
"This may cause nozzle blocked and printing failure\n"
|
||||
"Please keep the printer open during the printing process to ensure air "
|
||||
"circulation or reduce the temperature of the hot bed"
|
||||
msgstr ""
|
||||
"Byggplattans temperatur överstiger kristalliserings temperaturen av detta "
|
||||
"filament.\n"
|
||||
"Detta kan orsaka att nozzeln blockeras och utskriften misslyckas"
|
||||
|
||||
msgid ""
|
||||
"Too small layer height.\n"
|
||||
|
@ -1733,13 +1741,10 @@ msgid "%1% infill pattern doesn't support 100%% density."
|
|||
msgstr "%1% ifyllnads mönster stöds ej 100%% densitet."
|
||||
|
||||
msgid ""
|
||||
"Switch to zig-zag pattern?\n"
|
||||
"Yes - switch to zig-zag pattern automaticlly\n"
|
||||
"Switch to rectilinear pattern?\n"
|
||||
"Yes - switch to rectilinear pattern automaticlly\n"
|
||||
"No - reset density to default non 100% value automaticlly\n"
|
||||
msgstr ""
|
||||
"Ändra till Zig-Zag mönster?\n"
|
||||
"JA - Byta till Zig-Zag mönster automatiskt\n"
|
||||
"NEJ - Återställ densiteten till standard inte 100% värdet automatiskt\n"
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
msgstr "Auto justera byggplattan"
|
||||
|
@ -1852,13 +1857,13 @@ msgstr ""
|
|||
msgid "N/A"
|
||||
msgstr "N/A"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Ogiltig siffra."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be percentage"
|
||||
msgstr "%s kan inte vara procent"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "Ogiltig siffra."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Value %s is out of range, continue?"
|
||||
msgstr "Värdet %s är utanför intervallet, fortsätta?"
|
||||
|
@ -1901,8 +1906,11 @@ msgstr "Flöde"
|
|||
msgid "Tool"
|
||||
msgstr "Verktyg"
|
||||
|
||||
msgid "Extruder position"
|
||||
msgstr "Extruder position"
|
||||
msgid "Speed: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Flow: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading G-codes"
|
||||
msgstr "Laddar G-koder"
|
||||
|
@ -2000,6 +2008,9 @@ msgstr "Filament 1"
|
|||
msgid "Flushed filament"
|
||||
msgstr "Rensat filament"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Totalt"
|
||||
|
||||
msgid "Filament change times"
|
||||
msgstr "Filament bytes tider"
|
||||
|
||||
|
@ -2033,9 +2044,6 @@ msgstr "Förbered tid"
|
|||
msgid "Model printing time"
|
||||
msgstr "Utskriftstid för modellen"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "Totalt"
|
||||
|
||||
msgid "Switch to silent mode"
|
||||
msgstr "Ändra till tyst läge"
|
||||
|
||||
|
@ -2545,13 +2553,16 @@ msgstr "Start misslyckad (Ingen Enhet)!"
|
|||
msgid "Initializing..."
|
||||
msgstr "Startar..."
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Laddar..."
|
||||
|
||||
msgid "Initialize failed (Not supported)!"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed [%d]!"
|
||||
msgstr "Start misslyckad [%d]!"
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "Laddar..."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Avbruten."
|
||||
|
||||
|
@ -2571,18 +2582,45 @@ msgstr "Månad"
|
|||
msgid "All Files"
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by year, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by month, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show all files, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to timelapse files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
msgid "Switch to video files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download"
|
||||
msgstr "Ladda ner"
|
||||
|
||||
msgid "Download selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Management"
|
||||
msgstr "Handhavande"
|
||||
|
||||
msgid "Batch manage files."
|
||||
msgstr ""
|
||||
|
||||
msgid "No printers."
|
||||
msgstr "Ingen printer."
|
||||
|
||||
msgid "Not supported."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting..."
|
||||
msgstr "Sammankopplar..."
|
||||
|
||||
|
@ -2684,6 +2722,12 @@ msgstr "Felsöknings Information"
|
|||
msgid "Printing List"
|
||||
msgstr "Utskrifts Lista"
|
||||
|
||||
msgid "Cancel print"
|
||||
msgstr ""
|
||||
|
||||
msgid "Are you sure you want to cancel this print?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Downloading..."
|
||||
msgstr "Laddar ner..."
|
||||
|
||||
|
@ -2886,10 +2930,10 @@ msgctxt "Layers"
|
|||
msgid "Bottom"
|
||||
msgstr "Bottenlager"
|
||||
|
||||
msgid "Spaghetti Detection"
|
||||
msgid "Spaghetti and Excess Chute Pileup Detection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stop printing when spaghetti detected"
|
||||
msgid "Stop printing when Spaghetti or Excess Chute Pileup is detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer Inspection"
|
||||
|
@ -2959,6 +3003,33 @@ msgstr "Typ av byggplatta"
|
|||
msgid "Flushing volumes"
|
||||
msgstr "Rensnings volymer"
|
||||
|
||||
msgid "Add one filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove last filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync material list from AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set filaments to use"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"No AMS filaments. Please select a printer in 'Device' page to load AMS info."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync filaments with AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sync filaments with AMS will drop all current selected filament presets and "
|
||||
"colors. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are no compatible filaments, and sync is not performed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Untitled"
|
||||
msgstr "Ej namngiven"
|
||||
|
||||
|
@ -2966,6 +3037,16 @@ msgstr "Ej namngiven"
|
|||
msgid "Do you want to save changes to \"%1%\"?"
|
||||
msgstr "Spara ändringarna till \"%1%\"?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Successfully unmounted. The device %s(%s) can now be safely removed from the "
|
||||
"computer."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Ejecting of device %s(%s) has failed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Previous unsaved project detected, do you want to restore it?"
|
||||
msgstr "Tidigare osparat projekt upptäckt, återställa det?"
|
||||
|
||||
|
@ -3045,6 +3126,15 @@ msgstr ""
|
|||
msgid "Object too small"
|
||||
msgstr "För litet objekt"
|
||||
|
||||
msgid ""
|
||||
"This file contains several objects positioned at multiple heights.\n"
|
||||
"Instead of considering them as multiple objects, should \n"
|
||||
"the file be loaded as a single object having multiple parts?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Multi-part object detected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load these files as a single object with multiple parts?\n"
|
||||
msgstr "Ladda dessa filer som ett enkelt objekt med multipla delar?\n"
|
||||
|
||||
|
@ -3074,6 +3164,15 @@ msgstr "Det valda objektet kan inte delas."
|
|||
msgid "Another export job is running."
|
||||
msgstr "En annan exportering pågår."
|
||||
|
||||
msgid "Select a new file"
|
||||
msgstr ""
|
||||
|
||||
msgid "File for the replace wasn't selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error during replace"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please select a file"
|
||||
msgstr "Välj en fil"
|
||||
|
||||
|
@ -3172,6 +3271,9 @@ msgstr "Spara G-kod som:"
|
|||
msgid "Save Sliced file as:"
|
||||
msgstr "Spara beredningen som:"
|
||||
|
||||
msgid "preparing, export 3mf failed!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
"Suggest to use auto-arrange to avoid collisions when printing."
|
||||
|
@ -3684,6 +3786,12 @@ msgstr "Spara nuvarande %s"
|
|||
msgid "Delete this preset"
|
||||
msgstr "Radera denna förinställning"
|
||||
|
||||
msgid "Search in preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Click to reset all settings to the last saved preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Prime tower is required by timeplase. Are you sure you want to disable both "
|
||||
"of them?"
|
||||
|
@ -4435,6 +4543,53 @@ msgstr "Ny version av Bambu Studio"
|
|||
msgid "Don't remind me of this version again"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to update? This will take about 10 minutes. Do not "
|
||||
"turn off the power while the printer is updating."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"An important update was detected and needs to be run before printing can "
|
||||
"continue. Do you want to update now? You can also update later from 'Upgrade "
|
||||
"firmware'."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
"printing. Do you want to update now? You can also update later on printer or "
|
||||
"update next time starting the studio."
|
||||
msgstr ""
|
||||
|
||||
msgid "Model:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Serial:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrade firmware"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Idle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Latest version"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading successful"
|
||||
msgstr ""
|
||||
|
||||
msgid "Saving objects into the 3mf failed."
|
||||
msgstr "Sparande av objektet till 3mf misslyckades."
|
||||
|
||||
|
@ -4722,6 +4877,11 @@ msgstr ""
|
|||
msgid "No extrusions under current settings."
|
||||
msgstr "Nuvarande inställning har ingen extrudering."
|
||||
|
||||
msgid ""
|
||||
"Smooth mode of timelapse is not supported when \"by object\" sequence is "
|
||||
"enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please select \"By object\" print sequence to print multiple objects in "
|
||||
"spiral vase mode."
|
||||
|
@ -5182,8 +5342,8 @@ msgstr "Linjemönster för topp ytans ifyllnad"
|
|||
msgid "Concentric"
|
||||
msgstr "Koncentrisk"
|
||||
|
||||
msgid "Zig zag"
|
||||
msgstr "Zig zag"
|
||||
msgid "Rectilinear"
|
||||
msgstr "Räta linjer"
|
||||
|
||||
msgid "Monotonic"
|
||||
msgstr "Monoton"
|
||||
|
@ -5191,6 +5351,12 @@ msgstr "Monoton"
|
|||
msgid "Monotonic line"
|
||||
msgstr "Monoton linje"
|
||||
|
||||
msgid "Aligned Rectilinear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hilbert Curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "Botten ytans mönster"
|
||||
|
||||
|
@ -6174,6 +6340,14 @@ msgstr "Endast på byggplattan"
|
|||
msgid "Don't create support on model surface, only on build plate"
|
||||
msgstr "Inställningen skapar bara support som utgår ifrån byggplattan"
|
||||
|
||||
msgid "Support critical regions only"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Only create support for critical regions including sharp tail, cantilever, "
|
||||
"etc."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "Topp Z-distans"
|
||||
|
||||
|
@ -6238,9 +6412,6 @@ msgstr "Botten mönster"
|
|||
msgid "Line pattern of support"
|
||||
msgstr "Supportens linje mönster"
|
||||
|
||||
msgid "Rectilinear"
|
||||
msgstr "Räta linjer"
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "Rät linjärt nät"
|
||||
|
||||
|
@ -6253,8 +6424,8 @@ msgid ""
|
|||
"interface is Concentric"
|
||||
msgstr ""
|
||||
"Linje mönster för support gränssnittsytan .Standardmönstret för olösligt "
|
||||
"(material) support gränssnittet är Räta medan standardmönstret för lösligt"
|
||||
"(material) stödgränssnittet är koncentriskt"
|
||||
"(material) support gränssnittet är Räta medan standardmönstret för "
|
||||
"lösligt(material) stödgränssnittet är koncentriskt"
|
||||
|
||||
msgid "Base pattern spacing"
|
||||
msgstr "Basens mönster mellanrum"
|
||||
|
@ -6676,6 +6847,33 @@ msgstr "Support: åtgärda hål vid lager %d"
|
|||
msgid "Support: propagate branches at layer %d"
|
||||
msgstr "Support: föröka grenar vid lager %d"
|
||||
|
||||
#~ msgid "Reduce Triangles"
|
||||
#~ msgstr "Reducera Trianglar"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Switch to zig-zag pattern?\n"
|
||||
#~ "Yes - switch to zig-zag pattern automaticlly\n"
|
||||
#~ "No - reset density to default non 100% value automaticlly\n"
|
||||
#~ msgstr ""
|
||||
#~ "Ändra till Zig-Zag mönster?\n"
|
||||
#~ "JA - Byta till Zig-Zag mönster automatiskt\n"
|
||||
#~ "NEJ - Återställ densiteten till standard inte 100% värdet automatiskt\n"
|
||||
|
||||
#~ msgid "Extruder position"
|
||||
#~ msgstr "Extruder position"
|
||||
|
||||
#~ msgid "Zig zag"
|
||||
#~ msgstr "Zig zag"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Bed temperature is higher than vitrification temperature of this "
|
||||
#~ "filament.\n"
|
||||
#~ "This may cause nozzle blocked and printing failure"
|
||||
#~ msgstr ""
|
||||
#~ "Byggplattans temperatur överstiger kristalliserings temperaturen av detta "
|
||||
#~ "filament.\n"
|
||||
#~ "Detta kan orsaka att nozzeln blockeras och utskriften misslyckas"
|
||||
|
||||
#~ msgid "0%"
|
||||
#~ msgstr "0%"
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Slic3rPE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-09 11:50+0800\n"
|
||||
"POT-Creation-Date: 2022-09-27 16:25+0800\n"
|
||||
"PO-Revision-Date: 2022-09-05 14:22+0800\n"
|
||||
"Last-Translator: Jiang Yue <maze1024@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
@ -673,11 +673,17 @@ msgstr "修复模型"
|
|||
msgid "Export as STL"
|
||||
msgstr "导出为 STL"
|
||||
|
||||
msgid "Reload item"
|
||||
msgstr "重新加载所选项"
|
||||
msgid "Reload from disk"
|
||||
msgstr "从磁盘重新加载"
|
||||
|
||||
msgid "Reload items"
|
||||
msgstr "重新加载所选项"
|
||||
msgid "Reload the selected parts from disk"
|
||||
msgstr "从磁盘重新加载选中的零件"
|
||||
|
||||
msgid "Replace with STL"
|
||||
msgstr "替换为STL"
|
||||
|
||||
msgid "Replace the selected part with new STL"
|
||||
msgstr "用新的STL替换选中的零件"
|
||||
|
||||
msgid "Change filament"
|
||||
msgstr "更换耗材丝"
|
||||
|
@ -812,8 +818,11 @@ msgstr "删除所选盘"
|
|||
msgid "Clone"
|
||||
msgstr "克隆"
|
||||
|
||||
msgid "Reduce Triangles"
|
||||
msgstr "简化三角形"
|
||||
msgid "Simplify Model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Center"
|
||||
msgstr "居中"
|
||||
|
||||
msgid "Edit in Parameter Table"
|
||||
msgstr "在参数表格中编辑"
|
||||
|
@ -1291,23 +1300,23 @@ msgstr ""
|
|||
"为基础的。"
|
||||
|
||||
msgid "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci."
|
||||
msgstr "MerillPrusasicle最初是以Alessandro Ranellucci为基础的Slic3r。"
|
||||
msgstr "PrusaSlicer最初是基于Alessandro Ranellucci的Slic3r。"
|
||||
|
||||
msgid ""
|
||||
"Slic3r was created by Alessandro Ranellucci with the help of many other "
|
||||
"contributors."
|
||||
msgstr "Slic3r是由Alessandro Ranellucci和许多其他贡献者的帮助下创建的。"
|
||||
msgstr "Slic3r由Alessandro Ranellucci在其他众多贡献者的帮助下创建。"
|
||||
|
||||
msgid "Bambu Studio also referenced some ideas from Cura by Ultimaker."
|
||||
msgstr "Bambu Studio还引入了Ultimaker从Cura提出的一些想法。"
|
||||
msgstr "Bambu Studio还参考了Ultimaker的Cura中的一些想法。"
|
||||
|
||||
msgid ""
|
||||
"There many parts of the software that come from community contributions, so "
|
||||
"we're unable to list them one-by-one, and instead, they'll be attributed in "
|
||||
"the corresponding code comments."
|
||||
msgstr ""
|
||||
"软件中的很多部分都来自于社区贡献,因此,我们无法逐一列出他们,相反的,他们将"
|
||||
"被注释于相应的代码中。"
|
||||
"软件中有很多部分来自于社区贡献,因此我们不便逐一列出他们,作为替代,他们将在"
|
||||
"相应的代码注释中被介绍。"
|
||||
|
||||
msgid "AMS Materials Setting"
|
||||
msgstr "AMS 材料设置"
|
||||
|
@ -1565,10 +1574,12 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Bed temperature is higher than vitrification temperature of this filament.\n"
|
||||
"This may cause nozzle blocked and printing failure"
|
||||
"This may cause nozzle blocked and printing failure\n"
|
||||
"Please keep the printer open during the printing process to ensure air "
|
||||
"circulation or reduce the temperature of the hot bed"
|
||||
msgstr ""
|
||||
"热床温度已高于这个耗材的软化温度。\n"
|
||||
"这可能导致堵头和打印失败"
|
||||
"热床温度超过了耗材丝的软化温度,材料软化可能造成喷头堵塞。\n"
|
||||
"请保持打印机在打印过程中敞开,保证空气流通或降低热床温度"
|
||||
|
||||
msgid ""
|
||||
"Too small layer height.\n"
|
||||
|
@ -1674,12 +1685,12 @@ msgid "%1% infill pattern doesn't support 100%% density."
|
|||
msgstr "%1% 填充图案不支持 100%% 密度。"
|
||||
|
||||
msgid ""
|
||||
"Switch to zig-zag pattern?\n"
|
||||
"Yes - switch to zig-zag pattern automaticlly\n"
|
||||
"Switch to rectilinear pattern?\n"
|
||||
"Yes - switch to rectilinear pattern automaticlly\n"
|
||||
"No - reset density to default non 100% value automaticlly\n"
|
||||
msgstr ""
|
||||
"切换到锯齿图案?\n"
|
||||
"是 - 自动切换到锯齿图案\n"
|
||||
"切换到直线图案?\n"
|
||||
"是 - 自动切换到直线图案\n"
|
||||
"否 - 自动重置为非100%填充密度\n"
|
||||
|
||||
msgid "Auto bed leveling"
|
||||
|
@ -1793,13 +1804,13 @@ msgstr "参数名称"
|
|||
msgid "N/A"
|
||||
msgstr "N/A"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "数值错误。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%s can't be percentage"
|
||||
msgstr "%s 不可以是百分比"
|
||||
|
||||
msgid "Invalid numeric."
|
||||
msgstr "数值错误。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Value %s is out of range, continue?"
|
||||
msgstr "值 %s 越界,是否继续?"
|
||||
|
@ -1842,8 +1853,11 @@ msgstr "流量"
|
|||
msgid "Tool"
|
||||
msgstr "工具"
|
||||
|
||||
msgid "Extruder position"
|
||||
msgstr "挤出机位置"
|
||||
msgid "Speed: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Flow: "
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading G-codes"
|
||||
msgstr "正在加载G-code"
|
||||
|
@ -1941,6 +1955,9 @@ msgstr "耗材丝 1"
|
|||
msgid "Flushed filament"
|
||||
msgstr "换料冲刷消耗"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "总计"
|
||||
|
||||
msgid "Filament change times"
|
||||
msgstr "换料次数"
|
||||
|
||||
|
@ -1974,9 +1991,6 @@ msgstr "准备时间"
|
|||
msgid "Model printing time"
|
||||
msgstr "模型打印时间"
|
||||
|
||||
msgid "Total"
|
||||
msgstr "总计"
|
||||
|
||||
msgid "Switch to silent mode"
|
||||
msgstr "切换到静音模式"
|
||||
|
||||
|
@ -2491,13 +2505,16 @@ msgstr "初始化失败(没有设备)!"
|
|||
msgid "Initializing..."
|
||||
msgstr "正在初始化……"
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "正在加载视频……"
|
||||
|
||||
msgid "Initialize failed (Not supported)!"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed [%d]!"
|
||||
msgstr "初始化失败 [%d]!"
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "正在加载视频……"
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "已经停止。"
|
||||
|
||||
|
@ -2517,18 +2534,45 @@ msgstr "月"
|
|||
msgid "All Files"
|
||||
msgstr "所有文件"
|
||||
|
||||
msgid "Group files by year, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Group files by month, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Show all files, recent first."
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to timelapse files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Video"
|
||||
msgstr "录像"
|
||||
|
||||
msgid "Switch to video files."
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Download"
|
||||
msgstr "下载"
|
||||
|
||||
msgid "Download selected files from printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Management"
|
||||
msgstr "管理"
|
||||
|
||||
msgid "Batch manage files."
|
||||
msgstr ""
|
||||
|
||||
msgid "No printers."
|
||||
msgstr "未选择打印机"
|
||||
|
||||
msgid "Not supported."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting..."
|
||||
msgstr "连接中..."
|
||||
|
||||
|
@ -2630,6 +2674,12 @@ msgstr "调试信息"
|
|||
msgid "Printing List"
|
||||
msgstr "项目切片"
|
||||
|
||||
msgid "Cancel print"
|
||||
msgstr "取消打印"
|
||||
|
||||
msgid "Are you sure you want to cancel this print?"
|
||||
msgstr "你确定要取消这次打印吗?"
|
||||
|
||||
msgid "Downloading..."
|
||||
msgstr "下载中..."
|
||||
|
||||
|
@ -2827,11 +2877,11 @@ msgctxt "Layers"
|
|||
msgid "Bottom"
|
||||
msgstr "底部"
|
||||
|
||||
msgid "Spaghetti Detection"
|
||||
msgstr "炒面检测"
|
||||
msgid "Spaghetti and Excess Chute Pileup Detection"
|
||||
msgstr "炒面与堆料检查"
|
||||
|
||||
msgid "Stop printing when spaghetti detected"
|
||||
msgstr "当发生炒面时停止打印"
|
||||
msgid "Stop printing when Spaghetti or Excess Chute Pileup is detected"
|
||||
msgstr "当发生炒面或废料口堆料时停止打印"
|
||||
|
||||
msgid "First Layer Inspection"
|
||||
msgstr "首层扫描"
|
||||
|
@ -2903,6 +2953,33 @@ msgstr "热床类型"
|
|||
msgid "Flushing volumes"
|
||||
msgstr "冲刷体积"
|
||||
|
||||
msgid "Add one filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Remove last filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync material list from AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid "Set filaments to use"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"No AMS filaments. Please select a printer in 'Device' page to load AMS info."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sync filaments with AMS"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sync filaments with AMS will drop all current selected filament presets and "
|
||||
"colors. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are no compatible filaments, and sync is not performed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Untitled"
|
||||
msgstr "未命名"
|
||||
|
||||
|
@ -2910,6 +2987,16 @@ msgstr "未命名"
|
|||
msgid "Do you want to save changes to \"%1%\"?"
|
||||
msgstr "是否保存修改到“%1%”?"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Successfully unmounted. The device %s(%s) can now be safely removed from the "
|
||||
"computer."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Ejecting of device %s(%s) has failed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Previous unsaved project detected, do you want to restore it?"
|
||||
msgstr "检测到有未保存的项目,是否恢复此项目?"
|
||||
|
||||
|
@ -2986,6 +3073,17 @@ msgstr ""
|
|||
msgid "Object too small"
|
||||
msgstr "对象尺寸过小"
|
||||
|
||||
msgid ""
|
||||
"This file contains several objects positioned at multiple heights.\n"
|
||||
"Instead of considering them as multiple objects, should \n"
|
||||
"the file be loaded as a single object having multiple parts?"
|
||||
msgstr ""
|
||||
"该文件包含多个位于不同高度的对象。\n"
|
||||
"是否将文件加载为一个由多个零件组合而成的对象,而非多个单零件的对象?"
|
||||
|
||||
msgid "Multi-part object detected"
|
||||
msgstr "检测到多部分对象"
|
||||
|
||||
msgid "Load these files as a single object with multiple parts?\n"
|
||||
msgstr "将这些文件加载为一个多零件对象?\n"
|
||||
|
||||
|
@ -3015,6 +3113,15 @@ msgstr "选中的模型不可分裂。"
|
|||
msgid "Another export job is running."
|
||||
msgstr "有其他导出任务正在进行中。"
|
||||
|
||||
msgid "Select a new file"
|
||||
msgstr "选择新文件"
|
||||
|
||||
msgid "File for the replace wasn't selected"
|
||||
msgstr "未选择替换文件"
|
||||
|
||||
msgid "Error during replace"
|
||||
msgstr "替换时发生错误"
|
||||
|
||||
msgid "Please select a file"
|
||||
msgstr "请选择一个文件"
|
||||
|
||||
|
@ -3114,6 +3221,9 @@ msgstr "G-code文件另存为:"
|
|||
msgid "Save Sliced file as:"
|
||||
msgstr "切片文件另存为:"
|
||||
|
||||
msgid "preparing, export 3mf failed!"
|
||||
msgstr "正在准备中,导出 3mf 失败!"
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
"Suggest to use auto-arrange to avoid collisions when printing."
|
||||
|
@ -3622,6 +3732,12 @@ msgstr "保存当前 %s"
|
|||
msgid "Delete this preset"
|
||||
msgstr "删除此预设"
|
||||
|
||||
msgid "Search in preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "Click to reset all settings to the last saved preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Prime tower is required by timeplase. Are you sure you want to disable both "
|
||||
"of them?"
|
||||
|
@ -4343,6 +4459,53 @@ msgstr "新版本的Bambu Studio"
|
|||
msgid "Don't remind me of this version again"
|
||||
msgstr "此版本不再提示"
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to update? This will take about 10 minutes. Do not "
|
||||
"turn off the power while the printer is updating."
|
||||
msgstr "确定要更新吗?更新需要大约10分钟,在此期间请勿关闭电源。"
|
||||
|
||||
msgid ""
|
||||
"An important update was detected and needs to be run before printing can "
|
||||
"continue. Do you want to update now? You can also update later from 'Upgrade "
|
||||
"firmware'."
|
||||
msgstr "检测到重要更新,需要升级后才可进行打印。你想现在就开始升级吗?你也可以稍后点击‘升级固件’完成升级。"
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
"printing. Do you want to update now? You can also update later on printer or "
|
||||
"update next time starting the studio."
|
||||
msgstr "当前固件版本异常,需要进行修复升级,否则无法继续打印。你想现在就开始升级吗?你也可以稍后在打印机上升级,或者下一次启动studio再升级。"
|
||||
|
||||
msgid "Model:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Serial:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrade firmware"
|
||||
msgstr "升级固件"
|
||||
|
||||
msgid "Printing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Idle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Latest version"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upgrading"
|
||||
msgstr "升级中"
|
||||
|
||||
msgid "Upgrading failed"
|
||||
msgstr "升级失败"
|
||||
|
||||
msgid "Upgrading successful"
|
||||
msgstr "升级成功"
|
||||
|
||||
msgid "Saving objects into the 3mf failed."
|
||||
msgstr "保存对象到3mf失败。"
|
||||
|
||||
|
@ -4623,6 +4786,11 @@ msgstr ""
|
|||
msgid "No extrusions under current settings."
|
||||
msgstr "根据当前设置,不会生成任何打印。"
|
||||
|
||||
msgid ""
|
||||
"Smooth mode of timelapse is not supported when \"by object\" sequence is "
|
||||
"enabled."
|
||||
msgstr "平滑模式的延时摄影不支持在逐件打印模式下使用。"
|
||||
|
||||
msgid ""
|
||||
"Please select \"By object\" print sequence to print multiple objects in "
|
||||
"spiral vase mode."
|
||||
|
@ -5062,8 +5230,8 @@ msgstr "顶面填充的走线图案"
|
|||
msgid "Concentric"
|
||||
msgstr "同心"
|
||||
|
||||
msgid "Zig zag"
|
||||
msgstr "锯齿"
|
||||
msgid "Rectilinear"
|
||||
msgstr "直线"
|
||||
|
||||
msgid "Monotonic"
|
||||
msgstr "单调"
|
||||
|
@ -5071,6 +5239,12 @@ msgstr "单调"
|
|||
msgid "Monotonic line"
|
||||
msgstr "单调线"
|
||||
|
||||
msgid "Aligned Rectilinear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hilbert Curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bottom surface pattern"
|
||||
msgstr "底面图案"
|
||||
|
||||
|
@ -5286,7 +5460,7 @@ msgid "Grid"
|
|||
msgstr "网格"
|
||||
|
||||
msgid "Line"
|
||||
msgstr "直线"
|
||||
msgstr "线"
|
||||
|
||||
msgid "Cubic"
|
||||
msgstr "立方体"
|
||||
|
@ -6012,6 +6186,14 @@ msgstr "仅在构建板生成"
|
|||
msgid "Don't create support on model surface, only on build plate"
|
||||
msgstr "不在模型表面上生成支撑,只在热床上生成。"
|
||||
|
||||
msgid "Support critical regions only"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Only create support for critical regions including sharp tail, cantilever, "
|
||||
"etc."
|
||||
msgstr ""
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "顶部Z距离"
|
||||
|
||||
|
@ -6068,9 +6250,6 @@ msgstr "支撑主体图案"
|
|||
msgid "Line pattern of support"
|
||||
msgstr "支撑走线图案"
|
||||
|
||||
msgid "Rectilinear"
|
||||
msgstr "直线"
|
||||
|
||||
msgid "Rectilinear grid"
|
||||
msgstr "直线网格"
|
||||
|
||||
|
@ -6484,6 +6663,38 @@ msgstr "支撑:正在修补层%d的空洞"
|
|||
msgid "Support: propagate branches at layer %d"
|
||||
msgstr "支撑:正在生长层%d的树枝"
|
||||
|
||||
#~ msgid "Reduce Triangles"
|
||||
#~ msgstr "简化三角形"
|
||||
|
||||
#~ msgid "Spaghetti Detection"
|
||||
#~ msgstr "炒面检测"
|
||||
|
||||
#~ msgid "Stop printing when spaghetti detected"
|
||||
#~ msgstr "当发生炒面时停止打印"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Switch to zig-zag pattern?\n"
|
||||
#~ "Yes - switch to zig-zag pattern automaticlly\n"
|
||||
#~ "No - reset density to default non 100% value automaticlly\n"
|
||||
#~ msgstr ""
|
||||
#~ "切换到锯齿图案?\n"
|
||||
#~ "是 - 自动切换到锯齿图案\n"
|
||||
#~ "否 - 自动重置为非100%填充密度\n"
|
||||
|
||||
#~ msgid "Extruder position"
|
||||
#~ msgstr "挤出机位置"
|
||||
|
||||
#~ msgid "Zig zag"
|
||||
#~ msgstr "锯齿"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Bed temperature is higher than vitrification temperature of this "
|
||||
#~ "filament.\n"
|
||||
#~ "This may cause nozzle blocked and printing failure"
|
||||
#~ msgstr ""
|
||||
#~ "热床温度已高于这个耗材的软化温度。\n"
|
||||
#~ "这可能导致堵头和打印失败"
|
||||
|
||||
#~ msgid "Waiting"
|
||||
#~ msgstr "等待中"
|
||||
|
||||
|
@ -7082,9 +7293,6 @@ msgstr "支撑:正在生长层%d的树枝"
|
|||
#~ msgid "Failed to publish your project. Please try agian!"
|
||||
#~ msgstr "项目发布失败。请重试!"
|
||||
|
||||
#~ msgid "preparing, export 3mf failed!"
|
||||
#~ msgstr "正在准备中,导出 3mf 失败!"
|
||||
|
||||
#~ msgid "Preparing to upload your project..."
|
||||
#~ msgstr "正在准备上传项目..."
|
||||
|
||||
|
@ -8705,9 +8913,6 @@ msgstr "支撑:正在生长层%d的树枝"
|
|||
#~ msgid "Unable to replace with more than one volume"
|
||||
#~ msgstr "超过1个零件,无法替换"
|
||||
|
||||
#~ msgid "Error during replace"
|
||||
#~ msgstr "替换时发生错误"
|
||||
|
||||
#~ msgid "Do you want to replace it"
|
||||
#~ msgstr "您是否要替换"
|
||||
|
||||
|
@ -9278,9 +9483,6 @@ msgstr "支撑:正在生长层%d的树枝"
|
|||
#~ msgid "Please check your object list before preset changing."
|
||||
#~ msgstr "请在预设更改之前检查对象列表。"
|
||||
|
||||
#~ msgid "Reload from disk"
|
||||
#~ msgstr "从磁盘重新加载"
|
||||
|
||||
#~ msgid "Convert from imperial units"
|
||||
#~ msgstr "从英制转换"
|
||||
|
||||
|
@ -9806,9 +10008,6 @@ msgstr "支撑:正在生长层%d的树枝"
|
|||
#~ msgid "Fix through the Netfabb"
|
||||
#~ msgstr "通过Netfabb修复"
|
||||
|
||||
#~ msgid "Reload the selected volumes from disk"
|
||||
#~ msgstr "从磁盘重新加载选中的零件"
|
||||
|
||||
#~ msgid "Change extruder"
|
||||
#~ msgstr "更换挤出机"
|
||||
|
||||
|
|
18
doc/release_notes_cn.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
**新功能**
|
||||
1. 3D文字工具
|
||||
2. 对象和拷贝间的数据共享
|
||||
3. 参数表格
|
||||
4. 用户指南
|
||||
5. 支持Arachne特性
|
||||
|
||||
**改进**
|
||||
1. 支持导出通用的3mf格式,兼容其他切片软件
|
||||
2. 优化混合支撑和树状支撑的生成速度
|
||||
3. 支持不停靠工具头的延迟摄影
|
||||
4. 支持纹理PEI热床
|
||||
5. 支持导入和导出预设
|
||||
6. 支持随机位置的接缝设置
|
||||
7. 支持匈牙利语
|
||||
8. 一些关键问题修复
|
||||
|
||||
详细信息请查看:https://github.com/bambulab/BambuStudio/releases
|
18
doc/release_notes_en.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
**New Features**
|
||||
1. 3D text tool
|
||||
2. Shared data between an object and its copies
|
||||
3. Parameter table
|
||||
4. User manual
|
||||
5. Arachne feature
|
||||
|
||||
**Improvements**
|
||||
1. Added support for exporting generic 3mf that is compatible with other slicers
|
||||
2. Optimized the performance of hybrid and tree support
|
||||
3. Added traditional timelapse mode
|
||||
4. Added support for Textured PEI plate
|
||||
5. Added support for export/import preset
|
||||
6. Added random seam position
|
||||
7. Added Magyar translations
|
||||
8. Fixed some known bugs
|
||||
|
||||
For details, please check https://github.com/bambulab/BambuStudio/releases
|
|
@ -2,11 +2,17 @@
|
|||
"printers": [
|
||||
{
|
||||
"display_name": "Bambu Lab X1",
|
||||
"func": {
|
||||
"FUNC_LOCAL_TUNNEL": false
|
||||
},
|
||||
"model_id": "BL-P002",
|
||||
"printer_type": "3DPrinter-X1"
|
||||
},
|
||||
{
|
||||
"display_name": "Bambu Lab X1 Carbon",
|
||||
"func": {
|
||||
"FUNC_LOCAL_TUNNEL": false
|
||||
},
|
||||
"model_id": "BL-P001",
|
||||
"printer_type": "3DPrinter-X1-Carbon"
|
||||
}
|
||||
|
|
12
resources/images/ams_fila_sync.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.60031 3.36816C1.60031 2.53974 2.27188 1.86816 3.10031 1.86816H14.7634C15.5918 1.86816 16.2634 2.53974 16.2634 3.36816V10.0047H1.60031V3.36816ZM3.10031 2.86816C2.82417 2.86816 2.60031 3.09202 2.60031 3.36816V9.00474H15.2634V3.36816C15.2634 3.09202 15.0395 2.86816 14.7634 2.86816H3.10031Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.252106 10.5047C0.252106 9.6763 0.923678 9.00473 1.75211 9.00473H15.9972C16.8256 9.00473 17.4972 9.6763 17.4972 10.5047V15.6229C17.4972 16.4514 16.8256 17.1229 15.9972 17.1229H1.7521C0.923676 17.1229 0.252106 16.4514 0.252106 15.6229V10.5047ZM1.75211 10.0047C1.47596 10.0047 1.25211 10.2286 1.25211 10.5047V15.6229C1.25211 15.8991 1.47596 16.1229 1.7521 16.1229H15.9972C16.2733 16.1229 16.4972 15.8991 16.4972 15.6229V10.5047C16.4972 10.2286 16.2734 10.0047 15.9972 10.0047H1.75211Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.15292 3.96497H6.79239V10.0046H3.15292V3.96497ZM4.15292 4.96497V9.00458H5.79239V4.96497H4.15292Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.79236 3.96484H9.43183V10.0045H5.79236V3.96484ZM6.79236 4.96484V9.00446H8.43183V4.96484H6.79236Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.43182 3.96484H12.0713V10.0045H8.43182V3.96484ZM9.43182 4.96484V9.00446H11.0713V4.96484H9.43182Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.0713 3.9649H14.7107V10.0045H11.0713V3.9649ZM12.0713 4.9649V9.00452H13.7107V4.9649H12.0713Z" fill="#262E30"/>
|
||||
<path d="M19.7747 13.0638C19.7747 16.4492 17.0303 19.1936 13.6449 19.1936C10.2595 19.1936 7.51514 16.4492 7.51514 13.0638C7.51514 9.67844 10.2595 6.93405 13.6449 6.93405C17.0303 6.93405 19.7747 9.67844 19.7747 13.0638Z" fill="#F5F5F5"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.6449 18.1936C16.478 18.1936 18.7747 15.8969 18.7747 13.0638C18.7747 10.2307 16.478 7.93405 13.6449 7.93405C10.8118 7.93405 8.51514 10.2307 8.51514 13.0638C8.51514 15.8969 10.8118 18.1936 13.6449 18.1936ZM13.6449 19.1936C17.0303 19.1936 19.7747 16.4492 19.7747 13.0638C19.7747 9.67844 17.0303 6.93405 13.6449 6.93405C10.2595 6.93405 7.51514 9.67844 7.51514 13.0638C7.51514 16.4492 10.2595 19.1936 13.6449 19.1936Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.455 10.2222C14.6503 10.0269 14.9669 10.0269 15.1621 10.2222L16.6376 11.6976C16.7806 11.8406 16.8234 12.0557 16.746 12.2425C16.6686 12.4294 16.4863 12.5512 16.284 12.5512H11.0631C10.787 12.5512 10.5631 12.3273 10.5631 12.0512C10.5631 11.775 10.787 11.5512 11.0631 11.5512H15.0769L14.455 10.9293C14.2598 10.734 14.2598 10.4174 14.455 10.2222Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.8347 15.9055C12.6395 16.1007 12.3229 16.1007 12.1276 15.9055L10.6522 14.43C10.5092 14.287 10.4664 14.0719 10.5438 13.8851C10.6212 13.6983 10.8035 13.5764 11.0057 13.5764L16.2266 13.5764C16.5028 13.5764 16.7266 13.8003 16.7266 14.0764C16.7266 14.3526 16.5028 14.5764 16.2266 14.5764L12.2128 14.5764L12.8347 15.1984C13.03 15.3936 13.03 15.7102 12.8347 15.9055Z" fill="#262E30"/>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
|
@ -1,11 +1,18 @@
|
|||
<svg width="272" height="181" viewBox="0 0 272 181" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<ellipse cx="148.5" cy="171" rx="54.5" ry="10" fill="#DEDEDE"/>
|
||||
<path d="M118 62L196.5 34V112L118 140V62Z" fill="#C3C3C3"/>
|
||||
<rect x="42" y="62.5" width="76" height="77" fill="#AEACAC"/>
|
||||
<path d="M116 36.5L41 63H121.5L196.5 35L116 36.5Z" fill="#E4E4E4"/>
|
||||
<path d="M84.4247 78.4554L33.1782 74.4793C30.2816 74.2546 28.1192 77.0953 29.1071 79.8275L57.0758 157.178C58.0147 159.775 61.24 160.662 63.3747 158.91L97.9325 130.555C97.9775 130.518 98.0185 130.486 98.0635 130.45C98.8161 129.836 106 123.505 106 105.5C106 88.3036 88.7977 80.118 85.5318 78.7188C85.18 78.5681 84.8063 78.485 84.4247 78.4554Z" fill="#8D8B8B"/>
|
||||
<path d="M82.1864 103.688C90.8229 127.171 82.7743 151.036 65.1697 157.511C47.5652 163.986 25.9713 151.022 17.3347 127.539C8.69823 104.057 16.7468 80.191 34.3514 73.7163C51.9559 67.2416 73.5499 80.2054 82.1864 103.688Z" fill="#C4C4C4" stroke="#D8D8D8" stroke-width="3"/>
|
||||
<ellipse cx="65.7356" cy="108.611" rx="14.2976" ry="18.3001" transform="rotate(-20.1927 65.7356 108.611)" fill="#AEACAC"/>
|
||||
<path d="M222.098 14.75H221.848V15V17.5854V17.8354H222.098H236.77L220.803 38.4069L220.75 38.4746V38.5602V41V41.25H221H242H242.25V41V38.4146V38.1646H242H225.388L241.319 17.6294L241.372 17.5618V17.4762V15V14.75H241.122H222.098Z" fill="#B8B8B8" stroke="#B8B8B8" stroke-width="0.5"/>
|
||||
<path d="M259.627 0.75H259.377V1V2.4916V2.7416H259.627H267.796L258.802 14.4401L258.75 14.5074V14.5924V16V16.25H259H271H271.25V16V14.5084V14.2584H271H261.723L270.696 2.5809L270.748 2.51353V2.42857V1V0.75H270.498H259.627Z" fill="#B8B8B8" stroke="#B8B8B8" stroke-width="0.5"/>
|
||||
<svg width="240" height="160" viewBox="0 0 240 160" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_6645_29335)">
|
||||
<ellipse cx="131.03" cy="150.882" rx="48.0882" ry="8.82353" fill="#DEDEDE"/>
|
||||
<path d="M104.117 54.7059L173.382 30V98.8235L104.117 123.529V54.7059Z" fill="#C3C3C3"/>
|
||||
<rect x="37.0586" y="55.1484" width="67.0588" height="67.9412" fill="#AEACAC"/>
|
||||
<path d="M102.352 32.2063L36.1758 55.5887H107.205L173.382 30.8828L102.352 32.2063Z" fill="#E4E4E4"/>
|
||||
<path d="M74.493 69.2261L29.2756 65.7179C26.7198 65.5196 24.8118 68.0261 25.6834 70.4368L50.3617 138.688C51.1902 140.979 54.036 141.761 55.9195 140.216L86.4118 115.197C86.4514 115.164 86.4876 115.136 86.5273 115.103C87.1914 114.562 93.5301 108.976 93.5301 93.089C93.5301 77.9158 78.3516 70.6931 75.4699 69.4586C75.1595 69.3256 74.8297 69.2522 74.493 69.2261Z" fill="#8D8B8B"/>
|
||||
<path d="M72.5174 91.4895C80.1378 112.209 73.0361 133.267 57.5027 138.98C41.9693 144.693 22.9158 133.255 15.2954 112.535C7.67491 91.8149 14.7766 70.7569 30.3101 65.0439C45.8435 59.331 64.897 70.7696 72.5174 91.4895Z" fill="#C4C4C4" stroke="#D8D8D8" stroke-width="2.64706"/>
|
||||
<ellipse cx="58.0016" cy="95.8333" rx="12.6155" ry="16.1471" transform="rotate(-20.1927 58.0016 95.8333)" fill="#AEACAC"/>
|
||||
<path d="M195.968 13.0157H195.748V13.2363V15.5176V15.7382H195.968H208.915L194.826 33.8895L194.779 33.9492V34.0248V36.1775V36.3981H195H213.529H213.75V36.1775V33.8962V33.6756H213.529H198.872L212.929 15.5564L212.975 15.4967V15.4212V13.2363V13.0157H212.755H195.968Z" fill="#B8B8B8" stroke="#B8B8B8" stroke-width="0.441176"/>
|
||||
<path d="M229.083 0.662224H228.862V0.882812V2.19893V2.41952H229.083H236.29L228.354 12.7417L228.309 12.8011V12.8761V14.1181V14.3387H228.529H239.118H239.338V14.1181V12.802V12.5814H239.118H230.932L238.85 2.27772L238.895 2.21828V2.14332V0.882812V0.662224H238.675H229.083Z" fill="#B8B8B8" stroke="#B8B8B8" stroke-width="0.441176"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_6645_29335">
|
||||
<rect width="240" height="159.706" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2 KiB |
|
@ -1,11 +1,11 @@
|
|||
<svg width="86" height="104" viewBox="0 0 86 104" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="32" y="52" width="22.6316" height="22.6316" fill="url(#paint0_linear_6645_29777)"/>
|
||||
<path d="M43 18C51.5046 18 59.8182 20.5219 66.8895 25.2468C73.9608 29.9717 79.4723 36.6874 82.7268 44.5446C85.9814 52.4018 86.8329 61.0477 85.1738 69.3889C83.5146 77.7301 79.4193 85.3919 73.4056 91.4056C67.3919 97.4193 59.7301 101.515 51.3889 103.174C43.0477 104.833 34.4018 103.981 26.5446 100.727C18.6874 97.4723 11.9717 91.9608 7.24681 84.8895C2.52191 77.8182 -2.02833e-07 69.5046 0 61H6.50061C6.50061 68.2189 8.64126 75.2757 12.6519 81.278C16.6625 87.2803 22.3629 91.9585 29.0323 94.721C35.7017 97.4836 43.0405 98.2064 50.1207 96.7981C57.2009 95.3897 63.7044 91.9135 68.809 86.809C73.9135 81.7044 77.3897 75.2009 78.7981 68.1207C80.2064 61.0405 79.4836 53.7017 76.721 47.0323C73.9585 40.3629 69.2803 34.6625 63.278 30.6519C57.2757 26.6413 50.2189 24.5006 43 24.5006V18Z" fill="#D9D9D9"/>
|
||||
<path d="M23.0587 23.5848C22.0187 22.7842 22.0187 21.2158 23.0587 20.4152L42.53 5.42619C43.8452 4.41379 45.75 5.35132 45.75 7.011L45.75 36.989C45.75 38.6487 43.8452 39.5862 42.53 38.5738L23.0587 23.5848Z" fill="#D9D9D9"/>
|
||||
<svg width="240" height="160" viewBox="0 0 240 160" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="109" y="80.1484" width="22.6316" height="22.6316" fill="url(#paint0_linear_8097_31792)"/>
|
||||
<path d="M120 46.1484C128.505 46.1484 136.818 48.6703 143.89 53.3952C150.961 58.1201 156.472 64.8358 159.727 72.6931C162.981 80.5503 163.833 89.1961 162.174 97.5373C160.515 105.879 156.419 113.54 150.406 119.554C144.392 125.568 136.73 129.663 128.389 131.322C120.048 132.981 111.402 132.13 103.545 128.875C95.6874 125.621 88.9717 120.109 84.2468 113.038C79.5219 105.967 77 97.653 77 89.1484H83.5006C83.5006 96.3673 85.6413 103.424 89.6519 109.426C93.6625 115.429 99.3629 120.107 106.032 122.869C112.702 125.632 120.04 126.355 127.121 124.947C134.201 123.538 140.704 120.062 145.809 114.957C150.913 109.853 154.39 103.349 155.798 96.2691C157.206 89.1889 156.484 81.8501 153.721 75.1807C150.958 68.5113 146.28 62.8109 140.278 58.8003C134.276 54.7897 127.219 52.649 120 52.649V46.1484Z" fill="#CCCCCC"/>
|
||||
<path d="M100.059 51.7332C99.0187 50.9326 99.0187 49.3642 100.059 48.5636L119.53 33.5746C120.845 32.5622 122.75 33.4998 122.75 35.1594L122.75 65.1374C122.75 66.7971 120.845 67.7346 119.53 66.7222L100.059 51.7332Z" fill="#CCCCCC"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_6645_29777" x1="43.3158" y1="52" x2="43.3158" y2="74.6316" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#D9D9D9"/>
|
||||
<stop offset="1" stop-color="#E8E8E8"/>
|
||||
<linearGradient id="paint0_linear_8097_31792" x1="120.316" y1="80.1484" x2="120.316" y2="102.78" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#CDCDCD"/>
|
||||
<stop offset="1" stop-color="#BCBCBC"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 5 KiB After Width: | Height: | Size: 8.6 KiB |
1
resources/images/notification_eject_sd.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><title>notification_eject_sd</title><path d="M702.38,400c0,166.31-135.31,300.87-302.38,300.87S97.62,566.31,97.62,400,232.93,99.13,400,99.13,702.38,233.69,702.38,400Z" fill="#eee"/><path d="M240.49,533.8a16.78,16.78,0,0,1,16.63-16.63H552a16.64,16.64,0,0,1,0,33.27H257.12A16.78,16.78,0,0,1,240.49,533.8Z" fill="#ff6f00" fill-rule="evenodd"/><path d="M530,434.77,405.29,220.08l-124,214.69ZM434.77,203.45c-12.85-21.92-45.35-21.92-58.2,0L251.83,418.14c-12.85,21.93,3,49.9,28.73,49.9H529.27c25.7,0,42.33-28,28.72-49.9Z" fill="#ff6f00" fill-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 651 B |
1
resources/images/notification_eject_sd_hover.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><title>notification_eject_sd_hover</title><path d="M780.4,400c0,209.22-170.23,378.5-380.4,378.5S19.6,609.22,19.6,400,189.83,21.5,400,21.5,780.4,190.78,780.4,400Z" fill="#eee"/><path d="M199.34,568.33a21.11,21.11,0,0,1,20.92-20.92H591.15a20.92,20.92,0,0,1,0,41.84H220.26A21.11,21.11,0,0,1,199.34,568.33Z" fill="#ff6f00" fill-rule="evenodd"/><path d="M563.57,443.75,406.66,173.66l-156,270.09Zm-119.82-291c-16.17-27.58-57.06-27.58-73.23,0L213.6,422.82c-16.16,27.58,3.81,62.77,36.14,62.77H562.62c32.34,0,53.26-35.19,36.14-62.77Z" fill="#ff6f00" fill-rule="evenodd"/></svg>
|
After Width: | Height: | Size: 663 B |
14
resources/images/param_acceleration.svg
Normal file
|
@ -0,0 +1,14 @@
|
|||
<svg width="15" height="14" viewBox="0 0 15 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35888)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.893 1.03032C4.82203 1.03032 2.3332 3.51853 2.3332 6.58823C2.3332 6.80914 2.15412 6.98823 1.9332 6.98823C1.71229 6.98823 1.5332 6.80914 1.5332 6.58823C1.5332 3.07647 4.38044 0.230316 7.893 0.230316C8.62072 0.230316 9.32068 0.352635 9.97293 0.578158C10.1817 0.650349 10.2924 0.878126 10.2203 1.08691C10.1481 1.2957 9.92028 1.40643 9.7115 1.33424C9.14223 1.1374 8.53056 1.03032 7.893 1.03032ZM12.2054 2.45632C12.3747 2.31438 12.627 2.33653 12.7689 2.5058C13.6949 3.61007 14.2528 5.03448 14.2528 6.58823C14.2528 6.80914 14.0737 6.98823 13.8528 6.98823C13.6319 6.98823 13.4528 6.80914 13.4528 6.58823C13.4528 5.22938 12.9656 3.98544 12.1559 3.01984C12.014 2.85057 12.0361 2.59827 12.2054 2.45632Z" fill="#262E30"/>
|
||||
<path d="M6.90856 8.14372C6.74482 8.03825 6.42004 7.60309 6.52554 7.4394L9.36699 3.0928L11.0386 1.75207C11.0572 1.73098 11.0901 1.75207 11.0799 1.77739L10.6769 3.84534L7.81017 8.22991C7.70466 8.39445 7.07231 8.24919 6.90856 8.14372Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.2605 2.0869L11.3043 2.05176C11.29 2.06488 11.2754 2.07657 11.2605 2.0869ZM10.4921 2.70325L9.667 3.36498L6.92835 7.55434C6.93569 7.56834 6.94479 7.5844 6.95593 7.60234C6.98744 7.65306 7.02616 7.70416 7.06356 7.74615C7.09777 7.78456 7.1195 7.8026 7.12442 7.80668C7.12455 7.80679 7.12432 7.80659 7.12442 7.80668C7.12485 7.80685 7.12603 7.80751 7.12728 7.80807C7.1361 7.81204 7.16577 7.82538 7.22157 7.84257C7.28718 7.8628 7.36545 7.88116 7.44094 7.89255C7.48208 7.89876 7.51726 7.90211 7.54577 7.90346L10.2994 3.69198L10.4921 2.70325ZM11.4689 1.8732C11.5707 1.48625 11.0884 1.15079 10.7702 1.45463L9.06709 2.82062L6.1908 7.22054L6.18939 7.2227C6.06867 7.41 6.10474 7.6107 6.13249 7.71066C6.16465 7.82652 6.22126 7.93575 6.27636 8.02446C6.38026 8.19172 6.54007 8.38213 6.69202 8.48C6.77997 8.53666 6.89251 8.57829 6.98592 8.60708C7.08823 8.63862 7.20534 8.66606 7.32159 8.6836C7.43425 8.7006 7.56528 8.71128 7.68872 8.6986C7.78001 8.68923 8.01173 8.6546 8.14566 8.44783L11.0546 3.99871L11.4689 1.8732Z" fill="#262E30"/>
|
||||
<path d="M5.34576 9.16394C4.83644 9.16394 4.43515 9.24883 4.14191 9.43403C3.79465 9.63467 3.57857 9.95879 3.49368 10.3987L4.3657 10.4681C4.412 10.2597 4.52776 10.1054 4.69753 10.0051C4.84415 9.91249 5.03708 9.8739 5.28402 9.8739C5.85507 9.8739 6.1406 10.1286 6.1406 10.6533V10.8077L5.26859 10.8308C4.6821 10.8462 4.2268 10.9697 3.90268 11.2012C3.5477 11.4404 3.37793 11.7877 3.37793 12.2353C3.37793 12.5671 3.5014 12.8372 3.74834 13.0533C3.98757 13.2616 4.31168 13.3697 4.7284 13.3697C5.07566 13.3697 5.37662 13.3079 5.63128 13.1922C5.85507 13.0842 6.048 12.9375 6.20234 12.7369V13.2616H7.02034V10.715C7.02034 10.2289 6.89686 9.85847 6.64992 9.60381C6.37211 9.31056 5.93224 9.16394 5.34576 9.16394ZM6.1406 11.4404V11.6411C6.1406 11.9498 6.01713 12.2044 5.78562 12.4051C5.55411 12.598 5.26859 12.6983 4.92904 12.6983C4.73612 12.6983 4.58178 12.6443 4.4583 12.5517C4.33483 12.4591 4.28081 12.3433 4.28081 12.2044C4.28081 11.726 4.62808 11.479 5.33032 11.4636L6.1406 11.4404Z" fill="#262E30"/>
|
||||
<path d="M9.46095 9.31828V10.9003H7.87125V11.6257H9.46095V13.2153H10.1863V11.6257H11.7683V10.9003H10.1863V9.31828H9.46095Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35888">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0.893066 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
5
resources/images/param_adhension.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.2915 10.3175C4.22371 10.3175 4.15906 10.304 4.10011 10.2795C3.97789 10.2288 3.88013 10.1311 3.82944 10.0089C3.805 9.9499 3.7915 9.88525 3.7915 9.81746V1.72507C3.7915 1.65727 3.805 1.59263 3.82944 1.53367C3.88013 1.41145 3.97789 1.31369 4.10011 1.26301C4.15906 1.23856 4.22371 1.22507 4.2915 1.22507H12.3839C12.4517 1.22507 12.5163 1.23856 12.5753 1.26301C12.6975 1.31369 12.7953 1.41145 12.846 1.53367C12.8704 1.59263 12.8839 1.65727 12.8839 1.72507V9.81746C12.8839 9.88525 12.8704 9.9499 12.846 10.0089C12.7953 10.1311 12.6975 10.2288 12.5753 10.2795C12.5163 10.304 12.4517 10.3175 12.3839 10.3175H4.2915ZM11.8839 9.31746V2.22507H4.7915V9.31746H11.8839Z" fill="#262E30"/>
|
||||
<path d="M1.11621 4.18256C1.11621 3.90641 1.34007 3.68256 1.61621 3.68256H9.7086C9.98474 3.68256 10.2086 3.90641 10.2086 4.18256V12.2749C10.2086 12.5511 9.98474 12.7749 9.7086 12.7749H1.61621C1.34007 12.7749 1.11621 12.5511 1.11621 12.2749V4.18256Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.11621 4.68256V11.7749H9.2086V4.68256H2.11621ZM1.61621 3.68256C1.34007 3.68256 1.11621 3.90641 1.11621 4.18256V12.2749C1.11621 12.5511 1.34007 12.7749 1.61621 12.7749H9.7086C9.98474 12.7749 10.2086 12.5511 10.2086 12.2749V4.18256C10.2086 3.90641 9.98474 3.68256 9.7086 3.68256H1.61621Z" fill="#262E30"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
13
resources/images/param_advanced.svg
Normal file
|
@ -0,0 +1,13 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35915)">
|
||||
<path d="M5.77728 8.19568C6.83651 8.19568 7.69519 7.35094 7.69519 6.3089C7.69519 5.26686 6.83651 4.42212 5.77728 4.42212C4.71805 4.42212 3.85938 5.26686 3.85938 6.3089C3.85938 7.35094 4.71805 8.19568 5.77728 8.19568Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.77738 4.82213C4.93287 4.82213 4.25947 5.49392 4.25947 6.3089C4.25947 7.12388 4.93287 7.79568 5.77738 7.79568C6.62189 7.79568 7.29529 7.12388 7.29529 6.3089C7.29529 5.49392 6.62189 4.82213 5.77738 4.82213ZM3.45947 6.3089C3.45947 5.0398 4.50343 4.02213 5.77738 4.02213C7.05133 4.02213 8.09529 5.0398 8.09529 6.3089C8.09529 7.578 7.05133 8.59568 5.77738 8.59568C4.50343 8.59568 3.45947 7.578 3.45947 6.3089Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.34726 7.20476C9.34726 6.81816 9.66067 6.50476 10.0473 6.50476H10.93C11.3166 6.50476 11.63 6.81816 11.63 7.20476V7.52538C11.7784 7.59328 11.9194 7.67388 12.0518 7.7659L12.349 7.59704C12.6818 7.40797 13.1048 7.52128 13.2985 7.8514L13.7358 8.59659C13.9334 8.93323 13.8174 9.3664 13.4782 9.55936L13.1944 9.72075C13.2012 9.79821 13.2047 9.87647 13.2047 9.95528C13.2047 10.0341 13.2012 10.1123 13.1944 10.1898L13.4782 10.3512C13.8174 10.5442 13.9334 10.9773 13.7358 11.314L13.2985 12.0592C13.1048 12.3893 12.6818 12.5026 12.349 12.3135L12.0518 12.1447C11.9195 12.2367 11.7784 12.3175 11.63 12.3854V12.7058C11.63 13.0924 11.3166 13.4058 10.93 13.4058H10.0473C9.66067 13.4058 9.34726 13.0924 9.34726 12.7058V12.3852C9.19888 12.3173 9.05782 12.2367 8.92545 12.1447L8.62821 12.3135C8.2954 12.5026 7.87244 12.3893 7.67872 12.0592L7.24142 11.314C7.04387 10.9773 7.1598 10.5442 7.49909 10.3512L7.78287 10.1898C7.77602 10.1123 7.77257 10.0341 7.77257 9.95528C7.77257 9.876 7.77622 9.79786 7.78316 9.72091L7.49909 9.55936C7.1598 9.3664 7.04387 8.93323 7.24142 8.59659L7.67872 7.8514C7.87244 7.52128 8.2954 7.40797 8.62821 7.59704L8.92542 7.76588C9.05775 7.67384 9.19889 7.59308 9.34726 7.52519V7.20476ZM10.1473 7.30476V7.58049C10.1473 7.88921 9.94978 8.13387 9.7062 8.24096C9.58323 8.29502 9.46689 8.36162 9.35905 8.43901C9.14617 8.59177 8.8413 8.63818 8.5776 8.48837L8.31878 8.34134L7.98269 8.91406L8.22713 9.05307C8.4957 9.20581 8.61076 9.49883 8.58274 9.764C8.57606 9.82717 8.57257 9.8909 8.57257 9.95528C8.57257 10.0199 8.57587 10.0836 8.58232 10.146C8.60961 10.41 8.49603 10.7046 8.22578 10.8582L7.98269 10.9965L8.31878 11.5692L8.5776 11.4222C8.84132 11.2724 9.14615 11.3188 9.35898 11.4715C9.46676 11.5488 9.58311 11.6153 9.7066 11.6696C9.95035 11.7767 10.1473 12.0215 10.1473 12.3297V12.6058H10.83V12.3301C10.83 12.0213 11.0275 11.7767 11.271 11.6696C11.394 11.6155 11.5104 11.5489 11.6182 11.4715C11.8311 11.3188 12.1359 11.2724 12.3996 11.4222L12.6585 11.5692L12.9946 10.9965L12.7515 10.8582C12.4812 10.7046 12.3676 10.41 12.3949 10.146C12.4014 10.0836 12.4047 10.0199 12.4047 9.95528C12.4047 9.89062 12.4014 9.82695 12.3949 9.76456C12.3676 9.50059 12.4812 9.206 12.7515 9.05231L12.9946 8.91406L12.6585 8.34134L12.3996 8.48837C12.1359 8.63819 11.8311 8.59173 11.6183 8.43908C11.5105 8.36179 11.3941 8.29526 11.2706 8.24097C11.0269 8.13383 10.83 7.88909 10.83 7.58088V7.30476H10.1473Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.08658 1.29424C4.08658 0.907638 4.39998 0.594238 4.78658 0.594238H6.76792C7.15452 0.594238 7.46792 0.907638 7.46792 1.29424V2.27167C7.83207 2.4199 8.17182 2.61426 8.47955 2.84762L9.35474 2.35073C9.6875 2.16181 10.1103 2.27509 10.304 2.60508L11.2913 4.2869C11.4891 4.6237 11.3729 5.05715 11.0333 5.25L9.93023 5.87637L9.53521 5.18071L10.5501 4.60442L9.66401 3.09509L8.82163 3.57335C8.56031 3.72171 8.24892 3.68121 8.03067 3.51156C7.75791 3.29954 7.45333 3.12514 7.12497 2.9961C6.86325 2.89325 6.66792 2.63945 6.66792 2.33375V1.39424H4.88658V2.33291C4.88658 2.63861 4.69125 2.89241 4.42952 2.99526C4.10117 3.1243 3.79658 3.2987 3.52382 3.51072C3.30557 3.68037 2.99418 3.72087 2.73286 3.57251L1.89058 3.09431L1.00518 4.60353L1.83107 5.07251C2.09812 5.22415 2.2218 5.52088 2.18114 5.79961C2.15694 5.96551 2.14428 6.13503 2.14428 6.30772C2.14428 6.4804 2.15694 6.64993 2.18114 6.81582C2.2218 7.09456 2.09812 7.39129 1.83107 7.54292L1.00528 8.01184L1.89134 9.52118L2.73371 9.04292C2.99503 8.89456 3.30642 8.93506 3.52468 9.10471C3.79743 9.31673 4.10202 9.49113 4.43038 9.62017C4.6921 9.72302 4.88743 9.97682 4.88743 10.2825V11.2212H6.33721V12.0212H4.78743C4.40083 12.0212 4.08743 11.7078 4.08743 11.3212V10.3446C3.72327 10.1964 3.38353 10.002 3.0758 9.76865L2.2006 10.2655C1.86785 10.4545 1.44505 10.3412 1.25133 10.0112L0.264013 8.32937C0.0662951 7.99257 0.182419 7.55912 0.522029 7.36627L1.38207 6.87791C1.35723 6.69139 1.34428 6.50113 1.34428 6.30772C1.34428 6.1143 1.35723 5.92404 1.38207 5.73752L0.521952 5.24911C0.18241 5.05631 0.0662543 4.62298 0.263834 4.2862L1.25045 2.60446C1.44412 2.27435 1.867 2.16097 2.19983 2.34993L3.07494 2.84678C3.38268 2.61343 3.72242 2.41907 4.08658 2.27083V1.29424Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35915">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 5.1 KiB |
17
resources/images/param_cooling.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8076_36037)">
|
||||
<path d="M2.24412 13.1096C2.04241 13.298 1.72616 13.2873 1.53763 13.0857C1.34902 12.884 1.35963 12.5676 1.56133 12.379L1.90281 12.7442C1.56334 12.3811 1.56123 12.3791 1.56133 12.379L1.56236 12.3781L1.56362 12.3769L1.56687 12.3739L1.5762 12.3654C1.58368 12.3587 1.59365 12.3499 1.60601 12.3393C1.6307 12.3182 1.66509 12.2897 1.70826 12.2563C1.79421 12.19 1.91709 12.1028 2.06947 12.0155C2.36843 11.8444 2.81313 11.6547 3.33192 11.6547C4.00299 11.6547 4.42661 11.9579 4.72845 12.1872C5.04844 12.4304 5.16459 12.5159 5.35099 12.5159C5.54958 12.5159 5.69369 12.4177 6.04501 12.1743C6.36914 11.9498 6.81791 11.6547 7.48421 11.6547C8.12764 11.6547 8.59883 11.9324 8.95519 12.1423L8.97576 12.1545C9.35264 12.3764 9.60463 12.5159 9.94235 12.5159C10.294 12.5159 10.4829 12.4094 10.7618 12.2489L10.7635 12.248C11.0685 12.0724 11.4573 11.8487 12.0975 11.8487C12.3736 11.8487 12.5975 12.0725 12.5975 12.3487C12.5975 12.6248 12.3736 12.8487 12.0975 12.8487C11.7315 12.8487 11.535 12.9577 11.2605 13.1157L11.2472 13.1233C10.9483 13.2954 10.5653 13.5159 9.94235 13.5159C9.31561 13.5159 8.85135 13.2421 8.50061 13.0352L8.46836 13.0162C8.09583 12.7968 7.83562 12.6547 7.48421 12.6547C7.14323 12.6547 6.91191 12.7903 6.6145 12.9963C6.5919 13.012 6.56826 13.0287 6.54358 13.0461C6.27314 13.2368 5.87739 13.5159 5.35099 13.5159C4.81173 13.5159 4.43507 13.2244 4.18612 13.0317C4.16425 13.0147 4.14336 12.9986 4.12344 12.9834C3.85859 12.7822 3.65919 12.6547 3.33192 12.6547C3.05203 12.6547 2.78219 12.7598 2.56628 12.8834C2.46122 12.9435 2.37658 13.0037 2.31937 13.0479C2.29096 13.0698 2.26986 13.0874 2.25695 13.0984L2.24412 13.1096Z" fill="#262E30"/>
|
||||
<path d="M6.8125 1.85522C7.08864 1.85522 7.3125 2.07908 7.3125 2.35522L7.3125 7.0257C7.68692 7.21031 7.94451 7.59584 7.94451 8.04153C7.94451 8.66667 7.43773 9.17345 6.81259 9.17345C6.18744 9.17345 5.68066 8.66667 5.68066 8.04153C5.68066 7.59591 5.93817 7.21043 6.3125 7.02579L6.3125 2.35522C6.3125 2.07908 6.53636 1.85522 6.8125 1.85522Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.84158 1.94196C4.84158 0.860716 5.7181 -0.0158081 6.79934 -0.0158081C7.88059 -0.0158082 8.75711 0.860714 8.75711 1.94196L8.75711 5.50491C9.53902 6.09429 10.0462 7.03149 10.0462 8.0885C10.0462 9.87433 8.59848 11.322 6.81265 11.322C5.02681 11.322 3.5791 9.87433 3.5791 8.0885C3.5791 7.04351 4.07485 6.1156 4.84158 5.52517V1.94196ZM5.84158 6.07652L5.84158 1.94196C5.84158 1.413 6.27038 0.984192 6.79934 0.984192C7.3283 0.984192 7.75711 1.413 7.75711 1.94196L7.75711 6.06387C8.51859 6.4197 9.04619 7.19249 9.04619 8.0885C9.04619 9.32205 8.0462 10.322 6.81265 10.322C5.57909 10.322 4.5791 9.32205 4.5791 8.0885C4.5791 7.20296 5.09444 6.43779 5.84158 6.07652Z" fill="#262E30"/>
|
||||
<path d="M9.53906 1.85522C9.53906 1.57908 9.76292 1.35522 10.0391 1.35522H10.7999C11.076 1.35522 11.2999 1.57908 11.2999 1.85522C11.2999 2.13137 11.076 2.35522 10.7999 2.35522H10.0391C9.76292 2.35522 9.53906 2.13137 9.53906 1.85522Z" fill="#262E30"/>
|
||||
<path d="M10.0391 3.28052C9.76292 3.28052 9.53906 3.50438 9.53906 3.78052C9.53906 4.05666 9.76292 4.28052 10.0391 4.28052H10.7999C11.076 4.28052 11.2999 4.05666 11.2999 3.78052C11.2999 3.50438 11.076 3.28052 10.7999 3.28052H10.0391Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.24412 10.8463C2.04241 11.0347 1.72616 11.024 1.53763 10.8224C1.34902 10.6207 1.35963 10.3043 1.56133 10.1157M2.24297 10.8474C2.24292 10.8474 2.24295 10.8474 2.24297 10.8474L2.24412 10.8463L2.24297 10.8474ZM2.24412 10.8463L2.24297 10.8474L2.24412 10.8463Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.24412 10.8463L2.25695 10.8351C2.26986 10.8241 2.29096 10.8065 2.31937 10.7846C2.37658 10.7404 2.46122 10.6802 2.56628 10.6201C2.78219 10.4965 3.05203 10.3914 3.33192 10.3914C3.60806 10.3914 3.83192 10.1676 3.83192 9.89142C3.83192 9.61528 3.60806 9.39142 3.33192 9.39142C2.81313 9.39142 2.36843 9.58109 2.06947 9.75224C1.91709 9.83947 1.79421 9.92667 1.70826 9.99303C1.66509 10.0264 1.6307 10.0548 1.60601 10.076C1.59365 10.0866 1.58368 10.0954 1.5762 10.1021L1.56687 10.1106L1.56362 10.1136L1.56236 10.1147L1.56133 10.1157M1.90283 10.4809L1.56133 10.1157C1.56123 10.1158 1.56334 10.1178 1.90283 10.4809Z" fill="#262E30"/>
|
||||
<path d="M9.94235 11.2526C10.5653 11.2526 10.9483 11.0321 11.2472 10.86L11.2605 10.8524C11.535 10.6944 11.7315 10.5854 12.0975 10.5854C12.3736 10.5854 12.5975 10.3615 12.5975 10.0854C12.5975 9.80924 12.3736 9.58538 12.0975 9.58538C11.4573 9.58538 11.0685 9.80911 10.7635 9.98465L10.7618 9.98563C10.4829 10.1461 10.294 10.2526 9.94235 10.2526C9.6662 10.2526 9.44235 10.4765 9.44235 10.7526C9.44235 11.0288 9.6662 11.2526 9.94235 11.2526Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8076_36037">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
14
resources/images/param_cooling_fan.svg
Normal file
|
@ -0,0 +1,14 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8076_36065)">
|
||||
<path d="M8.12829 6.30695C8.51218 5.88759 8.75544 5.33583 8.77951 4.72326C8.81752 3.74643 8.2873 2.8792 7.48404 2.43956C7.41563 2.40219 7.34468 2.36798 7.27246 2.33631C7.12803 2.27993 6.97283 2.24635 6.80939 2.24002C6.02071 2.20898 5.35619 2.82345 5.32578 3.61213C5.30804 4.07394 5.51139 4.49267 5.8408 4.76697C5.86677 4.78534 5.89148 4.80497 5.91618 4.82525C6.16831 5.03493 6.34632 5.3295 6.40776 5.66271C6.56677 5.61266 6.73654 5.58859 6.91265 5.59556C7.42957 5.61709 7.87553 5.89773 8.12829 6.30695Z" fill="#ACACAC" stroke="#262E30" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M5.35959 7.03209C5.36656 6.85725 5.4033 6.69128 5.46412 6.53735C4.93453 6.44042 4.3701 6.51327 3.85634 6.78314C2.99101 7.23861 2.50513 8.13118 2.52604 9.04656C2.52794 9.12448 2.53364 9.20303 2.54251 9.28158C2.56595 9.43425 2.61473 9.58628 2.69074 9.73072C3.05816 10.4288 3.92286 10.6974 4.62095 10.3294C5.02955 10.114 5.29118 9.72881 5.36339 9.30565C5.36656 9.27398 5.37099 9.2423 5.3767 9.21126C5.43941 8.84765 5.64149 8.51127 5.9576 8.28765C5.57814 8.00322 5.33995 7.54268 5.35959 7.03209Z" fill="#ACACAC" stroke="#262E30" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M10.8071 7.51018C10.4162 7.26376 9.9519 7.23019 9.54901 7.37905C9.51987 7.39172 9.49073 7.40376 9.46096 7.41516C9.09987 7.54819 8.68938 7.53489 8.32703 7.35308C8.2149 7.99036 7.70242 8.48194 7.06641 8.57253C7.23555 9.12176 7.59346 9.61587 8.11798 9.94655C8.94531 10.4679 9.96141 10.4426 10.7438 9.96682C10.8103 9.92627 10.8755 9.88193 10.9389 9.83505C11.0599 9.73813 11.1669 9.6203 11.2537 9.48221C11.675 8.81388 11.4748 7.93145 10.8071 7.51018Z" fill="#ACACAC" stroke="#262E30" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M6.8434 7.67629C7.13903 7.67629 7.37869 7.43664 7.37869 7.141C7.37869 6.84537 7.13903 6.60571 6.8434 6.60571C6.54776 6.60571 6.30811 6.84537 6.30811 7.141C6.30811 7.43664 6.54776 7.67629 6.8434 7.67629Z" stroke="#262E30" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<circle cx="7.00014" cy="7.00002" r="6.06303" stroke="#262E30" stroke-width="0.8"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8076_36065">
|
||||
<rect width="14" height="14" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
13
resources/images/param_flush.svg
Normal file
|
@ -0,0 +1,13 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35946)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.03992 1.91067C5.03992 1.08225 5.71149 0.410675 6.53992 0.410675H7.45998C8.28841 0.410675 8.95998 1.08225 8.95998 1.91068V3.3317C8.95998 3.60784 9.18383 3.8317 9.45998 3.8317H11.7151C12.5435 3.8317 13.2151 4.50327 13.2151 5.3317V6.41862C13.2151 7.24704 12.5435 7.91862 11.7151 7.91862H2.28516C1.45673 7.91862 0.785156 7.24705 0.785156 6.41862V5.3317C0.785156 4.50328 1.45673 3.8317 2.28516 3.8317H4.53992C4.81606 3.8317 5.03992 3.60784 5.03992 3.3317V1.91067ZM6.53992 1.41068C6.26378 1.41068 6.03992 1.63453 6.03992 1.91067V3.3317C6.03992 4.16013 5.36835 4.8317 4.53992 4.8317H2.28516C2.00901 4.8317 1.78516 5.05556 1.78516 5.3317V6.41862C1.78516 6.69476 2.00901 6.91862 2.28516 6.91862H11.7151C11.9912 6.91862 12.2151 6.69476 12.2151 6.41862V5.3317C12.2151 5.05556 11.9912 4.8317 11.7151 4.8317H9.45998C8.63155 4.8317 7.95998 4.16013 7.95998 3.3317V1.91068C7.95998 1.63453 7.73612 1.41068 7.45998 1.41068H6.53992Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.26076 7.91931C3.02576 7.91931 2.82247 8.08296 2.77229 8.31255L1.97013 11.9826C1.90198 12.2944 2.13944 12.5893 2.4586 12.5893H11.5674C11.8822 12.5893 12.1187 12.3018 12.058 11.9928L11.336 8.3228C11.2899 8.08836 11.0844 7.91931 10.8454 7.91931H3.26076ZM1.79536 8.09902C1.9459 7.41027 2.55575 6.91931 3.26076 6.91931H10.8454C11.5622 6.91931 12.1789 7.42646 12.3172 8.12979L13.0392 11.7998C13.2215 12.7267 12.512 13.5893 11.5674 13.5893H2.4586C1.50112 13.5893 0.788744 12.7044 0.993195 11.769L1.79536 8.09902Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.79834 13.0863C4.5222 13.0863 4.29834 12.8624 4.29834 12.5863L4.29834 10.2243C4.29834 9.94811 4.5222 9.72425 4.79834 9.72425C5.07448 9.72425 5.29834 9.94811 5.29834 10.2243L5.29834 12.5863C5.29834 12.8624 5.07448 13.0863 4.79834 13.0863Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.69385 13.0863C8.41771 13.0863 8.19385 12.8624 8.19385 12.5863L8.19385 10.2243C8.19385 9.94811 8.41771 9.72425 8.69385 9.72425C8.96999 9.72425 9.19385 9.94811 9.19385 10.2243L9.19385 12.5863C9.19385 12.8624 8.96999 13.0863 8.69385 13.0863Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35946">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
12
resources/images/param_gcode.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35942)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.04464 1.3C5.04464 0.858172 5.40281 0.5 5.84464 0.5H8.15561C8.59743 0.5 8.95561 0.858172 8.95561 1.3V2.40866C9.3487 2.57209 9.71602 2.78263 10.0508 3.0337L11.0407 2.47031C11.4213 2.25369 11.9053 2.38337 12.1267 2.76125L13.2781 4.72699C13.5033 5.11147 13.371 5.60585 12.9838 5.82643L12.0085 6.38213C12.0342 6.58488 12.0471 6.79128 12.0471 7C12.0471 7.20872 12.0342 7.41512 12.0085 7.61787L12.9838 8.17357C13.371 8.39415 13.5033 8.88853 13.2781 9.27301L12.1267 11.2388C11.9053 11.6166 11.4213 11.7463 11.0407 11.5297L10.0508 10.9663C9.71614 11.2174 9.34841 11.4285 8.95561 11.5917V12.7C8.95561 13.1418 8.59743 13.5 8.15561 13.5H5.84464C5.40281 13.5 5.04464 13.1418 5.04464 12.7V11.5913C4.65155 11.4279 4.28423 11.2174 3.94949 10.9663L2.95959 11.5297C2.57898 11.7463 2.09493 11.6166 1.87359 11.2388L0.722147 9.27301C0.49694 8.88853 0.629259 8.39415 1.01641 8.17357L1.99174 7.61787C1.96608 7.41512 1.9531 7.20872 1.9531 7C1.9531 6.79 1.9669 6.58414 1.99251 6.38257L1.01641 5.82643C0.629258 5.60585 0.49694 5.11147 0.722148 4.72699L1.87359 2.76125C2.09493 2.38336 2.57898 2.25369 2.95959 2.47031L3.94946 3.03369C4.28411 2.78259 4.65184 2.57146 5.04464 2.40832V1.3ZM6.04464 1.5V2.53858C6.04464 2.88805 5.8214 3.17854 5.5212 3.29455C5.14018 3.4418 4.78643 3.6452 4.47133 3.89381C4.22224 4.09033 3.86513 4.1363 3.56616 3.96615L2.63662 3.43711L1.68732 5.05777L2.60123 5.57847C2.90471 5.75138 3.04711 6.08934 2.99853 6.40838C2.96898 6.60246 2.9531 6.79958 2.9531 7C2.9531 7.2013 2.96817 7.39853 2.99745 7.58985C3.04617 7.90814 2.90548 8.24818 2.59988 8.4223L1.68732 8.94224L2.63662 10.5629L3.56616 10.0339C3.86514 9.86369 4.22223 9.90969 4.4713 10.1062C4.78613 10.3545 5.13936 10.5573 5.52196 10.7055C5.82206 10.8217 6.04464 11.1121 6.04464 11.461V12.5H7.95561V11.4614C7.95561 11.112 8.17885 10.8215 8.47905 10.7054C8.86007 10.5582 9.21382 10.3548 9.52892 10.1062C9.778 9.90967 10.1351 9.8637 10.4341 10.0339L11.3636 10.5629L12.3129 8.94223L11.4004 8.4223C11.0948 8.24819 10.9541 7.90814 11.0028 7.58985C11.0321 7.39853 11.0471 7.2013 11.0471 7C11.0471 6.7987 11.0321 6.60147 11.0028 6.41015C10.9541 6.09186 11.0948 5.75182 11.4004 5.5777L12.3129 5.05777L11.3636 3.43711L10.4341 3.96615C10.1351 4.13631 9.77802 4.09031 9.52895 3.89385C9.21412 3.6455 8.86089 3.44269 8.47829 3.29454C8.17819 3.17834 7.95561 2.88785 7.95561 2.53897V1.5H6.04464Z" fill="#262E30"/>
|
||||
<path d="M7.394 7.646C7.26145 7.646 7.154 7.53855 7.154 7.406C7.154 7.27345 7.26145 7.166 7.394 7.166H8.318C8.48369 7.166 8.618 7.30031 8.618 7.466V8.78357C8.618 8.84379 8.6008 8.90338 8.56266 8.94999C8.43558 9.10531 8.25602 9.23665 8.024 9.344C7.756 9.468 7.454 9.53 7.118 9.53C6.714 9.53 6.35 9.436 6.026 9.248C5.706 9.056 5.454 8.788 5.27 8.444C5.09 8.096 5 7.7 5 7.256C5 6.816 5.09 6.426 5.27 6.086C5.454 5.742 5.704 5.476 6.02 5.288C6.34 5.096 6.694 5 7.082 5C7.426 5 7.732 5.074 8 5.222C8.19812 5.3298 8.35698 5.46838 8.47659 5.63772C8.55306 5.74601 8.50623 5.8912 8.39172 5.958C8.26629 6.03116 8.10698 5.98236 8.00808 5.87604C7.93053 5.79267 7.83783 5.72066 7.73 5.66C7.538 5.548 7.314 5.492 7.058 5.492C6.766 5.492 6.506 5.566 6.278 5.714C6.054 5.862 5.878 6.07 5.75 6.338C5.626 6.602 5.564 6.908 5.564 7.256C5.564 7.608 5.63 7.92 5.762 8.192C5.894 8.46 6.08 8.668 6.32 8.816C6.56 8.964 6.838 9.038 7.154 9.038C7.50915 9.038 7.79005 8.95314 7.99668 8.78341C8.05596 8.73472 8.084 8.65925 8.084 8.58254V7.946C8.084 7.78031 7.94969 7.646 7.784 7.646H7.394Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.55194 6.13229C6.69244 6.04154 6.85595 5.992 7.058 5.992C7.2391 5.992 7.3735 6.03089 7.47806 6.09189L7.47803 6.09194L7.48487 6.09579C7.55159 6.13332 7.60251 6.17415 7.64199 6.21659C7.84522 6.43507 8.2539 6.61724 8.64366 6.38989C8.95733 6.20691 9.16481 5.74548 8.885 5.34928C8.71772 5.11242 8.49913 4.92461 8.24035 4.78355C7.88991 4.59035 7.49937 4.5 7.082 4.5C6.60746 4.5 6.16422 4.61857 5.76355 4.85877C5.36486 5.09617 5.05317 5.43127 4.82911 5.85017L4.8291 5.85017L4.82811 5.85206C4.60478 6.2739 4.5 6.74627 4.5 7.256C4.5 7.76919 4.60453 8.24574 4.82589 8.67371L4.82585 8.67373L4.82911 8.67983C5.05373 9.09977 5.36762 9.43607 5.76875 9.67675L5.76872 9.67679L5.77506 9.68047C6.18125 9.91616 6.63301 10.03 7.118 10.03C7.51651 10.03 7.89164 9.95617 8.23396 9.79778C8.51639 9.66711 8.76341 9.49421 8.94963 9.26662C9.07469 9.11378 9.118 8.93532 9.118 8.78357V7.466C9.118 7.02417 8.75983 6.666 8.318 6.666H7.394C6.98531 6.666 6.654 6.99731 6.654 7.406C6.654 7.81469 6.98531 8.146 7.394 8.146H7.584V8.45772C7.4889 8.50438 7.3525 8.538 7.154 8.538C6.91919 8.538 6.7343 8.48406 6.58244 8.39041C6.42769 8.29498 6.30416 8.16059 6.2112 7.9724C6.11762 7.77901 6.064 7.54411 6.064 7.256C6.064 6.96822 6.11499 6.73765 6.20188 6.55202C6.29456 6.35855 6.41264 6.22477 6.55194 6.13229Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35942">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 5 KiB |
29
resources/images/param_infill.svg
Normal file
|
@ -0,0 +1,29 @@
|
|||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35841)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.53595 2.54026C4.08164 2.54026 3.71357 2.9084 3.71357 3.36225C3.71357 3.8161 4.08164 4.18423 4.53595 4.18423C4.99025 4.18423 5.35832 3.8161 5.35832 3.36225C5.35832 2.9084 4.99025 2.54026 4.53595 2.54026ZM2.91357 3.36225C2.91357 2.46633 3.64006 1.74026 4.53595 1.74026C5.43184 1.74026 6.15832 2.46633 6.15832 3.36225C6.15832 4.25817 5.43184 4.98423 4.53595 4.98423C3.64006 4.98423 2.91357 4.25817 2.91357 3.36225Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.98028 2.54026C6.52598 2.54026 6.15791 2.9084 6.15791 3.36225C6.15791 3.8161 6.52598 4.18423 6.98028 4.18423C7.43458 4.18423 7.80265 3.8161 7.80265 3.36225C7.80265 2.9084 7.43458 2.54026 6.98028 2.54026ZM5.35791 3.36225C5.35791 2.46633 6.08439 1.74026 6.98028 1.74026C7.87617 1.74026 8.60265 2.46633 8.60265 3.36225C8.60265 4.25817 7.87617 4.98423 6.98028 4.98423C6.08439 4.98423 5.35791 4.25817 5.35791 3.36225Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.42511 2.54026C8.9708 2.54026 8.60273 2.9084 8.60273 3.36225C8.60273 3.8161 8.9708 4.18423 9.42511 4.18423C9.87941 4.18423 10.2475 3.8161 10.2475 3.36225C10.2475 2.9084 9.87941 2.54026 9.42511 2.54026ZM7.80273 3.36225C7.80273 2.46633 8.52922 1.74026 9.42511 1.74026C10.321 1.74026 11.0475 2.46633 11.0475 3.36225C11.0475 4.25817 10.321 4.98423 9.42511 4.98423C8.52922 4.98423 7.80273 4.25817 7.80273 3.36225Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.53644 6.79026C4.08213 6.79026 3.71406 7.1584 3.71406 7.61225C3.71406 8.0661 4.08213 8.43423 4.53644 8.43423C4.99074 8.43423 5.35881 8.0661 5.35881 7.61225C5.35881 7.1584 4.99074 6.79026 4.53644 6.79026ZM2.91406 7.61225C2.91406 6.71633 3.64054 5.99026 4.53644 5.99026C5.43233 5.99026 6.15881 6.71633 6.15881 7.61225C6.15881 8.50817 5.43233 9.23423 4.53644 9.23423C3.64054 9.23423 2.91406 8.50817 2.91406 7.61225Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.98028 6.79026C6.52598 6.79026 6.15791 7.1584 6.15791 7.61225C6.15791 8.0661 6.52598 8.43423 6.98028 8.43423C7.43458 8.43423 7.80265 8.0661 7.80265 7.61225C7.80265 7.1584 7.43458 6.79026 6.98028 6.79026ZM5.35791 7.61225C5.35791 6.71633 6.08439 5.99026 6.98028 5.99026C7.87617 5.99026 8.60265 6.71633 8.60265 7.61225C8.60265 8.50817 7.87617 9.23423 6.98028 9.23423C6.08439 9.23423 5.35791 8.50817 5.35791 7.61225Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.09161 6.79026C1.63731 6.79026 1.26924 7.1584 1.26924 7.61225C1.26924 8.0661 1.63731 8.43423 2.09161 8.43423C2.54591 8.43423 2.91398 8.0661 2.91398 7.61225C2.91398 7.1584 2.54591 6.79026 2.09161 6.79026ZM0.469238 7.61225C0.469238 6.71633 1.19572 5.99026 2.09161 5.99026C2.9875 5.99026 3.71398 6.71633 3.71398 7.61225C3.71398 8.50817 2.9875 9.23423 2.09161 9.23423C1.19572 9.23423 0.469238 8.50817 0.469238 7.61225Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.42511 6.79026C8.9708 6.79026 8.60273 7.1584 8.60273 7.61225C8.60273 8.0661 8.9708 8.43423 9.42511 8.43423C9.87941 8.43423 10.2475 8.0661 10.2475 7.61225C10.2475 7.1584 9.87941 6.79026 9.42511 6.79026ZM7.80273 7.61225C7.80273 6.71633 8.52922 5.99026 9.42511 5.99026C10.321 5.99026 11.0475 6.71633 11.0475 7.61225C11.0475 8.50817 10.321 9.23423 9.42511 9.23423C8.52922 9.23423 7.80273 8.50817 7.80273 7.61225Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8694 6.79026C11.4151 6.79026 11.0471 7.1584 11.0471 7.61225C11.0471 8.0661 11.4151 8.43423 11.8694 8.43423C12.3237 8.43423 12.6918 8.0661 12.6918 7.61225C12.6918 7.1584 12.3237 6.79026 11.8694 6.79026ZM10.2471 7.61225C10.2471 6.71633 10.9736 5.99026 11.8694 5.99026C12.7653 5.99026 13.4918 6.71633 13.4918 7.61225C13.4918 8.50817 12.7653 9.23423 11.8694 9.23423C10.9736 9.23423 10.2471 8.50817 10.2471 7.61225Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.75763 4.66722C5.30332 4.66722 4.93525 5.03535 4.93525 5.4892C4.93525 5.94305 5.30332 6.31118 5.75763 6.31118C6.21193 6.31118 6.58 5.94305 6.58 5.4892C6.58 5.03535 6.21193 4.66722 5.75763 4.66722ZM4.13525 5.4892C4.13525 4.59328 4.86173 3.86722 5.75763 3.86722C6.65352 3.86722 7.38 4.59328 7.38 5.4892C7.38 6.38512 6.65352 7.11118 5.75763 7.11118C4.86173 7.11118 4.13525 6.38512 4.13525 5.4892Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.31427 4.66722C2.85996 4.66722 2.49189 5.03535 2.49189 5.4892C2.49189 5.94305 2.85996 6.31118 3.31427 6.31118C3.76857 6.31118 4.13664 5.94305 4.13664 5.4892C4.13664 5.03535 3.76857 4.66722 3.31427 4.66722ZM1.69189 5.4892C1.69189 4.59329 2.41837 3.86722 3.31427 3.86722C4.21016 3.86722 4.93664 4.59328 4.93664 5.4892C4.93664 6.38512 4.21016 7.11118 3.31427 7.11118C2.41837 7.11118 1.69189 6.38512 1.69189 5.4892Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.20245 4.66722C7.74815 4.66722 7.38008 5.03535 7.38008 5.4892C7.38008 5.94305 7.74815 6.31118 8.20245 6.31118C8.65675 6.31118 9.02482 5.94305 9.02482 5.4892C9.02482 5.03535 8.65675 4.66722 8.20245 4.66722ZM6.58008 5.4892C6.58008 4.59329 7.30656 3.86722 8.20245 3.86722C9.09834 3.86722 9.82482 4.59329 9.82482 5.4892C9.82482 6.38512 9.09834 7.11118 8.20245 7.11118C7.30656 7.11118 6.58008 6.38512 6.58008 5.4892Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.6473 4.66722C10.193 4.66722 9.8249 5.03535 9.8249 5.4892C9.8249 5.94305 10.193 6.31118 10.6473 6.31118C11.1016 6.31118 11.4696 5.94305 11.4696 5.4892C11.4696 5.03535 11.1016 4.66722 10.6473 4.66722ZM9.0249 5.4892C9.0249 4.59328 9.75138 3.86722 10.6473 3.86722C11.5432 3.86722 12.2696 4.59328 12.2696 5.4892C12.2696 6.38512 11.5432 7.11118 10.6473 7.11118C9.75138 7.11118 9.0249 6.38512 9.0249 5.4892Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.53644 11.093C4.08213 11.093 3.71406 11.4611 3.71406 11.915C3.71406 12.3688 4.08213 12.737 4.53644 12.737C4.99074 12.737 5.35881 12.3688 5.35881 11.915C5.35881 11.4611 4.99074 11.093 4.53644 11.093ZM2.91406 11.915C2.91406 11.0191 3.64054 10.293 4.53644 10.293C5.43233 10.293 6.15881 11.0191 6.15881 11.915C6.15881 12.8109 5.43233 13.537 4.53644 13.537C3.64054 13.537 2.91406 12.8109 2.91406 11.915Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.98028 11.093C6.52598 11.093 6.15791 11.4611 6.15791 11.915C6.15791 12.3688 6.52598 12.737 6.98028 12.737C7.43458 12.737 7.80265 12.3688 7.80265 11.915C7.80265 11.4611 7.43458 11.093 6.98028 11.093ZM5.35791 11.915C5.35791 11.0191 6.08439 10.293 6.98028 10.293C7.87617 10.293 8.60265 11.0191 8.60265 11.915C8.60265 12.8109 7.87617 13.537 6.98028 13.537C6.08439 13.537 5.35791 12.8109 5.35791 11.915Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.42511 11.093C8.9708 11.093 8.60273 11.4611 8.60273 11.915C8.60273 12.3688 8.9708 12.737 9.42511 12.737C9.87941 12.737 10.2475 12.3688 10.2475 11.915C10.2475 11.4611 9.87941 11.093 9.42511 11.093ZM7.80273 11.915C7.80273 11.0191 8.52922 10.293 9.42511 10.293C10.321 10.293 11.0475 11.0191 11.0475 11.915C11.0475 12.8109 10.321 13.537 9.42511 13.537C8.52922 13.537 7.80273 12.8109 7.80273 11.915Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.75763 8.96611C5.30332 8.96611 4.93525 9.33424 4.93525 9.78809C4.93525 10.2419 5.30332 10.6101 5.75763 10.6101C6.21193 10.6101 6.58 10.2419 6.58 9.78809C6.58 9.33424 6.21193 8.96611 5.75763 8.96611ZM4.13525 9.78809C4.13525 8.89217 4.86173 8.16611 5.75763 8.16611C6.65352 8.16611 7.38 8.89217 7.38 9.78809C7.38 10.684 6.65352 11.4101 5.75763 11.4101C4.86173 11.4101 4.13525 10.684 4.13525 9.78809Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.31427 8.96611C2.85996 8.96611 2.49189 9.33424 2.49189 9.78809C2.49189 10.2419 2.85996 10.6101 3.31427 10.6101C3.76857 10.6101 4.13664 10.2419 4.13664 9.78809C4.13664 9.33424 3.76857 8.96611 3.31427 8.96611ZM1.69189 9.78809C1.69189 8.89217 2.41837 8.16611 3.31427 8.16611C4.21016 8.16611 4.93664 8.89217 4.93664 9.78809C4.93664 10.684 4.21016 11.4101 3.31427 11.4101C2.41837 11.4101 1.69189 10.684 1.69189 9.78809Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.20294 8.96611C7.74864 8.96611 7.38057 9.33424 7.38057 9.78809C7.38057 10.2419 7.74864 10.6101 8.20294 10.6101C8.65724 10.6101 9.02531 10.2419 9.02531 9.78809C9.02531 9.33424 8.65724 8.96611 8.20294 8.96611ZM6.58057 9.78809C6.58057 8.89217 7.30705 8.16611 8.20294 8.16611C9.09883 8.16611 9.82531 8.89217 9.82531 9.78809C9.82531 10.684 9.09883 11.4101 8.20294 11.4101C7.30705 11.4101 6.58057 10.684 6.58057 9.78809Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.6473 8.96611C10.193 8.96611 9.8249 9.33424 9.8249 9.78809C9.8249 10.2419 10.193 10.6101 10.6473 10.6101C11.1016 10.6101 11.4696 10.2419 11.4696 9.78809C11.4696 9.33424 11.1016 8.96611 10.6473 8.96611ZM9.0249 9.78809C9.0249 8.89217 9.75138 8.16611 10.6473 8.16611C11.5432 8.16611 12.2696 8.89217 12.2696 9.78809C12.2696 10.684 11.5432 11.4101 10.6473 11.4101C9.75138 11.4101 9.0249 10.684 9.0249 9.78809Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.47851 1.9402C3.54997 1.81648 3.682 1.74026 3.82488 1.74026H10.1756C10.3185 1.74026 10.4505 1.81648 10.522 1.9402L13.6974 7.43782C13.7689 7.56161 13.7689 7.71415 13.6974 7.83794L10.522 13.3356C10.4505 13.4593 10.3185 13.5355 10.1756 13.5355H3.82488C3.682 13.5355 3.54997 13.4593 3.47851 13.3356L0.303138 7.83794C0.231636 7.71415 0.231636 7.56161 0.303138 7.43782L3.47851 1.9402ZM4.05577 2.54026L1.11144 7.63788L4.05577 12.7355H9.94472L12.8891 7.63788L9.94472 2.54026H4.05577Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35841">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14.1403) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 9.7 KiB |
10
resources/images/param_information.svg
Normal file
|
@ -0,0 +1,10 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.64844 2.02966C1.64844 1.75352 1.8723 1.52966 2.14844 1.52966H5.9899C6.26604 1.52966 6.4899 1.75352 6.4899 2.02966V6.02414C6.4899 6.30028 6.26604 6.52414 5.9899 6.52414H2.14844C1.8723 6.52414 1.64844 6.30028 1.64844 6.02414V2.02966Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.44844 2.32966V5.72414H5.6899V2.32966H2.44844ZM2.14844 1.52966C1.8723 1.52966 1.64844 1.75352 1.64844 2.02966V6.02414C1.64844 6.30028 1.8723 6.52414 2.14844 6.52414H5.9899C6.26604 6.52414 6.4899 6.30028 6.4899 6.02414V2.02966C6.4899 1.75352 6.26604 1.52966 5.9899 1.52966H2.14844Z" fill="#262E30"/>
|
||||
<path d="M7.50977 2.02966C7.50977 1.75352 7.73362 1.52966 8.00977 1.52966H11.8512C12.1274 1.52966 12.3512 1.75352 12.3512 2.02966V6.02414C12.3512 6.30028 12.1274 6.52414 11.8512 6.52414H8.00977C7.73362 6.52414 7.50977 6.30028 7.50977 6.02414V2.02966Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.30977 2.32966V5.72414H11.5512V2.32966H8.30977ZM8.00977 1.52966C7.73362 1.52966 7.50977 1.75352 7.50977 2.02966V6.02414C7.50977 6.30028 7.73362 6.52414 8.00977 6.52414H11.8512C12.1274 6.52414 12.3512 6.30028 12.3512 6.02414V2.02966C12.3512 1.75352 12.1274 1.52966 11.8512 1.52966H8.00977Z" fill="#262E30"/>
|
||||
<path d="M1.64844 7.97583C1.64844 7.69969 1.8723 7.47583 2.14844 7.47583H5.9899C6.26604 7.47583 6.4899 7.69969 6.4899 7.97583V11.9703C6.4899 12.2465 6.26604 12.4703 5.9899 12.4703H2.14844C1.8723 12.4703 1.64844 12.2465 1.64844 11.9703V7.97583Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.44844 8.27583V11.6703H5.6899V8.27583H2.44844ZM2.14844 7.47583C1.8723 7.47583 1.64844 7.69969 1.64844 7.97583V11.9703C1.64844 12.2465 1.8723 12.4703 2.14844 12.4703H5.9899C6.26604 12.4703 6.4899 12.2465 6.4899 11.9703V7.97583C6.4899 7.69969 6.26604 7.47583 5.9899 7.47583H2.14844Z" fill="#262E30"/>
|
||||
<path d="M7.50977 7.97583C7.50977 7.69969 7.73362 7.47583 8.00977 7.47583H11.8512C12.1274 7.47583 12.3512 7.69969 12.3512 7.97583V11.9703C12.3512 12.2465 12.1274 12.4703 11.8512 12.4703H8.00977C7.73362 12.4703 7.50977 12.2465 7.50977 11.9703V7.97583Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.30977 8.27583V11.6703H11.5512V8.27583H8.30977ZM8.00977 7.47583C7.73362 7.47583 7.50977 7.69969 7.50977 7.97583V11.9703C7.50977 12.2465 7.73362 12.4703 8.00977 12.4703H11.8512C12.1274 12.4703 12.3512 12.2465 12.3512 11.9703V7.97583C12.3512 7.69969 12.1274 7.47583 11.8512 7.47583H8.00977Z" fill="#262E30"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
14
resources/images/param_ironing.svg
Normal file
|
@ -0,0 +1,14 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35830)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9735 2.69442C10.9735 2.63559 10.9285 2.60135 10.887 2.6027C9.29047 2.65474 6.93875 2.95734 5.33511 3.70181C3.80994 4.40984 2.46521 6.04099 1.3782 7.82933C1.36749 7.84696 1.36505 7.86086 1.36512 7.87179C1.3652 7.88406 1.36865 7.89819 1.37674 7.91218C1.3926 7.93962 1.42028 7.95838 1.45978 7.95838H10.8735C10.9287 7.95838 10.9735 7.91361 10.9735 7.85838V2.69442ZM10.861 1.80313C11.3715 1.78649 11.7735 2.20096 11.7735 2.69442V7.85838C11.7735 8.35544 11.3706 8.75838 10.8735 8.75838H1.45978C0.778794 8.75838 0.327478 8.01776 0.694581 7.41381C1.7989 5.597 3.24706 3.78915 4.99825 2.97619C6.74858 2.16362 9.229 1.85632 10.861 1.80313Z" fill="#262E30"/>
|
||||
<path d="M6.95404 4.43367C6.36577 4.70676 5.84916 5.26416 5.41867 5.89149C5.20254 6.20644 5.44161 6.61699 5.82359 6.61699H9.15387C9.43002 6.61699 9.65387 6.39313 9.65387 6.11699V4.4358C9.65387 4.15966 9.42996 3.93521 9.15444 3.95367C8.47343 3.99928 7.59112 4.13791 6.95404 4.43367Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.22794 4.37041C9.21439 4.35718 9.19927 4.35157 9.18113 4.35278C8.51663 4.39729 7.69267 4.53177 7.12243 4.79649C6.63142 5.02443 6.16476 5.51117 5.74845 6.11783C5.73813 6.13287 5.73701 6.14237 5.73689 6.14745C5.73673 6.15416 5.73841 6.16386 5.74478 6.1751C5.75745 6.19745 5.78298 6.217 5.82355 6.217H9.15384C9.20907 6.217 9.25384 6.17223 9.25384 6.117V4.43581C9.25384 4.40714 9.24252 4.38465 9.22794 4.37041ZM9.12767 3.55457C9.65085 3.51953 10.0538 3.94535 10.0538 4.43581V6.117C10.0538 6.61406 9.6509 7.017 9.15384 7.017H5.82355C5.15544 7.017 4.67063 6.27458 5.08882 5.66517C5.5335 5.01718 6.10004 4.38911 6.78558 4.07087C7.48951 3.74408 8.43016 3.60129 9.12767 3.55457Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.606934 10.0575C0.606934 9.83656 0.78602 9.65747 1.00693 9.65747L11.5927 9.65747C11.8136 9.65747 11.9927 9.83656 11.9927 10.0575C11.9927 10.2784 11.8136 10.4575 11.5927 10.4575L1.00693 10.4575C0.78602 10.4575 0.606934 10.2784 0.606934 10.0575Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.0783 3.16325C12.9749 3.15526 12.7921 3.16455 12.5108 3.24055C12.35 3.28399 12.1829 3.43706 12.0332 3.69866C11.8891 3.95055 11.8006 4.23604 11.7657 4.41333C11.7231 4.63009 11.5128 4.77125 11.296 4.72861C11.0793 4.68597 10.9381 4.47568 10.9807 4.25892C11.0291 4.01287 11.1439 3.64215 11.3389 3.30136C11.5283 2.97027 11.8361 2.59415 12.3021 2.46825C12.6475 2.37492 12.9239 2.34893 13.14 2.36563C13.248 2.37398 13.346 2.39341 13.4317 2.42381C13.5108 2.45184 13.6054 2.49835 13.6814 2.57774C13.8342 2.73729 13.8288 2.99049 13.6692 3.14329C13.5256 3.28083 13.3061 3.29013 13.1522 3.17425C13.1385 3.17075 13.1145 3.16605 13.0783 3.16325ZM13.1678 3.17919C13.1678 3.17921 13.1668 3.17886 13.165 3.17803C13.167 3.17875 13.1679 3.17916 13.1678 3.17919Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35830">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
15
resources/images/param_layer_height.svg
Normal file
|
@ -0,0 +1,15 @@
|
|||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35803)">
|
||||
<path d="M12.2166 6.00745H12.1746H2.27486H2.23374L1.06036 7.75164C0.904614 7.98344 1.07086 8.29484 1.34999 8.29484H2.27574H12.1746H13.0846C13.3725 8.29484 13.5431 7.97382 13.3821 7.73502L12.2166 6.00745Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.02058 5.60745H12.4291L13.7135 7.51132C14.0534 8.0155 13.6931 8.69485 13.0844 8.69485H1.34983C0.751081 8.69485 0.393614 8.02651 0.728191 7.52856L2.02058 5.60745ZM2.44657 6.40745L1.44596 7.89485H13.0072L12.0038 6.40745H2.44657Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.69447 2.31844C2.93749 1.95722 3.34349 1.74026 3.7797 1.74026H10.6677C11.1025 1.74026 11.5081 1.95583 11.752 2.31542L11.7527 2.31631L13.7135 5.22301C14.0534 5.7272 13.6931 6.40653 13.0844 6.40653H1.34983C0.751081 6.40653 0.393614 5.73819 0.728191 5.24024L2.69447 2.31844C2.69446 2.31846 2.69449 2.31841 2.69447 2.31844ZM3.7797 2.54026C3.61043 2.54026 3.45296 2.62418 3.35822 2.76502L1.44598 5.60653H13.0072L11.0901 2.7646C11.09 2.76448 11.0901 2.76473 11.0901 2.7646C10.9945 2.62408 10.8365 2.54026 10.6677 2.54026H3.7797Z" fill="#262E30"/>
|
||||
<path d="M1.34915 12.9956H13.0837C13.3716 12.9956 13.5422 12.6746 13.3812 12.4358L12.1737 10.6461H2.2749L1.0604 12.4524C0.903779 12.6842 1.07003 12.9956 1.34915 12.9956Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.06173 10.2461H12.3863L13.7127 12.2121C14.0526 12.7163 13.6923 13.3956 13.0836 13.3956H1.34904C0.750568 13.3956 0.392344 12.7272 0.72857 12.2289C0.728667 12.2288 0.728473 12.2291 0.72857 12.2289L2.06173 10.2461ZM2.48785 11.0461L1.44602 12.5956H13.0064L11.961 11.0461H2.48785Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.06164 7.89456H12.3871L13.7135 9.86052C14.0534 10.3647 13.6931 11.0441 13.0844 11.0441H1.34983C0.75108 11.0441 0.393614 10.3757 0.72819 9.87778L2.06164 7.89456ZM2.48776 8.69456L1.44593 10.2441H13.0072L11.9618 8.69456H2.48776Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35803">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14.1403) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
14
resources/images/param_line_width.svg
Normal file
|
@ -0,0 +1,14 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35809)">
|
||||
<path d="M0.944336 2.84866C0.944336 2.57252 1.16819 2.34866 1.44434 2.34866H12.5559C12.8321 2.34866 13.0559 2.57252 13.0559 2.84866V5.79724C13.0559 6.07339 12.8321 6.29724 12.5559 6.29724H1.44434C1.16819 6.29724 0.944336 6.07339 0.944336 5.79724V2.84866Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.74434 3.14866V5.49724H12.2559V3.14866H1.74434ZM1.44434 2.34866C1.16819 2.34866 0.944336 2.57252 0.944336 2.84866V5.79724C0.944336 6.07339 1.16819 6.29724 1.44434 6.29724H12.5559C12.8321 6.29724 13.0559 6.07339 13.0559 5.79724V2.84866C13.0559 2.57252 12.8321 2.34866 12.5559 2.34866H1.44434Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.34414 7.0517C1.56505 7.0517 1.74414 7.23078 1.74414 7.4517L1.74414 11.2514C1.74414 11.4723 1.56505 11.6514 1.34414 11.6514C1.12323 11.6514 0.94414 11.4723 0.94414 11.2514L0.944141 7.4517C0.944141 7.23078 1.12323 7.0517 1.34414 7.0517Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.391 7.0517C12.6119 7.0517 12.791 7.23078 12.791 7.4517L12.791 11.2514C12.791 11.4723 12.6119 11.6514 12.391 11.6514C12.1701 11.6514 11.991 11.4723 11.991 11.2514L11.991 7.4517C11.991 7.23078 12.1701 7.0517 12.391 7.0517Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.39307 9.26685C1.39307 9.04594 1.57215 8.86685 1.79307 8.86685L12.1382 8.86685C12.3591 8.86685 12.5382 9.04594 12.5382 9.26685C12.5382 9.48776 12.3591 9.66685 12.1382 9.66685L1.79307 9.66685C1.57215 9.66685 1.39307 9.48777 1.39307 9.26685Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35809">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
15
resources/images/param_precision.svg
Normal file
|
@ -0,0 +1,15 @@
|
|||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35820)">
|
||||
<path d="M2.1084 3.09195C2.1084 2.81581 2.33226 2.59195 2.6084 2.59195H11.3915C11.6677 2.59195 11.8915 2.81581 11.8915 3.09195V11.8751C11.8915 12.1512 11.6677 12.3751 11.3915 12.3751H2.6084C2.33226 12.3751 2.1084 12.1512 2.1084 11.8751V3.09195Z" fill="#CECECE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.1084 3.59195V11.3751H10.8915V3.59195H3.1084ZM2.6084 2.59195C2.33226 2.59195 2.1084 2.81581 2.1084 3.09195V11.8751C2.1084 12.1512 2.33226 12.3751 2.6084 12.3751H11.3915C11.6677 12.3751 11.8915 12.1512 11.8915 11.8751V3.09195C11.8915 2.81581 11.6677 2.59195 11.3915 2.59195H2.6084Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.6709 5.48537L6.6709 0.48352L7.6709 0.483521L7.6709 5.48537L6.6709 5.48537Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.6709 14.4835L6.6709 9.48166L7.6709 9.48166L7.6709 14.4835L6.6709 14.4835Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.99815 6.93469L14 6.93469L14 7.93469L8.99815 7.93469L8.99815 6.93469Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.000104992 6.93469L5.00195 6.93469L5.00195 7.93469L0.000104904 7.93469L0.000104992 6.93469Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35820">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14.4835) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
6
resources/images/param_retraction.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.61621 1.22424C2.89235 1.22424 3.11621 1.4481 3.11621 1.72424V12.2759C3.11621 12.552 2.89235 12.7759 2.61621 12.7759C2.34007 12.7759 2.11621 12.552 2.11621 12.2759V1.72424C2.11621 1.4481 2.34007 1.22424 2.61621 1.22424Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3843 1.22412C11.6604 1.22412 11.8843 1.44798 11.8843 1.72412V12.2758C11.8843 12.5519 11.6604 12.7758 11.3843 12.7758C11.1081 12.7758 10.8843 12.5519 10.8843 12.2758V1.72412C10.8843 1.44798 11.1081 1.22412 11.3843 1.22412Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.0167 5.70711C10.1699 5.47732 10.1078 5.16689 9.87797 5.01375L7.72847 3.58121C7.19778 3.22753 6.50148 3.24809 5.99257 3.63245L4.14107 5.03083C3.92071 5.19726 3.87699 5.51081 4.04342 5.73116C4.20985 5.95152 4.5234 5.99523 4.74375 5.82881L6.59526 4.43042C6.76489 4.3023 6.99699 4.29545 7.17389 4.41334L9.32339 5.84588C9.55318 5.99903 9.86361 5.93689 10.0167 5.70711Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.0167 10.6735C10.1699 10.4437 10.1078 10.1333 9.87797 9.98018L7.72847 8.54764C7.19778 8.19396 6.50148 8.21452 5.99257 8.59888L4.14107 9.99726C3.92071 10.1637 3.87699 10.4772 4.04342 10.6976C4.20985 10.9179 4.5234 10.9617 4.74375 10.7952L6.59526 9.39685C6.76489 9.26873 6.99699 9.26188 7.17389 9.37978L9.32339 10.8123C9.55318 10.9655 9.86361 10.9033 10.0167 10.6735Z" fill="#262E30"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
5
resources/images/param_seam.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.04541 2.16873C1.04541 1.89259 1.26927 1.66873 1.54541 1.66873H12.455C12.7312 1.66873 12.955 1.89259 12.955 2.16873V13.0783C12.955 13.3545 12.7312 13.5783 12.455 13.5783H1.54541C1.26927 13.5783 1.04541 13.3545 1.04541 13.0783V2.16873Z" fill="#CECECE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.84541 2.46873V12.7783H12.155V2.46873H1.84541ZM1.54541 1.66873C1.26927 1.66873 1.04541 1.89259 1.04541 2.16873V13.0783C1.04541 13.3545 1.26927 13.5783 1.54541 13.5783H12.455C12.7312 13.5783 12.955 13.3545 12.955 13.0783V2.16873C12.955 1.89259 12.7312 1.66873 12.455 1.66873H1.54541Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.78216 2.08818C9.99733 2.03814 10.2123 2.17201 10.2624 2.38718C10.2958 2.53083 10.3463 2.67383 10.4075 2.84688C10.4354 2.92602 10.4656 3.01144 10.4974 3.10609L9.73907 3.36081C9.71761 3.29693 9.69365 3.22909 9.66891 3.15905C9.60101 2.96678 9.52723 2.75789 9.48316 2.56839C9.43312 2.35322 9.56699 2.13822 9.78216 2.08818ZM10.6107 4.90638C10.5299 5.17775 10.3966 5.45274 10.1991 5.73147C10.0697 5.91419 9.90416 6.06614 9.72314 6.19564L9.25768 5.54499C9.38731 5.45226 9.48155 5.36048 9.54638 5.26898C9.69772 5.05538 9.79017 4.85868 9.84403 4.67793L10.6107 4.90638ZM7.88173 7.0261C7.81072 7.0515 7.73984 7.07687 7.66943 7.10225L7.39816 6.34964C7.47302 6.32266 7.54688 6.29623 7.6197 6.27017C7.89133 6.17296 8.14859 6.0809 8.39032 5.98435L8.68706 6.72728C8.43045 6.82978 8.1552 6.92826 7.88173 7.0261ZM6.69834 7.4817C6.37798 7.62329 6.08278 7.77785 5.82612 7.95605L5.36985 7.29892C5.68223 7.08202 6.0266 6.90393 6.37496 6.74998L6.69834 7.4817ZM5.17052 8.59652C5.08959 8.71678 5.02211 8.84637 4.96996 8.98738C4.90809 9.15469 4.86112 9.31324 4.82669 9.46366L4.04686 9.28516C4.08934 9.09957 4.14638 8.90797 4.21963 8.70989C4.29468 8.50696 4.39178 8.3208 4.50684 8.14984L5.17052 8.59652ZM4.76323 10.4215C4.79977 10.7628 4.8987 11.0684 5.02518 11.355L4.29328 11.678C4.14387 11.3394 4.01548 10.9522 3.96777 10.5067L4.76323 10.4215ZM5.51971 12.3061C5.61475 12.4893 5.70613 12.6852 5.76239 12.8876C5.82156 13.1004 5.69698 13.3209 5.48413 13.3801C5.27129 13.4392 5.05078 13.3147 4.99162 13.1018C4.9578 12.9802 4.89685 12.8427 4.80956 12.6744L5.51971 12.3061Z" fill="#262E30"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
15
resources/images/param_shell.svg
Normal file
|
@ -0,0 +1,15 @@
|
|||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35898)">
|
||||
<path d="M0.944336 2.74185C0.944336 2.46571 1.16819 2.24185 1.44434 2.24185L12.5559 2.24185C12.8321 2.24185 13.0559 2.46571 13.0559 2.74185L13.0559 4.91812C13.0559 5.19426 12.8321 5.41812 12.5559 5.41812L1.44434 5.41812C1.16819 5.41812 0.944336 5.19426 0.944336 4.91812L0.944336 2.74185Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.74434 3.04185L1.74434 4.61812L12.2559 4.61812L12.2559 3.04185L1.74434 3.04185ZM1.44434 2.24185C1.16819 2.24185 0.944336 2.46571 0.944336 2.74185L0.944336 4.91812C0.944336 5.19426 1.16819 5.41812 1.44434 5.41812L12.5559 5.41812C12.8321 5.41812 13.0559 5.19426 13.0559 4.91812L13.0559 2.74185C13.0559 2.46571 12.8321 2.24185 12.5559 2.24185L1.44434 2.24185Z" fill="#262E30"/>
|
||||
<path d="M0.944336 10.9285C0.944336 10.6523 1.16819 10.4285 1.44434 10.4285L12.5559 10.4285C12.8321 10.4285 13.0559 10.6523 13.0559 10.9285L13.0559 13.1047C13.0559 13.3809 12.8321 13.6047 12.5559 13.6047L1.44434 13.6047C1.16819 13.6047 0.944336 13.3809 0.944336 13.1047L0.944336 10.9285Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.74434 11.2285L1.74434 12.8047L12.2559 12.8047L12.2559 11.2285L1.74434 11.2285ZM1.44434 10.4285C1.16819 10.4285 0.944336 10.6523 0.944336 10.9285L0.944336 13.1047C0.944336 13.3809 1.16819 13.6047 1.44434 13.6047L12.5559 13.6047C12.8321 13.6047 13.0559 13.3809 13.0559 13.1047L13.0559 10.9285C13.0559 10.6523 12.8321 10.4285 12.5559 10.4285L1.44434 10.4285Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.34414 3.83344C1.56505 3.83344 1.74414 4.01252 1.74414 4.23344L1.74414 11.6166C1.74414 11.8375 1.56505 12.0166 1.34414 12.0166C1.12323 12.0166 0.94414 11.8375 0.94414 11.6166L0.944141 4.23344C0.944141 4.01252 1.12323 3.83344 1.34414 3.83344Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.661 3.83347C12.8819 3.83347 13.061 4.01255 13.061 4.23347L13.061 11.6166C13.061 11.8375 12.8819 12.0166 12.661 12.0166C12.4401 12.0166 12.261 11.8375 12.261 11.6166L12.261 4.23347C12.261 4.01255 12.4401 3.83347 12.661 3.83347Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35898">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14.9233) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
15
resources/images/param_special.svg
Normal file
|
@ -0,0 +1,15 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35920)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5 1C0.5 0.723858 0.723858 0.5 1 0.5H13.2523C13.5285 0.5 13.7523 0.723858 13.7523 1V5.53977C13.7523 5.81591 13.5285 6.03977 13.2523 6.03977H1C0.723858 6.03977 0.5 5.81591 0.5 5.53977V1ZM1.5 1.5V5.03977H12.7523V1.5H1.5Z" fill="#262E30"/>
|
||||
<path d="M13.2525 7.48828H7.94775V12.7179H13.2525V7.48828Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.44775 7.48828C7.44775 7.21214 7.67161 6.98828 7.94775 6.98828H13.2525C13.5286 6.98828 13.7525 7.21214 13.7525 7.48828V12.7179C13.7525 12.9941 13.5286 13.2179 13.2525 13.2179H7.94775C7.67161 13.2179 7.44775 12.9941 7.44775 12.7179V7.48828ZM8.44775 7.98828V12.2179H12.7525V7.98828H8.44775Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5 7.48828C0.5 7.21214 0.723858 6.98828 1 6.98828H5.67501C5.95115 6.98828 6.17501 7.21214 6.17501 7.48828C6.17501 7.76442 5.95115 7.98828 5.67501 7.98828H1C0.723858 7.98828 0.5 7.76442 0.5 7.48828Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5 9.85938C0.5 9.58323 0.723858 9.35938 1 9.35938H5.67501C5.95115 9.35938 6.17501 9.58323 6.17501 9.85938C6.17501 10.1355 5.95115 10.3594 5.67501 10.3594H1C0.723858 10.3594 0.5 10.1355 0.5 9.85938Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5 12.2285C0.5 11.9524 0.723858 11.7285 1 11.7285H5.67501C5.95115 11.7285 6.17501 11.9524 6.17501 12.2285C6.17501 12.5047 5.95115 12.7285 5.67501 12.7285H1C0.723858 12.7285 0.5 12.5047 0.5 12.2285Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35920">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
13
resources/images/param_speed.svg
Normal file
|
@ -0,0 +1,13 @@
|
|||
<svg width="15" height="14" viewBox="0 0 15 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35877)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.89317 1.10902C4.63845 1.10902 2.0002 3.74662 2.0002 7.00001C2.0002 10.2534 4.63845 12.891 7.89317 12.891C11.1479 12.891 13.7862 10.2534 13.7862 7.00001C13.7862 3.74662 11.1479 1.10902 7.89317 1.10902ZM1.2002 7.00001C1.2002 3.30456 4.19686 0.309021 7.89317 0.309021C11.5895 0.309021 14.5862 3.30456 14.5862 7.00001C14.5862 10.6955 11.5895 13.691 7.89317 13.691C4.19686 13.691 1.2002 10.6955 1.2002 7.00001Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.89314 2.76332C5.55106 2.76332 3.65303 4.66094 3.65303 7.00196C3.65303 7.22287 3.47394 7.40196 3.25303 7.40196C3.03211 7.40196 2.85303 7.22287 2.85303 7.00196C2.85303 4.21887 5.10948 1.96332 7.89314 1.96332C10.6768 1.96332 12.9333 4.21887 12.9333 7.00196C12.9333 7.22287 12.7542 7.40196 12.5333 7.40196C12.3123 7.40196 12.1333 7.22287 12.1333 7.00196C12.1333 4.66094 10.2352 2.76332 7.89314 2.76332Z" fill="#262E30"/>
|
||||
<path d="M7.12503 9.60897C6.95528 9.49963 6.61858 9.04851 6.72796 8.87882L8.29683 6.44185L10.0297 5.05195C10.049 5.03008 10.0831 5.05195 10.0726 5.07819L9.65483 7.22199L8.0597 9.69832C7.95033 9.86889 7.29478 9.71831 7.12503 9.60897Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.252 5.38651L10.2954 5.35169C10.2812 5.36468 10.2667 5.37626 10.252 5.38651ZM9.48516 6.00151L8.59791 6.71314L7.1281 8.99624C7.13659 9.01307 7.14761 9.03292 7.16162 9.05547C7.19475 9.10881 7.2354 9.16246 7.2747 9.20658C7.31305 9.24963 7.33704 9.26896 7.34109 9.27223C7.34163 9.27266 7.34127 9.27234 7.34109 9.27223C7.34012 9.2716 7.34128 9.27235 7.34359 9.27341C7.35214 9.27733 7.38403 9.29196 7.44514 9.3108C7.51383 9.33197 7.59568 9.35118 7.67469 9.3631C7.72123 9.37012 7.76077 9.37369 7.79227 9.37487L9.27693 7.07002L9.48516 6.00151ZM10.4615 5.17412C10.5638 4.78619 10.0802 4.44984 9.76126 4.75454L7.99576 6.17057L6.39175 8.66212C6.27021 8.85087 6.30617 9.05377 6.33457 9.15611C6.3674 9.27437 6.42532 9.38627 6.48205 9.4776C6.58919 9.65008 6.75348 9.84544 6.90844 9.94526C6.99789 10.0029 7.113 10.0456 7.20949 10.0753C7.31488 10.1078 7.43558 10.1361 7.55534 10.1541C7.67152 10.1717 7.80599 10.1826 7.93225 10.1696C8.02657 10.1599 8.26138 10.1244 8.39613 9.91472" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35877">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0.893066 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
14
resources/images/param_speed_first.svg
Normal file
|
@ -0,0 +1,14 @@
|
|||
<svg width="15" height="14" viewBox="0 0 15 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35871)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.89317 1.10902C4.63845 1.10902 2.0002 3.74662 2.0002 7.00001C2.0002 10.2534 4.63845 12.891 7.89317 12.891C11.1479 12.891 13.7862 10.2534 13.7862 7.00001C13.7862 3.74662 11.1479 1.10902 7.89317 1.10902ZM1.2002 7.00001C1.2002 3.30456 4.19686 0.309021 7.89317 0.309021C11.5895 0.309021 14.5862 3.30456 14.5862 7.00001C14.5862 10.6955 11.5895 13.691 7.89317 13.691C4.19686 13.691 1.2002 10.6955 1.2002 7.00001Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.89314 2.76332C5.55106 2.76332 3.65303 4.66094 3.65303 7.00196C3.65303 7.22287 3.47394 7.40196 3.25303 7.40196C3.03211 7.40196 2.85303 7.22287 2.85303 7.00196C2.85303 4.21887 5.10948 1.96332 7.89314 1.96332C10.6768 1.96332 12.9333 4.21887 12.9333 7.00196C12.9333 7.22287 12.7542 7.40196 12.5333 7.40196C12.3123 7.40196 12.1333 7.22287 12.1333 7.00196C12.1333 4.66094 10.2352 2.76332 7.89314 2.76332Z" fill="#262E30"/>
|
||||
<path d="M7.12503 9.60897C6.95528 9.49963 6.61858 9.04851 6.72796 8.87882L8.29683 6.44185L10.0297 5.05195C10.049 5.03008 10.0831 5.05195 10.0726 5.07819L9.65483 7.22199L8.0597 9.69832C7.95033 9.86889 7.29478 9.71831 7.12503 9.60897Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.252 5.38651L10.2954 5.35169C10.2812 5.36468 10.2667 5.37626 10.252 5.38651ZM9.48516 6.00151L8.59791 6.71314L7.1281 8.99624C7.13659 9.01307 7.14761 9.03292 7.16162 9.05547C7.19475 9.10881 7.2354 9.16246 7.2747 9.20658C7.31305 9.24963 7.33704 9.26896 7.34109 9.27223C7.34163 9.27266 7.34127 9.27234 7.34109 9.27223C7.34012 9.2716 7.34128 9.27235 7.34359 9.27341C7.35214 9.27733 7.38403 9.29196 7.44514 9.3108C7.51383 9.33197 7.59568 9.35118 7.67469 9.3631C7.72123 9.37012 7.76077 9.37369 7.79227 9.37487L9.27693 7.07002L9.48516 6.00151ZM10.4615 5.17412C10.5638 4.78619 10.0802 4.44984 9.76126 4.75454L7.99576 6.17057L6.39175 8.66212C6.27021 8.85087 6.30617 9.05377 6.33457 9.15611C6.3674 9.27437 6.42532 9.38627 6.48205 9.4776C6.58919 9.65008 6.75348 9.84544 6.90844 9.94526C6.99789 10.0029 7.113 10.0456 7.20949 10.0753C7.31488 10.1078 7.43558 10.1361 7.55534 10.1541C7.67152 10.1717 7.80599 10.1826 7.93225 10.1696C8.02657 10.1599 8.26138 10.1244 8.39613 9.91472" fill="#262E30"/>
|
||||
<line x1="2.22363" y1="13.5" x2="13.7459" y2="13.5" stroke="#262E30" stroke-linecap="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35871">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0.893066 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
15
resources/images/param_support.svg
Normal file
|
@ -0,0 +1,15 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35864)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.600098 0.600006H13.1925V13.1886H7.56947V6.01065H0.600098V0.600006ZM1.4001 1.40001V5.21065H8.36947V12.3886H12.3925V1.40001H1.4001Z" fill="#262E30"/>
|
||||
<path d="M5.752 5.61133H1.89062V12.8391H5.752V5.61133Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.49072 5.21133H6.15209V13.2391H1.49072V5.21133ZM2.29072 6.01133V12.4391H5.35209V6.01133H2.29072Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.65674 7.54002L3.87089 5.32657L4.43649 5.89234L2.22233 8.10579L1.65674 7.54002Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.69043 10.6263L5.46955 6.84839L6.03514 7.41416L2.25603 11.1921L1.69043 10.6263Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.64111 12.6654L5.53457 9.77289L6.10017 10.3387L3.20671 13.2312L2.64111 12.6654Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35864">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
17
resources/images/param_support_filament.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35927)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.15944 7.15506C1.27903 6.96932 1.52656 6.9157 1.7123 7.03529L3.26526 8.03522C3.66548 8.29291 3.90734 8.73631 3.90734 9.21232V11.3179C3.90734 11.5389 3.72825 11.7179 3.50734 11.7179C3.28643 11.7179 3.10734 11.5389 3.10734 11.3179V9.21232C3.10734 9.00831 3.00368 8.81829 2.83216 8.70784L1.2792 7.70792C1.09346 7.58832 1.03984 7.3408 1.15944 7.15506Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.25221 8.88174C4.37181 8.696 4.61933 8.64238 4.80507 8.76198L6.35803 9.7619C6.75825 10.0196 7.00011 10.463 7.00011 10.939V13.0446C7.00011 13.2655 6.82103 13.4446 6.60011 13.4446C6.3792 13.4446 6.20011 13.2655 6.20011 13.0446V10.939C6.20011 10.735 6.09646 10.545 5.92493 10.4345L4.37198 9.4346C4.18624 9.31501 4.13262 9.06748 4.25221 8.88174Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.2265 5.08779C11.3499 4.90456 11.5985 4.85606 11.7818 4.97946L12.9826 5.78822C13.3689 6.0484 13.6006 6.48366 13.6006 6.94943V8.9617C13.6006 9.45825 13.3376 9.91764 12.9094 10.169L7.16703 13.5401C6.73365 13.7946 6.19717 13.7972 5.76132 13.547L1.10297 10.8732C0.668082 10.6236 0.399902 10.1605 0.399902 9.65902V7.68977C0.399902 7.22168 0.633834 6.78457 1.0233 6.52491L1.68397 6.08445C1.86778 5.9619 2.11613 6.01157 2.23868 6.19538C2.36122 6.37919 2.31155 6.62753 2.12775 6.75008L1.46707 7.19055C1.30016 7.30183 1.1999 7.48916 1.1999 7.68977V9.65902C1.1999 9.87392 1.31484 10.0724 1.50122 10.1794L6.15957 12.8532C6.34636 12.9604 6.57628 12.9593 6.76201 12.8502L12.5043 9.47913C12.6879 9.37139 12.8006 9.17451 12.8006 8.9617V6.94943C12.8006 6.74982 12.7013 6.56327 12.5357 6.45177L11.3349 5.64301C11.1516 5.51961 11.1031 5.27103 11.2265 5.08779Z" fill="#262E30"/>
|
||||
<path d="M2.90218 8.16383C2.68141 8.04207 2.50146 7.73214 2.50146 7.47585V5.24162C2.50146 4.98534 2.67975 4.672 2.89718 4.54513L8.81046 1.09843C9.0279 0.971565 9.38696 0.966456 9.60773 1.08821L11.5497 2.15424C11.7704 2.27515 11.9512 2.58423 11.9512 2.84051V5.09603C11.9512 5.35231 11.7729 5.6665 11.5555 5.79422L5.67221 9.24603C5.45477 9.37375 5.09654 9.37801 4.87577 9.25625L2.90218 8.16383Z" fill="#CECECE"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.21324 1.40006C9.11854 1.40131 9.04659 1.42383 9.01214 1.44393L3.09886 4.89063C3.09884 4.89065 3.09889 4.89061 3.09886 4.89063C3.06632 4.90965 3.01243 4.96018 2.96563 5.04251C2.91902 5.12453 2.90156 5.19915 2.90156 5.24163V7.47585C2.90156 7.5172 2.91873 7.58983 2.96486 7.66912C3.01125 7.74885 3.06419 7.79633 3.09546 7.81357L5.06905 8.90599C5.06909 8.90601 5.069 8.90597 5.06905 8.90599C5.10409 8.92527 5.17631 8.94591 5.27032 8.94473C5.3645 8.94355 5.43569 8.92112 5.46972 8.90113L11.353 5.44932C11.3859 5.42999 11.44 5.37893 11.487 5.29605C11.5338 5.21354 11.5513 5.13858 11.5513 5.09603V2.84052C11.5513 2.79964 11.5342 2.7275 11.4881 2.6486C11.4417 2.56928 11.3887 2.52212 11.3576 2.50508L9.41534 1.43886C9.38078 1.4198 9.30798 1.3988 9.21324 1.40006ZM9.80069 0.737786C9.61455 0.63522 9.39687 0.597554 9.20264 0.600129C9.00831 0.602704 8.79208 0.646156 8.60913 0.752857C8.60918 0.752827 8.60908 0.752886 8.60913 0.752857L2.69585 4.19956C2.51095 4.30744 2.3668 4.47713 2.27013 4.64719C2.17325 4.81763 2.10156 5.02782 2.10156 5.24163V7.47585C2.10156 7.6908 2.17437 7.90127 2.2734 8.07147C2.3721 8.24108 2.51937 8.40932 2.70867 8.51385C2.70852 8.51377 2.70881 8.51393 2.70867 8.51385L4.68216 9.60622C4.86793 9.70867 5.08581 9.7471 5.28035 9.74467C5.47478 9.74223 5.69135 9.6987 5.87472 9.59104C5.87467 9.59107 5.87478 9.591 5.87472 9.59104L11.758 6.13923C11.9425 6.03084 12.0864 5.86085 12.183 5.69063C12.2797 5.52005 12.3513 5.30977 12.3513 5.09603V2.84052C12.3513 2.62511 12.278 2.41456 12.1786 2.24462C12.0794 2.07516 11.9316 1.90737 11.7421 1.8035C11.7421 1.80353 11.742 1.80347 11.7421 1.8035L9.80069 0.737786C9.80058 0.737728 9.80079 0.737843 9.80069 0.737786Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.7859 2.41034C11.9001 2.59942 11.8395 2.84531 11.6504 2.95956L5.90623 6.4301C5.71714 6.54434 5.47125 6.48367 5.35701 6.29459C5.24277 6.1055 5.30344 5.85961 5.49252 5.74537L11.2367 2.27483C11.4258 2.16059 11.6717 2.22126 11.7859 2.41034Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.157 6.47284C13.2712 6.66192 13.2106 6.90781 13.0215 7.02206L7.27732 10.4926C7.08824 10.6068 6.84235 10.5462 6.72811 10.3571C6.61387 10.168 6.67454 9.92211 6.86362 9.80787L12.6078 6.33733C12.7969 6.22309 13.0428 6.28376 13.157 6.47284Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.98561 4.83728C3.10521 4.65154 3.35273 4.59792 3.53847 4.71751L5.09143 5.71744C5.49165 5.97513 5.73351 6.41853 5.73351 6.89454V9.00017C5.73351 9.22108 5.55443 9.40017 5.33351 9.40017C5.1126 9.40017 4.93351 9.22108 4.93351 9.00017V6.89454C4.93351 6.69053 4.82986 6.50051 4.65833 6.39007L3.10538 5.39014C2.91963 5.27055 2.86601 5.02302 2.98561 4.83728Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35927">
|
||||
<rect width="14" height="14" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 5.1 KiB |
14
resources/images/param_temperature.svg
Normal file
|
@ -0,0 +1,14 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8076_36010)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.69269 2.49023C4.69269 1.29516 5.66149 0.326355 6.85657 0.326355C8.05165 0.326355 9.02044 1.29516 9.02044 2.49023V6.92898C9.96736 7.60117 10.5871 8.70725 10.5871 9.95952C10.5871 12.0108 8.92419 13.6737 6.87289 13.6737C4.8216 13.6737 3.15869 12.0108 3.15869 9.95952C3.15869 8.72168 3.76428 7.62665 4.69269 6.95241V2.49023ZM5.69269 7.51465V2.49023C5.69269 1.84744 6.21378 1.32635 6.85657 1.32635C7.49936 1.32635 8.02044 1.84744 8.02044 2.49023V7.49913C8.94588 7.9315 9.58709 8.87063 9.58709 9.95952C9.58709 11.4585 8.3719 12.6737 6.87289 12.6737C5.37388 12.6737 4.15869 11.4585 4.15869 9.95952C4.15869 8.88348 4.78486 7.95369 5.69269 7.51465Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.186 2.49249C10.186 2.21635 10.4099 1.99249 10.686 1.99249H11.8258C12.1019 1.99249 12.3258 2.21635 12.3258 2.49249C12.3258 2.76863 12.1019 2.99249 11.8258 2.99249H10.686C10.4099 2.99249 10.186 2.76863 10.186 2.49249Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.186 4.83203C10.186 4.55589 10.4099 4.33203 10.686 4.33203H11.8258C12.1019 4.33203 12.3258 4.55589 12.3258 4.83203C12.3258 5.10817 12.1019 5.33203 11.8258 5.33203H10.686C10.4099 5.33203 10.186 5.10817 10.186 4.83203Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.87305 2.49249C7.14919 2.49249 7.37305 2.71635 7.37305 2.99249V9.22844C7.37305 9.50458 7.14919 9.72844 6.87305 9.72844C6.5969 9.72844 6.37305 9.50458 6.37305 9.22844L6.37305 2.99249C6.37305 2.71635 6.5969 2.49249 6.87305 2.49249Z" fill="#262E30"/>
|
||||
<path d="M8.24858 9.90249C8.24858 10.6622 7.63274 11.278 6.87307 11.278C6.1134 11.278 5.49756 10.6622 5.49756 9.90249C5.49756 9.14281 6.1134 8.52698 6.87307 8.52698C7.63274 8.52698 8.24858 9.14281 8.24858 9.90249Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8076_36010">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
12
resources/images/param_tower.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35955)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.9082 9.22919V11.6628H12.0915V9.22919H1.9082ZM1.4082 8.22919C1.13206 8.22919 0.908203 8.45305 0.908203 8.72919V12.1628C0.908203 12.4389 1.13206 12.6628 1.4082 12.6628H12.5915C12.8676 12.6628 13.0915 12.4389 13.0915 12.1628V8.72919C13.0915 8.45304 12.8676 8.22919 12.5915 8.22919H1.4082Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.4082 1.33716C1.13206 1.33716 0.908203 1.56102 0.908203 1.83716V5.27077C0.908203 5.54692 1.13206 5.77077 1.4082 5.77077H3.4859V7.24993C3.4859 7.52607 3.70976 7.74993 3.98591 7.74993H10.0127C10.2888 7.74993 10.5127 7.52607 10.5127 7.24993V5.77077H12.5915C12.8676 5.77077 13.0915 5.54691 13.0915 5.27077V1.83716C13.0915 1.56102 12.8676 1.33716 12.5915 1.33716H1.4082Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.4859 4.77077C4.03819 4.77077 4.4859 5.21849 4.4859 5.77077V6.74993H9.51266V5.77077C9.51266 5.21849 9.96037 4.77077 10.5127 4.77077H12.0915V2.33716H1.9082V4.77077H3.4859ZM1.4082 5.77077C1.13206 5.77077 0.908203 5.54692 0.908203 5.27077V1.83716C0.908203 1.56102 1.13206 1.33716 1.4082 1.33716H12.5915C12.8676 1.33716 13.0915 1.56102 13.0915 1.83716V5.27077C13.0915 5.54691 12.8676 5.77077 12.5915 5.77077H10.5127V7.24993C10.5127 7.52607 10.2888 7.74993 10.0127 7.74993H3.98591C3.70976 7.74993 3.4859 7.52607 3.4859 7.24993V5.77077H1.4082Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35955">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
14
resources/images/param_travel_speed.svg
Normal file
|
@ -0,0 +1,14 @@
|
|||
<svg width="15" height="14" viewBox="0 0 15 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35882)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.5931 1.3051H3.19287C3.08242 1.3051 2.99287 1.39464 2.99287 1.5051V9.72923C2.99287 9.83968 3.08241 9.92923 3.19287 9.92923H12.5931C12.7036 9.92923 12.7931 9.83969 12.7931 9.72923V1.5051C12.7931 1.39464 12.7036 1.3051 12.5931 1.3051ZM3.19287 0.505096C2.64059 0.505096 2.19287 0.952813 2.19287 1.5051V9.72923C2.19287 10.2815 2.64059 10.7292 3.19287 10.7292H12.5931C13.1454 10.7292 13.5931 10.2815 13.5931 9.72923V1.5051C13.5931 0.952812 13.1454 0.505096 12.5931 0.505096H3.19287Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.47822 10.5268V11.2956H9.30688V10.5268H6.47822ZM5.97822 9.72684C5.81254 9.72684 5.67822 9.86115 5.67822 10.0268V11.7956C5.67822 11.9613 5.81254 12.0956 5.97822 12.0956H9.80688C9.97257 12.0956 10.1069 11.9613 10.1069 11.7956V10.0268C10.1069 9.86115 9.97257 9.72684 9.80688 9.72684H5.97822Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.29668 13.4949L7.29668 11.5148L8.09668 11.5148L8.09668 13.4949L7.29668 13.4949Z" fill="#262E30"/>
|
||||
<path d="M10.4983 5.61716C10.4983 7.0562 9.33177 8.22278 7.89273 8.22278C6.45369 8.22278 5.28711 7.0562 5.28711 5.61716C5.28711 4.17811 6.45369 3.01154 7.89273 3.01154C9.33177 3.01154 10.4983 4.17811 10.4983 5.61716Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.89273 7.42278C8.88995 7.42278 9.69835 6.61437 9.69835 5.61716C9.69835 4.61994 8.88995 3.81154 7.89273 3.81154C6.89551 3.81154 6.08711 4.61994 6.08711 5.61716C6.08711 6.61437 6.89551 7.42278 7.89273 7.42278ZM7.89273 8.22278C9.33177 8.22278 10.4983 7.0562 10.4983 5.61716C10.4983 4.17811 9.33177 3.01154 7.89273 3.01154C6.45369 3.01154 5.28711 4.17811 5.28711 5.61716C5.28711 7.0562 6.45369 8.22278 7.89273 8.22278Z" fill="#262E30"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35882">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0.893066 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 2 KiB |
7
resources/images/param_volumetric_speed.svg
Normal file
|
@ -0,0 +1,7 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.09492 1.91444V12.0856H11.9055V1.91444H2.09492ZM1.79492 1.11444C1.51878 1.11444 1.29492 1.3383 1.29492 1.61444V12.3856C1.29492 12.6618 1.51878 12.8856 1.79492 12.8856H12.2055C12.4816 12.8856 12.7055 12.6618 12.7055 12.3856V1.61444C12.7055 1.3383 12.4816 1.11444 12.2055 1.11444H1.79492Z" fill="#262E30"/>
|
||||
<path d="M3.38525 3.77087C3.38525 3.49473 3.60911 3.27087 3.88525 3.27087H10.1151C10.3913 3.27087 10.6151 3.49473 10.6151 3.77087V10.2293C10.6151 10.5054 10.3913 10.7293 10.1151 10.7293H3.88525C3.60911 10.7293 3.38525 10.5054 3.38525 10.2293V3.77087Z" fill="#ACACAC"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.18525 4.07087V9.92926H9.81514V4.07087H4.18525ZM3.88525 3.27087C3.60911 3.27087 3.38525 3.49473 3.38525 3.77087V10.2293C3.38525 10.5054 3.60911 10.7293 3.88525 10.7293H10.1151C10.3913 10.7293 10.6151 10.5054 10.6151 10.2293V3.77087C10.6151 3.49473 10.3913 3.27087 10.1151 3.27087H3.88525Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.35354 3.40534C6.54881 3.6006 6.54882 3.91718 6.35357 4.11245L4.29888 6.16732C4.10363 6.36259 3.78705 6.3626 3.59177 6.16735C3.3965 5.9721 3.39649 5.65551 3.59174 5.46024L5.64643 3.40537C5.84168 3.2101 6.15827 3.21009 6.35354 3.40534ZM9.70137 3.93647C9.89663 4.13173 9.89663 4.44832 9.70137 4.64358L4.29892 10.046C4.10366 10.2413 3.78708 10.2413 3.59181 10.046C3.39655 9.85076 3.39655 9.53418 3.59181 9.33892L8.99426 3.93647C9.18952 3.74121 9.5061 3.74121 9.70137 3.93647Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.1626 7.44558C10.3579 7.64084 10.3579 7.95742 10.1626 8.15268L7.78471 10.5307C7.58945 10.7259 7.27287 10.7259 7.0776 10.5307C6.88234 10.3354 6.88233 10.0188 7.07759 9.82358L9.45552 7.44558C9.65078 7.25032 9.96737 7.25032 10.1626 7.44558Z" fill="#262E30"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
12
resources/images/param_wall.svg
Normal file
|
@ -0,0 +1,12 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_8074_35893)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.70485 2.28477C2.64374 2.28477 1.80563 2.60569 1.42173 2.7847C1.41779 2.78654 1.41376 2.78948 1.40957 2.79646C1.40489 2.80426 1.4001 2.81749 1.4001 2.83551V10.7416C1.4001 10.7644 1.4265 10.8564 1.58479 10.9508C1.73743 11.0418 1.89707 11.061 1.98088 11.0386C2.33387 10.9444 2.763 10.8795 3.27411 10.8795C4.07091 10.8795 5.1114 11.1536 6.15247 11.4279C6.24325 11.4519 6.33403 11.4758 6.42465 11.4995C7.59141 11.8052 8.7693 12.0935 9.78577 12.0935C11.2666 12.0935 12.2004 11.8345 12.5993 11.6934V3.40108C12.5993 3.36677 12.5819 3.32541 12.5296 3.29195C12.4755 3.25727 12.4123 3.25113 12.3629 3.26952C11.7714 3.48968 10.9002 3.73541 9.94677 3.73541C9.48611 3.73541 8.95153 3.63483 8.40441 3.49656C7.85344 3.35731 7.26228 3.17243 6.68595 2.99178L6.66263 2.98447C6.08953 2.80483 5.53175 2.63 5.01968 2.49894C4.49643 2.36503 4.04995 2.28477 3.70485 2.28477ZM1.08363 2.05966C1.5314 1.85086 2.48806 1.48477 3.70485 1.48477C4.15317 1.48477 4.67853 1.58585 5.21804 1.72392C5.75098 1.86032 6.32615 2.04062 6.8909 2.21765L6.92522 2.2284C7.50591 2.41041 8.07515 2.58819 8.60043 2.72094C9.12955 2.85467 9.58705 2.93541 9.94677 2.93541C10.7707 2.93541 11.5426 2.72123 12.0838 2.51977C12.6688 2.30202 13.3993 2.70612 13.3993 3.40108V11.9382C13.4107 12.1153 13.3054 12.225 13.2729 12.2553C13.2316 12.2939 13.1919 12.3142 13.1779 12.3211C13.1155 12.3521 11.9934 12.8935 9.78577 12.8935C8.64939 12.8935 7.37233 12.5748 6.22193 12.2734C6.14394 12.253 6.06666 12.2327 5.99011 12.2126C4.90128 11.9265 3.9613 11.6795 3.27411 11.6795C2.83159 11.6795 2.47182 11.7356 2.18708 11.8116C1.83858 11.9045 1.45627 11.8056 1.17505 11.6379C0.899474 11.4736 0.600098 11.1662 0.600098 10.7416V2.83551C0.600098 2.52137 0.768023 2.20683 1.08363 2.05966ZM13.0126 11.5631C13.0083 11.5629 13.0038 11.5629 12.9994 11.5629C12.9926 11.5629 12.9927 11.5628 12.9958 11.5629C12.9968 11.5629 12.998 11.5629 12.9994 11.5629C13.0033 11.5629 13.0085 11.563 13.0126 11.5631Z" fill="#262E30"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.15249 5.57148L3.09839 5.17516C2.87951 5.20503 2.72629 5.40669 2.75616 5.62558C2.78604 5.84446 2.9877 5.99768 3.20658 5.96781M3.15249 5.57148L3.20658 5.96781L3.21044 5.96731L3.22887 5.96508C3.24586 5.9631 3.27203 5.96023 3.3064 5.95698C3.3752 5.95048 3.4765 5.94252 3.60243 5.93718C3.8551 5.92649 4.20256 5.9266 4.58295 5.96902C4.93946 6.00877 5.39433 6.14768 5.77881 6.28705C5.96697 6.35526 6.13093 6.42084 6.24767 6.4693C6.30595 6.49349 6.35223 6.51332 6.38361 6.52695L6.41906 6.54249L6.42769 6.54633L6.4296 6.54719C6.4296 6.54718 6.42961 6.54719 6.4296 6.54719C6.63099 6.63789 6.86814 6.54835 6.9589 6.34698C7.04967 6.14557 6.95997 5.90872 6.75857 5.81795L6.60716 6.15391C6.75857 5.81795 6.75861 5.81797 6.75857 5.81795L6.75716 5.81732L6.75407 5.81594L6.74303 5.81103L6.70238 5.79321C6.66741 5.77801 6.61709 5.75646 6.55438 5.73043C6.42915 5.67844 6.25357 5.60821 6.05145 5.53494C5.65538 5.39137 5.12677 5.2247 4.67161 5.17395C4.24033 5.12585 3.85039 5.12597 3.56859 5.1379C3.42727 5.14388 3.31207 5.15288 3.23116 5.16053C3.19068 5.16435 3.15871 5.16784 3.13626 5.17046L3.10983 5.17366L3.10219 5.17465L3.09981 5.17497L3.09839 5.17516C3.09833 5.17517 3.09839 5.17516 3.15249 5.57148ZM6.4296 6.54719C6.4296 6.54718 6.42961 6.54719 6.4296 6.54719L6.59323 6.18482C6.42987 6.54731 6.42958 6.54717 6.4296 6.54719Z" fill="#6B6B6B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.97573 7.63513C5.0465 7.42585 5.27352 7.31358 5.48279 7.38435L5.35465 7.76327C5.48279 7.38435 5.4828 7.38435 5.48279 7.38435L5.48655 7.38561L5.49887 7.38974L5.5475 7.40587C5.59002 7.41988 5.65193 7.44008 5.72875 7.46458C5.88255 7.51362 6.0953 7.57964 6.3313 7.64762C6.81457 7.78683 7.35722 7.92286 7.69836 7.95268C8.06454 7.9847 8.35754 7.98451 8.55627 7.97669C8.65561 7.97279 8.73127 7.96698 8.78062 7.96236C8.80529 7.96005 8.82336 7.95804 8.83452 7.95672L8.84601 7.95529L8.90291 8.34744C8.84685 7.95519 8.84594 7.9553 8.84601 7.95529C9.0647 7.92403 9.26816 8.07587 9.29942 8.29457C9.33068 8.51326 9.17873 8.71588 8.96004 8.74714L8.90344 8.35116C8.96004 8.74714 8.96012 8.74713 8.96004 8.74714L8.95855 8.74735L8.95637 8.74765L8.94994 8.74851L8.92893 8.75113C8.91134 8.75322 8.88664 8.75594 8.85517 8.75888C8.79225 8.76477 8.70218 8.77158 8.58771 8.77608C8.35882 8.78508 8.03186 8.78489 7.62869 8.74964C7.20048 8.71221 6.58869 8.55429 6.10986 8.41636C5.86481 8.34578 5.6446 8.27744 5.48569 8.22676C5.40616 8.2014 5.34179 8.1804 5.29711 8.16567L5.24539 8.14852L5.23163 8.14391L5.22696 8.14234C5.22692 8.14233 5.22651 8.14219 5.35465 7.76327L5.22696 8.14234C5.01769 8.07157 4.90496 7.8444 4.97573 7.63513Z" fill="#6B6B6B"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_8074_35893">
|
||||
<rect width="14" height="14" fill="white" transform="translate(0 14) rotate(-90)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Bambulab",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "01.02.00.03",
|
||||
"version": "01.02.01.02",
|
||||
"force_update": "0",
|
||||
"description": "the initial version of BBL configurations",
|
||||
"machine_model_list": [
|
||||
|
@ -380,6 +380,14 @@
|
|||
{
|
||||
"name": "PolyTerra PLA @BBL X1",
|
||||
"sub_path": "filament/PolyTerra PLA @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "PolyTerra PLA @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/PolyTerra PLA @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "PolyLite PLA @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/PolyLite PLA @BBL X1C 0.2 nozzle.json"
|
||||
}
|
||||
],
|
||||
"machine_list": [
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"Bambu Lab"
|
||||
],
|
||||
"filament_cost": [
|
||||
"34.99"
|
||||
"39.99"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.94"
|
||||
|
|
|
@ -17,23 +17,11 @@
|
|||
"cool_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"40"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"40"
|
||||
],
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
"69.98"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
"230"
|
||||
],
|
||||
"filament_cost": [
|
||||
"36.99"
|
||||
"41.99"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
|
|
|
@ -41,6 +41,18 @@
|
|||
"nozzle_temperature_range_high": [
|
||||
"270"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp" : [
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp_initial_layer" : [
|
||||
"70"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"70"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
" ; filament start gcode\n{if (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{endif}"
|
||||
]
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"setting_id": "GFSL25",
|
||||
"name": "PolyLite PLA @BBL X1C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "PolyLite PLA @BBL X1C",
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle"
|
||||
]
|
||||
}
|
|
@ -12,6 +12,8 @@
|
|||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle"
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"setting_id": "GFSL24",
|
||||
"name": "PolyTerra PLA @BBL X1C 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "PolyTerra PLA @BBL X1C",
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle"
|
||||
]
|
||||
}
|
|
@ -12,6 +12,8 @@
|
|||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle"
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
"255"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"80"
|
||||
"70"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"220"
|
||||
|
|
|
@ -26,10 +26,10 @@
|
|||
"0"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"45"
|
||||
"55"
|
||||
],
|
||||
"textured_plate_temp" : [
|
||||
"45"
|
||||
"55"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"35"
|
||||
|
@ -38,10 +38,10 @@
|
|||
"0"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"45"
|
||||
"55"
|
||||
],
|
||||
"textured_plate_temp_initial_layer" : [
|
||||
"45"
|
||||
"55"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"220"
|
||||
|
|
|
@ -11,10 +11,10 @@
|
|||
"0"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"45"
|
||||
"55"
|
||||
],
|
||||
"textured_plate_temp" : [
|
||||
"45"
|
||||
"55"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"35"
|
||||
|
@ -23,10 +23,10 @@
|
|||
"0"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"45"
|
||||
"55"
|
||||
],
|
||||
"textured_plate_temp_initial_layer" : [
|
||||
"45"
|
||||
"55"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"100"
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
"240"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"30"
|
||||
"35"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"200"
|
||||
|
|
|
@ -64,8 +64,8 @@
|
|||
"200"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"25",
|
||||
"25"
|
||||
"30",
|
||||
"30"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500",
|
||||
|
|
24
resources/tooltip/releasenote.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<link rel="stylesheet" href="./main.css" />
|
||||
<script src="./main.js"></script>
|
||||
</head>
|
||||
<body style="background-color: #F8F8F8;">
|
||||
<div class="container markdown-body" id="contents"></div>
|
||||
</body>
|
||||
<script>
|
||||
const resizeOberver = new ResizeObserver((entities) => {
|
||||
const height = entities[0].contentRect.height
|
||||
document.title = height.toFixed()
|
||||
})
|
||||
resizeOberver.observe(document.querySelector('#contents'))
|
||||
window.showMarkdownFile = function (file) {
|
||||
$.get(file, function( data ) {
|
||||
window.showMarkdown(encodeURIComponent(data));
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</html>
|
|
@ -370,14 +370,15 @@ body
|
|||
{
|
||||
position: absolute;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
padding: 10px;
|
||||
border: 0px;
|
||||
min-width: 100px;
|
||||
top: 800px;
|
||||
border: 1px solid #C3C3C3;
|
||||
border-radius: 5px;
|
||||
color: #323A3D;
|
||||
background-color: #fff;
|
||||
display: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.CT_Item
|
||||
|
@ -385,15 +386,16 @@ body
|
|||
padding: 2px 10px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-content: center;
|
||||
align-items: center;
|
||||
border: 2px solid #fff;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.CT_Item:hover
|
||||
{
|
||||
cursor: pointer;
|
||||
border: 2px solid #00AE42;
|
||||
background-color: #0078D4;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
|
@ -401,19 +403,33 @@ body
|
|||
{
|
||||
margin-right: 6px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
#CT_Delete_Bar:hover .CT_Delete
|
||||
{
|
||||
background: url("../img/remove2.svg");
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
.CT_Delete
|
||||
{
|
||||
background: url("../img/delete.png");
|
||||
background: url("../img/remove.svg");
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
#CT_Folder_Bar:hover .CT_Explore
|
||||
{
|
||||
background: url("../img/open_folder2.svg");
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
.CT_Explore
|
||||
{
|
||||
background: url("../img/folder.png");
|
||||
background: url("../img/open_folder.svg");
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
}
|
||||
|
@ -426,7 +442,9 @@ body
|
|||
|
||||
.CT_Text
|
||||
{
|
||||
|
||||
line-height: 20px;
|
||||
height: 20px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*--------Mall------*/
|
||||
|
|
4
resources/web/homepage/img/open_folder2.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.34801 3.82127C8.71179 4.19206 9.20969 4.40069 9.7295 4.40069H11.3196C11.4502 4.40069 11.5773 4.41559 11.7 4.44276V3.14981C11.7 2.62475 11.274 2.19873 10.749 2.19873H7.00335C6.92533 2.19873 6.8517 2.211 6.77895 2.22853C6.79385 2.24256 6.80875 2.25483 6.82277 2.26886L8.34801 3.82127Z" stroke="white" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M11.7 4.44284C11.5773 4.41566 11.4502 4.40076 11.3196 4.40076H9.72951C9.2097 4.40076 8.71268 4.19214 8.34803 3.82135L6.82279 2.26893C6.80876 2.25491 6.79298 2.24176 6.77896 2.22861C6.45726 1.92269 6.03036 1.75 5.58419 1.75H2.34787C1.374 1.75 0.583328 2.53979 0.583328 3.51455V10.6402C0.583328 11.615 1.37312 12.4048 2.34787 12.4048H11.3196C12.2944 12.4048 13.0842 11.615 13.0842 10.6402V6.16531C13.0842 5.32117 12.4916 4.61728 11.7 4.44284Z" stroke="white" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
</svg>
|
After Width: | Height: | Size: 976 B |
14
resources/web/homepage/img/remove2.svg
Normal file
|
@ -0,0 +1,14 @@
|
|||
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_7844_34237)">
|
||||
<path d="M11.8245 5.10425V13.1577C11.8245 13.431 11.5708 13.6544 11.2604 13.6544H2.73973C2.42934 13.6544 2.17566 13.431 2.17566 13.1577V5.10425" stroke="white" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M0.965012 3.55176H13.0353" stroke="white" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M4.31033 1.55829C4.31033 1.55829 4.31033 1.38921 4.31033 1.18246C4.31033 0.975717 4.56401 0.806641 4.8744 0.806641H9.1263C9.43668 0.806641 9.69036 0.975717 9.69036 1.18246C9.69036 1.38921 9.69036 1.55829 9.69036 1.55829" stroke="white" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M5.23859 5.29443V12.0461" stroke="white" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
<path d="M8.76242 5.29443V12.0461" stroke="white" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_7844_34237">
|
||||
<rect width="14" height="15" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -139,18 +139,18 @@
|
|||
<div class="FileImg"><img src="img/b.jpg"/></div>
|
||||
<a>abcd12334.3mf</a>
|
||||
<div class="FileDate">2021/12/27 09:22</div>
|
||||
</div> -->
|
||||
</div>-->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div style="height: 14px;"></div>
|
||||
|
||||
<div id="recnet_context_menu">
|
||||
<div class="CT_Item" onClick="OnDeleteRecentFile()">
|
||||
<div id="CT_Delete_Bar" class="CT_Item" onClick="OnDeleteRecentFile()">
|
||||
<div class="CT_Icon CT_Delete"></div>
|
||||
<div class="CT_Text trans" tid="t88">clear</div>
|
||||
</div>
|
||||
<div class="CT_Item " onClick="OnExploreRecentFile()" >
|
||||
<div id="CT_Folder_Bar" class="CT_Item " onClick="OnExploreRecentFile()" >
|
||||
<div class="CT_Icon CT_Explore"></div>
|
||||
<div class="CT_Text trans" tid="t89">open in explorer </div>
|
||||
</div>
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
function OnInit()
|
||||
{
|
||||
//-----Test-----
|
||||
//$("#Login1").hide();
|
||||
//$("#UserName").text("ZZZZZZZZ");
|
||||
//$("#Login2").css("display","flex");
|
||||
//Set_RecentFile_MouseRightBtn_Event();
|
||||
|
||||
|
||||
//-----Official-----
|
||||
TranslatePage();
|
||||
|
||||
SendMsg_GetLoginInfo();
|
||||
|
|
|
@ -95,7 +95,7 @@ static void glfw_callback(int error_code, const char* description)
|
|||
int CLI::run(int argc, char **argv)
|
||||
{
|
||||
// Mark the main thread for the debugger and for runtime checks.
|
||||
set_current_thread_name("bambustudio_main");
|
||||
set_current_thread_name("bambustu_main");
|
||||
|
||||
#ifdef __WXGTK__
|
||||
// On Linux, wxGTK has no support for Wayland, and the app crashes on
|
||||
|
@ -170,6 +170,7 @@ int CLI::run(int argc, char **argv)
|
|||
|
||||
if (start_gui) {
|
||||
BOOST_LOG_TRIVIAL(info) << "no action, start gui directly" << std::endl;
|
||||
::Label::initSysFont();
|
||||
#ifdef SLIC3R_GUI
|
||||
/*#if !defined(_WIN32) && !defined(__APPLE__)
|
||||
// likely some linux / unix system
|
||||
|
@ -1736,7 +1737,7 @@ LONG WINAPI VectoredExceptionHandler(PEXCEPTION_POINTERS pExceptionInfo)
|
|||
|
||||
#if defined(_MSC_VER) || defined(__MINGW32__)
|
||||
extern "C" {
|
||||
__declspec(dllexport) int __stdcall bambustudio_main(int argc, wchar_t **argv)
|
||||
__declspec(dllexport) int __stdcall bambustu_main(int argc, wchar_t **argv)
|
||||
{
|
||||
// Convert wchar_t arguments to UTF8.
|
||||
std::vector<std::string> argv_narrow;
|
||||
|
|
|
@ -204,7 +204,7 @@ bool OpenGLVersionCheck::message_pump_exit = false;
|
|||
|
||||
extern "C" {
|
||||
typedef int (__stdcall *Slic3rMainFunc)(int argc, wchar_t **argv);
|
||||
Slic3rMainFunc bambustudio_main = nullptr;
|
||||
Slic3rMainFunc bambustu_main = nullptr;
|
||||
}
|
||||
|
||||
extern "C" {
|
||||
|
@ -295,19 +295,19 @@ int wmain(int argc, wchar_t **argv)
|
|||
}
|
||||
|
||||
// resolve function address here
|
||||
bambustudio_main = (Slic3rMainFunc)GetProcAddress(hInstance_Slic3r,
|
||||
bambustu_main = (Slic3rMainFunc)GetProcAddress(hInstance_Slic3r,
|
||||
#ifdef _WIN64
|
||||
// there is just a single calling conversion, therefore no mangling of the function name.
|
||||
"bambustudio_main"
|
||||
"bambustu_main"
|
||||
#else // stdcall calling convention declaration
|
||||
"_bambustudio_main@8"
|
||||
"_bambustu_main@8"
|
||||
#endif
|
||||
);
|
||||
if (bambustudio_main == nullptr) {
|
||||
printf("could not locate the function bambustudio_main in BambuStudio.dll\n");
|
||||
if (bambustu_main == nullptr) {
|
||||
printf("could not locate the function bambustu_main in BambuStudio.dll\n");
|
||||
return -1;
|
||||
}
|
||||
// argc minus the trailing nullptr of the argv
|
||||
return bambustudio_main((int)argv_extended.size() - 1, argv_extended.data());
|
||||
return bambustu_main((int)argv_extended.size() - 1, argv_extended.data());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -118,6 +118,8 @@ endif (MINGW)
|
|||
if (NOT WIN32 AND NOT APPLE)
|
||||
# Binary name on unix like systems (Linux, Unix)
|
||||
set_target_properties(BambuStudio PROPERTIES OUTPUT_NAME "bambu-studio")
|
||||
set(SLIC3R_APP_CMD "bambu-studio")
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/platform/unix/BuildLinuxImage.sh.in ${CMAKE_CURRENT_BINARY_DIR}/BuildLinuxImage.sh @ONLY)
|
||||
endif ()
|
||||
|
||||
target_link_libraries(BambuStudio libslic3r cereal)
|
||||
|
|
|
@ -2919,13 +2919,14 @@ const ImWchar* ImFontAtlas::GetGlyphRangesChineseSimplifiedCommon()
|
|||
0x2000, 0x206F, // General Punctuation
|
||||
0x3000, 0x30FF, // CJK Symbols and Punctuations, Hiragana, Katakana
|
||||
0x31F0, 0x31FF, // Katakana Phonetic Extensions
|
||||
0x4e00, 0x9FAF, // CJK Ideograms
|
||||
0xFF00, 0xFFEF // Half-width characters
|
||||
};
|
||||
static ImWchar full_ranges[IM_ARRAYSIZE(base_ranges) + IM_ARRAYSIZE(accumulative_offsets_from_0x4E00) * 2 + 1] = { 0 };
|
||||
if (!full_ranges[0])
|
||||
{
|
||||
memcpy(full_ranges, base_ranges, sizeof(base_ranges));
|
||||
UnpackAccumulativeOffsetsIntoRanges(0x4E00, accumulative_offsets_from_0x4E00, IM_ARRAYSIZE(accumulative_offsets_from_0x4E00), full_ranges + IM_ARRAYSIZE(base_ranges));
|
||||
//UnpackAccumulativeOffsetsIntoRanges(0x4E00, accumulative_offsets_from_0x4E00, IM_ARRAYSIZE(accumulative_offsets_from_0x4E00), full_ranges + IM_ARRAYSIZE(base_ranges));
|
||||
}
|
||||
return &full_ranges[0];
|
||||
}
|
||||
|
|
|
@ -285,6 +285,10 @@ void AppConfig::set_defaults()
|
|||
set("backup_interval", "10");
|
||||
}
|
||||
|
||||
if (get("curr_bed_type").empty()) {
|
||||
set("curr_bed_type", "0");
|
||||
}
|
||||
|
||||
// #if BBL_RELEASE_TO_PUBLIC
|
||||
if (get("iot_environment").empty()) {
|
||||
set("iot_environment", "3");
|
||||
|
@ -295,6 +299,10 @@ void AppConfig::set_defaults()
|
|||
// }
|
||||
// #endif
|
||||
|
||||
if (get("uniform_scale").empty()) {
|
||||
set("uniform_scale", "1");
|
||||
}
|
||||
|
||||
// Remove legacy window positions/sizes
|
||||
erase("app", "main_frame_maximized");
|
||||
erase("app", "main_frame_pos");
|
||||
|
@ -525,7 +533,7 @@ void AppConfig::save()
|
|||
{
|
||||
// Returns "undefined" if the thread naming functionality is not supported by the operating system.
|
||||
std::optional<std::string> current_thread_name = get_current_thread_name();
|
||||
if (current_thread_name && *current_thread_name != "bambustudio_main")
|
||||
if (current_thread_name && *current_thread_name != "bambustu_main")
|
||||
throw CriticalException("Calling AppConfig::save() from a worker thread!");
|
||||
}
|
||||
|
||||
|
@ -777,7 +785,7 @@ void AppConfig::save()
|
|||
{
|
||||
// Returns "undefined" if the thread naming functionality is not supported by the operating system.
|
||||
std::optional<std::string> current_thread_name = get_current_thread_name();
|
||||
if (current_thread_name && *current_thread_name != "bambustudio_main")
|
||||
if (current_thread_name && *current_thread_name != "bambustu_main")
|
||||
throw CriticalException("Calling AppConfig::save() from a worker thread!");
|
||||
}
|
||||
|
||||
|
|
|
@ -337,7 +337,7 @@ static ExPolygons top_level_outer_brim_area(const Print& print, const ConstPrint
|
|||
|
||||
no_brim_area_object.emplace_back(ex_poly.contour);
|
||||
}
|
||||
brimToWrite.at(object->id()).obj == false;
|
||||
brimToWrite.at(object->id()).obj = false;
|
||||
for (const PrintInstance& instance : object->instances()) {
|
||||
if (!brim_area_object.empty())
|
||||
append_and_translate(brim_area, brim_area_object, instance, print, brimAreaMap);
|
||||
|
@ -375,7 +375,7 @@ static ExPolygons top_level_outer_brim_area(const Print& print, const ConstPrint
|
|||
no_brim_area_support.emplace_back(ex_poly.contour);
|
||||
}
|
||||
}
|
||||
brimToWrite.at(object->id()).sup == false;
|
||||
brimToWrite.at(object->id()).sup = false;
|
||||
for (const PrintInstance& instance : object->instances()) {
|
||||
if (!brim_area_support.empty())
|
||||
append_and_translate(brim_area, brim_area_support, instance, print, supportBrimAreaMap);
|
||||
|
@ -521,7 +521,7 @@ static ExPolygons inner_brim_area(const Print& print, const ConstPrintObjectPtrs
|
|||
append(holes_object, ex_poly.holes);
|
||||
}
|
||||
append(no_brim_area_object, offset_ex(object->layers().front()->lslices, brim_offset));
|
||||
brimToWrite.at(object->id()).obj == false;
|
||||
brimToWrite.at(object->id()).obj = false;
|
||||
for (const PrintInstance& instance : object->instances()) {
|
||||
if (!brim_area_object.empty())
|
||||
append_and_translate(brim_area, brim_area_object, instance, print, innerBrimAreaMap);
|
||||
|
@ -564,7 +564,7 @@ static ExPolygons inner_brim_area(const Print& print, const ConstPrintObjectPtrs
|
|||
}
|
||||
}
|
||||
}
|
||||
brimToWrite.at(object->id()).sup == false;
|
||||
brimToWrite.at(object->id()).sup = false;
|
||||
for (const PrintInstance& instance : object->instances()) {
|
||||
if (!brim_area_support.empty())
|
||||
append_and_translate(brim_area, brim_area_support, instance, print, innerSupportBrimAreaMap);
|
||||
|
@ -1386,7 +1386,7 @@ static void make_inner_island_brim(const Print& print, const ConstPrintObjectPtr
|
|||
for (const PrintInstance& instance : object->instances())
|
||||
append_and_translate(islands_area_ex, islands_area_ex_object, instance);
|
||||
}
|
||||
brimToWrite.at(object->id()).obj == false;
|
||||
brimToWrite.at(object->id()).obj = false;
|
||||
}
|
||||
else {
|
||||
for (auto it = hole_island_pair.begin(); it != hole_island_pair.end(); it++) {
|
||||
|
@ -1406,7 +1406,7 @@ static void make_inner_island_brim(const Print& print, const ConstPrintObjectPtr
|
|||
for (const PrintInstance& instance : object->instances())
|
||||
append_and_translate(islands_area_ex, islands_area_ex_object, instance, print, innerbrimAreaMap);
|
||||
}
|
||||
brimToWrite.at(object->id()).obj == false;
|
||||
brimToWrite.at(object->id()).obj = false;
|
||||
}
|
||||
if (innerbrimAreaMap.find(object->id()) != innerbrimAreaMap.end())
|
||||
expolygons_append(islands_area_ex, innerbrimAreaMap[object->id()]);
|
||||
|
@ -1422,7 +1422,7 @@ static void make_inner_island_brim(const Print& print, const ConstPrintObjectPtr
|
|||
for (const PrintInstance& instance : object->instances())
|
||||
append_and_translate(islands_area_ex, islands_area_ex_support, instance);
|
||||
}
|
||||
brimToWrite.at(object->id()).sup == false;
|
||||
brimToWrite.at(object->id()).sup = false;
|
||||
}
|
||||
else {
|
||||
for (auto it = hole_island_pair_supports.begin(); it != hole_island_pair_supports.end(); it++) {
|
||||
|
@ -1443,7 +1443,7 @@ static void make_inner_island_brim(const Print& print, const ConstPrintObjectPtr
|
|||
append_and_translate(islands_area_ex, islands_area_ex_support, instance, print, innerSupportBrimAreaMap);
|
||||
|
||||
}
|
||||
brimToWrite.at(object->id()).sup == false;
|
||||
brimToWrite.at(object->id()).sup = false;
|
||||
}
|
||||
if (innerSupportBrimAreaMap.find(object->id()) != innerSupportBrimAreaMap.end())
|
||||
expolygons_append(islands_area_ex, innerSupportBrimAreaMap[object->id()]);
|
||||
|
|
|
@ -67,8 +67,6 @@ set(lisbslic3r_sources
|
|||
Fill/FillBase.hpp
|
||||
Fill/FillConcentric.cpp
|
||||
Fill/FillConcentric.hpp
|
||||
Fill/FillConcentricWGapFill.cpp
|
||||
Fill/FillConcentricWGapFill.hpp
|
||||
Fill/FillConcentricInternal.cpp
|
||||
Fill/FillConcentricInternal.hpp
|
||||
Fill/FillHoneycomb.cpp
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
#include "FillBase.hpp"
|
||||
#include "FillRectilinear.hpp"
|
||||
#include "FillConcentricInternal.hpp"
|
||||
#include "FillConcentric.hpp"
|
||||
|
||||
#define NARROW_INFILL_AREA_THRESHOLD 3
|
||||
|
||||
|
@ -407,6 +408,11 @@ void Layer::make_fills(FillAdaptive::Octree* adaptive_fill_octree, FillAdaptive:
|
|||
assert(fill_concentric != nullptr);
|
||||
fill_concentric->print_config = &this->object()->print()->config();
|
||||
fill_concentric->print_object_config = &this->object()->config();
|
||||
} else if (surface_fill.params.pattern == ipConcentric) {
|
||||
FillConcentric *fill_concentric = dynamic_cast<FillConcentric *>(f.get());
|
||||
assert(fill_concentric != nullptr);
|
||||
fill_concentric->print_config = &this->object()->print()->config();
|
||||
fill_concentric->print_object_config = &this->object()->config();
|
||||
}
|
||||
|
||||
// calculate flow spacing for infill pattern generation
|
||||
|
@ -434,6 +440,7 @@ void Layer::make_fills(FillAdaptive::Octree* adaptive_fill_octree, FillAdaptive:
|
|||
params.anchor_length = surface_fill.params.anchor_length;
|
||||
params.anchor_length_max = surface_fill.params.anchor_length_max;
|
||||
params.resolution = resolution;
|
||||
params.use_arachne = surface_fill.params.pattern == ipConcentric;
|
||||
|
||||
// BBS
|
||||
params.flow = surface_fill.params.flow;
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include "../PrintConfig.hpp"
|
||||
#include "../Surface.hpp"
|
||||
#include "../libslic3r.h"
|
||||
#include "../VariableWidth.hpp"
|
||||
|
||||
#include "FillBase.hpp"
|
||||
#include "FillConcentric.hpp"
|
||||
|
@ -21,7 +22,6 @@
|
|||
#include "FillAdaptive.hpp"
|
||||
#include "FillLightning.hpp"
|
||||
// BBS: new infill pattern header
|
||||
#include "FillConcentricWGapFill.hpp"
|
||||
#include "FillConcentricInternal.hpp"
|
||||
|
||||
// #define INFILL_DEBUG_OUTPUT
|
||||
|
@ -58,7 +58,6 @@ Fill* Fill::new_from_type(const InfillPattern type)
|
|||
case ipLightning: return new FillLightning::Filler();
|
||||
#endif // HAS_LIGHTNING_INFILL
|
||||
// BBS: for internal solid infill only
|
||||
case ipConcentricGapFill: return new FillConcentricWGapFill();
|
||||
case ipConcentricInternal: return new FillConcentricInternal();
|
||||
// BBS: for bottom and top surface only
|
||||
case ipMonotonicLine: return new FillMonotonicLineWGapFill();
|
||||
|
@ -107,16 +106,31 @@ Polylines Fill::fill_surface(const Surface *surface, const FillParams ¶ms)
|
|||
return polylines_out;
|
||||
}
|
||||
|
||||
ThickPolylines Fill::fill_surface_arachne(const Surface* surface, const FillParams& params)
|
||||
{
|
||||
// Perform offset.
|
||||
Slic3r::ExPolygons expp = offset_ex(surface->expolygon, float(scale_(this->overlap - 0.5 * this->spacing)));
|
||||
// Create the infills for each of the regions.
|
||||
ThickPolylines thick_polylines_out;
|
||||
for (ExPolygon& expoly : expp)
|
||||
_fill_surface_single(params, surface->thickness_layers, _infill_direction(surface), std::move(expoly), thick_polylines_out);
|
||||
return thick_polylines_out;
|
||||
}
|
||||
|
||||
// BBS: this method is used to fill the ExtrusionEntityCollection. It call fill_surface by default
|
||||
void Fill::fill_surface_extrusion(const Surface* surface, const FillParams& params, ExtrusionEntitiesPtr& out)
|
||||
{
|
||||
Polylines polylines;
|
||||
ThickPolylines thick_polylines;
|
||||
try {
|
||||
polylines = this->fill_surface(surface, params);
|
||||
if (params.use_arachne)
|
||||
thick_polylines = this->fill_surface_arachne(surface, params);
|
||||
else
|
||||
polylines = this->fill_surface(surface, params);
|
||||
}
|
||||
catch (InfillFailedException&) {}
|
||||
|
||||
if (!polylines.empty()) {
|
||||
if (!polylines.empty() || !thick_polylines.empty()) {
|
||||
// calculate actual flow from spacing (which might have been adjusted by the infill
|
||||
// pattern generator)
|
||||
double flow_mm3_per_mm = params.flow.mm3_per_mm();
|
||||
|
@ -136,10 +150,17 @@ void Fill::fill_surface_extrusion(const Surface* surface, const FillParams& para
|
|||
out.push_back(eec = new ExtrusionEntityCollection());
|
||||
// Only concentric fills are not sorted.
|
||||
eec->no_sort = this->no_sort();
|
||||
extrusion_entities_append_paths(
|
||||
eec->entities, std::move(polylines),
|
||||
params.extrusion_role,
|
||||
flow_mm3_per_mm, float(flow_width), params.flow.height());
|
||||
if (params.use_arachne) {
|
||||
Flow new_flow = params.flow.with_spacing(float(this->spacing));
|
||||
variable_width(thick_polylines, params.extrusion_role, new_flow, eec->entities);
|
||||
thick_polylines.clear();
|
||||
}
|
||||
else {
|
||||
extrusion_entities_append_paths(
|
||||
eec->entities, std::move(polylines),
|
||||
params.extrusion_role,
|
||||
flow_mm3_per_mm, float(flow_width), params.flow.height());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -63,6 +63,9 @@ struct FillParams
|
|||
// in this case we don't try to make more continuous paths
|
||||
bool complete { false };
|
||||
|
||||
// For Concentric infill, to switch between Classic and Arachne.
|
||||
bool use_arachne{ false };
|
||||
|
||||
// BBS
|
||||
Flow flow;
|
||||
ExtrusionRole extrusion_role{ ExtrusionRole(0) };
|
||||
|
@ -121,6 +124,7 @@ public:
|
|||
|
||||
// Perform the fill.
|
||||
virtual Polylines fill_surface(const Surface *surface, const FillParams ¶ms);
|
||||
virtual ThickPolylines fill_surface_arachne(const Surface* surface, const FillParams& params);
|
||||
|
||||
// BBS: this method is used to fill the ExtrusionEntityCollection.
|
||||
// It call fill_surface by default
|
||||
|
@ -149,6 +153,13 @@ protected:
|
|||
ExPolygon /* expolygon */,
|
||||
Polylines & /* polylines_out */) {};
|
||||
|
||||
// Used for concentric infill to generate ThickPolylines using Arachne.
|
||||
virtual void _fill_surface_single(const FillParams& params,
|
||||
unsigned int thickness_layers,
|
||||
const std::pair<float, Point>& direction,
|
||||
ExPolygon expolygon,
|
||||
ThickPolylines& thick_polylines_out) {}
|
||||
|
||||
virtual float _layer_angle(size_t idx) const { return (idx & 1) ? float(M_PI/2.) : 0; }
|
||||
|
||||
virtual std::pair<float, Point> _infill_direction(const Surface *surface) const;
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#include "../ClipperUtils.hpp"
|
||||
#include "../ExPolygon.hpp"
|
||||
#include "../Surface.hpp"
|
||||
#include "../VariableWidth.hpp"
|
||||
#include "Arachne/WallToolPaths.hpp"
|
||||
|
||||
#include "FillConcentric.hpp"
|
||||
|
||||
|
@ -61,4 +63,84 @@ void FillConcentric::_fill_surface_single(
|
|||
// We want the loops to be split inside the G-code generator to get optimum path planning.
|
||||
}
|
||||
|
||||
void FillConcentric::_fill_surface_single(const FillParams& params,
|
||||
unsigned int thickness_layers,
|
||||
const std::pair<float, Point>& direction,
|
||||
ExPolygon expolygon,
|
||||
ThickPolylines& thick_polylines_out)
|
||||
{
|
||||
assert(params.use_arachne);
|
||||
assert(this->print_config != nullptr && this->print_object_config != nullptr);
|
||||
|
||||
// no rotation is supported for this infill pattern
|
||||
Point bbox_size = expolygon.contour.bounding_box().size();
|
||||
coord_t min_spacing = scaled<coord_t>(this->spacing);
|
||||
|
||||
if (params.density > 0.9999f && !params.dont_adjust) {
|
||||
coord_t loops_count = std::max(bbox_size.x(), bbox_size.y()) / min_spacing + 1;
|
||||
Polygons polygons = offset(expolygon, float(min_spacing) / 2.f);
|
||||
|
||||
double min_nozzle_diameter = *std::min_element(print_config->nozzle_diameter.values.begin(), print_config->nozzle_diameter.values.end());
|
||||
Arachne::WallToolPathsParams input_params;
|
||||
input_params.min_bead_width = 0.85 * min_nozzle_diameter;
|
||||
input_params.min_feature_size = 0.1;
|
||||
input_params.wall_transition_length = 1.0 * min_nozzle_diameter;
|
||||
input_params.wall_transition_angle = 10;
|
||||
input_params.wall_transition_filter_deviation = 0.25 * min_nozzle_diameter;
|
||||
input_params.wall_distribution_count = 1;
|
||||
input_params.wall_add_middle_threshold = 0.75;
|
||||
input_params.wall_split_middle_threshold = 0.5;
|
||||
|
||||
Arachne::WallToolPaths wallToolPaths(polygons, min_spacing, min_spacing, loops_count, 0, input_params);
|
||||
|
||||
std::vector<Arachne::VariableWidthLines> loops = wallToolPaths.getToolPaths();
|
||||
std::vector<const Arachne::ExtrusionLine*> all_extrusions;
|
||||
for (Arachne::VariableWidthLines& loop : loops) {
|
||||
if (loop.empty())
|
||||
continue;
|
||||
for (const Arachne::ExtrusionLine& wall : loop)
|
||||
all_extrusions.emplace_back(&wall);
|
||||
}
|
||||
|
||||
// Split paths using a nearest neighbor search.
|
||||
size_t firts_poly_idx = thick_polylines_out.size();
|
||||
Point last_pos(0, 0);
|
||||
for (const Arachne::ExtrusionLine* extrusion : all_extrusions) {
|
||||
if (extrusion->empty())
|
||||
continue;
|
||||
|
||||
ThickPolyline thick_polyline = Arachne::to_thick_polyline(*extrusion);
|
||||
if (extrusion->is_closed && thick_polyline.points.front() == thick_polyline.points.back() && thick_polyline.width.front() == thick_polyline.width.back()) {
|
||||
thick_polyline.points.pop_back();
|
||||
assert(thick_polyline.points.size() * 2 == thick_polyline.width.size());
|
||||
int nearest_idx = last_pos.nearest_point_index(thick_polyline.points);
|
||||
std::rotate(thick_polyline.points.begin(), thick_polyline.points.begin() + nearest_idx, thick_polyline.points.end());
|
||||
std::rotate(thick_polyline.width.begin(), thick_polyline.width.begin() + 2 * nearest_idx, thick_polyline.width.end());
|
||||
thick_polyline.points.emplace_back(thick_polyline.points.front());
|
||||
}
|
||||
thick_polylines_out.emplace_back(std::move(thick_polyline));
|
||||
last_pos = thick_polylines_out.back().last_point();
|
||||
}
|
||||
|
||||
// clip the paths to prevent the extruder from getting exactly on the first point of the loop
|
||||
// Keep valid paths only.
|
||||
size_t j = firts_poly_idx;
|
||||
for (size_t i = firts_poly_idx; i < thick_polylines_out.size(); ++i) {
|
||||
thick_polylines_out[i].clip_end(this->loop_clipping);
|
||||
if (thick_polylines_out[i].is_valid()) {
|
||||
if (j < i)
|
||||
thick_polylines_out[j] = std::move(thick_polylines_out[i]);
|
||||
++j;
|
||||
}
|
||||
}
|
||||
if (j < thick_polylines_out.size())
|
||||
thick_polylines_out.erase(thick_polylines_out.begin() + int(j), thick_polylines_out.end());
|
||||
}
|
||||
else {
|
||||
Polylines polylines;
|
||||
this->_fill_surface_single(params, thickness_layers, direction, expolygon, polylines);
|
||||
append(thick_polylines_out, to_thick_polylines(std::move(polylines), min_spacing));
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace Slic3r
|
||||
|
|
|
@ -19,7 +19,18 @@ protected:
|
|||
ExPolygon expolygon,
|
||||
Polylines &polylines_out) override;
|
||||
|
||||
void _fill_surface_single(const FillParams& params,
|
||||
unsigned int thickness_layers,
|
||||
const std::pair<float, Point>& direction,
|
||||
ExPolygon expolygon,
|
||||
ThickPolylines& thick_polylines_out) override;
|
||||
|
||||
bool no_sort() const override { return true; }
|
||||
|
||||
const PrintConfig* print_config = nullptr;
|
||||
const PrintObjectConfig* print_object_config = nullptr;
|
||||
|
||||
friend class Layer;
|
||||
};
|
||||
|
||||
} // namespace Slic3r
|
||||
|
|
|
@ -1,135 +0,0 @@
|
|||
#include "../ClipperUtils.hpp"
|
||||
#include "../ExPolygon.hpp"
|
||||
#include "../Surface.hpp"
|
||||
#include "../VariableWidth.hpp"
|
||||
#include "../ShortestPath.hpp"
|
||||
|
||||
#include "FillConcentricWGapFill.hpp"
|
||||
|
||||
namespace Slic3r {
|
||||
|
||||
const float concentric_overlap_threshold = 0.02;
|
||||
|
||||
void FillConcentricWGapFill::fill_surface_extrusion(const Surface* surface, const FillParams& params, ExtrusionEntitiesPtr& out)
|
||||
{
|
||||
//BBS: FillConcentricWGapFill.cpp is absolutely newly add by BBL for narrow internal solid infill area to reduce vibration
|
||||
// Because the area is narrow, we should not use the surface->expolygon which has overlap with perimeter, but
|
||||
// use no_overlap_expolygons instead to avoid overflow in narrow area.
|
||||
//Slic3r::ExPolygons expp = offset_ex(surface->expolygon, double(scale_(0 - 0.5 * this->spacing)));
|
||||
float min_spacing = this->spacing * (1 - concentric_overlap_threshold);
|
||||
Slic3r::ExPolygons expp = offset2_ex(this->no_overlap_expolygons, -double(scale_(0.5 * this->spacing + 0.5 * min_spacing) - 1),
|
||||
+double(scale_(0.5 * min_spacing) - 1));
|
||||
// Create the infills for each of the regions.
|
||||
Polylines polylines_out;
|
||||
for (size_t i = 0; i < expp.size(); ++i) {
|
||||
ExPolygon expolygon = expp[i];
|
||||
|
||||
coord_t distance = scale_(this->spacing / params.density);
|
||||
if (params.density > 0.9999f && !params.dont_adjust) {
|
||||
distance = scale_(this->spacing);
|
||||
}
|
||||
|
||||
ExPolygons gaps;
|
||||
Polygons loops = (Polygons)expolygon;
|
||||
ExPolygons last = { expolygon };
|
||||
bool first = true;
|
||||
while (!last.empty()) {
|
||||
ExPolygons next_onion = offset2_ex(last, -double(distance + scale_(this->spacing) / 2), +double(scale_(this->spacing) / 2));
|
||||
for (auto it = next_onion.begin(); it != next_onion.end(); it++) {
|
||||
Polygons temp_loops = (Polygons)(*it);
|
||||
loops.insert(loops.end(), temp_loops.begin(), temp_loops.end());
|
||||
}
|
||||
append(gaps, diff_ex(
|
||||
offset(last, -0.5f * distance),
|
||||
offset(next_onion, 0.5f * distance + 10))); // 10 is safty offset
|
||||
last = next_onion;
|
||||
if (first && !this->no_overlap_expolygons.empty()) {
|
||||
gaps = intersection_ex(gaps, this->no_overlap_expolygons);
|
||||
}
|
||||
first = false;
|
||||
}
|
||||
|
||||
ExtrusionRole good_role = params.extrusion_role;
|
||||
ExtrusionEntityCollection *coll_nosort = new ExtrusionEntityCollection();
|
||||
coll_nosort->no_sort = this->no_sort(); //can be sorted inside the pass
|
||||
extrusion_entities_append_loops(
|
||||
coll_nosort->entities, std::move(loops),
|
||||
good_role,
|
||||
params.flow.mm3_per_mm(),
|
||||
params.flow.width(),
|
||||
params.flow.height());
|
||||
|
||||
//BBS: add internal gapfills between infill loops
|
||||
if (!gaps.empty() && params.density >= 1) {
|
||||
double min = 0.2 * distance * (1 - INSET_OVERLAP_TOLERANCE);
|
||||
double max = 2. * distance;
|
||||
ExPolygons gaps_ex = diff_ex(
|
||||
offset2_ex(gaps, -float(min / 2), float(min / 2)),
|
||||
offset2_ex(gaps, -float(max / 2), float(max / 2)),
|
||||
ApplySafetyOffset::Yes);
|
||||
//BBS: sort the gap_ex to avoid mess travel
|
||||
Points ordering_points;
|
||||
ordering_points.reserve(gaps_ex.size());
|
||||
ExPolygons gaps_ex_sorted;
|
||||
gaps_ex_sorted.reserve(gaps_ex.size());
|
||||
for (const ExPolygon &ex : gaps_ex)
|
||||
ordering_points.push_back(ex.contour.first_point());
|
||||
std::vector<Points::size_type> order = chain_points(ordering_points);
|
||||
for (size_t i : order)
|
||||
gaps_ex_sorted.emplace_back(std::move(gaps_ex[i]));
|
||||
|
||||
ThickPolylines polylines;
|
||||
for (ExPolygon& ex : gaps_ex_sorted) {
|
||||
//BBS: Use DP simplify to avoid duplicated points and accelerate medial-axis calculation as well.
|
||||
ex.douglas_peucker(SCALED_RESOLUTION * 0.1);
|
||||
ex.medial_axis(max, min, &polylines);
|
||||
}
|
||||
|
||||
if (!polylines.empty() && !is_bridge(good_role)) {
|
||||
ExtrusionEntityCollection gap_fill;
|
||||
variable_width(polylines, erGapFill, params.flow, gap_fill.entities);
|
||||
coll_nosort->append(std::move(gap_fill.entities));
|
||||
}
|
||||
}
|
||||
|
||||
if (!coll_nosort->entities.empty())
|
||||
out.push_back(coll_nosort);
|
||||
else
|
||||
delete coll_nosort;
|
||||
}
|
||||
|
||||
//BBS: add external gapfill between perimeter and infill
|
||||
ExPolygons external_gaps = diff_ex(this->no_overlap_expolygons, offset_ex(expp, double(scale_(0.5 * this->spacing))), ApplySafetyOffset::Yes);
|
||||
external_gaps = union_ex(external_gaps);
|
||||
if (!this->no_overlap_expolygons.empty())
|
||||
external_gaps = intersection_ex(external_gaps, this->no_overlap_expolygons);
|
||||
|
||||
if (!external_gaps.empty()) {
|
||||
double min = 0.4 * scale_(params.flow.nozzle_diameter()) * (1 - INSET_OVERLAP_TOLERANCE);
|
||||
double max = 2. * params.flow.scaled_width();
|
||||
//BBS: collapse, be sure we don't gapfill where the perimeters are already touching each other (negative spacing).
|
||||
min = std::max(min, (double)Flow::rounded_rectangle_extrusion_width_from_spacing((float)EPSILON, (float)params.flow.height()));
|
||||
ExPolygons external_gaps_collapsed = offset2_ex(external_gaps, double(-min / 2), double(+min / 2));
|
||||
|
||||
ThickPolylines polylines;
|
||||
for (ExPolygon& ex : external_gaps_collapsed) {
|
||||
//BBS: Use DP simplify to avoid duplicated points and accelerate medial-axis calculation as well.
|
||||
ex.douglas_peucker(SCALED_RESOLUTION * 0.1);
|
||||
ex.medial_axis(max, min, &polylines);
|
||||
}
|
||||
|
||||
ExtrusionEntityCollection* coll_external_gapfill = new ExtrusionEntityCollection();
|
||||
coll_external_gapfill->no_sort = this->no_sort();
|
||||
if (!polylines.empty() && !is_bridge(params.extrusion_role)) {
|
||||
ExtrusionEntityCollection gap_fill;
|
||||
variable_width(polylines, erGapFill, params.flow, gap_fill.entities);
|
||||
coll_external_gapfill->append(std::move(gap_fill.entities));
|
||||
}
|
||||
if (!coll_external_gapfill->entities.empty())
|
||||
out.push_back(coll_external_gapfill);
|
||||
else
|
||||
delete coll_external_gapfill;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -1,21 +0,0 @@
|
|||
#ifndef slic3r_FillConcentricWGapFil_hpp_
|
||||
#define slic3r_FillConcentricWGapFil_hpp_
|
||||
|
||||
#include "FillBase.hpp"
|
||||
|
||||
namespace Slic3r {
|
||||
|
||||
class FillConcentricWGapFill : public Fill
|
||||
{
|
||||
public:
|
||||
~FillConcentricWGapFill() override = default;
|
||||
void fill_surface_extrusion(const Surface *surface, const FillParams ¶ms, ExtrusionEntitiesPtr &out) override;
|
||||
|
||||
protected:
|
||||
Fill* clone() const override { return new FillConcentricWGapFill(*this); };
|
||||
bool no_sort() const override { return true; }
|
||||
};
|
||||
|
||||
} // namespace Slic3r
|
||||
|
||||
#endif // slic3r_FillConcentricWGapFil_hpp_
|