Merge branch 'main' into arm
@@ -23,6 +23,10 @@ jobs:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Run extra JSON check
|
||||
run: |
|
||||
python3 ./scripts/orca_extra_profile_check.py
|
||||
|
||||
# download
|
||||
- name: Download
|
||||
working-directory: ${{ github.workspace }}
|
||||
@@ -44,4 +48,4 @@ jobs:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"githubPullRequests.ignoredPullRequestBranches": [
|
||||
"main"
|
||||
]
|
||||
}
|
||||
@@ -10,12 +10,12 @@ Join our Discord community here:<br>
|
||||
|
||||
<h3>🚨🚨🚨Important Security Alert🚨🚨🚨</h3>
|
||||
|
||||
The only official platforms for OrcaSlicer are **our GitHub project page**, <a href="https://www.orcaslicer.com/">**orcaslicer.com**</a>, and the <a href="https://discord.gg/P4VE9UY9gJ">**official Discord channel**</a>.
|
||||
|
||||
Please be aware that "**orcaslicer.net**", "**orcaslicer.co**" or "**orca-slicer.com**" are NOT an official website for OrcaSlicer and may be potentially malicious. These sites appear to use AI-generated content, lacking genuine context and seems to exist solely to profit from advertisements. Worse, it may redirect download links to harmful sources. For your safety, avoid downloading OrcaSlicer from this site as the links may be compromised.
|
||||
|
||||
If you see the above sites in your searches, report them as spam or unsafe to the search engine. This small action will assist everyone.
|
||||
|
||||
The only official platforms for OrcaSlicer are our GitHub project page and the <a href="https://discord.gg/P4VE9UY9gJ">official Discord channel</a> .
|
||||
|
||||
We deeply value our OrcaSlicer community and appreciate all the social groups that support us. However, it is crucial to address the risk posed by any group that falsely claims to be official or misleads its members. If you encounter such a group or are part of one, please assist by encouraging the group owner to add a clear disclaimer or by alerting its members.
|
||||
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
set -e
|
||||
set -o pipefail
|
||||
|
||||
while getopts ":dpa:snt:xbc:h" opt; do
|
||||
while getopts ":dpa:snt:xbc:hu" opt; do
|
||||
case "${opt}" in
|
||||
d )
|
||||
export BUILD_TARGET="deps"
|
||||
@@ -37,6 +37,9 @@ while getopts ":dpa:snt:xbc:h" opt; do
|
||||
1 )
|
||||
export CMAKE_BUILD_PARALLEL_LEVEL=1
|
||||
;;
|
||||
u )
|
||||
export BUILD_UNIVERSAL="1"
|
||||
;;
|
||||
h ) echo "Usage: ./build_release_macos.sh [-d]"
|
||||
echo " -d: Build deps only"
|
||||
echo " -a: Set ARCHITECTURE (arm64 or x86_64)"
|
||||
@@ -46,6 +49,7 @@ while getopts ":dpa:snt:xbc:h" opt; do
|
||||
echo " -x: Use Ninja CMake generator, default is Xcode"
|
||||
echo " -b: Build without reconfiguring CMake"
|
||||
echo " -c: Set CMake build configuration, default is Release"
|
||||
echo " -u: Build universal binary (both arm64 and x86_64)"
|
||||
echo " -1: Use single job for building"
|
||||
exit 0
|
||||
;;
|
||||
@@ -57,10 +61,18 @@ done
|
||||
# Set defaults
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
ARCH="$(uname -m)"
|
||||
if [ "1." == "$BUILD_UNIVERSAL". ]; then
|
||||
ARCH="universal"
|
||||
else
|
||||
ARCH="$(uname -m)"
|
||||
fi
|
||||
export ARCH
|
||||
fi
|
||||
|
||||
if [ "1." == "$BUILD_UNIVERSAL". ]; then
|
||||
echo "Universal build enabled - will create a combined arm64/x86_64 binary"
|
||||
fi
|
||||
|
||||
if [ -z "$BUILD_CONFIG" ]; then
|
||||
export BUILD_CONFIG="Release"
|
||||
fi
|
||||
@@ -205,16 +217,71 @@ function build_slicer() {
|
||||
# zip -FSr OrcaSlicer${ver}_Mac_${ARCH}.zip OrcaSlicer.app
|
||||
}
|
||||
|
||||
function build_universal() {
|
||||
echo "Building universal binary..."
|
||||
# Save current ARCH
|
||||
ORIGINAL_ARCH="$ARCH"
|
||||
|
||||
# Build x86_64
|
||||
ARCH="x86_64"
|
||||
PROJECT_BUILD_DIR="$PROJECT_DIR/build_$ARCH"
|
||||
DEPS_BUILD_DIR="$DEPS_DIR/build_$ARCH"
|
||||
DEPS="$DEPS_BUILD_DIR/OrcaSlicer_dep_$ARCH"
|
||||
build_deps
|
||||
build_slicer
|
||||
|
||||
# Build arm64
|
||||
ARCH="arm64"
|
||||
PROJECT_BUILD_DIR="$PROJECT_DIR/build_$ARCH"
|
||||
DEPS_BUILD_DIR="$DEPS_DIR/build_$ARCH"
|
||||
DEPS="$DEPS_BUILD_DIR/OrcaSlicer_dep_$ARCH"
|
||||
build_deps
|
||||
build_slicer
|
||||
|
||||
# Restore original ARCH
|
||||
ARCH="$ORIGINAL_ARCH"
|
||||
PROJECT_BUILD_DIR="$PROJECT_DIR/build_$ARCH"
|
||||
DEPS_BUILD_DIR="$DEPS_DIR/build_$ARCH"
|
||||
DEPS="$DEPS_BUILD_DIR/OrcaSlicer_dep_$ARCH"
|
||||
|
||||
# Create universal binary
|
||||
echo "Creating universal binary..."
|
||||
PROJECT_BUILD_DIR="$PROJECT_DIR/build_Universal"
|
||||
mkdir -p "$PROJECT_BUILD_DIR/OrcaSlicer"
|
||||
UNIVERSAL_APP="$PROJECT_BUILD_DIR/OrcaSlicer/Universal_OrcaSlicer.app"
|
||||
rm -rf "$UNIVERSAL_APP"
|
||||
cp -R "$PROJECT_DIR/build_x86_64/OrcaSlicer/OrcaSlicer.app" "$UNIVERSAL_APP"
|
||||
|
||||
# Get the binary path inside the .app bundle
|
||||
BINARY_PATH="Contents/MacOS/OrcaSlicer"
|
||||
|
||||
# Create universal binary using lipo
|
||||
lipo -create \
|
||||
"$PROJECT_DIR/build_x86_64/OrcaSlicer/OrcaSlicer.app/$BINARY_PATH" \
|
||||
"$PROJECT_DIR/build_arm64/OrcaSlicer/OrcaSlicer.app/$BINARY_PATH" \
|
||||
-output "$UNIVERSAL_APP/$BINARY_PATH"
|
||||
|
||||
echo "Universal binary created at $UNIVERSAL_APP"
|
||||
}
|
||||
|
||||
case "${BUILD_TARGET}" in
|
||||
all)
|
||||
build_deps
|
||||
build_slicer
|
||||
if [ "1." == "$BUILD_UNIVERSAL". ]; then
|
||||
build_universal
|
||||
else
|
||||
build_deps
|
||||
build_slicer
|
||||
fi
|
||||
;;
|
||||
deps)
|
||||
build_deps
|
||||
;;
|
||||
slicer)
|
||||
build_slicer
|
||||
if [ "1." == "$BUILD_UNIVERSAL". ]; then
|
||||
build_universal
|
||||
else
|
||||
build_slicer
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
echo "Unknown target: $BUILD_TARGET. Available targets: deps, slicer, all."
|
||||
|
||||
@@ -340,6 +340,20 @@ if(NOT FREETYPE_FOUND)
|
||||
set(FREETYPE_PKG "dep_FREETYPE")
|
||||
endif()
|
||||
|
||||
execute_process(
|
||||
COMMAND ${GIT_EXECUTABLE} rev-parse --is-inside-work-tree
|
||||
RESULT_VARIABLE REV_PARSE_RESULT
|
||||
OUTPUT_VARIABLE REV_PARSE_OUTPUT
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
)
|
||||
|
||||
# Will output "true" and have a 0 return code if within a git repo
|
||||
if((REV_PARSE_RESULT EQUAL 0) AND (REV_PARSE_OUTPUT STREQUAL "true"))
|
||||
set(IN_GIT_REPO TRUE)
|
||||
# Find relative path from root to source used for adjusting patch command
|
||||
file(RELATIVE_PATH BINARY_DIR_REL ${CMAKE_SOURCE_DIR}/.. ${CMAKE_BINARY_DIR})
|
||||
endif ()
|
||||
|
||||
include(OCCT/OCCT.cmake)
|
||||
include(OpenCV/OpenCV.cmake)
|
||||
|
||||
|
||||
@@ -4,15 +4,15 @@ else()
|
||||
set(library_build_type "Static")
|
||||
endif()
|
||||
|
||||
|
||||
# get relative path of CMAKE_BINARY_DIR against root source directory
|
||||
file(RELATIVE_PATH BINARY_DIR_REL ${CMAKE_SOURCE_DIR}/.. ${CMAKE_BINARY_DIR})
|
||||
if (IN_GIT_REPO)
|
||||
set(OCCT_DIRECTORY_FLAG --directory ${BINARY_DIR_REL}/dep_OCCT-prefix/src/dep_OCCT)
|
||||
endif ()
|
||||
|
||||
orcaslicer_add_cmake_project(OCCT
|
||||
URL https://github.com/Open-Cascade-SAS/OCCT/archive/refs/tags/V7_6_0.zip
|
||||
URL_HASH SHA256=28334f0e98f1b1629799783e9b4d21e05349d89e695809d7e6dfa45ea43e1dbc
|
||||
#PATCH_COMMAND ${PATCH_CMD} ${CMAKE_CURRENT_LIST_DIR}/0001-OCCT-fix.patch
|
||||
PATCH_COMMAND git apply --directory ${BINARY_DIR_REL}/dep_OCCT-prefix/src/dep_OCCT --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-OCCT-fix.patch
|
||||
PATCH_COMMAND git apply ${OCCT_DIRECTORY_FLAG} --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-OCCT-fix.patch
|
||||
#DEPENDS dep_Boost
|
||||
DEPENDS ${FREETYPE_PKG}
|
||||
CMAKE_ARGS
|
||||
|
||||
@@ -4,10 +4,14 @@ else ()
|
||||
set(_use_IPP "-DWITH_IPP=OFF")
|
||||
endif ()
|
||||
|
||||
if (IN_GIT_REPO)
|
||||
set(OpenCV_DIRECTORY_FLAG --directory ${BINARY_DIR_REL}/dep_OpenCV-prefix/src/dep_OpenCV)
|
||||
endif ()
|
||||
|
||||
orcaslicer_add_cmake_project(OpenCV
|
||||
URL https://github.com/opencv/opencv/archive/refs/tags/4.6.0.tar.gz
|
||||
URL_HASH SHA256=1ec1cba65f9f20fe5a41fda1586e01c70ea0c9a6d7b67c9e13edf0cfe2239277
|
||||
PATCH_COMMAND git apply --directory ${BINARY_DIR_REL}/dep_OpenCV-prefix/src/dep_OpenCV --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-vs2022.patch
|
||||
PATCH_COMMAND git apply ${OpenCV_DIRECTORY_FLAG} --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-vs2022.patch
|
||||
CMAKE_ARGS
|
||||
-DBUILD_SHARED_LIBS=0
|
||||
-DBUILD_PERE_TESTS=OFF
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+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"
|
||||
@@ -3453,9 +3453,9 @@ msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -4174,7 +4174,7 @@ msgstr ""
|
||||
msgid "Size:"
|
||||
msgstr ""
|
||||
|
||||
#, possible-boost-format
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4590,7 +4590,7 @@ msgstr ""
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -7195,8 +7195,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -7361,12 +7361,6 @@ msgstr ""
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr ""
|
||||
|
||||
@@ -7524,6 +7518,12 @@ msgstr ""
|
||||
msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr ""
|
||||
|
||||
@@ -9296,7 +9296,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -9308,6 +9308,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -9587,6 +9588,9 @@ msgid ""
|
||||
"models. Auto means the brim width is analyzed and calculated automatically."
|
||||
msgstr ""
|
||||
|
||||
msgid "Painted"
|
||||
msgstr ""
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr ""
|
||||
|
||||
@@ -10679,8 +10683,8 @@ msgid "mm/s² or %"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -10773,10 +10777,10 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
@@ -11798,7 +11802,7 @@ msgid ""
|
||||
"travel. Set zero to disable retraction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -12238,6 +12242,21 @@ msgid ""
|
||||
"expressed as a %, it will be computed over nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -12709,8 +12728,8 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -12942,9 +12961,9 @@ msgid "Idle temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "X-Y hole compensation"
|
||||
@@ -14214,6 +14233,23 @@ msgstr ""
|
||||
msgid "Error uploading to print host"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr ""
|
||||
|
||||
@@ -14384,8 +14420,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"PO-Revision-Date: 2024-11-03 20:59+0100\n"
|
||||
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -3621,9 +3621,9 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
"Aktuální teplota komory je vyšší než bezpečná teplota materiálu,může to "
|
||||
"způsobit změkčení materiálu a jeho ucpaní. Maximální bezpečná teplota pro "
|
||||
@@ -4400,7 +4400,7 @@ msgstr "Objem:"
|
||||
msgid "Size:"
|
||||
msgstr "Velikost:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4826,7 +4826,7 @@ msgstr "Zobrazit &Převis"
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "Zobrazit zvýraznění převisů objektu ve 3D scéně"
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -6457,7 +6457,7 @@ msgid "Custom supports and color painting were removed before repairing."
|
||||
msgstr "Vlastní podpěry a barevné malby byly před opravou odstraněny."
|
||||
|
||||
msgid "Optimize Rotation"
|
||||
msgstr ""
|
||||
msgstr "Optimalizovat Orientaci"
|
||||
|
||||
msgid "Invalid number"
|
||||
msgstr "Neplatné číslo"
|
||||
@@ -7620,8 +7620,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Při nahrávání časosběru bez nástrojové hlavy se doporučuje přidat "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
@@ -7631,71 +7631,78 @@ msgstr ""
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
msgstr "Bude vytvořena oddělená kopie aktuálního systémového přednastavení."
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
"Aktuální vlastní přednastavení bude odděleno od rodičovského systémového "
|
||||
"přednastavení."
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
msgstr "Úpravy aktuálního profilu budou uloženy."
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
"Tato akce není vratná.\n"
|
||||
"Chcete pokračovat?"
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
msgstr "Oddělení přednastavení"
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
msgstr "Toto je výchozí přednastavení."
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
msgstr "Toto je systémové přednastavení."
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
msgstr "Aktuální nastavení je zděděno z výchozího nastavení."
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
msgstr "Aktuální nastavení je zděděné od"
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
msgstr "Nelze smazat nebo upravit."
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
"Jakékoliv úpravy by měly být uloženy jako nové přednastavení zděděná z "
|
||||
"tohoto."
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
"Chcete-li akci provést, prosím nejdříve zadejte nový název přednastavení."
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
msgstr "Doplňující informace:"
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
msgstr "výrobce"
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
msgstr "model tiskárny"
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
msgstr "výchozí tiskový profil"
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
msgstr "výchozí profil filamentu"
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
msgstr "výchozí profil pro SLA materiál"
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
msgstr "výchozí SLA tiskový profil"
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
msgstr "celé jméno profilu"
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
msgstr "symbolické jméno profilu"
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Šířka Extruze"
|
||||
@@ -7776,7 +7783,7 @@ msgid "Filament for Features"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ooze prevention"
|
||||
msgstr ""
|
||||
msgstr "Prevence odkapávání"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr "Obrys"
|
||||
@@ -7793,12 +7800,6 @@ msgstr "Post-processing Scripts"
|
||||
msgid "Notes"
|
||||
msgstr "Poznámky"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Časté"
|
||||
|
||||
@@ -7982,6 +7983,12 @@ msgstr "Nastavení rapidní extruze"
|
||||
msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr "Parametry při výměně (Multi Material s více extrudery)"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr "Závislosti"
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr "Profilové závislosti"
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "Prostor pro tisk"
|
||||
|
||||
@@ -8060,7 +8067,7 @@ msgid "Single extruder multi-material setup"
|
||||
msgstr "Nastavení multimateriálu s jedním extruderem"
|
||||
|
||||
msgid "Number of extruders of the printer."
|
||||
msgstr ""
|
||||
msgstr "Počet extrudérů tiskárny."
|
||||
|
||||
msgid ""
|
||||
"Single Extruder Multi Material is selected, \n"
|
||||
@@ -8068,6 +8075,10 @@ msgid ""
|
||||
"Do you want to change the diameter for all extruders to first extruder "
|
||||
"nozzle diameter value?"
|
||||
msgstr ""
|
||||
"Je zvolená Multi Materiálová tiskárna s jedním extruderem,\n"
|
||||
"a proto všechny extrudery musí mít stejný průměr.\n"
|
||||
"Chcete nastavit průměry všech extruderových trysek podle průměru prvního "
|
||||
"extruderu?"
|
||||
|
||||
msgid "Nozzle diameter"
|
||||
msgstr "Průměr trysky"
|
||||
@@ -9090,6 +9101,7 @@ msgid ""
|
||||
"Your print is very close to the priming regions. Make sure there is no "
|
||||
"collision."
|
||||
msgstr ""
|
||||
"Váš tisk je velmi blízko čistícím oblastem. Zajistěte, aby nedošlo ke kolizi."
|
||||
|
||||
msgid ""
|
||||
"Failed to generate gcode for invalid custom G-code.\n"
|
||||
@@ -9898,7 +9910,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -9910,6 +9922,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -10210,6 +10223,9 @@ msgstr ""
|
||||
"Toto ovládá generování límce na vnější a/nebo vnitřní straně modelů. Možnost "
|
||||
"Auto znamená, že šířka límce je automaticky analyzována a vypočítána."
|
||||
|
||||
msgid "Painted"
|
||||
msgstr ""
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "Mezera mezi Límcem a Objektem"
|
||||
|
||||
@@ -10263,6 +10279,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
"Logický výraz může používat konfigurační hodnoty aktivního profilu tiskárny. "
|
||||
"Pokud je tento logický výraz pravdivý, potom je tento profil považován za "
|
||||
"kompatibilní s aktivním profilem tiskárny."
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Kompatibilní profily procesů"
|
||||
@@ -10275,6 +10294,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
"Logický výraz může používat konfigurační hodnoty aktivního profilu tiskárny. "
|
||||
"Pokud je tento logický výraz pravdivý, potom je tento profil považován za "
|
||||
"kompatibilní s aktivním profilem tiskárny."
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr "Tisková sekvence, vrstva po vrstvě nebo objekt po objektu"
|
||||
@@ -11421,8 +11443,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² or %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Zrychlení vnitřní výplně. Pokud je hodnota vyjádřena v procentech (např. 100 "
|
||||
"%), bude vypočítána na základě výchozího zrychlení."
|
||||
@@ -11527,10 +11549,10 @@ msgstr "Maximální otáčky ventilátoru ve vrstvě"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Otáčky ventilátoru se lineárně zvýší z nuly ve vrstvě "
|
||||
"\"close_fan_first_layers\" na maximum ve vrstvě \"full_fan_speed_layer\". "
|
||||
@@ -12598,7 +12620,7 @@ msgstr ""
|
||||
"k nastavení konfigurace Orca Slicer čtením proměnných prostředí."
|
||||
|
||||
msgid "Printer type"
|
||||
msgstr ""
|
||||
msgstr "Typ tiskárny"
|
||||
|
||||
msgid "Type of the printer"
|
||||
msgstr ""
|
||||
@@ -12610,7 +12632,7 @@ msgid "You can put your notes regarding the printer here."
|
||||
msgstr "Zde můžete uvést poznámky týkající se tiskárny."
|
||||
|
||||
msgid "Printer variant"
|
||||
msgstr ""
|
||||
msgstr "Varianta tiskárny"
|
||||
|
||||
msgid "Raft contact Z distance"
|
||||
msgstr "Mezera mezi objektem a raftem v ose Z"
|
||||
@@ -12697,7 +12719,7 @@ msgstr ""
|
||||
"Některé množství materiálu v extruderu je staženo zpět, aby se zabránilo "
|
||||
"slizu při dlouhém pohybu. Nastavte nulu, abyste zablokovali retrakce"
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -13147,7 +13169,7 @@ msgstr ""
|
||||
"vnitřní plnou výplní"
|
||||
|
||||
msgid "Solid infill"
|
||||
msgstr ""
|
||||
msgstr "Plná výplň"
|
||||
|
||||
msgid "Filament to print solid infill"
|
||||
msgstr ""
|
||||
@@ -13187,6 +13209,21 @@ msgid ""
|
||||
"expressed as a %, it will be computed over nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -13729,8 +13766,8 @@ msgstr "Aktivovat řízení teploty"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -14002,9 +14039,9 @@ msgid "Idle temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "X-Y hole compensation"
|
||||
@@ -14671,8 +14708,8 @@ msgstr "Podpěry: šíření větví na vrstvě %d"
|
||||
msgid ""
|
||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||
msgstr ""
|
||||
"Neznámý formát souboru. Vstupní soubor musí mít příponu .stl, .obj "
|
||||
"nebo .amf(.xml)"
|
||||
"Neznámý formát souboru. Vstupní soubor musí mít příponu .stl, .obj nebo ."
|
||||
"amf(.xml)"
|
||||
|
||||
msgid "Loading of a model file failed."
|
||||
msgstr "Nahrávání souboru modelu selhalo."
|
||||
@@ -15439,6 +15476,23 @@ msgstr "Ruší se"
|
||||
msgid "Error uploading to print host"
|
||||
msgstr "Chyba při nahrávání do tiskového serveru"
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr "Nelze provést booleovskou operaci na vybraných částech"
|
||||
|
||||
@@ -15609,8 +15663,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
@@ -16507,8 +16561,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Plochou na podložku\n"
|
||||
"Věděli jste, že můžete rychle nastavit orientaci modelu tak, aby jedna z "
|
||||
"jeho stěn spočívala na tiskovém podloží? Vyberte funkci \"Plochou na "
|
||||
"podložku\" nebo stiskněte klávesu <b>F</b>."
|
||||
"jeho stěn spočívala na tiskovém podloží? Vyberte funkci \"Plochou na podložku"
|
||||
"\" nebo stiskněte klávesu <b>F</b>."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Object List]
|
||||
msgid ""
|
||||
@@ -17052,12 +17106,12 @@ msgstr ""
|
||||
#~ "Najdete podrobnosti o kalibraci průtoku dynamiky v naší wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Obvykle kalibrace není potřebná. Při spuštění tisku s jednobarevným/"
|
||||
#~ "materiálovým filamentem a zaškrtnutou volbou \"kalibrace průtoku "
|
||||
#~ "dynamiky\" v menu spuštění tisku, tiskárna bude postupovat podle staré "
|
||||
#~ "metody a zkalibruje filament před tiskem. Při spuštění tisku s "
|
||||
#~ "vícebarevným/materiálovým filamentem bude tiskárna při každé změně "
|
||||
#~ "filamentu používat výchozí kompenzační parametr pro filament, což má "
|
||||
#~ "většinou dobrý výsledek.\n"
|
||||
#~ "materiálovým filamentem a zaškrtnutou volbou \"kalibrace průtoku dynamiky"
|
||||
#~ "\" v menu spuštění tisku, tiskárna bude postupovat podle staré metody a "
|
||||
#~ "zkalibruje filament před tiskem. Při spuštění tisku s vícebarevným/"
|
||||
#~ "materiálovým filamentem bude tiskárna při každé změně filamentu používat "
|
||||
#~ "výchozí kompenzační parametr pro filament, což má většinou dobrý "
|
||||
#~ "výsledek.\n"
|
||||
#~ "\n"
|
||||
#~ "Všimněte si, že existují některé případy, které mohou způsobit, že "
|
||||
#~ "výsledek kalibrace nebude spolehlivý: použití texturované podložky pro "
|
||||
@@ -17291,9 +17345,6 @@ msgstr ""
|
||||
#~ "lepší chlazení vrstev, při tisku převisů a pokud rychlosti prvků nejsou "
|
||||
#~ "explicitně určeny."
|
||||
|
||||
#~ msgid "No sparse layers (EXPERIMENTAL)"
|
||||
#~ msgstr "Bez řídkých vrstev (EXPERIMENTÁLNÍ)"
|
||||
|
||||
#~ msgid "The Config can not be loaded."
|
||||
#~ msgstr "Nelze načíst konfiguraci."
|
||||
|
||||
@@ -17302,10 +17353,10 @@ msgstr ""
|
||||
#~ "3mf je generován starým Orca Slicerem, načtěte pouze geometrická data."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Relative extrusion is recommended when using \"label_objects\" "
|
||||
#~ "option.Some extruders work better with this option unchecked (absolute "
|
||||
#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is "
|
||||
#~ "always enabled on BambuLab printers. Default is checked"
|
||||
#~ "Relative extrusion is recommended when using \"label_objects\" option."
|
||||
#~ "Some extruders work better with this option unchecked (absolute extrusion "
|
||||
#~ "mode). Wipe tower is only compatible with relative mode. It is always "
|
||||
#~ "enabled on BambuLab printers. Default is checked"
|
||||
#~ msgstr ""
|
||||
#~ "Při použití volby \"label_objects\" se doporučuje relativní extruzi. "
|
||||
#~ "Některé extrudery fungují lépe, když je tato možnost odškrtnuta (režim "
|
||||
@@ -17673,8 +17724,8 @@ msgstr ""
|
||||
#~ msgstr "Úroveň ladění"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
#~ "5:trace\n"
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
#~ "trace\n"
|
||||
#~ msgstr ""
|
||||
#~ "Nastaví úroveň protokolování ladění. 0:fatal, 1:error, 2:warning, 3:info, "
|
||||
#~ "4:debug, 5:sledovat\n"
|
||||
@@ -17719,8 +17770,8 @@ msgstr ""
|
||||
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
|
||||
#~ "parsed.Please delete the file and try again."
|
||||
#~ msgstr ""
|
||||
#~ "Konfigurační soubor OrcaSlicer může být poškozen a nelze jej "
|
||||
#~ "analyzovat.Smažte soubor a zkuste to znovu."
|
||||
#~ "Konfigurační soubor OrcaSlicer může být poškozen a nelze jej analyzovat."
|
||||
#~ "Smažte soubor a zkuste to znovu."
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Online modely"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -1277,7 +1277,7 @@ msgid "Esc"
|
||||
msgstr "Esc"
|
||||
|
||||
msgid "Cancel a feature until exit"
|
||||
msgstr ""
|
||||
msgstr "Cancel a feature until exit"
|
||||
|
||||
msgid "Measure"
|
||||
msgstr "Measure"
|
||||
@@ -1285,16 +1285,17 @@ msgstr "Measure"
|
||||
msgid ""
|
||||
"Please confirm explosion ratio = 1,and please select at least one object"
|
||||
msgstr ""
|
||||
"Please confirm explosion ratio = 1, and please select at least one object"
|
||||
|
||||
msgid "Please select at least one object."
|
||||
msgstr ""
|
||||
msgstr "Please select at least one object."
|
||||
|
||||
msgid "Edit to scale"
|
||||
msgstr "Edit to scale"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale all"
|
||||
msgstr ""
|
||||
msgstr "Scale all"
|
||||
|
||||
msgid "None"
|
||||
msgstr "None"
|
||||
@@ -1309,40 +1310,46 @@ msgid "Selection"
|
||||
msgstr "Selection"
|
||||
|
||||
msgid " (Moving)"
|
||||
msgstr ""
|
||||
msgstr " (Moving)"
|
||||
|
||||
msgid ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
msgstr ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
|
||||
msgid ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
msgstr ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
|
||||
msgid "Face"
|
||||
msgstr ""
|
||||
msgstr "Face"
|
||||
|
||||
msgid " (Fixed)"
|
||||
msgstr ""
|
||||
msgstr " (Fixed)"
|
||||
|
||||
msgid "Point"
|
||||
msgstr ""
|
||||
msgstr "Point"
|
||||
|
||||
msgid ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
msgstr ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
|
||||
msgid "Warning:please select Plane's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Plane's feature."
|
||||
|
||||
msgid "Warning:please select Point's or Circle's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Point's or Circle's feature."
|
||||
|
||||
msgid "Warning:please select two different mesh."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select two different meshes."
|
||||
|
||||
msgid "Copy to clipboard"
|
||||
msgstr "Copy to clipboard"
|
||||
@@ -1360,25 +1367,25 @@ msgid "Distance XYZ"
|
||||
msgstr "Distance XYZ"
|
||||
|
||||
msgid "Parallel"
|
||||
msgstr ""
|
||||
msgstr "Parallel"
|
||||
|
||||
msgid "Center coincidence"
|
||||
msgstr ""
|
||||
msgstr "Center coincidence"
|
||||
|
||||
msgid "Featue 1"
|
||||
msgstr ""
|
||||
msgstr "Feature 1"
|
||||
|
||||
msgid "Reverse rotation"
|
||||
msgstr ""
|
||||
msgstr "Reverse rotation"
|
||||
|
||||
msgid "Rotate around center:"
|
||||
msgstr ""
|
||||
msgstr "Rotate around center:"
|
||||
|
||||
msgid "Parallel distance:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flip by Face 2"
|
||||
msgstr ""
|
||||
msgstr "Flip by Face 2"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
@@ -3580,9 +3587,9 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
"Current chamber temperature is higher than the material's safe temperature; "
|
||||
"this may result in material softening and nozzle clogs.The maximum safe "
|
||||
@@ -4356,7 +4363,7 @@ msgstr "Volume:"
|
||||
msgid "Size:"
|
||||
msgstr "Size:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4781,7 +4788,7 @@ msgstr "Show &Overhang"
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "Show object overhang highlight in 3D scene"
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -5124,6 +5131,8 @@ msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
"Please check if the Micro SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the card."
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgstr "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -7587,13 +7596,13 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
@@ -7760,12 +7769,6 @@ msgstr "Post-processing Scripts"
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Frequent"
|
||||
|
||||
@@ -7944,6 +7947,12 @@ msgstr ""
|
||||
msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "Printable space"
|
||||
|
||||
@@ -9842,7 +9851,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -9854,6 +9863,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -10142,6 +10152,9 @@ msgstr ""
|
||||
"This controls the generation of the brim at outer and/or inner side of "
|
||||
"models. Auto means the brim width is analyzed and calculated automatically."
|
||||
|
||||
msgid "Painted"
|
||||
msgstr ""
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "Brim-object gap"
|
||||
|
||||
@@ -10190,6 +10203,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
"A Boolean expression using the configuration values of an active printer "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Compatible process profiles"
|
||||
@@ -10202,6 +10218,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
"A Boolean expression using the configuration values of an active print "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr ""
|
||||
@@ -11302,11 +11321,11 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² or %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
|
||||
msgid ""
|
||||
"Acceleration of internal solid infill. If the value is expressed as a "
|
||||
@@ -11404,10 +11423,10 @@ msgstr "Full fan speed at layer"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
@@ -12494,8 +12513,8 @@ msgstr ""
|
||||
"This is the amount of filament in the extruder that is pulled back to avoid "
|
||||
"oozing during long travel distances. Set to 0 to disable retraction."
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgstr "Long retraction when cut (experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr "Long retraction when cut (beta)"
|
||||
|
||||
msgid ""
|
||||
"Experimental feature.Retracting and cutting off the filament at a longer "
|
||||
@@ -12977,6 +12996,21 @@ msgstr ""
|
||||
"Maximum distance to move points in XY to try to achieve a smooth spiral. If "
|
||||
"expressed as a %, it will be computed over nozzle diameter"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -13490,8 +13524,8 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -13754,9 +13788,9 @@ msgid "Idle temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "X-Y hole compensation"
|
||||
@@ -15149,6 +15183,23 @@ msgstr "Cancelling"
|
||||
msgid "Error uploading to print host"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr "Unable to perform boolean operation on selected parts"
|
||||
|
||||
@@ -15328,8 +15379,8 @@ msgstr ""
|
||||
"Do you want to rewrite it?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
@@ -17270,11 +17321,11 @@ msgstr ""
|
||||
#~ msgstr "Debug level"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
#~ "5:trace\n"
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
#~ "trace\n"
|
||||
#~ msgstr ""
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
#~ "5:trace\n"
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
#~ "trace\n"
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Embedded"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Carlos Fco. Caruncho Serrano <puzzlero@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -3726,9 +3726,9 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
"La temperatura actual de la cámara es superior a la temperatura de seguridad "
|
||||
"del material, puede provocar que el material se ablande y se atasque. La "
|
||||
@@ -4530,7 +4530,7 @@ msgstr "Volumen:"
|
||||
msgid "Size:"
|
||||
msgstr "Tamaño:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4957,8 +4957,8 @@ msgstr "Mostrar Voladizo (&O)"
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "Mostrar resalte de voladizos de objeto en escena 3D"
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgstr "Mostrar Contorno Seleccionado (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr "Mostrar Contorno Seleccionado (beta)"
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
msgstr "Mostrar el contorno alrededor del objeto seleccionado en la escena 3D"
|
||||
@@ -5320,6 +5320,8 @@ msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
"Verifique si la tarjeta SD está insertada en la impresora. Si aún no se "
|
||||
"puede leer, puedes intentar formatear la tarjeta SD."
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgstr "Conexión LAN fallida (no se encuentra la tarjeta SD)"
|
||||
@@ -7518,8 +7520,8 @@ msgid ""
|
||||
"start printing."
|
||||
msgstr ""
|
||||
"Hay algunos filamentos desconocidos en los mapeados AMS. Por favor, "
|
||||
"compruebe si son los filamentos requeridos. Si lo son, presione "
|
||||
"\"Confirmar\" para empezar a imprimir."
|
||||
"compruebe si son los filamentos requeridos. Si lo son, presione \"Confirmar"
|
||||
"\" para empezar a imprimir."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "nozzle in preset: %s %s"
|
||||
@@ -7884,82 +7886,88 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Cuando se graba un timelapse sin cabezal, se recomienda añadir una \"Torre "
|
||||
"de Purga de Timelapse\" haciendo clic con el botón derecho del ratón en una "
|
||||
"posición vacía de la bandeja de impresión y seleccionando \"Añadir "
|
||||
"Primitivo\"->Torre de Purga de Timelapse\"."
|
||||
"posición vacía de la bandeja de impresión y seleccionando \"Añadir Primitivo"
|
||||
"\"->Torre de Purga de Timelapse\"."
|
||||
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
"Se creará una copia del preajuste del sistema actual, que se separará del "
|
||||
"preajuste del sistema."
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
"El ajuste personalizado actual se separará del ajuste del sistema principal."
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
msgstr "Se guardarán las modificaciones al perfil actual."
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
"Esta acción no es reversible.\n"
|
||||
"¿Deseas continuar?"
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
msgstr "Separar ajuste"
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
msgstr "Este es un ajuste por defecto."
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
msgstr "Este es un ajuste del sistema."
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
msgstr "El ajuste fue heredado del ajuste predeterminado."
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
msgstr "El ajuste fue heredado de"
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
msgstr "No puede ser borrado o modificado."
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
"Cualquier modificación debe guardarse como un nuevo preset heredado de este."
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
msgstr "Para hacerlo por favor especifique un nuevo nombre para esos ajustes."
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
msgstr "Información adicional:"
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
msgstr "fabricante"
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
msgstr "modelo de impresora"
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
msgstr "perfil de impresión por defecto"
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
msgstr "perfil de filamento por defecto"
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
msgstr "perfil de material de SLA por defecto"
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
msgstr "perfil de impresión de SLA por defecto"
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
msgstr "nombre completo perfil"
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
msgstr "nombre perfil simbólico"
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Ancho de linea"
|
||||
@@ -8058,12 +8066,6 @@ msgstr "Script de Post-procesado"
|
||||
msgid "Notes"
|
||||
msgstr "Anotaciones"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Frecuente"
|
||||
|
||||
@@ -8255,6 +8257,12 @@ msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr ""
|
||||
"Parámetros de cambio de cabezal para impresoras de varios extrusores MM"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr "Dependencias"
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr "Dependencias de perfil"
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "Espacio imprimible"
|
||||
|
||||
@@ -9970,8 +9978,8 @@ msgstr ""
|
||||
"contener el nombre de host, la dirección IP o la URL de la instancia de la "
|
||||
"impresora. Se puede acceder a la impresora detrás de un proxy con la "
|
||||
"autenticación básica activada por un nombre de usuario y contraseña en la "
|
||||
"URL en el siguiente formato: https://"
|
||||
"nombredeusuario:contraseña@tudirecciondeoctopi/"
|
||||
"URL en el siguiente formato: https://nombredeusuario:"
|
||||
"contraseña@tudirecciondeoctopi/"
|
||||
|
||||
msgid "Device UI"
|
||||
msgstr "IU de dispositivo"
|
||||
@@ -10316,7 +10324,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -10328,6 +10336,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -10714,6 +10723,9 @@ msgstr ""
|
||||
"interior de los modelos. Auto significa que el ancho de lborde de adherencia "
|
||||
"es analizado y calculado automáticamente."
|
||||
|
||||
msgid "Painted"
|
||||
msgstr ""
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "Espaciado borde de adherencia-objeto"
|
||||
|
||||
@@ -10769,6 +10781,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
"Una expresión booleana utilizando valores de configuración de un perfil "
|
||||
"existente. Si esta expresión es verdadera, el perfil será considerado "
|
||||
"compatible con el perfil de impresión activo."
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Perfiles de proceso compatibles"
|
||||
@@ -10781,6 +10796,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
"Una expresión booleana que utiliza los valores de configuración de un perfil "
|
||||
"de impresión activo. Si esta expresión se evalúa como verdadera, este perfil "
|
||||
"se considera compatible con el perfil de impresión activo."
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr "Secuencia de impresión, capa a capa u objeto por objeto"
|
||||
@@ -12150,8 +12168,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² o %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Aceleración del relleno de baja densidad. Si el valor se expresa en "
|
||||
"porcentaje (por ejemplo 100%), se calculará basándose en la aceleración por "
|
||||
@@ -12261,16 +12279,16 @@ msgstr "Velocidad máxima del ventilador en la capa"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"La velocidad de ventilador se incrementará linealmente de cero desde la capa "
|
||||
"\"close_fan_the_first_x_layers\" al máximo en la capa "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" se ignorará si es menor "
|
||||
"que \"close_fan_the_first_x_layers\", en cuyo caso el ventilador funcionará "
|
||||
"al máximo permitido en la capa \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" al máximo en la capa \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" se ignorará si es menor que "
|
||||
"\"close_fan_the_first_x_layers\", en cuyo caso el ventilador funcionará al "
|
||||
"máximo permitido en la capa \"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
msgstr "Capa"
|
||||
@@ -12418,7 +12436,7 @@ msgstr ""
|
||||
"irregular y debería imprimirse más lentamente"
|
||||
|
||||
msgid "Precise Z height"
|
||||
msgstr "Altura Z Precisa (Experimental)"
|
||||
msgstr "Altura Z Precisa (beta)"
|
||||
|
||||
msgid ""
|
||||
"Enable this to get precise z height of object after slicing. It will get the "
|
||||
@@ -13544,8 +13562,8 @@ msgstr ""
|
||||
"rezumado durante desplazamientos largos. Ajustar a cero para desactivar la "
|
||||
"retracción"
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgstr "Retracción larga al cortar (experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr "Retracción larga al cortar (beta)"
|
||||
|
||||
msgid ""
|
||||
"Experimental feature.Retracting and cutting off the filament at a longer "
|
||||
@@ -13700,7 +13718,7 @@ msgstr ""
|
||||
"velocidad que la retracción"
|
||||
|
||||
msgid "Use firmware retraction"
|
||||
msgstr "Usar retracción de firmware (experimental)"
|
||||
msgstr "Usar retracción de firmware (beta)"
|
||||
|
||||
msgid ""
|
||||
"This experimental setting uses G10 and G11 commands to have the firmware "
|
||||
@@ -14117,6 +14135,21 @@ msgstr ""
|
||||
"espiral suave. Si se expresa en %, se calculará en base al diámetro de la "
|
||||
"boquilla"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -14691,8 +14724,8 @@ msgstr "Activar control de temperatura"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -15035,9 +15068,9 @@ msgid "Idle temperature"
|
||||
msgstr "Temperatura de Espera"
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
"Temperatura de la boquilla cuando el cabezal no se está utilizando en "
|
||||
"configuraciones multicabezal. Este parámetro sólo es utilizado cuando la "
|
||||
@@ -15116,8 +15149,8 @@ msgid ""
|
||||
"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the "
|
||||
"following format: \"XxY, XxY, ...\""
|
||||
msgstr ""
|
||||
"Los tamaños de las imágenes para almacenar en archivos .gcode "
|
||||
"y .sl1 / .sl1s, en el siguiente formato: \"XxY, XxY, ...\""
|
||||
"Los tamaños de las imágenes para almacenar en archivos .gcode y .sl1 / ."
|
||||
"sl1s, en el siguiente formato: \"XxY, XxY, ...\""
|
||||
|
||||
msgid "Format of G-code thumbnails"
|
||||
msgstr "Formato de las miniaturas de G-Code"
|
||||
@@ -15763,8 +15796,8 @@ msgstr "Soporte: propagando ramas en la capa %d"
|
||||
msgid ""
|
||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||
msgstr ""
|
||||
"Formato de archivo desconocido: el archivo de entrada debe tener "
|
||||
"extensión .stl, .obj o .amf (.xml)."
|
||||
"Formato de archivo desconocido: el archivo de entrada debe tener extensión ."
|
||||
"stl, .obj o .amf (.xml)."
|
||||
|
||||
msgid "Loading of a model file failed."
|
||||
msgstr "Error en la carga del fichero de modelo."
|
||||
@@ -15774,8 +15807,8 @@ msgstr "El archivo proporcionado no puede ser leído debido a que está vacío"
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Formato de archivo desconocido: el archivo de entrada debe tener extensión "
|
||||
".3mf o .zip.amf."
|
||||
"Formato de archivo desconocido: el archivo de entrada debe tener "
|
||||
"extensión .3mf o .zip.amf."
|
||||
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
@@ -16022,12 +16055,12 @@ msgstr ""
|
||||
"impresión de varios colores/materiales, la impresora utilizará el parámetro "
|
||||
"de compensación por defecto para el filamento durante cada cambio de "
|
||||
"filamento que tendrá un buen resultado en la mayoría de los casos.\n"
|
||||
"un solo color/material, con la opción \"calibración de la dinámica de "
|
||||
"flujo\" marcada en el menú de inicio de impresión, la impresora seguirá el "
|
||||
"camino antiguo, calibrar el filamento antes de la impresión; cuando se "
|
||||
"inicia una impresión de varios colores/materiales, la impresora utilizará el "
|
||||
"parámetro de compensación por defecto para el filamento durante cada cambio "
|
||||
"de filamento que tendrá un buen resultado en la mayoría de los casos.\n"
|
||||
"un solo color/material, con la opción \"calibración de la dinámica de flujo"
|
||||
"\" marcada en el menú de inicio de impresión, la impresora seguirá el camino "
|
||||
"antiguo, calibrar el filamento antes de la impresión; cuando se inicia una "
|
||||
"impresión de varios colores/materiales, la impresora utilizará el parámetro "
|
||||
"de compensación por defecto para el filamento durante cada cambio de "
|
||||
"filamento que tendrá un buen resultado en la mayoría de los casos.\n"
|
||||
"\n"
|
||||
"Tenga en cuenta que hay algunos casos que pueden hacer que los resultados de "
|
||||
"la calibración no sean fiables, como una adhesión insuficiente en la bandeja "
|
||||
@@ -16593,6 +16626,23 @@ msgstr "Cancelado"
|
||||
msgid "Error uploading to print host"
|
||||
msgstr "Error al subir al host de impresión"
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr "No es posible realizar la operación buleana en las partes selecionadas"
|
||||
|
||||
@@ -16782,8 +16832,8 @@ msgstr ""
|
||||
"¿Quieres reescribirlo?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Cambiaremos el nombre de los perfiles a \"Tipo Número de Serie @impresora "
|
||||
@@ -18314,8 +18364,8 @@ msgstr ""
|
||||
#~ "Can only be overridden by disable_fan_first_layers."
|
||||
#~ msgstr ""
|
||||
#~ "Esta velocidad de ventilador se fuerza cuando se imprimen todas las "
|
||||
#~ "interfaces de soporte, con el objetivo de debilitar la unión con la "
|
||||
#~ "pieza.Sólo puede ser anulado por disable_fan_first_layers."
|
||||
#~ "interfaces de soporte, con el objetivo de debilitar la unión con la pieza."
|
||||
#~ "Sólo puede ser anulado por disable_fan_first_layers."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "A lower value results in smoother extrusion rate transitions. However, "
|
||||
@@ -18814,14 +18864,14 @@ msgstr ""
|
||||
#~ "Cuando grabamos timelapse sin cabezal de impresión, es recomendable "
|
||||
#~ "añadir un \"Torre de Purga de Intervalo\" \n"
|
||||
#~ "presionando con el botón derecho la posición vacía de la bandeja de "
|
||||
#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de "
|
||||
#~ "Purga\"."
|
||||
#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de Purga"
|
||||
#~ "\"."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "To add preset for more printers, Please go to printer selection"
|
||||
#~ msgstr ""
|
||||
#~ "Cambiaríamos el nombre de los preajustes a \"Número de serie del Vendedor "
|
||||
@@ -19291,9 +19341,6 @@ msgstr ""
|
||||
#~ "se imprimen voladizos y cuando las velocidades de las características no "
|
||||
#~ "se especifican explícitamente."
|
||||
|
||||
#~ msgid "No sparse layers (EXPERIMENTAL)"
|
||||
#~ msgstr "Capas de baja densidad (EXPERIMENTAL)"
|
||||
|
||||
#~ msgid "The Config can not be loaded."
|
||||
#~ msgstr "La Configuración no será cargada."
|
||||
|
||||
@@ -19303,10 +19350,10 @@ msgstr ""
|
||||
#~ "geometría."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Relative extrusion is recommended when using \"label_objects\" "
|
||||
#~ "option.Some extruders work better with this option unchecked (absolute "
|
||||
#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is "
|
||||
#~ "always enabled on BambuLab printers. Default is checked"
|
||||
#~ "Relative extrusion is recommended when using \"label_objects\" option."
|
||||
#~ "Some extruders work better with this option unchecked (absolute extrusion "
|
||||
#~ "mode). Wipe tower is only compatible with relative mode. It is always "
|
||||
#~ "enabled on BambuLab printers. Default is checked"
|
||||
#~ msgstr ""
|
||||
#~ "Se recomienda la extrusión relativa cuando se utiliza la opción "
|
||||
#~ "\"label_objects\". Algunos extrusores funcionan mejor con esta opción "
|
||||
@@ -19763,11 +19810,11 @@ msgstr ""
|
||||
#~ msgstr "Nivel de depuración"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
#~ "5:trace\n"
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
#~ "trace\n"
|
||||
#~ msgstr ""
|
||||
#~ "Ajusta el nivel de registro de depuración. 0:fatal, 1:error, "
|
||||
#~ "2:advertencia, 3:información, 4:depuración, 5:rastreo\n"
|
||||
#~ "Ajusta el nivel de registro de depuración. 0:fatal, 1:error, 2:"
|
||||
#~ "advertencia, 3:información, 4:depuración, 5:rastreo\n"
|
||||
|
||||
#, boost-format
|
||||
#~ msgid "The selected preset: %1% is not found."
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Guislain Cyril, Thomas Lété\n"
|
||||
@@ -4523,7 +4523,7 @@ msgstr "Le volume:"
|
||||
msgid "Size:"
|
||||
msgstr "Taille:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4953,7 +4953,7 @@ msgstr "Montrer les &surplombs"
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "Afficher la surbrillance des surplombs d'un objet dans la scène 3D"
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr "Afficher le contour sélectionné (expérimental)"
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -6538,8 +6538,8 @@ msgstr "Importer la géométrie uniquement"
|
||||
msgid ""
|
||||
"This option can be changed later in preferences, under 'Load Behaviour'."
|
||||
msgstr ""
|
||||
"Cette option peut être modifiée ultérieurement dans les préférences, sous "
|
||||
"« Comportement du chargement »."
|
||||
"Cette option peut être modifiée ultérieurement dans les préférences, sous « "
|
||||
"Comportement du chargement »."
|
||||
|
||||
msgid "Only one G-code file can be opened at the same time."
|
||||
msgstr "Un seul fichier G-code peut être ouvert à la fois."
|
||||
@@ -7939,8 +7939,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé "
|
||||
"d’ajouter une \"Tour d’essuyage timelapse\".\n"
|
||||
@@ -8121,12 +8121,6 @@ msgstr "Scripts de post-traitement"
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr "Dépendances"
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr "Dépendances du profil"
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Fréquent"
|
||||
|
||||
@@ -8201,9 +8195,9 @@ msgid ""
|
||||
"Bed temperature when cool plate is installed. Value 0 means the filament "
|
||||
"does not support to print on the Cool Plate"
|
||||
msgstr ""
|
||||
"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool "
|
||||
"plate\") est installé. Une valeur à 0 signifie que ce filament ne peut pas "
|
||||
"être imprimé sur le plateau froid."
|
||||
"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool plate"
|
||||
"\") est installé. Une valeur à 0 signifie que ce filament ne peut pas être "
|
||||
"imprimé sur le plateau froid."
|
||||
|
||||
msgid "Textured Cool plate"
|
||||
msgstr "Plaque Cool plate texturée"
|
||||
@@ -8321,6 +8315,12 @@ msgstr ""
|
||||
"Paramètres de changement d'outil pour les imprimantes MM à extrudeurs "
|
||||
"multiples"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr "Dépendances"
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr "Dépendances du profil"
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "Espace imprimable"
|
||||
|
||||
@@ -10445,6 +10445,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr "Seuil d’activation du refroidissement en surplomb"
|
||||
|
||||
#, fuzzy, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -10463,6 +10464,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr "Direction du remplissage du pont extérieur"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -10878,6 +10880,9 @@ msgstr ""
|
||||
"des modèles. Auto signifie que la largeur de bordure est analysée et "
|
||||
"calculée automatiquement."
|
||||
|
||||
msgid "Painted"
|
||||
msgstr "Peint"
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "Écart bord-objet"
|
||||
|
||||
@@ -12509,10 +12514,10 @@ msgstr "Ventilateur à pleine vitesse à la couche"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à "
|
||||
"la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche "
|
||||
@@ -13852,7 +13857,7 @@ msgstr ""
|
||||
"le suintement pendant les longs trajets. Définir zéro pour désactiver la "
|
||||
"rétraction"
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr "Longue rétraction lors de la coupe (expérimental)"
|
||||
|
||||
msgid ""
|
||||
@@ -14431,6 +14436,30 @@ msgstr ""
|
||||
"spirale lisse. Si elle est exprimée en %, elle sera calculée par rapport au "
|
||||
"diamètre de la buse."
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
"Définit le rapport de débit de départ lors de la transition de la dernière "
|
||||
"couche inférieure à la spirale. Normalement, la transition en spirale fait "
|
||||
"passer le rapport de débit de 0% à 100% au cours de la première boucle, ce "
|
||||
"qui peut dans certains cas entraîner une sous-extrusion au début de la "
|
||||
"spirale."
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
"Définit le ratio de débit de finition lors de la fin de la spirale. "
|
||||
"Normalement, la transition de la spirale fait passer le taux de débit de "
|
||||
"100% à 0% au cours de la dernière boucle, ce qui peut dans certains cas "
|
||||
"entraîner une sous-extrusion à la fin de la spirale."
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -14577,8 +14606,8 @@ msgid ""
|
||||
"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
|
||||
"close all holes in the model."
|
||||
msgstr ""
|
||||
"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez "
|
||||
"« Fermer les trous » pour fermer tous les trous du modèle."
|
||||
"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « "
|
||||
"Fermer les trous » pour fermer tous les trous du modèle."
|
||||
|
||||
msgid "Regular"
|
||||
msgstr "Standard"
|
||||
@@ -15016,8 +15045,8 @@ msgstr "Activer le contrôle de la température"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -15460,8 +15489,8 @@ msgid ""
|
||||
"Wipe tower is only compatible with relative mode. It is recommended on most "
|
||||
"printers. Default is checked"
|
||||
msgstr ""
|
||||
"L’extrusion relative est recommandée lors de l’utilisation de l’option "
|
||||
"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
|
||||
"L’extrusion relative est recommandée lors de l’utilisation de l’option « "
|
||||
"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
|
||||
"non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est "
|
||||
"compatible qu’avec le mode relatif. Il est recommandé sur la plupart des "
|
||||
"imprimantes. L’option par défaut est cochée"
|
||||
@@ -16925,6 +16954,25 @@ msgstr "Annulation"
|
||||
msgid "Error uploading to print host"
|
||||
msgstr "Erreur lors de l’envoi vers l’hôte d’impression"
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
"Le type de plateau sélectionné ne correspond pas au fichier. Veuillez "
|
||||
"confirmer avant de lancer l’impression."
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr "Timelapse"
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr "Mise à niveau du plateau chauffant"
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr "Plateau texturé (côté A)"
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr "Plateau texturé (côté B)"
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr ""
|
||||
"Impossible d’effectuer une opération booléenne sur les pièces sélectionnées"
|
||||
@@ -17118,8 +17166,8 @@ msgstr ""
|
||||
"Voulez-vous le réécrire ?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Nous renommerions les préréglages en « Vendor Type Serial @printer you "
|
||||
@@ -18954,8 +19002,8 @@ msgstr ""
|
||||
#~ "modèle. Réglez le « seuil d’une paroi » dans les paramètres avancés ci-"
|
||||
#~ "dessous pour ajuster la sensibilité de ce qui est considéré comme une "
|
||||
#~ "surface supérieure. Le « seuil d’une paroi » n’est visible que si ce "
|
||||
#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option "
|
||||
#~ "« surfaces supérieures à une paroi » est activée."
|
||||
#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option « "
|
||||
#~ "surfaces supérieures à une paroi » est activée."
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid ""
|
||||
@@ -19842,8 +19890,8 @@ msgstr ""
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour "
|
||||
#~ "garantir l'épaisseur verticale de la coque (couches solides "
|
||||
#~ "supérieure+inférieure)."
|
||||
#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure"
|
||||
#~ "+inférieure)."
|
||||
|
||||
#~ msgid "Further reduce solid infill on walls (beta)"
|
||||
#~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)"
|
||||
@@ -19896,9 +19944,6 @@ msgstr ""
|
||||
#~ msgid "Enable Flow Compensation"
|
||||
#~ msgstr "Activer la compensation de débit"
|
||||
|
||||
#~ msgid "No sparse layers (EXPERIMENTAL)"
|
||||
#~ msgstr "Pas sur toutes les couches (EXPÉRIMENTAL)"
|
||||
|
||||
#~ msgid "Layer order"
|
||||
#~ msgstr "Ordre des couches"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -1276,7 +1276,7 @@ msgid "Esc"
|
||||
msgstr "Esc"
|
||||
|
||||
msgid "Cancel a feature until exit"
|
||||
msgstr ""
|
||||
msgstr "Cancel a feature until exit"
|
||||
|
||||
msgid "Measure"
|
||||
msgstr "Measure"
|
||||
@@ -1284,16 +1284,17 @@ msgstr "Measure"
|
||||
msgid ""
|
||||
"Please confirm explosion ratio = 1,and please select at least one object"
|
||||
msgstr ""
|
||||
"Please confirm explosion ratio = 1, and please select at least one object"
|
||||
|
||||
msgid "Please select at least one object."
|
||||
msgstr ""
|
||||
msgstr "Please select at least one object."
|
||||
|
||||
msgid "Edit to scale"
|
||||
msgstr "Edit to scale"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale all"
|
||||
msgstr ""
|
||||
msgstr "Scale all"
|
||||
|
||||
msgid "None"
|
||||
msgstr "Sehol"
|
||||
@@ -1308,40 +1309,46 @@ msgid "Selection"
|
||||
msgstr "Selection"
|
||||
|
||||
msgid " (Moving)"
|
||||
msgstr ""
|
||||
msgstr " (Moving)"
|
||||
|
||||
msgid ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
msgstr ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
|
||||
msgid ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
msgstr ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
|
||||
msgid "Face"
|
||||
msgstr ""
|
||||
msgstr "Face"
|
||||
|
||||
msgid " (Fixed)"
|
||||
msgstr ""
|
||||
msgstr " (Fixed)"
|
||||
|
||||
msgid "Point"
|
||||
msgstr ""
|
||||
msgstr "Point"
|
||||
|
||||
msgid ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
msgstr ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
|
||||
msgid "Warning:please select Plane's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Plane's feature."
|
||||
|
||||
msgid "Warning:please select Point's or Circle's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Point's or Circle's feature."
|
||||
|
||||
msgid "Warning:please select two different mesh."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select two different meshes."
|
||||
|
||||
msgid "Copy to clipboard"
|
||||
msgstr "Másolás a vágólapra"
|
||||
@@ -1359,25 +1366,25 @@ msgid "Distance XYZ"
|
||||
msgstr "Distance XYZ"
|
||||
|
||||
msgid "Parallel"
|
||||
msgstr ""
|
||||
msgstr "Parallel"
|
||||
|
||||
msgid "Center coincidence"
|
||||
msgstr ""
|
||||
msgstr "Center coincidence"
|
||||
|
||||
msgid "Featue 1"
|
||||
msgstr ""
|
||||
msgstr "Feature 1"
|
||||
|
||||
msgid "Reverse rotation"
|
||||
msgstr ""
|
||||
msgstr "Reverse rotation"
|
||||
|
||||
msgid "Rotate around center:"
|
||||
msgstr ""
|
||||
msgstr "Rotate around center:"
|
||||
|
||||
msgid "Parallel distance:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flip by Face 2"
|
||||
msgstr ""
|
||||
msgstr "Flip by Face 2"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
@@ -3616,9 +3623,9 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
"Current chamber temperature is higher than the material's safe temperature; "
|
||||
"this may result in material softening and nozzle clogs.The maximum safe "
|
||||
@@ -4397,7 +4404,7 @@ msgstr "Térfogat:"
|
||||
msgid "Size:"
|
||||
msgstr "Méret:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4822,7 +4829,7 @@ msgstr "Show &Overhang"
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "Show object overhang highlight in 3D scene"
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -5170,6 +5177,8 @@ msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
"Kérjük, ellenőrizd az SD-kártyát a nyomtatóban.\n"
|
||||
"Ha továbbra sem olvasható, próbáld meg formázni az SD-kártyát."
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgstr "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -7658,8 +7667,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Ha a nyomtatófej nélküli timelapse engedélyezve van, javasoljuk, hogy "
|
||||
"helyezz el a tálcán egy „Timelapse törlőtornyot“. Ehhez kattints jobb "
|
||||
@@ -7831,12 +7840,6 @@ msgstr "Post-processing Scripts"
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Gyakori"
|
||||
|
||||
@@ -8020,6 +8023,12 @@ msgstr "Tömörítési beállítások"
|
||||
msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "Nyomtatási terület"
|
||||
|
||||
@@ -9952,7 +9961,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -9964,6 +9973,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -10253,6 +10263,9 @@ msgstr ""
|
||||
"This controls the generation of the brim at outer and/or inner side of "
|
||||
"models. Auto means the brim width is analyzed and calculated automatically."
|
||||
|
||||
msgid "Painted"
|
||||
msgstr ""
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "Perem-tárgy közötti rés"
|
||||
|
||||
@@ -11422,8 +11435,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² or %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Gyorsulás a ritkás kitöltéseknél. Ha az érték százalékban van megadva (pl. "
|
||||
"100%), akkor az alapértelmezett gyorsulás alapján kerül kiszámításra."
|
||||
@@ -11523,10 +11536,10 @@ msgstr "Teljes ventilátor fordulatszám ennél a rétegnél"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
@@ -12634,8 +12647,8 @@ msgstr ""
|
||||
"hosszabb mozgás során történő szivárgást. A visszahúzás kikapcsolásához "
|
||||
"állítsd nullára"
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgstr "Long retraction when cut (experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr "Long retraction when cut (beta)"
|
||||
|
||||
msgid ""
|
||||
"Experimental feature.Retracting and cutting off the filament at a longer "
|
||||
@@ -13127,6 +13140,21 @@ msgstr ""
|
||||
"Maximum distance to move points in XY to try to achieve a smooth spiral. If "
|
||||
"expressed as a %, it will be computed over nozzle diameter"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -13656,8 +13684,8 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -13921,9 +13949,9 @@ msgid "Idle temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "X-Y hole compensation"
|
||||
@@ -15330,6 +15358,23 @@ msgstr "Megszakítás"
|
||||
msgid "Error uploading to print host"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr "Nem lehet logikai műveletet végrehajtani a kiválasztott tárgyakon"
|
||||
|
||||
@@ -15510,8 +15555,8 @@ msgstr ""
|
||||
"Szeretnéd felülírni?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
@@ -17495,11 +17540,11 @@ msgstr ""
|
||||
#~ msgstr "Hibakeresés szintje"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
#~ "5:trace\n"
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
#~ "trace\n"
|
||||
#~ msgstr ""
|
||||
#~ "A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, "
|
||||
#~ "3:info, 4:debug, 5:trace\n"
|
||||
#~ "A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, 3:"
|
||||
#~ "info, 4:debug, 5:trace\n"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "3D Scene Operations\n"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -1322,7 +1322,7 @@ msgid "Esc"
|
||||
msgstr "Esc"
|
||||
|
||||
msgid "Cancel a feature until exit"
|
||||
msgstr ""
|
||||
msgstr "Cancel a feature until exit"
|
||||
|
||||
msgid "Measure"
|
||||
msgstr "Misura"
|
||||
@@ -1330,16 +1330,17 @@ msgstr "Misura"
|
||||
msgid ""
|
||||
"Please confirm explosion ratio = 1,and please select at least one object"
|
||||
msgstr ""
|
||||
"Please confirm explosion ratio = 1, and please select at least one object"
|
||||
|
||||
msgid "Please select at least one object."
|
||||
msgstr ""
|
||||
msgstr "Please select at least one object."
|
||||
|
||||
msgid "Edit to scale"
|
||||
msgstr "Modifica in scala"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale all"
|
||||
msgstr ""
|
||||
msgstr "Scale all"
|
||||
|
||||
msgid "None"
|
||||
msgstr "Nessuno"
|
||||
@@ -1354,40 +1355,46 @@ msgid "Selection"
|
||||
msgstr "Selezione"
|
||||
|
||||
msgid " (Moving)"
|
||||
msgstr ""
|
||||
msgstr " (Moving)"
|
||||
|
||||
msgid ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
msgstr ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
|
||||
msgid ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
msgstr ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
|
||||
msgid "Face"
|
||||
msgstr ""
|
||||
msgstr "Face"
|
||||
|
||||
msgid " (Fixed)"
|
||||
msgstr ""
|
||||
msgstr " (Fixed)"
|
||||
|
||||
msgid "Point"
|
||||
msgstr ""
|
||||
msgstr "Point"
|
||||
|
||||
msgid ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
msgstr ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
|
||||
msgid "Warning:please select Plane's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Plane's feature."
|
||||
|
||||
msgid "Warning:please select Point's or Circle's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Point's or Circle's feature."
|
||||
|
||||
msgid "Warning:please select two different mesh."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select two different meshes."
|
||||
|
||||
msgid "Copy to clipboard"
|
||||
msgstr "Copia negli appunti"
|
||||
@@ -1405,25 +1412,25 @@ msgid "Distance XYZ"
|
||||
msgstr "Distanza XYZ"
|
||||
|
||||
msgid "Parallel"
|
||||
msgstr ""
|
||||
msgstr "Parallel"
|
||||
|
||||
msgid "Center coincidence"
|
||||
msgstr ""
|
||||
msgstr "Center coincidence"
|
||||
|
||||
msgid "Featue 1"
|
||||
msgstr ""
|
||||
msgstr "Feature 1"
|
||||
|
||||
msgid "Reverse rotation"
|
||||
msgstr ""
|
||||
msgstr "Reverse rotation"
|
||||
|
||||
msgid "Rotate around center:"
|
||||
msgstr ""
|
||||
msgstr "Rotate around center:"
|
||||
|
||||
msgid "Parallel distance:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flip by Face 2"
|
||||
msgstr ""
|
||||
msgstr "Flip by Face 2"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
@@ -3313,8 +3320,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Copia del G-code temporaneo nel G-code di output non riuscita. Potrebbe "
|
||||
"esserci un problema nel dispositivo di destinazione, prova una nuova "
|
||||
"esportazione con un dispositivo diverso. Il file G-code corrotto è su "
|
||||
"%1%.tmp."
|
||||
"esportazione con un dispositivo diverso. Il file G-code corrotto è su %1%."
|
||||
"tmp."
|
||||
|
||||
#, boost-format
|
||||
msgid ""
|
||||
@@ -3340,8 +3347,8 @@ msgid ""
|
||||
"be opened during copy check. The output G-code is at %1%.tmp."
|
||||
msgstr ""
|
||||
"Copia del G-code temporaneo completata ma non è stato possibile aprire il "
|
||||
"codice esportato durante il controllo copia. Il G-code di output è su "
|
||||
"%1%.tmp."
|
||||
"codice esportato durante il controllo copia. Il G-code di output è su %1%."
|
||||
"tmp."
|
||||
|
||||
#, boost-format
|
||||
msgid "G-code file exported to %1%"
|
||||
@@ -3703,9 +3710,9 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
"L'attuale temperatura della camera è superiore alla temperatura di sicurezza "
|
||||
"del materiale, può causare l'ammorbidimento e l'intasamento del materiale. "
|
||||
@@ -4496,7 +4503,7 @@ msgstr "Volume:"
|
||||
msgid "Size:"
|
||||
msgstr "Dimensione:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4923,7 +4930,7 @@ msgstr "Mostra sporgenze"
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "Mostra la sporgenza dell'oggetto evidenziata nella scena 3D"
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -5276,6 +5283,8 @@ msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
"Verifica se la microSD è inserita nella stampante.\n"
|
||||
"Se il problema di lettura persiste, prova a formattare la microSD."
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgstr "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -7809,8 +7818,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Quando si registra un timelapse senza testa di stampa, si consiglia di "
|
||||
"aggiungere un \"Timelapse Torre di pulizia\"\n"
|
||||
@@ -7821,70 +7830,78 @@ msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
"Verrà creata una copia del preset di sistema corrente, e verrà distaccata "
|
||||
"dal preset di sistema."
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
"Il preset personalizzato corrente sarà staccato dal preset del sistema padre."
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
msgstr "Verranno salvate le modifiche al profilo attuale."
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
"Questa azione non è reversibile.\n"
|
||||
"Vuoi procedere?"
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
msgstr "Preset distacco"
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
msgstr "Questo è un preset predefinito."
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
msgstr "Questo è un preset di sistema."
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
msgstr "Il preset attuale è stato ereditato dal preset predefinito."
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
msgstr "Il preset corrente è ereditato da"
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
msgstr "Non può essere eliminato o modificato."
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
"Qualunque modifica deve essere salvata come un nuovo preset ereditato da "
|
||||
"questo."
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
"Per favore specifica un nuovo nome per il preset per effettuare l'operazione."
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
msgstr "Informazioni aggiuntive:"
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
msgstr "produttore"
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
msgstr "modello stampante"
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
msgstr "profilo di stampa predefinito"
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
msgstr "profilo filamento predefinito"
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
msgstr "profilo materiale SLA predefinito"
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
msgstr "profilo di stampa SLA predefinito"
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
msgstr "nome completo profilo"
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
msgstr "nome simbolico profilo"
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Larghezza linea"
|
||||
@@ -7966,7 +7983,7 @@ msgid "Filament for Features"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ooze prevention"
|
||||
msgstr ""
|
||||
msgstr "Prevenzione delle fuoriuscite"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr "Skirt"
|
||||
@@ -7983,12 +8000,6 @@ msgstr "Script post-elaborazione"
|
||||
msgid "Notes"
|
||||
msgstr "Note"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Frequente"
|
||||
|
||||
@@ -8170,6 +8181,12 @@ msgstr "Impostazioni del ramming"
|
||||
msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr "Parametri di cambio strumento con stampanti MM multiestrusore"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr "Dipendenze"
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr "Dipendenze profilo"
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "Spazio di stampa"
|
||||
|
||||
@@ -8248,7 +8265,7 @@ msgid "Single extruder multi-material setup"
|
||||
msgstr "Configurazione multimateriale estrusore singolo"
|
||||
|
||||
msgid "Number of extruders of the printer."
|
||||
msgstr ""
|
||||
msgstr "Numero estrusori della stampante."
|
||||
|
||||
msgid ""
|
||||
"Single Extruder Multi Material is selected, \n"
|
||||
@@ -8256,6 +8273,10 @@ msgid ""
|
||||
"Do you want to change the diameter for all extruders to first extruder "
|
||||
"nozzle diameter value?"
|
||||
msgstr ""
|
||||
"Materiale multiplo a singolo estrusore selezionato,\n"
|
||||
"tutti gli estrusori devono avere lo stesso diametro.\n"
|
||||
"Vuoi modificare il diametro di tutti gli estrusori al valore del diametro "
|
||||
"dell'ugello del primo estrusore?"
|
||||
|
||||
msgid "Nozzle diameter"
|
||||
msgstr "Diametro Nozzle"
|
||||
@@ -9208,8 +9229,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"È stato rilevato un aggiornamento importante che deve essere eseguito prima "
|
||||
"che la stampa possa continuare. Si desidera aggiornare ora? È possibile "
|
||||
"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna "
|
||||
"firmware\"."
|
||||
"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna firmware"
|
||||
"\"."
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
@@ -9320,6 +9341,8 @@ msgid ""
|
||||
"Your print is very close to the priming regions. Make sure there is no "
|
||||
"collision."
|
||||
msgstr ""
|
||||
"La stampa è molto vicina alle aree di preparazione. Assicurati che non vi "
|
||||
"siano collisioni. "
|
||||
|
||||
msgid ""
|
||||
"Failed to generate gcode for invalid custom G-code.\n"
|
||||
@@ -10179,7 +10202,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -10191,6 +10214,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -10501,6 +10525,9 @@ msgstr ""
|
||||
"Auto significa che la larghezza del brim viene analizzata e calcolata "
|
||||
"automaticamente."
|
||||
|
||||
msgid "Painted"
|
||||
msgstr ""
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "Distanza Brim-Oggetto "
|
||||
|
||||
@@ -10556,6 +10583,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
"Un'espressione booleana che usa i valori di configurazione di un profilo "
|
||||
"stampante attivo. Se questa espressione produce un risultato vero, questo "
|
||||
"profilo si considera compatibile con il profilo stampante attivo."
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Profili di processo compatibili"
|
||||
@@ -10568,6 +10598,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
"Un'espressione booleana che usa i valori di configurazione di un profilo di "
|
||||
"stampa attivo. Se questa espressione produce un risultato vero, questo "
|
||||
"profilo si considera compatibile con il profilo stampante attivo."
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr ""
|
||||
@@ -11815,8 +11848,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s o %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Accelerazione del riempimento rado. Se il valore è espresso in percentuale "
|
||||
"(ad esempio 100%), verrà calcolato in base all'accelerazione predefinita."
|
||||
@@ -11927,17 +11960,16 @@ msgstr "Massima velocità della ventola al layer"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"La velocità della ventola aumenterà linearmente da zero al livello "
|
||||
"\"close_fan_the_first_x_layers\" al massimo al livello "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" verrà ignorato se "
|
||||
"inferiore a \"close_fan_the_first_x_layers\", nel qual caso la ventola "
|
||||
"funzionerà alla massima velocità consentita al livello "
|
||||
"\"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" al massimo al livello \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" verrà ignorato se inferiore a "
|
||||
"\"close_fan_the_first_x_layers\", nel qual caso la ventola funzionerà alla "
|
||||
"massima velocità consentita al livello \"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
msgstr ""
|
||||
@@ -13046,7 +13078,7 @@ msgstr ""
|
||||
"Slicer leggendo le variabili di ambiente."
|
||||
|
||||
msgid "Printer type"
|
||||
msgstr ""
|
||||
msgstr "Tipo stampante"
|
||||
|
||||
msgid "Type of the printer"
|
||||
msgstr ""
|
||||
@@ -13058,7 +13090,7 @@ msgid "You can put your notes regarding the printer here."
|
||||
msgstr "È possibile inserire qui le note riguardanti la stampante."
|
||||
|
||||
msgid "Printer variant"
|
||||
msgstr ""
|
||||
msgstr "Variante della stampante"
|
||||
|
||||
msgid "Raft contact Z distance"
|
||||
msgstr "Distanza di contatto Z Raft"
|
||||
@@ -13152,8 +13184,8 @@ msgstr ""
|
||||
"la trasudazione durante le lunghe distanze. Imposta su 0 per disattivare la "
|
||||
"retrazione."
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgstr "Long retraction when cut (experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr "Long retraction when cut (beta)"
|
||||
|
||||
msgid ""
|
||||
"Experimental feature.Retracting and cutting off the filament at a longer "
|
||||
@@ -13653,7 +13685,7 @@ msgstr ""
|
||||
"un riempimento solido interno."
|
||||
|
||||
msgid "Solid infill"
|
||||
msgstr ""
|
||||
msgstr "Riempimento solido"
|
||||
|
||||
msgid "Filament to print solid infill"
|
||||
msgstr ""
|
||||
@@ -13699,6 +13731,21 @@ msgstr ""
|
||||
"Distanza massima per spostare i punti in XY per cercare di ottenere una "
|
||||
"spirale uniformeSe espressa come %, verrà calcolata sul diametro del nozzle"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -14264,8 +14311,8 @@ msgstr "Attiva il controllo della temperatura"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -14556,9 +14603,9 @@ msgid "Idle temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "X-Y hole compensation"
|
||||
@@ -15277,8 +15324,8 @@ msgstr "Impossibile leggere il file fornito perché è vuoto."
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Formato file sconosciuto: il file di input deve avere estensione .3mf "
|
||||
"o .zip.amf."
|
||||
"Formato file sconosciuto: il file di input deve avere estensione .3mf o .zip."
|
||||
"amf."
|
||||
|
||||
msgid "Canceled"
|
||||
msgstr "Annullato"
|
||||
@@ -16071,6 +16118,23 @@ msgstr "Annullamento"
|
||||
msgid "Error uploading to print host"
|
||||
msgstr "Errore durante il caricamento dell'host di stampa"
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr "Impossibile eseguire un'operazione booleana sulle parti selezionate"
|
||||
|
||||
@@ -16258,8 +16322,8 @@ msgstr ""
|
||||
"Vuoi riscriverlo?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Rinomineremo le preimpostazioni come \"Tipo di fornitore seriale @printer "
|
||||
@@ -17949,10 +18013,9 @@ msgstr ""
|
||||
#~ "\n"
|
||||
#~ "\n"
|
||||
#~ "Per impostazione predefinita, i piccoli bridge interni vengono filtrati e "
|
||||
#~ "il riempimento solido interno viene stampato direttamente sul "
|
||||
#~ "riempimento.Questo metodo funziona bene nella maggior parte dei casi, "
|
||||
#~ "velocizzando la stampa senza compromettere troppo la qualità della "
|
||||
#~ "superficie superiore.\n"
|
||||
#~ "il riempimento solido interno viene stampato direttamente sul riempimento."
|
||||
#~ "Questo metodo funziona bene nella maggior parte dei casi, velocizzando la "
|
||||
#~ "stampa senza compromettere troppo la qualità della superficie superiore.\n"
|
||||
#~ "\n"
|
||||
#~ "Tuttavia, in modelli fortemente inclinati o curvi, soprattutto se si "
|
||||
#~ "utilizza una densità di riempimento troppo bassa, potrebbe comportare "
|
||||
@@ -18166,13 +18229,12 @@ msgstr ""
|
||||
#~ "nostro wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Di solito la calibrazione non è necessaria. Quando si avvia una stampa a "
|
||||
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del "
|
||||
#~ "flusso\" selezionata nel menu di avvio della stampa, la stampante seguirà "
|
||||
#~ "il vecchio modo, calibrando il filamento prima della stampa; Quando si "
|
||||
#~ "avvia una stampa multicolore/materiale, la stampante utilizzerà il "
|
||||
#~ "parametro di compensazione predefinito per il filamento durante ogni "
|
||||
#~ "cambio di filamento, che avrà un buon risultato nella maggior parte dei "
|
||||
#~ "casi.\n"
|
||||
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del flusso"
|
||||
#~ "\" selezionata nel menu di avvio della stampa, la stampante seguirà il "
|
||||
#~ "vecchio modo, calibrando il filamento prima della stampa; Quando si avvia "
|
||||
#~ "una stampa multicolore/materiale, la stampante utilizzerà il parametro di "
|
||||
#~ "compensazione predefinito per il filamento durante ogni cambio di "
|
||||
#~ "filamento, che avrà un buon risultato nella maggior parte dei casi.\n"
|
||||
#~ "\n"
|
||||
#~ "Si prega di notare che ci sono alcuni casi che renderanno il risultato "
|
||||
#~ "della calibrazione non affidabile: utilizzo di una piastra di texture per "
|
||||
@@ -18551,12 +18613,9 @@ msgstr ""
|
||||
#~ "sporgenze di stampa e quando le velocità delle caratteristiche non sono "
|
||||
#~ "specificate esplicitamente."
|
||||
|
||||
#~ msgid "No sparse layers (EXPERIMENTAL)"
|
||||
#~ msgstr "Nessun layer sparso (SPERIMENTALE)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "To add preset for more prinetrs, Please go to printer selection"
|
||||
#~ msgstr ""
|
||||
#~ "Rinomineremo le impostazioni predefinite come \"Tipo di fornitore seriale "
|
||||
@@ -18579,10 +18638,10 @@ msgstr ""
|
||||
#~ "RHEL 7 puoi trovare quelle istruzioni sul wiki."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Relative extrusion is recommended when using \"label_objects\" "
|
||||
#~ "option.Some extruders work better with this option unchecked (absolute "
|
||||
#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is "
|
||||
#~ "always enabled on BambuLab printers. Default is checked"
|
||||
#~ "Relative extrusion is recommended when using \"label_objects\" option."
|
||||
#~ "Some extruders work better with this option unchecked (absolute extrusion "
|
||||
#~ "mode). Wipe tower is only compatible with relative mode. It is always "
|
||||
#~ "enabled on BambuLab printers. Default is checked"
|
||||
#~ msgstr ""
|
||||
#~ "L'estrusione relativa è consigliata quando si utilizza l'opzione "
|
||||
#~ "\"label_objects\". Alcuni estrusori funzionano meglio con questa opzione "
|
||||
@@ -18994,11 +19053,11 @@ msgstr ""
|
||||
#~ msgstr "Livello di debug"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
#~ "5:trace\n"
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
#~ "trace\n"
|
||||
#~ msgstr ""
|
||||
#~ "Imposta livello di debug. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
#~ "5:trace\n"
|
||||
#~ "Imposta livello di debug. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
#~ "trace\n"
|
||||
|
||||
#, boost-format
|
||||
#~ msgid "The selected preset: %1% is not found."
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -1296,7 +1296,7 @@ msgid "Esc"
|
||||
msgstr "Esc"
|
||||
|
||||
msgid "Cancel a feature until exit"
|
||||
msgstr ""
|
||||
msgstr "Cancel a feature until exit"
|
||||
|
||||
msgid "Measure"
|
||||
msgstr "Measure"
|
||||
@@ -1304,16 +1304,17 @@ msgstr "Measure"
|
||||
msgid ""
|
||||
"Please confirm explosion ratio = 1,and please select at least one object"
|
||||
msgstr ""
|
||||
"Please confirm explosion ratio = 1, and please select at least one object"
|
||||
|
||||
msgid "Please select at least one object."
|
||||
msgstr ""
|
||||
msgstr "最低1つのオブジェクトを選択してください。"
|
||||
|
||||
msgid "Edit to scale"
|
||||
msgstr "Edit to scale"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale all"
|
||||
msgstr ""
|
||||
msgstr "全て拡縮"
|
||||
|
||||
msgid "None"
|
||||
msgstr "無し"
|
||||
@@ -1328,40 +1329,44 @@ msgid "Selection"
|
||||
msgstr "Selection"
|
||||
|
||||
msgid " (Moving)"
|
||||
msgstr ""
|
||||
msgstr " (移動中)"
|
||||
|
||||
msgid ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
msgstr ""
|
||||
msgstr "オブジェクト上の2面を選択し結合する。"
|
||||
|
||||
msgid ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
msgstr ""
|
||||
"オブジェクト上の2点または円を選択し、\n"
|
||||
"その間の距離を特定する。"
|
||||
|
||||
msgid "Face"
|
||||
msgstr ""
|
||||
msgstr "Face"
|
||||
|
||||
msgid " (Fixed)"
|
||||
msgstr ""
|
||||
msgstr "(固定)"
|
||||
|
||||
msgid "Point"
|
||||
msgstr ""
|
||||
msgstr "点"
|
||||
|
||||
msgid ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
msgstr ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
|
||||
msgid "Warning:please select Plane's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Plane's feature."
|
||||
|
||||
msgid "Warning:please select Point's or Circle's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Point's or Circle's feature."
|
||||
|
||||
msgid "Warning:please select two different mesh."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select two different meshes."
|
||||
|
||||
msgid "Copy to clipboard"
|
||||
msgstr "コピー"
|
||||
@@ -1379,25 +1384,25 @@ msgid "Distance XYZ"
|
||||
msgstr "Distance XYZ"
|
||||
|
||||
msgid "Parallel"
|
||||
msgstr ""
|
||||
msgstr "平行"
|
||||
|
||||
msgid "Center coincidence"
|
||||
msgstr ""
|
||||
msgstr "Center coincidence"
|
||||
|
||||
msgid "Featue 1"
|
||||
msgstr ""
|
||||
msgstr "フィーチャー1"
|
||||
|
||||
msgid "Reverse rotation"
|
||||
msgstr ""
|
||||
msgstr "回転方向を反転"
|
||||
|
||||
msgid "Rotate around center:"
|
||||
msgstr ""
|
||||
msgstr "中心付近で回転"
|
||||
|
||||
msgid "Parallel distance:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flip by Face 2"
|
||||
msgstr ""
|
||||
msgstr "Flip by Face 2"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
@@ -3574,9 +3579,9 @@ msgstr "値が小さすぎます、0.5に戻します"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
"Current chamber temperature is higher than the material's safe temperature; "
|
||||
"this may result in material softening and nozzle clogs.The maximum safe "
|
||||
@@ -4341,7 +4346,7 @@ msgstr "ボリューム"
|
||||
msgid "Size:"
|
||||
msgstr "サイズ:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4658,7 +4663,7 @@ msgid "Export current plate as G-code"
|
||||
msgstr "現在のプレートをG-codeでエクスポート"
|
||||
|
||||
msgid "Export Preset Bundle"
|
||||
msgstr ""
|
||||
msgstr "プリセットバンドルをエクスポート"
|
||||
|
||||
msgid "Export current configuration to files"
|
||||
msgstr "現在の構成をエクスポート"
|
||||
@@ -4762,7 +4767,7 @@ msgstr "Show &Overhang"
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "Show object overhang highlight in 3D scene"
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -5099,6 +5104,8 @@ msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
"Please check if the Micro SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the card."
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgstr "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -6369,7 +6376,7 @@ msgstr ""
|
||||
"モデルを変更すると、ペイントデータ(サポートや色など)がリセットされます"
|
||||
|
||||
msgid "Optimize Rotation"
|
||||
msgstr ""
|
||||
msgstr "回転の最適化"
|
||||
|
||||
msgid "Invalid number"
|
||||
msgstr "無効な数字"
|
||||
@@ -7247,7 +7254,7 @@ msgid "Bind with Pin Code"
|
||||
msgstr "Bind with Pin Code"
|
||||
|
||||
msgid "Bind with Access Code"
|
||||
msgstr ""
|
||||
msgstr "アクセスコードと紐付け"
|
||||
|
||||
msgid "Send to Printer SD card"
|
||||
msgstr "プリンターのSDカードに送信"
|
||||
@@ -7531,8 +7538,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」"
|
||||
"を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム"
|
||||
@@ -7542,70 +7549,75 @@ msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
"現在のシステムプリセットからコピーを作成し、システムプリセットから切り離しま"
|
||||
"す。"
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
msgstr "現在のカスタムプリセットは、親システムプリセットから切り離されます。"
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
msgstr "現在のプロファイルの編集が保存されます。"
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
"このアクションは元に戻せません。\n"
|
||||
"続行しますか?"
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
msgstr "プリセットを切り離す"
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
msgstr "これはデフォルトのプリセットです。"
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
msgstr "これはシステムプリセットです。"
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
msgstr "現在の設定はデフォルト設定から継承されます。"
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
msgstr "現在のプリセット継承元"
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
msgstr "削除もしくは変更ができません。"
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
"修正したら、これから継承された新しいプリセットとして保存する必要があります。"
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
msgstr "これを行うには、プリセットの新しい名前を指定してください。"
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
msgstr "追加情報:"
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
msgstr "メーカー"
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
msgstr "プリンターモデル"
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
msgstr "デフォルトプリントプロファイル"
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
msgstr "デフォルトフィラメントプロファイル"
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
msgstr "デフォルトのSLA材料プロファイル"
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
msgstr "デフォルトのSLAプリントプロファイル"
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
msgstr "完全なプロファイル名"
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
msgstr "シンボリック・プロファイル名"
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "押出線幅"
|
||||
@@ -7685,7 +7697,7 @@ msgid "Filament for Features"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ooze prevention"
|
||||
msgstr ""
|
||||
msgstr "垂れ出し抑止"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr "スカート"
|
||||
@@ -7702,12 +7714,6 @@ msgstr "Post-processing Scripts"
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "よく使う"
|
||||
|
||||
@@ -7879,6 +7885,12 @@ msgstr "ラミング設定"
|
||||
msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr "マルチエクストルーダーMMプリンターのツールチェンジパラメータ"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr "依存関係"
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr "プロファイルの依存関係"
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "造形可能領域"
|
||||
|
||||
@@ -7957,7 +7969,7 @@ msgid "Single extruder multi-material setup"
|
||||
msgstr ""
|
||||
|
||||
msgid "Number of extruders of the printer."
|
||||
msgstr ""
|
||||
msgstr "プリンターのエクストルーダー数。"
|
||||
|
||||
msgid ""
|
||||
"Single Extruder Multi Material is selected, \n"
|
||||
@@ -7965,6 +7977,9 @@ msgid ""
|
||||
"Do you want to change the diameter for all extruders to first extruder "
|
||||
"nozzle diameter value?"
|
||||
msgstr ""
|
||||
"1つのエクストルーダーのマルチマテリアルプリンターが選択されているため、すべて"
|
||||
"のエクストルーダーの直径が同じでなければなりません。最初のエクストルーダーの"
|
||||
"直径で、すべてのエクストルーダーノズルの直径を設定しますか?"
|
||||
|
||||
msgid "Nozzle diameter"
|
||||
msgstr "ノズル直径"
|
||||
@@ -8982,6 +8997,8 @@ msgid ""
|
||||
"Your print is very close to the priming regions. Make sure there is no "
|
||||
"collision."
|
||||
msgstr ""
|
||||
"プリントはプライミング領域に非常に近いです。 衝突がないことを確認してくださ"
|
||||
"い。"
|
||||
|
||||
msgid ""
|
||||
"Failed to generate gcode for invalid custom G-code.\n"
|
||||
@@ -9760,7 +9777,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -9772,6 +9789,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -10057,6 +10075,9 @@ msgstr ""
|
||||
"This controls the generation of the brim at outer and/or inner side of "
|
||||
"models. Auto means the brim width is analyzed and calculated automatically."
|
||||
|
||||
msgid "Painted"
|
||||
msgstr ""
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "ブリムとオブジェクトの間隔"
|
||||
|
||||
@@ -10105,6 +10126,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
"アクティブなプリンタープロファイルの構成値を使った論理式です。 この論理式が真"
|
||||
"の場合、このプロファイルはアクティブなプリンタープロファイルと互換性があると"
|
||||
"見なされます。"
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "互換性のあるプロセスプロファイル"
|
||||
@@ -10117,6 +10141,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
"アクティブなプリントプロファイルの構成値を使用する論理式。 この式の結果がtrue"
|
||||
"の場合、このプロファイルはアクティブなプリントプロファイルと互換性があるとみ"
|
||||
"なされます。"
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr "造形の順番を設定します、積層順かオブジェクト順にしてください"
|
||||
@@ -10847,6 +10874,11 @@ msgid ""
|
||||
"Be sure to allow enough space between objects, as this compensation is done "
|
||||
"after the checks."
|
||||
msgstr ""
|
||||
"フィラメントが冷却後に収縮する率を入力します(100mm→94mmならば94%)。この収縮"
|
||||
"により、パーツはxy方向でスケーリングされて補償されます。補償は、パーツの周囲"
|
||||
"部分に使用されるフィラメントのみが考慮されます。\n"
|
||||
"この補償はチェック後に行われます。オブジェクト間に十分なスペースを確保してく"
|
||||
"ださい。"
|
||||
|
||||
msgid "Shrinkage (Z)"
|
||||
msgstr ""
|
||||
@@ -11201,11 +11233,11 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² or %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
|
||||
msgid ""
|
||||
"Acceleration of internal solid infill. If the value is expressed as a "
|
||||
@@ -11298,10 +11330,10 @@ msgstr "最大回転速度の積層"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
@@ -11627,6 +11659,11 @@ msgid ""
|
||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
||||
"setup and Wipe into Object / Wipe into Infill."
|
||||
msgstr ""
|
||||
"このオプションを有効にすると、Gコードのプリント移動コマンドに、どのオブジェク"
|
||||
"トに属するものかがわかるようにラベルコメントが追加されます。これはOctoprintの"
|
||||
"CancelObjectプラグインに役立ちます。 この設定は、単一エクストルーダーのマルチ"
|
||||
"マテリアル構成およびオブジェクト内ワイプのノズルクリーニング機能と互換性があ"
|
||||
"りません。"
|
||||
|
||||
msgid "Exclude objects"
|
||||
msgstr "Exclude objects"
|
||||
@@ -12275,7 +12312,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer type"
|
||||
msgstr ""
|
||||
msgstr "プリンタータイプ"
|
||||
|
||||
msgid "Type of the printer"
|
||||
msgstr ""
|
||||
@@ -12287,7 +12324,7 @@ msgid "You can put your notes regarding the printer here."
|
||||
msgstr "You can put your notes regarding the printer here."
|
||||
|
||||
msgid "Printer variant"
|
||||
msgstr ""
|
||||
msgstr "プリンターバリエーション"
|
||||
|
||||
msgid "Raft contact Z distance"
|
||||
msgstr "ラフト接触面Z間隔"
|
||||
@@ -12375,8 +12412,8 @@ msgstr ""
|
||||
"ノズルが長い距離で移動する時に、リトラクションの量です。値が0の場合、リトラク"
|
||||
"ションが無効になります。"
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgstr "Long retraction when cut (experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr "Long retraction when cut (beta)"
|
||||
|
||||
msgid ""
|
||||
"Experimental feature.Retracting and cutting off the filament at a longer "
|
||||
@@ -12526,6 +12563,9 @@ msgid ""
|
||||
"This experimental setting uses G10 and G11 commands to have the firmware "
|
||||
"handle the retraction. This is only supported in recent Marlin."
|
||||
msgstr ""
|
||||
"この試用的な設定で、G10およびG11コマンドを使用して、ファームウェア吸込み(リト"
|
||||
"ラクション)を行うことができます。 これは最近のMarlinでのみサポートされていま"
|
||||
"す。"
|
||||
|
||||
msgid "Show auto-calibration marks"
|
||||
msgstr ""
|
||||
@@ -12815,7 +12855,7 @@ msgstr ""
|
||||
"す"
|
||||
|
||||
msgid "Solid infill"
|
||||
msgstr ""
|
||||
msgstr "ソリッドインフィル"
|
||||
|
||||
msgid "Filament to print solid infill"
|
||||
msgstr ""
|
||||
@@ -12856,6 +12896,21 @@ msgstr ""
|
||||
"Maximum distance to move points in XY to try to achieve a smooth spiral. If "
|
||||
"expressed as a %, it will be computed over nozzle diameter"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -13300,7 +13355,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "Auto brim width"
|
||||
msgstr ""
|
||||
msgstr "オートブリム幅"
|
||||
|
||||
msgid ""
|
||||
"Enabling this option means the width of the brim for tree support will be "
|
||||
@@ -13308,7 +13363,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "Tree support brim width"
|
||||
msgstr "Tree support brim width"
|
||||
msgstr "ツリーサポートブリム幅"
|
||||
|
||||
msgid "Distance from tree branch to the outermost brim line"
|
||||
msgstr ""
|
||||
@@ -13355,7 +13410,7 @@ msgstr ""
|
||||
"ます。"
|
||||
|
||||
msgid "Support wall loops"
|
||||
msgstr "Support wall loops"
|
||||
msgstr "サポートのウォール数"
|
||||
|
||||
msgid "This setting specify the count of walls around support"
|
||||
msgstr "This setting specify the count of walls around support"
|
||||
@@ -13374,8 +13429,8 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -13386,7 +13441,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "Chamber temperature"
|
||||
msgstr "Chamber temperature"
|
||||
msgstr "庫内温度"
|
||||
|
||||
msgid ""
|
||||
"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
|
||||
@@ -13634,9 +13689,9 @@ msgid "Idle temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "X-Y hole compensation"
|
||||
@@ -13697,6 +13752,8 @@ msgid ""
|
||||
"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the "
|
||||
"following format: \"XxY, XxY, ...\""
|
||||
msgstr ""
|
||||
"次の形式で.gcodeおよび.sl1 / .sl1sファイルに保存される画像サイズ:\"XxY, "
|
||||
"XxY, ...\""
|
||||
|
||||
msgid "Format of G-code thumbnails"
|
||||
msgstr "Gコードサムネイルのフォーマット"
|
||||
@@ -14524,6 +14581,23 @@ msgid ""
|
||||
"cause the result not exactly the same in each calibration. We are still "
|
||||
"investigating the root cause to do improvements with new updates."
|
||||
msgstr ""
|
||||
"フローダイナミクスキャリブレーションの詳細については、当社のWikiをご覧くださ"
|
||||
"い。\n"
|
||||
"通常、キャリブレーションは不要です。単一の色や材料で印刷を開始する際に、「フ"
|
||||
"ローダイナミクスキャリブレーション」オプションが印刷開始メニューでチェックさ"
|
||||
"れていると、プリンターは従来の方法に従い、印刷前にフィラメントをキャリブレー"
|
||||
"ションします。複数の色や材料で印刷を開始する場合、プリンターはフィラメントが"
|
||||
"切り替わるたびにデフォルトの補正パラメーターを使用し、ほとんどの場合良好な結"
|
||||
"果が得られます。\n"
|
||||
"\n"
|
||||
"注意点として、キャリブレーション結果が信頼できない原因となる場合がいくつかあ"
|
||||
"ります。例えば、ビルドプレートの接着が不十分な場合です。接着力を向上させるに"
|
||||
"は、ビルドプレートを洗浄したり、糊を塗布することが有効です。このトピックに関"
|
||||
"する詳細については、当社のWikiを参照してください。\n"
|
||||
"\n"
|
||||
"我々の検証によるとキャリブレーション結果には約10%のジッターがあり、各キャリ"
|
||||
"ブレーションで結果が完全に一致しない場合があります。現在、その根本原因を調査"
|
||||
"しており、新しいアップデートで改善を行う予定です。"
|
||||
|
||||
msgid "When to use Flow Rate Calibration"
|
||||
msgstr "When to use Flow Rate Calibration"
|
||||
@@ -14859,16 +14933,16 @@ msgstr ""
|
||||
"使用するIPアドレスを1つ選んでください。"
|
||||
|
||||
msgid "PA Calibration"
|
||||
msgstr "PA Calibration"
|
||||
msgstr "PAキャリブレーション"
|
||||
|
||||
msgid "DDE"
|
||||
msgstr ""
|
||||
msgstr "ダイレクトドライブ"
|
||||
|
||||
msgid "Bowden"
|
||||
msgstr "Bowden"
|
||||
msgstr "ボーデン"
|
||||
|
||||
msgid "Extruder type"
|
||||
msgstr ""
|
||||
msgstr "押出機タイプ"
|
||||
|
||||
msgid "PA Tower"
|
||||
msgstr "PA Tower"
|
||||
@@ -14880,10 +14954,10 @@ msgid "PA Pattern"
|
||||
msgstr "PA Pattern"
|
||||
|
||||
msgid "Start PA: "
|
||||
msgstr "Start PA:"
|
||||
msgstr "開始PA:"
|
||||
|
||||
msgid "End PA: "
|
||||
msgstr "End PA: "
|
||||
msgstr "終了PA: "
|
||||
|
||||
msgid "PA step: "
|
||||
msgstr "PA step:"
|
||||
@@ -15002,14 +15076,14 @@ msgid "Upload to storage"
|
||||
msgstr "ストレージへのアップロード"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
msgstr "アップロード後、デバイスタブに切り替える。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "Filename to upload doesn't end with \"%s\". Do you want to continue?"
|
||||
|
||||
msgid "Upload"
|
||||
msgstr "Upload"
|
||||
msgstr "アップロード"
|
||||
|
||||
msgid "Print host upload queue"
|
||||
msgstr "Print host upload queue"
|
||||
@@ -15021,14 +15095,14 @@ msgid "Progress"
|
||||
msgstr "Progress"
|
||||
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
msgstr "ホスト"
|
||||
|
||||
msgctxt "OfFile"
|
||||
msgid "Size"
|
||||
msgstr "Size of file"
|
||||
msgstr "ファイルサイズ"
|
||||
|
||||
msgid "Filename"
|
||||
msgstr "Filename"
|
||||
msgstr "ファイル名"
|
||||
|
||||
msgid "Cancel selected"
|
||||
msgstr "Cancel selected"
|
||||
@@ -15043,11 +15117,28 @@ msgid "Uploading"
|
||||
msgstr "アップロード中"
|
||||
|
||||
msgid "Cancelling"
|
||||
msgstr "Canceling"
|
||||
msgstr "キャンセル中"
|
||||
|
||||
msgid "Error uploading to print host"
|
||||
msgstr "プリントホストへのアップロードに失敗"
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr "Unable to perform boolean operation on selected parts"
|
||||
|
||||
@@ -15127,10 +15218,10 @@ msgid "Select filament preset"
|
||||
msgstr "Select filament preset"
|
||||
|
||||
msgid "Create Filament"
|
||||
msgstr "Create Filament"
|
||||
msgstr "フィラメントを作成"
|
||||
|
||||
msgid "Create Based on Current Filament"
|
||||
msgstr "Create Based on Current Filament"
|
||||
msgstr "現在のフィラメントを元に作成"
|
||||
|
||||
msgid "Copy Current Filament Preset "
|
||||
msgstr "Copy Current Filament Preset "
|
||||
@@ -15227,8 +15318,8 @@ msgstr ""
|
||||
"Do you want to rewrite it?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
@@ -15236,10 +15327,10 @@ msgid "Create Printer/Nozzle"
|
||||
msgstr "Create Printer/Nozzle"
|
||||
|
||||
msgid "Create Printer"
|
||||
msgstr "Create Printer"
|
||||
msgstr "プリンターを作成"
|
||||
|
||||
msgid "Create Nozzle for Existing Printer"
|
||||
msgstr "Create Nozzle for Existing Printer"
|
||||
msgstr "既存のプリンターに別サイズのノズル径を作成"
|
||||
|
||||
msgid "Create from Template"
|
||||
msgstr "Create from Template"
|
||||
@@ -15543,7 +15634,7 @@ msgid "Failed to create temporary folder, please try Export Configs again."
|
||||
msgstr "Failed to create temporary folder, please try Export Configs again."
|
||||
|
||||
msgid "Edit Filament"
|
||||
msgstr "Edit Filament"
|
||||
msgstr "フィラメントを編集"
|
||||
|
||||
msgid "Filament presets under this filament"
|
||||
msgstr "Filament presets under this filament"
|
||||
@@ -15575,7 +15666,7 @@ msgid "+ Add Preset"
|
||||
msgstr "+ Add Preset"
|
||||
|
||||
msgid "Delete Filament"
|
||||
msgstr "Delete Filament"
|
||||
msgstr "フィラメントを削除"
|
||||
|
||||
msgid ""
|
||||
"All the filament presets belong to this filament would be deleted. \n"
|
||||
@@ -15587,7 +15678,7 @@ msgstr ""
|
||||
"information for that slot."
|
||||
|
||||
msgid "Delete filament"
|
||||
msgstr "Delete filament"
|
||||
msgstr "フィラメントを削除"
|
||||
|
||||
msgid "Add Preset"
|
||||
msgstr "Add Preset"
|
||||
@@ -15605,7 +15696,7 @@ msgid "[Delete Required]"
|
||||
msgstr "[Delete Required]"
|
||||
|
||||
msgid "Edit Preset"
|
||||
msgstr "Edit Preset"
|
||||
msgstr "プリセットを編集"
|
||||
|
||||
msgid "For more information, please check out Wiki"
|
||||
msgstr "For more information, please check out our Wiki"
|
||||
@@ -15614,7 +15705,7 @@ msgid "Collapse"
|
||||
msgstr "Collapse"
|
||||
|
||||
msgid "Daily Tips"
|
||||
msgstr "Daily Tips"
|
||||
msgstr "今日のヒント"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "nozzle memorized: %.1f %s"
|
||||
@@ -15632,7 +15723,7 @@ msgid "*Printing %s material with %s may cause nozzle damage"
|
||||
msgstr "*Printing %s material with %s may cause nozzle damage"
|
||||
|
||||
msgid "Need select printer"
|
||||
msgstr "Need select printer"
|
||||
msgstr "プリンターを選ぶ必要があります"
|
||||
|
||||
msgid "The start, end or step is not valid value."
|
||||
msgstr "The start, end or step is not valid value."
|
||||
@@ -15654,13 +15745,13 @@ msgid "Test"
|
||||
msgstr "テスト"
|
||||
|
||||
msgid "Could not get a valid Printer Host reference"
|
||||
msgstr "Could not get a valid Printer Host reference"
|
||||
msgstr "有効なプリンタホスト参照を取得できませんでした"
|
||||
|
||||
msgid "Success!"
|
||||
msgstr "Success!"
|
||||
msgstr "成功!"
|
||||
|
||||
msgid "Are you sure to log out?"
|
||||
msgstr ""
|
||||
msgstr "本当にログアウトしますか?"
|
||||
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Refresh Printers"
|
||||
@@ -16058,9 +16149,9 @@ msgid ""
|
||||
"height, and results in very apparent layer lines and much lower printing "
|
||||
"quality, but shorter printing time in some printing cases."
|
||||
msgstr ""
|
||||
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
|
||||
"height. This results in very apparent layer lines and much lower print "
|
||||
"quality but shorter print time in some cases."
|
||||
"0.8mmノズルのデフォルト・プロファイルと比較すると、レイヤーの高さが大きくなっています。"
|
||||
"その結果、レイヤーラインが非常に目立ち、印刷品質が大幅に低下しますが、"
|
||||
"場合によっては印刷時間が短縮されます。"
|
||||
|
||||
msgid ""
|
||||
"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
|
||||
@@ -16156,18 +16247,25 @@ msgid ""
|
||||
"Did you know that calibrating your printer can do wonders? Check out our "
|
||||
"beloved calibration solution in OrcaSlicer."
|
||||
msgstr ""
|
||||
"キャリブレーション\n"
|
||||
"プリンターを校正することで、素晴らしい効果が得られることをご存知ですか?"
|
||||
"オルカスライサーの校正(キャリブレーション)ソリューションをご覧ください。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Auxiliary fan]
|
||||
msgid ""
|
||||
"Auxiliary fan\n"
|
||||
"Did you know that OrcaSlicer supports Auxiliary part cooling fan?"
|
||||
msgstr ""
|
||||
"補助部品冷却ファン\n"
|
||||
"OrcaSlicerが補助部品冷却ファンをサポートしていることをご存知ですか?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Air filtration]
|
||||
msgid ""
|
||||
"Air filtration/Exhaust Fan\n"
|
||||
"Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
|
||||
msgstr ""
|
||||
"空気ろ過/排気ファン\n"
|
||||
"OrcaSlicerが空気ろ過/排気ファンに対応していることをご存知ですか?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:G-code window]
|
||||
msgid ""
|
||||
@@ -16433,10 +16531,10 @@ msgid ""
|
||||
"extruder/hotend clogging when printing lower temperature filament with a "
|
||||
"higher enclosure temperature. More info about this in the Wiki."
|
||||
msgstr ""
|
||||
"When do you need to print with the printer door opened?\n"
|
||||
"Did you know that opening the printer door can reduce the probability of "
|
||||
"extruder/hotend clogging when printing lower temperature filament with a "
|
||||
"higher enclosure temperature? There is more info about this in the Wiki."
|
||||
"プリンターのドアを開けたまま印刷する必要があるのはどんなときですか?\n"
|
||||
"エンクロージャーの温度が高い状態で低温のフィラメントをプリントする場合、"
|
||||
"プリンターのドアを開けると、エクストルーダーやホットエンドが"
|
||||
"詰まる確率が下がることをご存知ですか?これについてはWikiに詳しい情報があります。"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Avoid warping]
|
||||
msgid ""
|
||||
@@ -16445,13 +16543,13 @@ msgid ""
|
||||
"ABS, appropriately increasing the heatbed temperature can reduce the "
|
||||
"probability of warping."
|
||||
msgstr ""
|
||||
"Avoid warping\n"
|
||||
"Did you know that when printing materials that are prone to warping such as "
|
||||
"ABS, appropriately increasing the heatbed temperature can reduce the "
|
||||
"probability of warping?"
|
||||
"反りを避ける\n"
|
||||
"ABSのような反りやすい素材を印刷する場合、"
|
||||
"ヒートベッドの温度を適切に上げることで、"
|
||||
"反りが発生する確率を下げることができることをご存知ですか?"
|
||||
|
||||
#~ msgid "Current Cabin humidity"
|
||||
#~ msgstr "Current Cabin humidity"
|
||||
#~ msgstr "現在の庫内湿度"
|
||||
|
||||
#~ msgid "Stopped."
|
||||
#~ msgstr "中止しました"
|
||||
@@ -16461,7 +16559,7 @@ msgstr ""
|
||||
#~ msgstr "接続に失敗しました (%d)"
|
||||
|
||||
#~ msgid "Initialize failed (Device connection not ready)!"
|
||||
#~ msgstr "Initialization failed (Device connection not ready)!"
|
||||
#~ msgstr "初期化に失敗しました(デバイス接続の準備ができていません)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Initialize failed (%s)!"
|
||||
@@ -16487,7 +16585,7 @@ msgstr ""
|
||||
#~ "pingを実行します。"
|
||||
|
||||
#~ msgid "IP and Access Code Verified! You may close the window"
|
||||
#~ msgstr "IP and Access Code Verified! You may close the window"
|
||||
#~ msgstr "IPとアクセスコードが確認されました!ウィンドウを閉じてください"
|
||||
|
||||
#~ msgid "Force cooling for overhang and bridge"
|
||||
#~ msgstr "オーバーハングとブリッジの冷却"
|
||||
@@ -16653,10 +16751,10 @@ msgstr ""
|
||||
#~ msgstr "ワイプタワーエクストルーダー"
|
||||
|
||||
#~ msgid "Please input a valid value (K in 0~0.3)"
|
||||
#~ msgstr "Please input a valid value (K in 0~0.3)"
|
||||
#~ msgstr "有効な値を入力してください (K in 0~0.3)"
|
||||
|
||||
#~ msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)"
|
||||
#~ msgstr "Please input a valid value (K in 0~0.3, N in 0.6~2.0)"
|
||||
#~ msgstr "有効な値を入力してください (K in 0~0.3, N in 0.6~2.0)"
|
||||
|
||||
#~ msgid "Printer local connection failed, please try again."
|
||||
#~ msgstr "Printer local connection failed; please try again."
|
||||
@@ -16840,7 +16938,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Load failed [%d]"
|
||||
#~ msgstr "Load failed [%d]"
|
||||
#~ msgstr "ロード失敗 [%d]"
|
||||
|
||||
#~ msgid "Failed to fetching model information from printer."
|
||||
#~ msgstr "Failed to fetch model information from printer."
|
||||
@@ -16914,7 +17012,7 @@ msgstr ""
|
||||
#~ "No one part is selected to keep after cut"
|
||||
|
||||
#~ msgid "Edit Text"
|
||||
#~ msgstr "Edit Text"
|
||||
#~ msgstr "テキストを編集"
|
||||
|
||||
#~ msgid "Error! Unable to create thread!"
|
||||
#~ msgstr "エラー:スレッドを作成できません"
|
||||
@@ -16926,25 +17024,25 @@ msgstr ""
|
||||
#~ msgstr "Choose SLA archive:"
|
||||
|
||||
#~ msgid "Import file"
|
||||
#~ msgstr "Import file"
|
||||
#~ msgstr "ファイルインポート"
|
||||
|
||||
#~ msgid "Import model and profile"
|
||||
#~ msgstr "Import model and profile"
|
||||
#~ msgstr "モデルとプロファイルを取り込む"
|
||||
|
||||
#~ msgid "Import profile only"
|
||||
#~ msgstr "Import profile only"
|
||||
#~ msgstr "プロファイルのみ取り込む"
|
||||
|
||||
#~ msgid "Import model only"
|
||||
#~ msgstr "Import model only"
|
||||
#~ msgstr "モデルのみ取り込む"
|
||||
|
||||
#~ msgid "Accurate"
|
||||
#~ msgstr "Accurate"
|
||||
#~ msgstr "緻密"
|
||||
|
||||
#~ msgid "Balanced"
|
||||
#~ msgstr "Balanced"
|
||||
#~ msgstr "バランス"
|
||||
|
||||
#~ msgid "Quick"
|
||||
#~ msgstr "Quick"
|
||||
#~ msgstr "高速"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Discribe how long the nozzle will move along the last path when retracting"
|
||||
@@ -16961,7 +17059,7 @@ msgstr ""
|
||||
#~ "右クリックし、メニューで選択できます。"
|
||||
|
||||
#~ msgid "Filling bed "
|
||||
#~ msgstr "Filling bed"
|
||||
#~ msgstr "ベッドをこのオブジェクトで満たす"
|
||||
|
||||
#, boost-format
|
||||
#~ msgid "%1% infill pattern doesn't support 100%% density."
|
||||
@@ -16993,7 +17091,7 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid " doesn't work at 100%% density "
|
||||
#~ msgstr " doesn't work at 100%% density "
|
||||
#~ msgstr "100%% の密度では使用できません"
|
||||
|
||||
#~ msgid "Ctrl + Shift + Enter"
|
||||
#~ msgstr "Ctrl + Shift + Enter"
|
||||
@@ -17154,7 +17252,7 @@ msgstr ""
|
||||
#~ msgstr "指定したファイルリストからフィラメント設定を読込む"
|
||||
|
||||
#~ msgid "Skip Objects"
|
||||
#~ msgstr "Skip Objects"
|
||||
#~ msgstr "オブジェクトスキップ"
|
||||
|
||||
#~ msgid "Skip some objects in this print"
|
||||
#~ msgstr "Skip some objects in this print"
|
||||
@@ -17169,8 +17267,8 @@ msgstr ""
|
||||
#~ msgstr "デバッグ レベル"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
#~ "5:trace\n"
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
#~ "trace\n"
|
||||
#~ msgstr ""
|
||||
#~ "デバッグロギングレベルを設定します。0:fatal、1:error、2:warning、3:info、"
|
||||
#~ "4:debug、5:trace。\n"
|
||||
@@ -17195,7 +17293,7 @@ msgstr ""
|
||||
#~ msgstr "Embedded"
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Online Models"
|
||||
#~ msgstr "オンラインモデル"
|
||||
|
||||
#~ msgid "Show online staff-picked models on the home page"
|
||||
#~ msgstr "Show online staff-picked models on the home page"
|
||||
@@ -17233,7 +17331,7 @@ msgstr ""
|
||||
#~ msgstr "底面との隙間があります、レイヤーを入れ替えました"
|
||||
|
||||
#~ msgid "The model has too many empty layers."
|
||||
#~ msgstr "このモデルには空層があります。"
|
||||
#~ msgstr "このモデルには空の層があります。"
|
||||
|
||||
#~ msgid "Cali"
|
||||
#~ msgstr "標定"
|
||||
@@ -17242,7 +17340,7 @@ msgstr ""
|
||||
#~ msgstr "押出のキャリブレーション"
|
||||
|
||||
#~ msgid "Push new filament into the extruder"
|
||||
#~ msgstr "Push new filament into the extruder"
|
||||
#~ msgstr "新しいフィラメントを押出機に挿入してください"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid ""
|
||||
@@ -17265,7 +17363,7 @@ msgstr ""
|
||||
#~ "ドアを開いて換気を良くするか、ベッド温度を下げてください。"
|
||||
|
||||
#~ msgid "Total Time Estimation"
|
||||
#~ msgstr "Total Time Estimation"
|
||||
#~ msgstr "予想合計時間"
|
||||
|
||||
#~ msgid "Resonance frequency identification"
|
||||
#~ msgstr "共振特性測定"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -1290,24 +1290,24 @@ msgid "Esc"
|
||||
msgstr "Esc"
|
||||
|
||||
msgid "Cancel a feature until exit"
|
||||
msgstr ""
|
||||
msgstr "Een functie annuleren tot afsluiten"
|
||||
|
||||
msgid "Measure"
|
||||
msgstr "Maatregel"
|
||||
|
||||
msgid ""
|
||||
"Please confirm explosion ratio = 1,and please select at least one object"
|
||||
msgstr ""
|
||||
msgstr "Bevestig explosieverhouding = 1 en selecteer ten minste één object"
|
||||
|
||||
msgid "Please select at least one object."
|
||||
msgstr ""
|
||||
msgstr "Selecteer ten minste één object."
|
||||
|
||||
msgid "Edit to scale"
|
||||
msgstr "Op schaal bewerken"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale all"
|
||||
msgstr ""
|
||||
msgstr "Alle schalen"
|
||||
|
||||
msgid "None"
|
||||
msgstr "Geen"
|
||||
@@ -1322,40 +1322,46 @@ msgid "Selection"
|
||||
msgstr "Selectie"
|
||||
|
||||
msgid " (Moving)"
|
||||
msgstr ""
|
||||
msgstr " (Bewegen)"
|
||||
|
||||
msgid ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
msgstr ""
|
||||
"Selecteer 2 vlakken op objecten en \n"
|
||||
" objecten samenvoegen."
|
||||
|
||||
msgid ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
msgstr ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
|
||||
msgid "Face"
|
||||
msgstr ""
|
||||
msgstr "Face"
|
||||
|
||||
msgid " (Fixed)"
|
||||
msgstr ""
|
||||
msgstr " (Fixed)"
|
||||
|
||||
msgid "Point"
|
||||
msgstr ""
|
||||
msgstr "Point"
|
||||
|
||||
msgid ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
msgstr ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
|
||||
msgid "Warning:please select Plane's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Plane's feature."
|
||||
|
||||
msgid "Warning:please select Point's or Circle's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Point's or Circle's feature."
|
||||
|
||||
msgid "Warning:please select two different mesh."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select two different meshes."
|
||||
|
||||
msgid "Copy to clipboard"
|
||||
msgstr "Kopieer naar klembord"
|
||||
@@ -1373,25 +1379,25 @@ msgid "Distance XYZ"
|
||||
msgstr "Distance XYZ"
|
||||
|
||||
msgid "Parallel"
|
||||
msgstr ""
|
||||
msgstr "Parallel"
|
||||
|
||||
msgid "Center coincidence"
|
||||
msgstr ""
|
||||
msgstr "Center coincidence"
|
||||
|
||||
msgid "Featue 1"
|
||||
msgstr ""
|
||||
msgstr "Feature 1"
|
||||
|
||||
msgid "Reverse rotation"
|
||||
msgstr ""
|
||||
msgstr "Reverse rotation"
|
||||
|
||||
msgid "Rotate around center:"
|
||||
msgstr ""
|
||||
msgstr "Rotate around center:"
|
||||
|
||||
msgid "Parallel distance:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flip by Face 2"
|
||||
msgstr ""
|
||||
msgstr "Flip by Face 2"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
@@ -3655,9 +3661,9 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
"De huidige kamertemperatuur is hoger dan de veilige temperatuur van het "
|
||||
"materiaal; dit kan leiden tot verzachting van het materiaal en verstoppingen "
|
||||
@@ -4437,7 +4443,7 @@ msgstr "Volume:"
|
||||
msgid "Size:"
|
||||
msgstr "Maat:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4862,7 +4868,7 @@ msgstr "Show &Overhang"
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "Show object overhang highlight in 3D scene"
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -5209,6 +5215,9 @@ msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
"Controleer of de Micro SD-kaart in de printer is geplaatst.\n"
|
||||
"Als de kaart nog steeds niet kan worden gelezen, kunt u proberen de kaart te "
|
||||
"formatteren."
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgstr "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -6522,7 +6531,7 @@ msgstr ""
|
||||
"Handmatig aangebrachte support en kleuren zijn verwijderd voor het repareren."
|
||||
|
||||
msgid "Optimize Rotation"
|
||||
msgstr ""
|
||||
msgstr "Optimaliseer rotatie"
|
||||
|
||||
msgid "Invalid number"
|
||||
msgstr "Ongeldig nummer"
|
||||
@@ -7768,8 +7777,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Bij het opnemen van timelapse zonder toolhead is het aan te raden om een "
|
||||
"„Timelapse Wipe Tower” toe te voegen \n"
|
||||
@@ -7780,70 +7789,76 @@ msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
"Een kopie van de huidige systeempreset wordt aangemaakt. Deze wordt "
|
||||
"ontkoppeld van het origineel."
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
msgstr "De huidige custom preset wordt ontkoppeld van de originele preset."
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
msgstr "Aanpassingen aan het huidige profiel worden opgeslagen."
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
"Deze actie is niet terug te draaien.\n"
|
||||
"Wilt u doorgaan?"
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
msgstr "Ontkoppel preset"
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
msgstr "Dit is een standaard preset."
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
msgstr "Dit is een systeempreset."
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
msgstr "Huidige preset is gebaseerd op de standaard preset."
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
msgstr "Huidige preset is afgeleid van"
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
msgstr "Kan niet verwijderd of aangepast worden."
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
"Eventuele wijzigingen moet worden opgeslagen als een nieuwe preset die is "
|
||||
"gebaseerd op de huidige."
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
msgstr "Geef daarvoor een nieuwe naam aan de preset."
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
msgstr "Overige informatie:"
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
msgstr "leverancier"
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
msgstr "printermodel"
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
msgstr "standaard printprofiel"
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
msgstr "standaard filamentprofiel"
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
msgstr "standaard SLA-materiaalprofiel"
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
msgstr "standaard SLA-printprofiel"
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
msgstr "volledige profielnaam"
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
msgstr "symbolische profielnaam"
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Lijn dikte"
|
||||
@@ -7925,7 +7940,7 @@ msgid "Filament for Features"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ooze prevention"
|
||||
msgstr ""
|
||||
msgstr "Druippreventie"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr "Skirt"
|
||||
@@ -7942,12 +7957,6 @@ msgstr "Post-processing Scripts"
|
||||
msgid "Notes"
|
||||
msgstr "Opmerkingen"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Veelgebruikt"
|
||||
|
||||
@@ -8131,6 +8140,12 @@ msgstr "Ramming-instellingen"
|
||||
msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr "Afhankelijkheden"
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr "Profielafhankelijkheden"
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "Ruimte waarbinnen geprint kan worden"
|
||||
|
||||
@@ -8209,7 +8224,7 @@ msgid "Single extruder multi-material setup"
|
||||
msgstr ""
|
||||
|
||||
msgid "Number of extruders of the printer."
|
||||
msgstr ""
|
||||
msgstr "Aantal extruders van de printer."
|
||||
|
||||
msgid ""
|
||||
"Single Extruder Multi Material is selected, \n"
|
||||
@@ -8217,6 +8232,10 @@ msgid ""
|
||||
"Do you want to change the diameter for all extruders to first extruder "
|
||||
"nozzle diameter value?"
|
||||
msgstr ""
|
||||
"Multi-material met één extruder is geselecteerd.\n"
|
||||
"Alle extruders moeten daarvoor dezelfde diameter hebben.\n"
|
||||
"Wilt u de diameters voor alle extruders aanpassen gelijk aan die van de "
|
||||
"eerste extruder?"
|
||||
|
||||
msgid "Nozzle diameter"
|
||||
msgstr "Mondstuk diameter"
|
||||
@@ -9268,6 +9287,8 @@ msgid ""
|
||||
"Your print is very close to the priming regions. Make sure there is no "
|
||||
"collision."
|
||||
msgstr ""
|
||||
"Uw print is dichtbij de afveeggebieden. Let op dat dit geen botsingen "
|
||||
"veroorzaakt."
|
||||
|
||||
msgid ""
|
||||
"Failed to generate gcode for invalid custom G-code.\n"
|
||||
@@ -10089,7 +10110,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -10101,6 +10122,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -10389,6 +10411,9 @@ msgstr ""
|
||||
"This controls the generation of the brim at outer and/or inner side of "
|
||||
"models. Auto means the brim width is analyzed and calculated automatically."
|
||||
|
||||
msgid "Painted"
|
||||
msgstr ""
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "Ruimte tussen rand en object"
|
||||
|
||||
@@ -10437,6 +10462,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
"Een waar/niet waar aanduiding die gebruik maakt van configuratiewaarden van "
|
||||
"een actief printerprofiel. Als deze aanduiding op waar staat, wordt dit "
|
||||
"profiel beschouwd als geschikt voor het actieve printerprofiel."
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Geschikte proces profielen"
|
||||
@@ -10449,6 +10477,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
"Een waar/niet waar aanduiding die gebruik maakt van configuratiewaarden van "
|
||||
"een actief printprofiel. Als deze aanduiding op waar staat, wordt dit "
|
||||
"profiel beschouwd als geschikt voor het actieve printprofiel."
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr ""
|
||||
@@ -11567,8 +11598,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² or %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Versnelling van de schaarse invulling. Als de waarde wordt uitgedrukt als "
|
||||
"een percentage (bijvoorbeeld 100%), wordt deze berekend op basis van de "
|
||||
@@ -11672,10 +11703,10 @@ msgstr "Volledige snelheid op laag"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
@@ -12014,6 +12045,10 @@ msgid ""
|
||||
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
|
||||
"setup and Wipe into Object / Wipe into Infill."
|
||||
msgstr ""
|
||||
"Schakel dit in om opmerkingen in de G-code toe te voegen voor bewegingen die "
|
||||
"behoren tot een object. Dit is handig voor de OctoPrint CancelObject-plugin. "
|
||||
"Deze instelling is NIET geschikt voor een multi-materialsetup met één "
|
||||
"extruder en 'Afvegen in object' en 'Afvegen in vulling'."
|
||||
|
||||
msgid "Exclude objects"
|
||||
msgstr "Objecten uitsluiten"
|
||||
@@ -12687,7 +12722,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer type"
|
||||
msgstr ""
|
||||
msgstr "Printertype"
|
||||
|
||||
msgid "Type of the printer"
|
||||
msgstr ""
|
||||
@@ -12699,7 +12734,7 @@ msgid "You can put your notes regarding the printer here."
|
||||
msgstr "You can put your notes regarding the printer here."
|
||||
|
||||
msgid "Printer variant"
|
||||
msgstr ""
|
||||
msgstr "Printervariant"
|
||||
|
||||
msgid "Raft contact Z distance"
|
||||
msgstr "Vlot (raft) contact Z afstand:"
|
||||
@@ -12795,8 +12830,8 @@ msgstr ""
|
||||
"tijdens verplaatsingen over lange afstand te voorkomen. Stel in op 0 om "
|
||||
"terugtrekken (retraction) uit te schakelen."
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgstr "Long retraction when cut (experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr "Long retraction when cut (beta)"
|
||||
|
||||
msgid ""
|
||||
"Experimental feature.Retracting and cutting off the filament at a longer "
|
||||
@@ -12949,6 +12984,9 @@ msgid ""
|
||||
"This experimental setting uses G10 and G11 commands to have the firmware "
|
||||
"handle the retraction. This is only supported in recent Marlin."
|
||||
msgstr ""
|
||||
"Deze experimentele instelling gebruikt G10 en G11 commando's voor het "
|
||||
"retracten in de firmware. Dit wordt alleen ondersteunt bij de recente Marlin-"
|
||||
"variant."
|
||||
|
||||
msgid "Show auto-calibration marks"
|
||||
msgstr ""
|
||||
@@ -13240,7 +13278,7 @@ msgstr ""
|
||||
"vervangen door solide interne vulling (infill)."
|
||||
|
||||
msgid "Solid infill"
|
||||
msgstr ""
|
||||
msgstr "Dichte vulling"
|
||||
|
||||
msgid "Filament to print solid infill"
|
||||
msgstr ""
|
||||
@@ -13285,6 +13323,21 @@ msgstr ""
|
||||
"spiraal te bereiken. Als het wordt uitgedrukt als een %, wordt het berekend "
|
||||
"over de diameter van het mondstuk"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -13817,8 +13870,8 @@ msgstr "Temperatuurregeling activeren"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -14023,13 +14076,17 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "Purging volumes - load/unload volumes"
|
||||
msgstr ""
|
||||
msgstr "Afveegvolume - laad/ontlaad volumes"
|
||||
|
||||
msgid ""
|
||||
"This vector saves required volumes to change from/to each tool used on the "
|
||||
"wipe tower. These values are used to simplify creation of the full purging "
|
||||
"volumes below."
|
||||
msgstr ""
|
||||
"Deze vector bespaart de benodigde volumes om van/naar elke extruder dat op "
|
||||
"het afveegblok wordt gebruikt te wisselen. Deze waarden worden gebruikt om "
|
||||
"het creëren van de onderstaande volledige reinigingsvolumes te "
|
||||
"vereenvoudigen."
|
||||
|
||||
msgid ""
|
||||
"Purging after filament change will be done inside objects' infills. This may "
|
||||
@@ -14088,9 +14145,9 @@ msgid "Idle temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "X-Y hole compensation"
|
||||
@@ -14155,6 +14212,8 @@ msgid ""
|
||||
"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the "
|
||||
"following format: \"XxY, XxY, ...\""
|
||||
msgstr ""
|
||||
"Afbeeldingsgrootte wordt opgeslagen in de .gcode en .sl1 / .sl1s bestanden "
|
||||
"in het formaat: \"XxY, XxY, ...\""
|
||||
|
||||
msgid "Format of G-code thumbnails"
|
||||
msgstr "Bestandstype van G-code-voorbeelden"
|
||||
@@ -14175,11 +14234,10 @@ msgid ""
|
||||
"Wipe tower is only compatible with relative mode. It is recommended on most "
|
||||
"printers. Default is checked"
|
||||
msgstr ""
|
||||
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie "
|
||||
"\"label_objects\". Sommige extruders werken beter als deze optie niet is "
|
||||
"aangevinkt (absolute extrusiemodus). Wipe tower is alleen compatibel met "
|
||||
"relatieve modus. Het wordt aanbevolen op de meeste printers. Standaard is "
|
||||
"aangevinkt"
|
||||
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie \"label_objects"
|
||||
"\". Sommige extruders werken beter als deze optie niet is aangevinkt "
|
||||
"(absolute extrusiemodus). Wipe tower is alleen compatibel met relatieve "
|
||||
"modus. Het wordt aanbevolen op de meeste printers. Standaard is aangevinkt"
|
||||
|
||||
msgid ""
|
||||
"Classic wall generator produces walls with constant extrusion width and for "
|
||||
@@ -15519,6 +15577,23 @@ msgstr "Annuleren"
|
||||
msgid "Error uploading to print host"
|
||||
msgstr "Fout bij uploaden naar printhost"
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr "Kan geen booleaanse bewerking uitvoeren op geselecteerde onderdelen"
|
||||
|
||||
@@ -15701,8 +15776,8 @@ msgstr ""
|
||||
"Wil je het herschrijven?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
@@ -17790,11 +17865,11 @@ msgstr ""
|
||||
#~ msgstr "Debuggen level"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
#~ "5:trace\n"
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
#~ "trace\n"
|
||||
#~ msgstr ""
|
||||
#~ "Sets debug logging level. 0:fataal, 1:error, 2:waarschuwing, 3:info, "
|
||||
#~ "4:debug, 5:trace\n"
|
||||
#~ "Sets debug logging level. 0:fataal, 1:error, 2:waarschuwing, 3:info, 4:"
|
||||
#~ "debug, 5:trace\n"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "3D Scene Operations\n"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer 2.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Krzysztof Morga <tlumaczeniebs@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -1310,7 +1310,7 @@ msgid "Esc"
|
||||
msgstr "Esc"
|
||||
|
||||
msgid "Cancel a feature until exit"
|
||||
msgstr ""
|
||||
msgstr "Anuluj funkcję przed wyjściem"
|
||||
|
||||
msgid "Measure"
|
||||
msgstr "Zmierz"
|
||||
@@ -1318,16 +1318,18 @@ msgstr "Zmierz"
|
||||
msgid ""
|
||||
"Please confirm explosion ratio = 1,and please select at least one object"
|
||||
msgstr ""
|
||||
"Proszę potwierdzić współczynnik eksplozji = 1 i wybrać przynajmniej jeden "
|
||||
"obiekt"
|
||||
|
||||
msgid "Please select at least one object."
|
||||
msgstr ""
|
||||
msgstr "Proszę wybrać przynajmniej jeden obiekt."
|
||||
|
||||
msgid "Edit to scale"
|
||||
msgstr "Edytuj do skali"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale all"
|
||||
msgstr ""
|
||||
msgstr "Skaluj wszystko"
|
||||
|
||||
msgid "None"
|
||||
msgstr "Brak"
|
||||
@@ -1342,40 +1344,46 @@ msgid "Selection"
|
||||
msgstr "Wybór"
|
||||
|
||||
msgid " (Moving)"
|
||||
msgstr ""
|
||||
msgstr " (Przesuwanie)"
|
||||
|
||||
msgid ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
msgstr ""
|
||||
"Wybierz 2 powierzchnie na obiektach \n"
|
||||
"i połącz je razem."
|
||||
|
||||
msgid ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
msgstr ""
|
||||
"Wybierz 2 punkty lub koła na obiektach \n"
|
||||
"i określ odległość między nimi."
|
||||
|
||||
msgid "Face"
|
||||
msgstr ""
|
||||
msgstr "Powierzchnia"
|
||||
|
||||
msgid " (Fixed)"
|
||||
msgstr ""
|
||||
msgstr " (Stały)"
|
||||
|
||||
msgid "Point"
|
||||
msgstr ""
|
||||
msgstr "Punkt"
|
||||
|
||||
msgid ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
msgstr ""
|
||||
"Funkcja 1 została zresetowana,\n"
|
||||
"funkcja 2 została funkcją 1"
|
||||
|
||||
msgid "Warning:please select Plane's feature."
|
||||
msgstr ""
|
||||
msgstr "Uwaga: proszę wybrać funkcję płaszczyzny."
|
||||
|
||||
msgid "Warning:please select Point's or Circle's feature."
|
||||
msgstr ""
|
||||
msgstr "Uwaga: wybierz funkcję Punkt lub Okrąg."
|
||||
|
||||
msgid "Warning:please select two different mesh."
|
||||
msgstr ""
|
||||
msgstr "Uwaga: proszę wybrać dwie różne siatki."
|
||||
|
||||
msgid "Copy to clipboard"
|
||||
msgstr "Kopiuj do schowka"
|
||||
@@ -1393,25 +1401,25 @@ msgid "Distance XYZ"
|
||||
msgstr "Odległość XYZ"
|
||||
|
||||
msgid "Parallel"
|
||||
msgstr ""
|
||||
msgstr "Równolegle"
|
||||
|
||||
msgid "Center coincidence"
|
||||
msgstr ""
|
||||
msgstr "Koincydencja centralna"
|
||||
|
||||
msgid "Featue 1"
|
||||
msgstr ""
|
||||
msgstr "Funkcja 1"
|
||||
|
||||
msgid "Reverse rotation"
|
||||
msgstr ""
|
||||
msgstr "Rotacja wsteczna"
|
||||
|
||||
msgid "Rotate around center:"
|
||||
msgstr ""
|
||||
msgstr "Obrót względem środka:"
|
||||
|
||||
msgid "Parallel distance:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flip by Face 2"
|
||||
msgstr ""
|
||||
msgstr "Obróć względem 2 powierzchni"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
@@ -2562,8 +2570,8 @@ msgid ""
|
||||
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
|
||||
"load or unload filaments."
|
||||
msgstr ""
|
||||
"Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub "
|
||||
"\"Rozładuj\" ,aby automatycznie załadować lub wyładować filamenty."
|
||||
"Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub \"Rozładuj"
|
||||
"\" ,aby automatycznie załadować lub wyładować filamenty."
|
||||
|
||||
msgid "Edit"
|
||||
msgstr "Edytuj"
|
||||
@@ -3686,9 +3694,9 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
"Obecna temperatura komory jest wyższa niż bezpieczna temperatura dla "
|
||||
"filamentu, co może prowadzić do jego mięknięcia i zatykania. Maksymalna "
|
||||
@@ -4477,7 +4485,7 @@ msgstr "Objętość:"
|
||||
msgid "Size:"
|
||||
msgstr "Rozmiar:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4904,7 +4912,7 @@ msgstr "Pokaż &nawisy"
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "Pokaż podświetlenie nawisów obiektów w scenie 3D"
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr "Wyświetl zaznaczony kontur (eksperymentalne)"
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -5269,6 +5277,8 @@ msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
"Sprawdź, czy karta SD jest włożona do drukarki.\n"
|
||||
"Jeśli dalej jest problem z odczytem, spróbuj sformatować kartę SD."
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgstr "Połączenie LAN nieudane (Nie udało się wyświetlić zawartości karty SD)"
|
||||
@@ -7807,8 +7817,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Podczas nagrywania timelapse'a bez głowicy drukującej zaleca się dodanie "
|
||||
"\"Timelaps - Wieża Czyszcząca\" \n"
|
||||
@@ -7819,70 +7829,78 @@ msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
"Zostanie utworzona kopia obecnego zestawu ustawień i odłączona od ustawień "
|
||||
"systemowych."
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
"Obecny niestandardowy zestaw ustawień zostanie odłączony od dziedziczącego "
|
||||
"zestawu systemowego."
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
msgstr "Modyfikacje zostaną zapisane na obecnym profilu."
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
"Tej akcji nie można cofnąć.\n"
|
||||
"Czy chcesz kontynuować?"
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
msgstr "Odłącz zestaw ustawień"
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
msgstr "To jest domyślny zestaw ustawień."
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
msgstr "To jest systemowy zestaw ustawień."
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
msgstr "Obecny zestaw ustawień jest dziedziczony z zestawu domyślnego."
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
msgstr "Obecny zestaw ustawień jest dziedziczony z"
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
msgstr "Nie można usunąć ani zmodyfikować."
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
"Każda modyfikacja powinna zostać zapisana jako nowy zestaw ustawień "
|
||||
"dziedziczony z obecnego."
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
msgstr "Aby to zrobić, ustaw nową nazwę zestawu ustawień."
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
msgstr "Dodatkowe informacje:"
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
msgstr "dostawca"
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
msgstr "model drukarki"
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
msgstr "domyślny profil druku"
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
msgstr "domyślny profil filamentu"
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
msgstr "domyślny profil materiału SLA"
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
msgstr "domyślny profil druku SLA"
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
msgstr "pełna nazwa profilu"
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
msgstr "skrócona nazwa profilu"
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Szerokość linii"
|
||||
@@ -7980,12 +7998,6 @@ msgstr "Skrypty post-processingu"
|
||||
msgid "Notes"
|
||||
msgstr "Notatki"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Cz.używ."
|
||||
|
||||
@@ -8172,6 +8184,12 @@ msgstr "Ustawienia wyciskania"
|
||||
msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr "Parametry zmiany narzędzia w drukarkach wieloekstruzyjnych MM"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr "Zależności"
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr "Zależności profilowe"
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "Przestrzeń do druku"
|
||||
|
||||
@@ -9887,8 +9905,8 @@ msgstr ""
|
||||
"Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno "
|
||||
"zawierać nazwę hosta, adres IP lub URL hosta drukarki. Host drukowania za "
|
||||
"HAProxy z włączoną autoryzacją podstawową można uzyskać, wpisując nazwę "
|
||||
"użytkownika i hasło w URL w następującym formacie: https://"
|
||||
"username:password@your-octopi-address/"
|
||||
"użytkownika i hasło w URL w następującym formacie: https://username:"
|
||||
"password@your-octopi-address/"
|
||||
|
||||
msgid "Device UI"
|
||||
msgstr "UI urządzenia"
|
||||
@@ -9973,10 +9991,10 @@ msgid ""
|
||||
msgstr ""
|
||||
"Unikaj ruchów nad obrysami-\n"
|
||||
"Maksymalna długość objazdu przy unikaniu przejeżdżania nad obrysami. Jeśli "
|
||||
"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad "
|
||||
"obrysami\" zostanie zignorowana dla tej ścieżki. Długość objazdu można "
|
||||
"zdefiniować jako wartość absolutna lub obliczona procentowo (np. 50%) z "
|
||||
"długości ruchu bezpośredniego."
|
||||
"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad obrysami"
|
||||
"\" zostanie zignorowana dla tej ścieżki. Długość objazdu można zdefiniować "
|
||||
"jako wartość absolutna lub obliczona procentowo (np. 50%) z długości ruchu "
|
||||
"bezpośredniego."
|
||||
|
||||
msgid "mm or %"
|
||||
msgstr "mm lub %"
|
||||
@@ -10225,7 +10243,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -10237,6 +10255,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -10620,6 +10639,9 @@ msgstr ""
|
||||
"modeli. Auto oznacza, że szerokość Brimu jest analizowana i obliczana "
|
||||
"automatycznie."
|
||||
|
||||
msgid "Painted"
|
||||
msgstr ""
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "Odstęp Brimu od obiektu"
|
||||
|
||||
@@ -10675,6 +10697,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
"Wyrażenie logiczne (Boole'owskie) używające wartości konfiguracji aktywnego "
|
||||
"profilu drukarki. Jeśli to wyrażenie jest prawdziwe to znaczy, że aktywny "
|
||||
"profil jest kompatybilny z drukarką."
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Kompatybilne profile procesów"
|
||||
@@ -10687,6 +10712,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
"Wyrażenie logiczne (Boole'owskie) używające wartości konfiguracji aktywnego "
|
||||
"profilu druku. Jeśli to wyrażenie jest prawdziwe to znaczy, że aktywny "
|
||||
"profil jest kompatybilny z aktywnym profilem druku."
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr "Sekwencja druku, warstwa po warstwie lub obiekt po obiekcie"
|
||||
@@ -12029,8 +12057,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² lub %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w "
|
||||
"procentach (np. 100%), będzie obliczana na podstawie domyślnego "
|
||||
@@ -12142,10 +12170,10 @@ msgstr "Pełna prędkość wentylatora na warstwie"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie "
|
||||
"\"close_fan_the_first_x_layers\" do maksymalnej na warstwie "
|
||||
@@ -13416,7 +13444,7 @@ msgstr ""
|
||||
"Pewna ilość materiału w ekstruderze jest cofana, aby zapobiec wyciekowi "
|
||||
"filamentu podczas długiego ruchu. Ustaw zero, aby zablokować retrakcje"
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr "Długość retrakcji przed odcięciem filamentu (eksperymentalna)"
|
||||
|
||||
msgid ""
|
||||
@@ -13989,6 +14017,21 @@ msgstr ""
|
||||
"spróbować uzyskać gładką spiralę. Jeśli wyrażone jako %, będzie obliczane "
|
||||
"względem średnicy dyszy."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -14123,10 +14166,10 @@ msgid ""
|
||||
"triangle mesh slicing. The gap closing operation may reduce the final print "
|
||||
"resolution, therefore it is advisable to keep the value reasonably low."
|
||||
msgstr ""
|
||||
"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania "
|
||||
"szpar\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może "
|
||||
"zmniejszyć finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej "
|
||||
"wartości na rozsądnie niskim poziomie."
|
||||
"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania szpar"
|
||||
"\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może zmniejszyć "
|
||||
"finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej wartości na "
|
||||
"rozsądnie niskim poziomie."
|
||||
|
||||
msgid "Slicing Mode"
|
||||
msgstr "Tryb cięcia"
|
||||
@@ -14556,8 +14599,8 @@ msgstr "Aktywuj kontrolę temperatury"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -14815,9 +14858,9 @@ msgid ""
|
||||
"The extruder to use when printing perimeter of the wipe tower. Set to 0 to "
|
||||
"use the one that is available (non-soluble would be preferred)."
|
||||
msgstr ""
|
||||
"Extruder używany do drukowania obrysów wieży czyszczącej. Ustaw na "
|
||||
"\"Domyślny\", aby użyć tego, który jest dostępny (preferowany jest ten, w "
|
||||
"którym załadowany jest filament nierozpuszczalny)."
|
||||
"Extruder używany do drukowania obrysów wieży czyszczącej. Ustaw na \"Domyślny"
|
||||
"\", aby użyć tego, który jest dostępny (preferowany jest ten, w którym "
|
||||
"załadowany jest filament nierozpuszczalny)."
|
||||
|
||||
msgid "Purging volumes - load/unload volumes"
|
||||
msgstr "Objętości czyszczenia - objętości ładowania/rozładowania"
|
||||
@@ -14890,9 +14933,9 @@ msgid "Idle temperature"
|
||||
msgstr "Temperatura w bezczynności"
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
"Temperatura dyszy, gdy narzędzie nie jest aktualnie używane w konfiguracjach "
|
||||
"wielonarzędziowych. Jest to używane tylko wtedy, gdy \"Zapobieganie "
|
||||
@@ -15609,8 +15652,8 @@ msgstr "Podpory: rozprzestrzeniaj gałęzie na warstwie %d"
|
||||
msgid ""
|
||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||
msgstr ""
|
||||
"Nieznany format pliku. Plik wejściowy musi mieć "
|
||||
"rozszerzenie .stl, .obj, .amf(.xml)."
|
||||
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .stl, .obj, ."
|
||||
"amf(.xml)."
|
||||
|
||||
msgid "Loading of a model file failed."
|
||||
msgstr "Ładowanie pliku modelu nie powiodło się."
|
||||
@@ -15620,8 +15663,8 @@ msgstr "Dostarczony plik nie mógł być odczytany, ponieważ jest pusty"
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf "
|
||||
"lub .zip.amf."
|
||||
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf lub .zip."
|
||||
"amf."
|
||||
|
||||
msgid "Canceled"
|
||||
msgstr "Anulowano"
|
||||
@@ -16420,6 +16463,23 @@ msgstr "Anulowanie"
|
||||
msgid "Error uploading to print host"
|
||||
msgstr "Błąd podczas ładowania do hosta drukarki"
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr "Nie można przeprowadzić operacji boolowskich na siatkach modelu"
|
||||
|
||||
@@ -16604,8 +16664,8 @@ msgstr ""
|
||||
"Czy chcesz go zastąpić?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Nazwa profilu zostanie zmieniona na \"Dostawca Typ Seria @nazwa drukarki, "
|
||||
@@ -18324,8 +18384,8 @@ msgstr ""
|
||||
#~ "(działają one jak rodzaj bariery).\n"
|
||||
#~ "\n"
|
||||
#~ "Nie spowoduje to również zmiany ustawień wentylatora w początkowym G-"
|
||||
#~ "code, jeśli aktywowana jest opcja \"tylko niestandardowy początkowy G-"
|
||||
#~ "code\".\n"
|
||||
#~ "code, jeśli aktywowana jest opcja \"tylko niestandardowy początkowy G-code"
|
||||
#~ "\".\n"
|
||||
#~ "\n"
|
||||
#~ "Ustaw 0, aby wyłączyć tę funkcję."
|
||||
|
||||
@@ -18440,8 +18500,8 @@ msgstr ""
|
||||
#~ "\n"
|
||||
#~ "Jednakże w mocno pochylonych lub zakrzywionych modelach, zwłaszcza przy "
|
||||
#~ "niskiej gęstości struktury wypełnienia, może to prowadzić do wywijania "
|
||||
#~ "się niewspieranej struktury wypełnienia, co powoduje efekt "
|
||||
#~ "\"pillowing\".\n"
|
||||
#~ "się niewspieranej struktury wypełnienia, co powoduje efekt \"pillowing"
|
||||
#~ "\".\n"
|
||||
#~ "\n"
|
||||
#~ "Włączenie tej opcji spowoduje drukowanie wewnętrznej warstwy mostka nad "
|
||||
#~ "nieco niewspieraną wewnętrzną strukturą wypełnienia. Poniższe opcje "
|
||||
@@ -19808,8 +19868,8 @@ msgstr ""
|
||||
#~ "Elevation is too low for object. Use the \"Pad around object\" feature to "
|
||||
#~ "print the object without elevation."
|
||||
#~ msgstr ""
|
||||
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół "
|
||||
#~ "modelu\", aby wydrukować model bez podniesienia."
|
||||
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół modelu"
|
||||
#~ "\", aby wydrukować model bez podniesienia."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The endings of the support pillars will be deployed on the gap between "
|
||||
@@ -20448,10 +20508,10 @@ msgstr ""
|
||||
#~ msgstr "Pliki certyfikatów (.crt, .pem)|.crt;.pem|Wszystkie pliki|."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Relative extrusion is recommended when using \"label_objects\" "
|
||||
#~ "option.Some extruders work better with this option unchecked (absolute "
|
||||
#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is "
|
||||
#~ "always enabled on BambuLab printers. Default is checked"
|
||||
#~ "Relative extrusion is recommended when using \"label_objects\" option."
|
||||
#~ "Some extruders work better with this option unchecked (absolute extrusion "
|
||||
#~ "mode). Wipe tower is only compatible with relative mode. It is always "
|
||||
#~ "enabled on BambuLab printers. Default is checked"
|
||||
#~ msgstr ""
|
||||
#~ "Przy użyciu opcji \"label_objects\" zaleca się ekstruzję względną. "
|
||||
#~ "Niektóre ekstrudery działają lepiej, gdy ta opcja jest odznaczona (tryb "
|
||||
@@ -20767,11 +20827,11 @@ msgstr ""
|
||||
#~ msgstr "Poziom debugowania"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
#~ "5:trace\n"
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
#~ "trace\n"
|
||||
#~ msgstr ""
|
||||
#~ "Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, "
|
||||
#~ "3:info, 4:debug, 5:trace\n"
|
||||
#~ "Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:"
|
||||
#~ "info, 4:debug, 5:trace\n"
|
||||
|
||||
#~ msgid "The selected preset: %1% is not found."
|
||||
#~ msgstr "Wybrana przędło: %1% nie została znaleziona."
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer V2.2.0 Official Release\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"PO-Revision-Date: 2024-09-25 22:36+0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Andylg <andylg@yandex.ru>\n"
|
||||
@@ -15,8 +15,8 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
msgid "Supports Painting"
|
||||
@@ -416,7 +416,8 @@ msgstr "Удалить соединение из выбранного"
|
||||
msgid "Select all connectors"
|
||||
msgstr "Выбрать все соединения"
|
||||
|
||||
# Разный перевод одного слова -Одно название действия Разрезать в другой в Правке -> Вырезать
|
||||
# Разный перевод одного слова -Одно название действия Разрезать в другой в
|
||||
# Правке -> Вырезать
|
||||
msgid "Cut"
|
||||
msgstr "Разрезать"
|
||||
|
||||
@@ -1320,7 +1321,7 @@ msgid "Esc"
|
||||
msgstr "Esc"
|
||||
|
||||
msgid "Cancel a feature until exit"
|
||||
msgstr ""
|
||||
msgstr "Отмените функцию до выхода"
|
||||
|
||||
msgid "Measure"
|
||||
msgstr "Измерения"
|
||||
@@ -1328,16 +1329,17 @@ msgstr "Измерения"
|
||||
msgid ""
|
||||
"Please confirm explosion ratio = 1,and please select at least one object"
|
||||
msgstr ""
|
||||
"Убедитесь, что коэффициент разброса равен 1 и выбрана хотя бы одна модель."
|
||||
|
||||
msgid "Please select at least one object."
|
||||
msgstr ""
|
||||
msgstr "Пожалуйста, выберите хотя бы один объект."
|
||||
|
||||
msgid "Edit to scale"
|
||||
msgstr "Редактировать масштаб"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale all"
|
||||
msgstr ""
|
||||
msgstr "Масштабировать все"
|
||||
|
||||
msgid "None"
|
||||
msgstr "Нет"
|
||||
@@ -1352,40 +1354,46 @@ msgid "Selection"
|
||||
msgstr "Выделение"
|
||||
|
||||
msgid " (Moving)"
|
||||
msgstr ""
|
||||
msgstr " (подвижная)"
|
||||
|
||||
msgid ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
msgstr ""
|
||||
"Выберите на модели 2 грани \n"
|
||||
" и соедините модели вместе."
|
||||
|
||||
msgid ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
msgstr ""
|
||||
"Выберите 2 точки или окружности на моделях \n"
|
||||
" и укажите расстояние между ними."
|
||||
|
||||
msgid "Face"
|
||||
msgstr ""
|
||||
msgstr "Грань"
|
||||
|
||||
msgid " (Fixed)"
|
||||
msgstr ""
|
||||
msgstr " (не подвижная)"
|
||||
|
||||
msgid "Point"
|
||||
msgstr ""
|
||||
msgstr "Точка"
|
||||
|
||||
msgid ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
msgstr ""
|
||||
"Выбор элемента 1 отменён,\n"
|
||||
"элемент 2 стал элементом 1."
|
||||
|
||||
msgid "Warning:please select Plane's feature."
|
||||
msgstr ""
|
||||
msgstr "Предупреждение: выберите плоскость."
|
||||
|
||||
msgid "Warning:please select Point's or Circle's feature."
|
||||
msgstr ""
|
||||
msgstr "Предупреждение: выберите точку или окружность."
|
||||
|
||||
msgid "Warning:please select two different mesh."
|
||||
msgstr ""
|
||||
msgstr "Предупреждение: выберите две разные сетки."
|
||||
|
||||
msgid "Copy to clipboard"
|
||||
msgstr "Скопировать в буфер обмена"
|
||||
@@ -1403,25 +1411,25 @@ msgid "Distance XYZ"
|
||||
msgstr "Расстояние XYZ"
|
||||
|
||||
msgid "Parallel"
|
||||
msgstr ""
|
||||
msgstr "Параллельно"
|
||||
|
||||
msgid "Center coincidence"
|
||||
msgstr ""
|
||||
msgstr "Совпадение центров"
|
||||
|
||||
msgid "Featue 1"
|
||||
msgstr ""
|
||||
msgstr "Элемент 1"
|
||||
|
||||
msgid "Reverse rotation"
|
||||
msgstr ""
|
||||
msgstr "Обратное вращение"
|
||||
|
||||
msgid "Rotate around center:"
|
||||
msgstr ""
|
||||
msgstr "Вращение вокруг центра:"
|
||||
|
||||
msgid "Parallel distance:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flip by Face 2"
|
||||
msgstr ""
|
||||
msgstr "Перевернуть грань 2"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
@@ -3060,7 +3068,7 @@ msgid "Print with the filament mounted on the back of chassis"
|
||||
msgstr "Печать материалом, установленным на задней части корпуса."
|
||||
|
||||
msgid "Current AMS humidity"
|
||||
msgstr ""
|
||||
msgstr "Текущая влажность внутри АСПП"
|
||||
|
||||
msgid ""
|
||||
"Please change the desiccant when it is too wet. The indicator may not "
|
||||
@@ -3144,7 +3152,8 @@ msgstr "ВЛАЖНЫЙ"
|
||||
msgid "AMS Settings"
|
||||
msgstr "Настройки АСПП"
|
||||
|
||||
# ??? Обновление при вставке материала, Обновлять данные о материале при вставке
|
||||
# ??? Обновление при вставке материала, Обновлять данные о материале при
|
||||
# вставке
|
||||
msgid "Insertion update"
|
||||
msgstr "Обновлять данные при вставке материала"
|
||||
|
||||
@@ -3170,7 +3179,8 @@ msgstr ""
|
||||
"информацию о ней, оставляя поле пустым, чтобы пользователь мог ввести данные "
|
||||
"о ней вручную."
|
||||
|
||||
# ??? Обновление при включении принтера, Обновлять данные о материале при включении принтера
|
||||
# ??? Обновление при включении принтера, Обновлять данные о материале при
|
||||
# включении принтера
|
||||
msgid "Power on update"
|
||||
msgstr "Обновлять данные при включении принтера"
|
||||
|
||||
@@ -3720,9 +3730,9 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
"Текущая температура внутри термокамеры превышает безопасную температуру для "
|
||||
"этого материала, что может привести к размягчению материала или засорению "
|
||||
@@ -4530,7 +4540,7 @@ msgstr "Объём:"
|
||||
msgid "Size:"
|
||||
msgstr "Размер:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4965,7 +4975,7 @@ msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "Подсвечивать нависания у модели в окне подготовки"
|
||||
|
||||
# ??? Показать контур выбранного
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr "Показать контур выбранной модели"
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -5183,7 +5193,8 @@ msgstr ""
|
||||
"попытку."
|
||||
|
||||
# ??? Видеотрансляция, Трансляция с видеокамеры
|
||||
# ??? Прямая трансляция для локальной сети отключена. Пожалуйста, включите её с экрана принтера.
|
||||
# ??? Прямая трансляция для локальной сети отключена. Пожалуйста, включите её
|
||||
# с экрана принтера.
|
||||
msgid ""
|
||||
"LAN Only Liveview is off. Please turn on the liveview on printer screen."
|
||||
msgstr ""
|
||||
@@ -5201,7 +5212,8 @@ msgstr ""
|
||||
"Не удалось установить соединение. Пожалуйста, проверьте сеть и повторите "
|
||||
"попытку"
|
||||
|
||||
# ??? Проверить влезает ли теперь. Или ещё короче - Проверьте сеть и повторите попытку. Если не помогло, перезагрузите или обновите принтер.
|
||||
# ??? Проверить влезает ли теперь. Или ещё короче - Проверьте сеть и повторите
|
||||
# попытку. Если не помогло, перезагрузите или обновите принтер.
|
||||
msgid ""
|
||||
"Please check the network and try again, You can restart or update the "
|
||||
"printer if the issue persists."
|
||||
@@ -5214,9 +5226,10 @@ msgid "The printer has been logged out and cannot connect."
|
||||
msgstr "Принтер вышел из системы и не может подключиться."
|
||||
|
||||
msgid "Video Stopped."
|
||||
msgstr ""
|
||||
msgstr "Трансляция с камеры остановлена."
|
||||
|
||||
# ??? Сбой подключения к локальной сети (не удалось запустить просмотр в реальном времени
|
||||
# ??? Сбой подключения к локальной сети (не удалось запустить просмотр в
|
||||
# реальном времени
|
||||
msgid "LAN Connection Failed (Failed to start liveview)"
|
||||
msgstr ""
|
||||
"Сбой подключения к локальной сети (не удалось запустить видеотрансляцию)"
|
||||
@@ -5327,6 +5340,8 @@ msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
"Проверьте, вставлена ли SD-карта в принтер.\n"
|
||||
"Если она по-прежнему не читается, попробуйте отформатировать SD-карту."
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgstr "Сбой подключения к локальной сети (не удалось просмотреть sd-карту)"
|
||||
@@ -5784,23 +5799,26 @@ msgid "Not for now"
|
||||
msgstr "Не сейчас"
|
||||
|
||||
msgid "Server Exception"
|
||||
msgstr ""
|
||||
msgstr "Ошибка сервера"
|
||||
|
||||
msgid ""
|
||||
"The server is unable to respond. Please click the link below to check the "
|
||||
"server status."
|
||||
msgstr ""
|
||||
"Сервер не отвечает. Нажмите на ссылку ниже, чтобы проверить статус сервера."
|
||||
|
||||
msgid ""
|
||||
"If the server is in a fault state, you can temporarily use offline printing "
|
||||
"or local network printing."
|
||||
msgstr ""
|
||||
"Если отсутствует связь с сервером, то вы можете временно \n"
|
||||
"использовать автономную печать или печать по локальной сети."
|
||||
|
||||
msgid "How to use LAN only mode"
|
||||
msgstr ""
|
||||
msgstr "Как использовать режим «Только LAN»"
|
||||
|
||||
msgid "Don't show this dialog again"
|
||||
msgstr ""
|
||||
msgstr "Больше не показывать"
|
||||
|
||||
msgid "3D Mouse disconnected."
|
||||
msgstr "3D-мышь отключена."
|
||||
@@ -7187,7 +7205,8 @@ msgstr "Создать принтер"
|
||||
msgid "The selected preset is null!"
|
||||
msgstr "Выбранный профиль пуст!"
|
||||
|
||||
# ?????? В двух местах - в одном месте кнопка в другом Конечный слой. В V2.2.0beta2 пока не исправлено
|
||||
# ?????? В двух местах - в одном месте кнопка в другом Конечный слой. В
|
||||
# V2.2.0beta2 пока не исправлено
|
||||
msgid "End"
|
||||
msgstr "End"
|
||||
|
||||
@@ -7596,7 +7615,7 @@ msgid "Bind with Pin Code"
|
||||
msgstr "Привязать с помощью пин-кода"
|
||||
|
||||
msgid "Bind with Access Code"
|
||||
msgstr ""
|
||||
msgstr "Привязать с помощью кода доступа"
|
||||
|
||||
msgid "Send to Printer SD card"
|
||||
msgstr "Отправить на SD-карту принтера"
|
||||
@@ -7899,8 +7918,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"При записи таймлапса без видимости головы рекомендуется добавить «Черновая "
|
||||
"башня таймлапса». \n"
|
||||
@@ -7911,70 +7930,76 @@ msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
"Будет создана копия текущего системного профиля, который будет отсоединён от "
|
||||
"системного профиля."
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
"Текущий пользовательский профиль будет отсоединён от родительского "
|
||||
"системного профиля."
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
msgstr "Изменения будут сохранены в текущем профиле."
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
msgstr "Это действие необратимо. Продолжить?"
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
msgstr "Отсоединить профиль"
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
msgstr "Это профиль по умолчанию."
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
msgstr "Это системный профиль."
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
msgstr "Текущий профиль наследуется от профиля по умолчанию."
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
msgstr "Текущий профиль наследуется от"
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
msgstr "Его нельзя удалить или изменить."
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
"Любые изменения должны быть сохранены как новый профиль, унаследованный от "
|
||||
"текущего."
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
msgstr "Для этого укажите новое имя для профиля."
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
msgstr "Дополнительная информация:"
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
msgstr "производитель"
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
msgstr "модель принтера"
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
msgstr "профиль печати по умолчанию"
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
msgstr "профиль прутка по умолчанию"
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
msgstr "профиль SLA материала по умолчанию"
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
msgstr "профиль SLA печати по умолчанию"
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
msgstr "полное имя профиля"
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
msgstr "символическое имя профиля"
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Ширина экструзии"
|
||||
@@ -8074,12 +8099,6 @@ msgstr "Скрипты постобработки"
|
||||
msgid "Notes"
|
||||
msgstr "Заметки"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Частые"
|
||||
|
||||
@@ -8149,7 +8168,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "Cool Plate"
|
||||
msgstr ""
|
||||
msgstr "Не нагреваемая пластина"
|
||||
|
||||
msgid ""
|
||||
"Bed temperature when cool plate is installed. Value 0 means the filament "
|
||||
@@ -8158,7 +8177,8 @@ msgstr ""
|
||||
"Температура стола при установленной не нагреваемой пластине. 0 означает, что "
|
||||
"пластиковая нить не поддерживает печать на этой печатной пластине."
|
||||
|
||||
# ??????? Текстурированная не нагреваемая пластина Bambu, Текстурированная пластина Bambu
|
||||
# ??????? Текстурированная не нагреваемая пластина Bambu, Текстурированная
|
||||
# пластина Bambu
|
||||
msgid "Textured Cool plate"
|
||||
msgstr "Не нагреваемая текстур. пластина Bambu"
|
||||
|
||||
@@ -8275,6 +8295,12 @@ msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr ""
|
||||
"Параметры смены инструмента в многоэкструдерных мультиматериальных принтерах"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr "Зависимости"
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr "Зависимости профиля"
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "Область печати"
|
||||
|
||||
@@ -8721,7 +8747,9 @@ msgstr "Приблизительный подбор по цвету прутко
|
||||
msgid "Append"
|
||||
msgstr "Добавить"
|
||||
|
||||
# ?????? Добавить используемый экструдер после существующих экструдеров, Добавьте новый экструдер после существующих экструдеров, Добавить экструдер с расходным материалом после существующих экструдеров.
|
||||
# ?????? Добавить используемый экструдер после существующих экструдеров,
|
||||
# Добавьте новый экструдер после существующих экструдеров, Добавить экструдер
|
||||
# с расходным материалом после существующих экструдеров.
|
||||
msgid "Add consumable extruder after existing extruders."
|
||||
msgstr ""
|
||||
"Добавить экструдер с расходными материалами после существующих экструдеров."
|
||||
@@ -9230,7 +9258,7 @@ msgid "Confirm and Update Nozzle"
|
||||
msgstr "Подтвердить и обновить сопло"
|
||||
|
||||
msgid "Connect the printer using IP and access code"
|
||||
msgstr ""
|
||||
msgstr "Подключение к принтеру с помощью IP-адреса и кода доступа"
|
||||
|
||||
msgid ""
|
||||
"Step 1. Please confirm Orca Slicer and your printer are in the same LAN."
|
||||
@@ -9240,11 +9268,15 @@ msgid ""
|
||||
"Step 2. If the IP and Access Code below are different from the actual values "
|
||||
"on your printer, please correct them."
|
||||
msgstr ""
|
||||
"2) Если указанный ниже IP-адрес и код доступа отличаются от фактических "
|
||||
"значений на вашем принтере, пожалуйста, исправьте их."
|
||||
|
||||
msgid ""
|
||||
"Step 3. Please obtain the device SN from the printer side; it is usually "
|
||||
"found in the device information on the printer screen."
|
||||
msgstr ""
|
||||
"3) Найдите и введите серийный номер принтера (его можно найти в информации "
|
||||
"об устройстве на экране принтера).ы"
|
||||
|
||||
msgid "IP"
|
||||
msgstr "IP"
|
||||
@@ -9253,7 +9285,7 @@ msgid "Access Code"
|
||||
msgstr "Код доступа"
|
||||
|
||||
msgid "Printer model"
|
||||
msgstr ""
|
||||
msgstr "Модель принтера"
|
||||
|
||||
msgid "Printer name"
|
||||
msgstr ""
|
||||
@@ -9262,28 +9294,32 @@ msgid "Where to find your printer's IP and Access Code?"
|
||||
msgstr "Где найти IP-адрес и код доступа к вашему принтеру?"
|
||||
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
msgstr "Подключиться"
|
||||
|
||||
msgid "Manual Setup"
|
||||
msgstr ""
|
||||
|
||||
msgid "connecting..."
|
||||
msgstr ""
|
||||
msgstr "подключение..."
|
||||
|
||||
msgid "Failed to connect to printer."
|
||||
msgstr ""
|
||||
msgstr "Не удалось подключиться к принтеру."
|
||||
|
||||
msgid "Failed to publish login request."
|
||||
msgstr ""
|
||||
msgstr "Не удалось опубликовать запрос на вход в систему."
|
||||
|
||||
msgid "The printer has already been bound."
|
||||
msgstr ""
|
||||
msgstr "Принтер уже привязан."
|
||||
|
||||
msgid "The printer mode is incorrect, please switch to LAN Only."
|
||||
msgstr ""
|
||||
"Неправильный режим работы принтера, пожалуйста, переключитесь на режим "
|
||||
"«Только LAN»."
|
||||
|
||||
msgid "Connecting to printer... The dialog will close later"
|
||||
msgstr ""
|
||||
"Подключение к принтеру... Диалоговое окно закроется само, когда подключение "
|
||||
"будет успешно выполнено."
|
||||
|
||||
msgid "Connection failed, please double check IP and Access Code"
|
||||
msgstr ""
|
||||
@@ -10210,7 +10246,8 @@ msgstr "Последовательность печати первого сло
|
||||
msgid "Other layers print sequence"
|
||||
msgstr "Последовательность печати других слоёв"
|
||||
|
||||
# ??? Количество слоёв при последовательной печати остальных слоёв, Количество других слоёв в последовательной печати
|
||||
# ??? Количество слоёв при последовательной печати остальных слоёв, Количество
|
||||
# других слоёв в последовательной печати
|
||||
msgid "The number of other layers print sequence"
|
||||
msgstr "Количество других слоёв при последовательной печати"
|
||||
|
||||
@@ -10341,7 +10378,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -10353,6 +10390,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -10749,6 +10787,9 @@ msgstr ""
|
||||
"моделей. Авто означает, что ширина каймы анализируется и рассчитывается "
|
||||
"автоматически."
|
||||
|
||||
msgid "Painted"
|
||||
msgstr "Нарисовано"
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "Смещение каймы"
|
||||
|
||||
@@ -10801,6 +10842,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
"Логическое выражение, использующее значения конфигурации активного профиля "
|
||||
"принтера. Если это выражение имеет значение true, этот профиль считается "
|
||||
"совместимым с активным профилем принтера."
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Совместимые профили процессов"
|
||||
@@ -10813,6 +10857,9 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
"Логическое выражение, использующее значения конфигурации активного профиля "
|
||||
"печати. Если это выражение имеет значение true, этот профиль считается "
|
||||
"совместимым с активным профилем принтера."
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr "Выбор последовательности печати моделей - одновременно или по очереди."
|
||||
@@ -11409,7 +11456,8 @@ msgstr ""
|
||||
"При небольшом переливе или недоливе на поверхности, корректировка этого "
|
||||
"параметра поможет получить хорошую гладкую поверхность."
|
||||
|
||||
# ???1 Конечная величина потока модели - это введённое здесь значение, умноженное на коэффициент потока прутка.
|
||||
# ???1 Конечная величина потока модели - это введённое здесь значение,
|
||||
# умноженное на коэффициент потока прутка.
|
||||
msgid ""
|
||||
"The material may have volumetric change after switching between molten state "
|
||||
"and crystalline state. This setting changes all extrusion flow of this "
|
||||
@@ -12129,8 +12177,8 @@ msgstr ""
|
||||
"две ближайшие линии заполнения с коротким отрезком периметра. Если не "
|
||||
"найдено такого отрезка периметра короче этого параметра, линия заполнения "
|
||||
"соединяется с отрезком периметра только с одной стороны, а длина отрезка "
|
||||
"периметра ограничена значением «Длина привязок разреженного заполнения» "
|
||||
"(infill_anchor), но не больше этого параметра.\n"
|
||||
"периметра ограничена значением «Длина привязок разреженного "
|
||||
"заполнения» (infill_anchor), но не больше этого параметра.\n"
|
||||
"Если установить 0, то будет использоваться старый алгоритм для соединения "
|
||||
"заполнения, который даёт такой же результат, как и при значениях 1000 и 0."
|
||||
|
||||
@@ -12169,8 +12217,8 @@ msgid "mm/s² or %"
|
||||
msgstr "мм/с² или %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Ускорение на разреженном заполнении. Если задано в процентах, то значение "
|
||||
"вычисляться относительно ускорения по умолчанию."
|
||||
@@ -12201,7 +12249,8 @@ msgstr ""
|
||||
"Параметр предназначен для ограничения влияния экстремальных переходов от "
|
||||
"ускорения к замедлению, типичных для коротких зигзагообразных перемещений."
|
||||
|
||||
# ??? Ускорение к замедлению, Ускорение торможения, Скорость торможения, Скорость торможения перед поворотом, Соотношение ускорения к замедлению
|
||||
# ??? Ускорение к замедлению, Ускорение торможения, Скорость торможения,
|
||||
# Скорость торможения перед поворотом, Соотношение ускорения к замедлению
|
||||
msgid "accel_to_decel"
|
||||
msgstr "Ограничение ускорение зигзагов"
|
||||
|
||||
@@ -12285,17 +12334,17 @@ msgstr "Полная скорость вентилятора на слое"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Скорость вентилятора будет нарастать линейно от нуля на слое "
|
||||
"\"close_fan_the_first_x_layers\" до максимума на слое "
|
||||
"\"full_fan_speed_layer\". Значение \"full_fan_speed_layer\" будет "
|
||||
"игнорироваться, если оно меньше значения \"close_fan_the_first_x_layers\", в "
|
||||
"этом случае вентилятор будет работать на максимально допустимой скорости на "
|
||||
"слое \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" до максимума на слое \"full_fan_speed_layer"
|
||||
"\". Значение \"full_fan_speed_layer\" будет игнорироваться, если оно меньше "
|
||||
"значения \"close_fan_the_first_x_layers\", в этом случае вентилятор будет "
|
||||
"работать на максимально допустимой скорости на слое "
|
||||
"\"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
msgstr "слой"
|
||||
@@ -12930,7 +12979,7 @@ msgid "The distance between the lines of ironing"
|
||||
msgstr "Расстояние между линиями разглаживания."
|
||||
|
||||
msgid "Ironing inset"
|
||||
msgstr ""
|
||||
msgstr "Границы разглаживания"
|
||||
|
||||
msgid ""
|
||||
"The distance to keep from the edges. A value of 0 sets this to half of the "
|
||||
@@ -13585,7 +13634,7 @@ msgstr ""
|
||||
"Некоторое количество материала в экструдере откатывается назад, чтобы "
|
||||
"избежать его течи при длительном перемещении. 0 - отключение отката."
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr "Длинное втягивания перед отрезанием прутка"
|
||||
|
||||
msgid ""
|
||||
@@ -14073,7 +14122,9 @@ msgstr "Скорость печати юбки (мм/с). 0 - скорость
|
||||
msgid "Skirt minimum extrusion length"
|
||||
msgstr "Мин. длина экструзии юбки"
|
||||
|
||||
# ??? Конечное число петель юбки не учитывается при расстановке или проверке расстояния между моделями, поэтому если их недостаточно, то увеличьте их количество.
|
||||
# ??? Конечное число петель юбки не учитывается при расстановке или проверке
|
||||
# расстояния между моделями, поэтому если их недостаточно, то увеличьте их
|
||||
# количество.
|
||||
msgid ""
|
||||
"Minimum filament extrusion length in mm when printing the skirt. Zero means "
|
||||
"this feature is disabled.\n"
|
||||
@@ -14158,6 +14209,21 @@ msgstr ""
|
||||
"спирали. Если задано в процентах, то значение вычисляться относительно "
|
||||
"диаметра сопла."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -14189,9 +14255,9 @@ msgid ""
|
||||
"zero value."
|
||||
msgstr ""
|
||||
"Разница температур, которая будет применяться, когда экструдер не активен. "
|
||||
"Значение не используется, если для параметра «Температура ожидания» "
|
||||
"('idle_temperature') в настройках пластиковой нити установлено ненулевое "
|
||||
"значение."
|
||||
"Значение не используется, если для параметра «Температура "
|
||||
"ожидания» ('idle_temperature') в настройках пластиковой нити установлено "
|
||||
"ненулевое значение."
|
||||
|
||||
msgid "Preheat time"
|
||||
msgstr "Время преднагрева"
|
||||
@@ -14753,8 +14819,8 @@ msgstr "Вкл. контроль температуры"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -15069,7 +15135,8 @@ msgstr ""
|
||||
msgid "Maximal bridging distance"
|
||||
msgstr "Максимальное длина моста"
|
||||
|
||||
# ??? Максимальное расстояние между опорами на разряженных участках заполнения.
|
||||
# ??? Максимальное расстояние между опорами на разряженных участках
|
||||
# заполнения.
|
||||
msgid "Maximal distance between supports on sparse infill sections."
|
||||
msgstr ""
|
||||
"Максимальное расстояние моста черновой башни на её разряженных участках."
|
||||
@@ -15096,9 +15163,9 @@ msgid "Idle temperature"
|
||||
msgstr "Температура ожидания"
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
"Температура сопла в момент, когда для печати используется другое сопло. Этот "
|
||||
"параметр используется только в том случае, если в настройках печати активна "
|
||||
@@ -15842,8 +15909,8 @@ msgstr "Предоставленный файл не может быть про
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или "
|
||||
"*.zip.amf."
|
||||
"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или *."
|
||||
"zip.amf."
|
||||
|
||||
msgid "Canceled"
|
||||
msgstr "Отменено"
|
||||
@@ -16648,6 +16715,23 @@ msgstr "Отмена"
|
||||
msgid "Error uploading to print host"
|
||||
msgstr "Ошибка при отправке на хост печати"
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr "Невозможно выполнить булевую операцию над выбранными элементами."
|
||||
|
||||
@@ -16834,8 +16918,8 @@ msgstr ""
|
||||
"Хотите перезаписать его?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Мы переименуем профиль в \"Производитель Тип Серия @выбранный принтер\".\n"
|
||||
@@ -16951,7 +17035,8 @@ msgstr ""
|
||||
"В разделе «Область печати» на первой странице введено недопустимое значение. "
|
||||
"Проверьте введение значение перед созданием."
|
||||
|
||||
# ??? "Не введено имя или модель пользовательского принтера, пожалуйста, введите их.
|
||||
# ??? "Не введено имя или модель пользовательского принтера, пожалуйста,
|
||||
# введите их.
|
||||
msgid "The custom printer or model is not entered, please enter it."
|
||||
msgstr "Пожалуйста, введите имя пользовательского принтера и модель."
|
||||
|
||||
@@ -17793,9 +17878,9 @@ msgid ""
|
||||
"overhangs?"
|
||||
msgstr ""
|
||||
"Порядок печати периметров «Сэндвич»\n"
|
||||
"Знаете ли вы, что можно использовать порядок печати периметров «Сэндвич» "
|
||||
"(т.е. внутренний-внешний-внутренний) для повышения точности и "
|
||||
"согласованности слоёв, если у вашей модели не очень крутые нависания?"
|
||||
"Знаете ли вы, что можно использовать порядок печати периметров «Сэндвич» (т."
|
||||
"е. внутренний-внешний-внутренний) для повышения точности и согласованности "
|
||||
"слоёв, если у вашей модели не очень крутые нависания?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Chamber temperature]
|
||||
msgid ""
|
||||
@@ -18417,7 +18502,8 @@ msgstr ""
|
||||
#~ msgid "Z hop when retract"
|
||||
#~ msgstr "Подъём оси Z при откате"
|
||||
|
||||
# ??? Если установлено 0, то изменение направления будет происходить на каждом чётном слое, независимо от величина (длины ) свеса.
|
||||
# ??? Если установлено 0, то изменение направления будет происходить на каждом
|
||||
# чётном слое, независимо от величина (длины ) свеса.
|
||||
#, no-c-format, no-boost-format
|
||||
#~ msgid ""
|
||||
#~ "Number of mm the overhang need to be for the reversal to be considered "
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -1275,7 +1275,7 @@ msgid "Esc"
|
||||
msgstr "Esc"
|
||||
|
||||
msgid "Cancel a feature until exit"
|
||||
msgstr ""
|
||||
msgstr "Cancel a feature until exit"
|
||||
|
||||
msgid "Measure"
|
||||
msgstr "Measure"
|
||||
@@ -1283,16 +1283,17 @@ msgstr "Measure"
|
||||
msgid ""
|
||||
"Please confirm explosion ratio = 1,and please select at least one object"
|
||||
msgstr ""
|
||||
"Please confirm explosion ratio = 1, and please select at least one object"
|
||||
|
||||
msgid "Please select at least one object."
|
||||
msgstr ""
|
||||
msgstr "Please select at least one object."
|
||||
|
||||
msgid "Edit to scale"
|
||||
msgstr "Edit to scale"
|
||||
|
||||
msgctxt "Verb"
|
||||
msgid "Scale all"
|
||||
msgstr ""
|
||||
msgstr "Scale all"
|
||||
|
||||
msgid "None"
|
||||
msgstr "Ingen"
|
||||
@@ -1307,40 +1308,46 @@ msgid "Selection"
|
||||
msgstr "Selection"
|
||||
|
||||
msgid " (Moving)"
|
||||
msgstr ""
|
||||
msgstr " (Moving)"
|
||||
|
||||
msgid ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
msgstr ""
|
||||
"Select 2 faces on objects and \n"
|
||||
" make objects assemble together."
|
||||
|
||||
msgid ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
msgstr ""
|
||||
"Select 2 points or circles on objects and \n"
|
||||
" specify distance between them."
|
||||
|
||||
msgid "Face"
|
||||
msgstr ""
|
||||
msgstr "Face"
|
||||
|
||||
msgid " (Fixed)"
|
||||
msgstr ""
|
||||
msgstr " (Fixed)"
|
||||
|
||||
msgid "Point"
|
||||
msgstr ""
|
||||
msgstr "Point"
|
||||
|
||||
msgid ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
msgstr ""
|
||||
"Feature 1 has been reset, \n"
|
||||
"feature 2 has been feature 1"
|
||||
|
||||
msgid "Warning:please select Plane's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Plane's feature."
|
||||
|
||||
msgid "Warning:please select Point's or Circle's feature."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select Point's or Circle's feature."
|
||||
|
||||
msgid "Warning:please select two different mesh."
|
||||
msgstr ""
|
||||
msgstr "Warning: please select two different meshes."
|
||||
|
||||
msgid "Copy to clipboard"
|
||||
msgstr "Kopiera till urklipp"
|
||||
@@ -1358,25 +1365,25 @@ msgid "Distance XYZ"
|
||||
msgstr "Distance XYZ"
|
||||
|
||||
msgid "Parallel"
|
||||
msgstr ""
|
||||
msgstr "Parallel"
|
||||
|
||||
msgid "Center coincidence"
|
||||
msgstr ""
|
||||
msgstr "Center coincidence"
|
||||
|
||||
msgid "Featue 1"
|
||||
msgstr ""
|
||||
msgstr "Feature 1"
|
||||
|
||||
msgid "Reverse rotation"
|
||||
msgstr ""
|
||||
msgstr "Reverse rotation"
|
||||
|
||||
msgid "Rotate around center:"
|
||||
msgstr ""
|
||||
msgstr "Rotate around center:"
|
||||
|
||||
msgid "Parallel distance:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Flip by Face 2"
|
||||
msgstr ""
|
||||
msgstr "Flip by Face 2"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl +"
|
||||
@@ -3591,9 +3598,9 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
"Current chamber temperature is higher than the material's safe temperature; "
|
||||
"this may result in material softening and nozzle clogs.The maximum safe "
|
||||
@@ -4368,7 +4375,7 @@ msgstr "Volym:"
|
||||
msgid "Size:"
|
||||
msgstr "Storlek:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4792,7 +4799,7 @@ msgstr "Visa & Överhäng"
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "Visa objektets överhäng i 3D-scen"
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -5137,6 +5144,8 @@ msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
"Kontrollera om SD-kortet är sitter i printern. \n"
|
||||
"Om det fortfarande inte går att läsa kan du försöka formatera SD kortet."
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgstr "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -7233,8 +7242,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"Timelapse is not supported because Print sequence is set to \"By object\"."
|
||||
msgstr ""
|
||||
"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per "
|
||||
"objekt\"."
|
||||
"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per objekt"
|
||||
"\"."
|
||||
|
||||
msgid "Errors"
|
||||
msgstr "Fel"
|
||||
@@ -7609,8 +7618,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"När du spelar in timelapse utan verktygshuvud rekommenderas att du lägger "
|
||||
"till ett \"Timelapse Wipe Tower\".\n"
|
||||
@@ -7782,12 +7791,6 @@ msgstr "Skript för efterbehandling"
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Återkommande"
|
||||
|
||||
@@ -7924,10 +7927,9 @@ msgid ""
|
||||
"maximum fan speed according to layer printing time"
|
||||
msgstr ""
|
||||
"Del kylfläktens hastigheten kommer att börja gå med min hastighet när den "
|
||||
"beräknade lagringstiden inte är längre än lagringstiden i "
|
||||
"inställningarna.När lager tiden är kortare än gräns värdet, ställer "
|
||||
"fläkthastigheten sig mellan lägsta och högsta fläkthastighet enligt lagrets "
|
||||
"utskriftstid"
|
||||
"beräknade lagringstiden inte är längre än lagringstiden i inställningarna."
|
||||
"När lager tiden är kortare än gräns värdet, ställer fläkthastigheten sig "
|
||||
"mellan lägsta och högsta fläkthastighet enligt lagrets utskriftstid"
|
||||
|
||||
msgid "Max fan speed threshold"
|
||||
msgstr "Max fläkt hastighets gräns"
|
||||
@@ -7969,6 +7971,12 @@ msgstr ""
|
||||
msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "Utskriftsbar yta"
|
||||
|
||||
@@ -9863,7 +9871,7 @@ msgstr ""
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
@@ -9875,6 +9883,7 @@ msgstr ""
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -10162,6 +10171,9 @@ msgstr ""
|
||||
"Detta styr genereringen av brim på modellens yttre och/eller inre sida. Auto "
|
||||
"innebär att brim bredd analyseras och beräknas automatiskt."
|
||||
|
||||
msgid "Painted"
|
||||
msgstr ""
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "Avstånd mellan brim och modell"
|
||||
|
||||
@@ -10251,9 +10263,9 @@ msgid ""
|
||||
"quality for needle and small details"
|
||||
msgstr ""
|
||||
"Aktivera detta val för att sänka utskifts hastigheten för att göra den sista "
|
||||
"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets "
|
||||
"tröskel\", detta så att lager kan kylas under en längre tid. Detta kan "
|
||||
"förbättra kylnings kvaliteten för små detaljer"
|
||||
"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets tröskel"
|
||||
"\", detta så att lager kan kylas under en längre tid. Detta kan förbättra "
|
||||
"kylnings kvaliteten för små detaljer"
|
||||
|
||||
msgid "Normal printing"
|
||||
msgstr "Normal utskrift"
|
||||
@@ -11316,8 +11328,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² or %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"Acceleration av gles utfyllnad. Om värdet uttrycks som en procentsats (t.ex. "
|
||||
"100%) kommer det att beräknas baserat på standard accelerationen."
|
||||
@@ -11417,10 +11429,10 @@ msgstr "Full fläkthastighet vid lager"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
@@ -12509,8 +12521,8 @@ msgstr ""
|
||||
"En del av materialet i extrudern dras tillbaka för att undvika dropp under "
|
||||
"långa förflyttningar. Sätt på 0 för att inaktivera retraktion"
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgstr "Long retraction when cut (experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr "Long retraction when cut (beta)"
|
||||
|
||||
msgid ""
|
||||
"Experimental feature.Retracting and cutting off the filament at a longer "
|
||||
@@ -12990,6 +13002,21 @@ msgstr ""
|
||||
"Maximum distance to move points in XY to try to achieve a smooth spiral. If "
|
||||
"expressed as a %, it will be computed over nozzle diameter"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -13502,8 +13529,8 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -13766,9 +13793,9 @@ msgid "Idle temperature"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
|
||||
msgid "X-Y hole compensation"
|
||||
@@ -15174,6 +15201,23 @@ msgstr "Avbryter"
|
||||
msgid "Error uploading to print host"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr "Kan inte utföra boolean operationer på valda delar"
|
||||
|
||||
@@ -15355,8 +15399,8 @@ msgstr ""
|
||||
"Vill du skriva om det?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
@@ -17314,11 +17358,11 @@ msgstr ""
|
||||
#~ msgstr "Felsökningsnivå"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
||||
#~ "5:trace\n"
|
||||
#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||
#~ "trace\n"
|
||||
#~ msgstr ""
|
||||
#~ "Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, "
|
||||
#~ "5:spåra\n"
|
||||
#~ "Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, 5:"
|
||||
#~ "spåra\n"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "3D Scene Operations\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"POT-Creation-Date: 2025-02-20 21:21+0800\n"
|
||||
"PO-Revision-Date: 2025-01-11 10:54+0800\n"
|
||||
"Last-Translator: Shuwn Hsu\n"
|
||||
"Language-Team: \n"
|
||||
@@ -3528,9 +3528,9 @@ msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Current chamber temperature is higher than the material's safe "
|
||||
"temperature,it may result in material softening and clogging.The maximum "
|
||||
"safe temperature for the material is %d"
|
||||
"Current chamber temperature is higher than the material's safe temperature,"
|
||||
"it may result in material softening and clogging.The maximum safe "
|
||||
"temperature for the material is %d"
|
||||
msgstr ""
|
||||
"目前列印設備內部溫度高於線材的安全溫度,可能會導致線材軟化和堵塞。線材的最高"
|
||||
"安全溫度為:%d"
|
||||
@@ -4298,7 +4298,7 @@ msgstr "體積:"
|
||||
msgid "Size:"
|
||||
msgstr "尺寸:"
|
||||
|
||||
#, boost-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
@@ -4722,7 +4722,7 @@ msgstr "凸顯懸空"
|
||||
msgid "Show object overhang highlight in 3D scene"
|
||||
msgstr "在 3D 場景中凸顯懸空"
|
||||
|
||||
msgid "Show Selected Outline (Experimental)"
|
||||
msgid "Show Selected Outline (beta)"
|
||||
msgstr "顯示選取輪廓(實驗性)"
|
||||
|
||||
msgid "Show outline around selected object in 3D scene"
|
||||
@@ -5066,7 +5066,7 @@ msgstr "LAN 連線失敗(無法查看 SD 卡)。"
|
||||
msgid "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
msgstr "在僅 LAN 模式下不支援瀏覽 SD 卡中的檔案。"
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "You are going to delete %u file from printer. Are you sure to continue?"
|
||||
msgid_plural ""
|
||||
"You are going to delete %u files from printer. Are you sure to continue?"
|
||||
@@ -5075,7 +5075,7 @@ msgstr[0] "將從列印設備中刪除 %u 個檔案。確定要繼續嗎?"
|
||||
msgid "Delete files"
|
||||
msgstr "刪除檔案"
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Do you want to delete the file '%s' from printer?"
|
||||
msgstr "確定要從列印設備中刪除檔案 '%s' 嗎?"
|
||||
|
||||
@@ -5095,8 +5095,8 @@ msgid ""
|
||||
"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer "
|
||||
"and export a new .gcode.3mf file."
|
||||
msgstr ""
|
||||
".gcode.3mf 檔案中不包含 G-code 數據。請使用 Orca Slicer 進行切片並匯出新"
|
||||
"的 .gcode.3mf 檔案。"
|
||||
".gcode.3mf 檔案中不包含 G-code 數據。請使用 Orca Slicer 進行切片並匯出新的 ."
|
||||
"gcode.3mf 檔案。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "File '%s' was lost! Please download it again."
|
||||
@@ -7437,8 +7437,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"在錄製無工具頭縮時錄影影片時,建議添加一個「縮時錄影換料塔」\n"
|
||||
"可以通過右鍵點擊構建板的空白位置,選擇『新增標準模型』->『縮時錄影換料塔』來"
|
||||
@@ -7612,12 +7612,6 @@ msgstr "後處理腳本"
|
||||
msgid "Notes"
|
||||
msgstr "備註"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr "相依項目"
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr "設定檔相依項目"
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "常用"
|
||||
|
||||
@@ -7784,6 +7778,12 @@ msgstr "尖端成型設定"
|
||||
msgid "Toolchange parameters with multi extruder MM printers"
|
||||
msgstr "適用於多擠出機多材料打印機的工具切換參數"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr "相依項目"
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr "設定檔相依項目"
|
||||
|
||||
msgid "Printable space"
|
||||
msgstr "可列印區域"
|
||||
|
||||
@@ -8702,7 +8702,9 @@ msgstr "步驟 2. 若下方的 IP 和存取碼與印表機上的實際數值不
|
||||
msgid ""
|
||||
"Step 3. Please obtain the device SN from the printer side; it is usually "
|
||||
"found in the device information on the printer screen."
|
||||
msgstr "步驟 3. 請從列印設備上取得設備序號(SN),通常可在列印設備螢幕的設備資訊中查看。"
|
||||
msgstr ""
|
||||
"步驟 3. 請從列印設備上取得設備序號(SN),通常可在列印設備螢幕的設備資訊中查"
|
||||
"看。"
|
||||
|
||||
msgid "IP"
|
||||
msgstr "IP"
|
||||
@@ -9232,7 +9234,7 @@ msgid ""
|
||||
"extruder addressing."
|
||||
msgstr "在 layer_gcode 中發現 \"G92 E0\",它與絕對擠出機尋址不相容。"
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "平台 %d:%s 不支援線材 %s。"
|
||||
|
||||
@@ -9646,8 +9648,8 @@ msgid ""
|
||||
"speed specifically for these features can improve overall print quality and "
|
||||
"reduce warping."
|
||||
msgstr ""
|
||||
"啟用此選項後,可調整零件冷卻風扇的速度,專門針對懸垂結構、內部和外部橋接區域。"
|
||||
"適當調整風扇速度能提升列印品質並減少變形問題。"
|
||||
"啟用此選項後,可調整零件冷卻風扇的速度,專門針對懸垂結構、內部和外部橋接區"
|
||||
"域。適當調整風扇速度能提升列印品質並減少變形問題。"
|
||||
|
||||
msgid "Overhangs and external bridges fan speed"
|
||||
msgstr "懸垂與外部橋接區域的冷卻風扇速度"
|
||||
@@ -9663,29 +9665,30 @@ msgid ""
|
||||
"speed threshold set above. It is also adjusted upwards up to the maximum fan "
|
||||
"speed threshold when the minimum layer time threshold is not met."
|
||||
msgstr ""
|
||||
"當列印橋接結構或懸垂牆,且其懸垂角度超過「懸垂冷卻閾值」所設定的標準時,將適用此零件冷卻風扇轉速。"
|
||||
"針對懸垂與橋接部分提高冷卻強度,有助於提升列印品質並減少變形。\n"
|
||||
"當列印橋接結構或懸垂牆,且其懸垂角度超過「懸垂冷卻閾值」所設定的標準時,將適"
|
||||
"用此零件冷卻風扇轉速。針對懸垂與橋接部分提高冷卻強度,有助於提升列印品質並減"
|
||||
"少變形。\n"
|
||||
"\n"
|
||||
"請注意,此風扇轉速的最低值受限於「最小風扇轉速」設定。此外,當層列印時間未達「最小層列印時間」閾值時,"
|
||||
"風扇轉速將自動增加,最高可達「最大風扇轉速」設定值。"
|
||||
"請注意,此風扇轉速的最低值受限於「最小風扇轉速」設定。此外,當層列印時間未達"
|
||||
"「最小層列印時間」閾值時,風扇轉速將自動增加,最高可達「最大風扇轉速」設定"
|
||||
"值。"
|
||||
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr "懸垂冷卻觸發閾值"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
"percentage, indicating the portion of each line's width that is unsupported "
|
||||
"by the layer beneath it. Setting this value to 0%% forces the cooling fan to "
|
||||
"by the layer beneath it. Setting this value to 0% forces the cooling fan to "
|
||||
"run for all outer walls, regardless of the overhang degree."
|
||||
msgstr ""
|
||||
"當懸垂超過此設定的閾值時,冷卻風扇將強制以「懸垂風扇轉速」運行。該閾值以百分比表示,"
|
||||
"代表每條列印線寬中未受下層支撐的比例。若將此值設為 0%%,則冷卻風扇將對所有外牆啟動,不論懸垂角度大小。"
|
||||
|
||||
msgid "External bridge infill direction"
|
||||
msgstr "外部橋接結構的填充方向"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
@@ -9705,8 +9708,8 @@ msgid ""
|
||||
"It is recommended to leave it at 0 unless there is a specific model need not "
|
||||
"to."
|
||||
msgstr ""
|
||||
"內部橋接角度覆蓋設定。若設定為 0,系統將自動計算橋接角度;若輸入特定角度,則內部橋接將依此角度列印。"
|
||||
"設定 180° 可視為零角度。\n"
|
||||
"內部橋接角度覆蓋設定。若設定為 0,系統將自動計算橋接角度;若輸入特定角度,則"
|
||||
"內部橋接將依此角度列印。設定 180° 可視為零角度。\n"
|
||||
"\n"
|
||||
"建議將此值保持為 0,除非模型有特殊需求需手動調整。"
|
||||
|
||||
@@ -9721,9 +9724,9 @@ msgid ""
|
||||
"space for air to circulate around the extruded bridge, improving its cooling "
|
||||
"speed."
|
||||
msgstr ""
|
||||
"調整外部橋接線的密度(間距)。100% 代表實心橋接,預設值為 100%。"
|
||||
"\n"
|
||||
"降低外部橋接的密度可提升列印穩定性,因為較大的間距讓空氣更容易流通,加速冷卻效果。"
|
||||
"調整外部橋接線的密度(間距)。100% 代表實心橋接,預設值為 100%。\n"
|
||||
"降低外部橋接的密度可提升列印穩定性,因為較大的間距讓空氣更容易流通,加速冷卻"
|
||||
"效果。"
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr "內部橋接密度"
|
||||
@@ -9742,10 +9745,11 @@ msgid ""
|
||||
msgstr ""
|
||||
"調整內部橋接線的密度(間距)。100% 代表實心橋接,預設值為 100%。\n"
|
||||
"\n"
|
||||
"降低內部橋接的密度有助於減少頂部表面的鼓起問題,並提升內部橋接的穩定性,因為較大的間距讓空氣更容易流通,"
|
||||
"加速冷卻效果。\n"
|
||||
"降低內部橋接的密度有助於減少頂部表面的鼓起問題,並提升內部橋接的穩定性,因為"
|
||||
"較大的間距讓空氣更容易流通,加速冷卻效果。\n"
|
||||
"\n"
|
||||
"此選項特別適用於「內部橋接覆蓋填充」功能,可進一步優化內部橋接結構,在擠出實心填充前提供更穩固的支撐。"
|
||||
"此選項特別適用於「內部橋接覆蓋填充」功能,可進一步優化內部橋接結構,在擠出實"
|
||||
"心填充前提供更穩固的支撐。"
|
||||
|
||||
msgid "Bridge flow ratio"
|
||||
msgstr "橋接流量"
|
||||
@@ -10040,6 +10044,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"該參數控制在模型的外側和/或內側產生 Brim 。自動是指自動分析和計算邊框的寬度。"
|
||||
|
||||
msgid "Painted"
|
||||
msgstr ""
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "Brim 與模型的間隙"
|
||||
|
||||
@@ -10091,8 +10098,8 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
"使用啟用的列印設備設定值來進行布林運算的表達式。如果此表達式的結果為 true,"
|
||||
"則該設定檔將被視為與當前啟用的印表機設定檔相容。"
|
||||
"使用啟用的列印設備設定值來進行布林運算的表達式。如果此表達式的結果為 true,則"
|
||||
"該設定檔將被視為與當前啟用的印表機設定檔相容。"
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "相容的切片設定"
|
||||
@@ -10105,8 +10112,8 @@ msgid ""
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
"使用啟用的列印設定檔值來進行布林運算的表達式。如果此表達式的結果為 true,"
|
||||
"則該設定檔將被視為與當前啟用的列印設定檔相容。"
|
||||
"使用啟用的列印設定檔值來進行布林運算的表達式。如果此表達式的結果為 true,則該"
|
||||
"設定檔將被視為與當前啟用的列印設定檔相容。"
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr "列印順序,逐層列印或者逐件列印"
|
||||
@@ -10257,20 +10264,20 @@ msgid ""
|
||||
msgstr ""
|
||||
"此選項可在內部和/或外部橋接結構上額外生成一層橋接填充。\n"
|
||||
"\n"
|
||||
"額外的橋接層能改善橋接區域的外觀與穩定性,提供更佳的實心填充支撐。"
|
||||
"這對於高速列印機特別有幫助,因為橋接與實心填充的列印速度可能有顯著差異。"
|
||||
"額外的橋接層還能減少頂部表面的起皺現象,並降低外部橋接層與周圍輪廓分離的風險。\n"
|
||||
"\n"
|
||||
"一般建議將此選項設定為「僅外部橋接」,除非特定的切片模型需要其他調整。"
|
||||
"額外的橋接層能改善橋接區域的外觀與穩定性,提供更佳的實心填充支撐。這對於高速"
|
||||
"列印機特別有幫助,因為橋接與實心填充的列印速度可能有顯著差異。額外的橋接層還"
|
||||
"能減少頂部表面的起皺現象,並降低外部橋接層與周圍輪廓分離的風險。\n"
|
||||
"\n"
|
||||
"一般建議將此選項設定為「僅外部橋接」,除非特定的切片模型需要其他調整。\n"
|
||||
"選項說明:\n"
|
||||
"1. 停用 - 不啟用第二層橋接層(預設值,確保與其他設定相容)。\n"
|
||||
"2. 僅外部橋接 - 僅對外部橋接區域添加第二層橋接層。請注意,若橋接結構過短或寬度小於設定的輪廓數量,"
|
||||
"則不會生成額外橋接層,因為這樣的結構不會受益於第二層橋接。如果啟用,第二層橋接層將與第一層平行擠出,"
|
||||
"以提升橋接的強度。\n"
|
||||
"3. 僅內部橋接 - 僅為內部橋接區域(例如稀疏填充上的橋接部分)添加第二層橋接層。請注意,"
|
||||
"內部橋接層會計入模型的頂部外殼層數。第二層內部橋接層的擠出方向會盡可能接近垂直於第一層,"
|
||||
"若同一區域內存在多個橋接角度,則該區域的最後一個部分將作為角度參考。\n"
|
||||
"2.\t僅外部橋接 - 僅對外部橋接區域添加第二層橋接層。請注意,若橋接結構過短或寬"
|
||||
"度小於設定的輪廓數量,則不會生成額外橋接層,因為這樣的結構不會受益於第二層橋"
|
||||
"接。如果啟用,第二層橋接層將與第一層平行擠出,以提升橋接的強度。\n"
|
||||
"3. 僅內部橋接 - 僅為內部橋接區域(例如稀疏填充上的橋接部分)添加第二層橋接"
|
||||
"層。請注意,內部橋接層會計入模型的頂部外殼層數。第二層內部橋接層的擠出方向會"
|
||||
"盡可能接近垂直於第一層,若同一區域內存在多個橋接角度,則該區域的最後一個部分"
|
||||
"將作為角度參考。\n"
|
||||
"4. 應用於所有橋接區域 - 為內部與外部橋接區域都添加第二層橋接層。\n"
|
||||
|
||||
msgid "Disabled"
|
||||
@@ -10319,20 +10326,23 @@ msgid ""
|
||||
msgstr ""
|
||||
"此選項可幫助降低在高度傾斜或曲面模型上的頂部表面起皺問題。\n"
|
||||
"\n"
|
||||
"預設情況下,小型內部橋接會被過濾掉,內部實心填充會直接列印在稀疏填充上。這種方式適用於大多數情況,"
|
||||
"能提升列印速度,同時維持合理的頂部表面品質。\n"
|
||||
"預設情況下,小型內部橋接會被過濾掉,內部實心填充會直接列印在稀疏填充上。這種"
|
||||
"方式適用於大多數情況,能提升列印速度,同時維持合理的頂部表面品質。\n"
|
||||
"\n"
|
||||
"然而,在高度傾斜或曲面的模型上,特別是當稀疏填充密度過低時,未受支撐的實心填充可能會翹曲,導致表面起皺。\n"
|
||||
"然而,在高度傾斜或曲面的模型上,特別是當稀疏填充密度過低時,未受支撐的實心填"
|
||||
"充可能會翹曲,導致表面起皺。\n"
|
||||
"\n"
|
||||
"啟用「有限過濾」或「不過濾」模式,將允許在部分未完全支撐的內部實心填充區域上列印內部橋接層。"
|
||||
"下列選項可調整過濾的敏感度,決定哪些區域需要生成內部橋接。\n"
|
||||
"啟用「有限過濾」或「不過濾」模式,將允許在部分未完全支撐的內部實心填充區域上"
|
||||
"列印內部橋接層。下列選項可調整過濾的敏感度,決定哪些區域需要生成內部橋接。\n"
|
||||
"\n"
|
||||
"選項說明:\n"
|
||||
"1. 過濾 - 預設選項,能有效過濾小型內部橋接,在大多數情況下效果良好。\n"
|
||||
"1.\t過濾 - 預設選項,能有效過濾小型內部橋接,在大多數情況下效果良好。\n"
|
||||
"\n"
|
||||
"2. 有限過濾 - 僅在高度傾斜的表面上建立內部橋接,同時避免生成過多無用的橋接結構,適合處理較複雜的模型。\n"
|
||||
"2. 有限過濾 - 僅在高度傾斜的表面上建立內部橋接,同時避免生成過多無用的橋接結"
|
||||
"構,適合處理較複雜的模型。\n"
|
||||
"\n"
|
||||
"3. 不過濾 - 在所有可能的內部懸垂區域上建立內部橋接,適用於高度傾斜的頂部表面模型,但通常會產生過多不必要的橋接結構。"
|
||||
"3.\t不過濾 - 在所有可能的內部懸垂區域上建立內部橋接,適用於高度傾斜的頂部表面"
|
||||
"模型,但通常會產生過多不必要的橋接結構。"
|
||||
|
||||
msgid "Filter"
|
||||
msgstr "篩選"
|
||||
@@ -11331,8 +11341,8 @@ msgid "mm/s² or %"
|
||||
msgstr "mm/s² 或 %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
"g. 100%), it will be calculated based on the default acceleration."
|
||||
msgstr ""
|
||||
"稀疏填充的加速度。如果該值表示為百分比(例如 100%),則將根據預設加速度進行計"
|
||||
"算。"
|
||||
@@ -11429,10 +11439,10 @@ msgstr "滿速風扇在"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"風扇速度會從第「close_fan_the_first_x_layers」層開始,從零速以線性方式逐漸增"
|
||||
"加,直到第「full_fan_speed_layer」層達到最大速度。如果"
|
||||
@@ -11454,12 +11464,11 @@ msgid ""
|
||||
"Set to -1 to disable it.\n"
|
||||
"This setting is overridden by disable_fan_first_layers."
|
||||
msgstr ""
|
||||
"此冷卻風扇速度適用於列印支撐介面時。"
|
||||
"將此值設為高於正常速度,可減少支撐結構與受支撐零件之間的黏結強度,使拆除支撐更容易。\n"
|
||||
"此冷卻風扇速度適用於列印支撐介面時。將此值設為高於正常速度,可減少支撐結構與"
|
||||
"受支撐零件之間的黏結強度,使拆除支撐更容易。\n"
|
||||
"若設為 -1,則禁用此功能。\n"
|
||||
"此設定會被 disable_fan_first_layers 覆寫。"
|
||||
|
||||
|
||||
msgid "Internal bridges fan speed"
|
||||
msgstr "內部橋接風扇轉速"
|
||||
|
||||
@@ -11473,7 +11482,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"此風扇轉速適用於所有內部橋接。若設為 -1,則改用懸垂風扇速度設定。\n"
|
||||
"\n"
|
||||
"適當降低內部橋接的風扇轉速(相較於一般風扇速度),可減少因長時間對大面積區域過度冷卻而導致的零件翹曲。"
|
||||
"適當降低內部橋接的風扇轉速(相較於一般風扇速度),可減少因長時間對大面積區域"
|
||||
"過度冷卻而導致的零件翹曲。"
|
||||
|
||||
msgid ""
|
||||
"Randomly jitter while printing the wall, so that the surface has a rough "
|
||||
@@ -11528,7 +11538,8 @@ msgstr ""
|
||||
"經典(Classic):標準的均勻隨機噪聲。\n"
|
||||
"柏林(Perlin):提供更平滑且一致的紋理效果。\n"
|
||||
"波狀(Billow):類似柏林噪聲,但紋理較為團塊狀。\n"
|
||||
"脊狀多重分形(Ridged Multifractal):帶有尖銳、鋸齒狀特徵的紋理,可產生類似大理石的效果。\n"
|
||||
"脊狀多重分形(Ridged Multifractal):帶有尖銳、鋸齒狀特徵的紋理,可產生類似大"
|
||||
"理石的效果。\n"
|
||||
"沃羅諾伊(Voronoi):將表面分割成多個區塊,並隨機位移,形成拼貼風格的紋理。"
|
||||
|
||||
msgid "Classic"
|
||||
@@ -11552,7 +11563,8 @@ msgstr "模糊表面紋理尺寸"
|
||||
msgid ""
|
||||
"The base size of the coherent noise features, in mm. Higher values will "
|
||||
"result in larger features."
|
||||
msgstr "控制模糊紋理的基礎尺寸(單位:毫米)。數值越大,紋理特徵越明顯、範圍越大。"
|
||||
msgstr ""
|
||||
"控制模糊紋理的基礎尺寸(單位:毫米)。數值越大,紋理特徵越明顯、範圍越大。"
|
||||
|
||||
msgid "Fuzzy Skin Noise Octaves"
|
||||
msgstr "模糊表面紋理噪聲層級"
|
||||
@@ -11560,7 +11572,8 @@ msgstr "模糊表面紋理噪聲層級"
|
||||
msgid ""
|
||||
"The number of octaves of coherent noise to use. Higher values increase the "
|
||||
"detail of the noise, but also increase computation time."
|
||||
msgstr "設定模糊紋理的噪聲層級數量。較高的值可提升紋理細節,但也會增加運算時間。"
|
||||
msgstr ""
|
||||
"設定模糊紋理的噪聲層級數量。較高的值可提升紋理細節,但也會增加運算時間。"
|
||||
|
||||
msgid "Fuzzy skin noise persistence"
|
||||
msgstr "模糊表面紋理噪聲強度衰減係數"
|
||||
@@ -12256,9 +12269,11 @@ msgid ""
|
||||
"\n"
|
||||
"Allowed values: 0.5-5"
|
||||
msgstr ""
|
||||
"較低的設定值能讓擠出速率變化更平滑,但會導致 G-code 檔案變大,並增加印表機的運算負擔。\n"
|
||||
"較低的設定值能讓擠出速率變化更平滑,但會導致 G-code 檔案變大,並增加印表機的"
|
||||
"運算負擔。\n"
|
||||
"\n"
|
||||
"預設值為 3,適用於大多數情況。如果您的印表機在列印時出現停頓或卡頓,請提高此數值,以減少擠出速率的頻繁調整。\n"
|
||||
"預設值為 3,適用於大多數情況。如果您的印表機在列印時出現停頓或卡頓,請提高此"
|
||||
"數值,以減少擠出速率的頻繁調整。\n"
|
||||
"\n"
|
||||
"可設定範圍:0.5-5"
|
||||
|
||||
@@ -12271,8 +12286,8 @@ msgid ""
|
||||
"visible overhangs without impacting the print speed of features that will "
|
||||
"not be visible to the user."
|
||||
msgstr ""
|
||||
"僅在外部輪廓與懸垂部分應用擠出速率平滑處理。"
|
||||
"這可減少外部可見區域因速度變化過快而產生的瑕疵,而不影響內部結構的列印速度。"
|
||||
"僅在外部輪廓與懸垂部分應用擠出速率平滑處理。這可減少外部可見區域因速度變化過"
|
||||
"快而產生的瑕疵,而不影響內部結構的列印速度。"
|
||||
|
||||
msgid "Minimum speed for part cooling fan"
|
||||
msgstr "物件冷卻風扇的最小轉速"
|
||||
@@ -12587,7 +12602,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"擠出機將材料拉回指定長度,避免空駛較長時軟化的線材滲出。設定為 0 表示關閉回抽"
|
||||
|
||||
msgid "Long retraction when cut(experimental)"
|
||||
msgid "Long retraction when cut(beta)"
|
||||
msgstr "切斷時的長回抽(實驗性功能)"
|
||||
|
||||
msgid ""
|
||||
@@ -13077,6 +13092,21 @@ msgstr ""
|
||||
"在 XY 平面中為實現平滑螺旋所允許移動點的最大距離。若以百分比表示,將根據噴嘴"
|
||||
"直徑計算"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the starting flow ratio while transitioning from the last bottom layer "
|
||||
"to the spiral. Normally the spiral transition scales the flow ratio from "
|
||||
"0% to 100% during the first loop which can in some cases lead to under "
|
||||
"extrusion at the start of the spiral."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
|
||||
"transition scales the flow ratio from 100% to 0% during the last loop which "
|
||||
"can in some cases lead to under extrusion at the end of the spiral."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If smooth or traditional mode is selected, a timelapse video will be "
|
||||
"generated for each print. After each layer is printed, a snapshot is taken "
|
||||
@@ -13242,8 +13272,8 @@ msgid ""
|
||||
"Normal (manual) or Tree (manual) is selected, only support enforcers are "
|
||||
"generated"
|
||||
msgstr ""
|
||||
"選擇「普通 (自動)」或「樹狀 (自動)」時,系統將自動產生支撐結構。若選擇「普通 (自動)」或「樹狀 (自動)」,"
|
||||
"則僅會生成手動設定的支撐區域。"
|
||||
"選擇「普通 (自動)」或「樹狀 (自動)」時,系統將自動產生支撐結構。若選擇「普通 "
|
||||
"(自動)」或「樹狀 (自動)」,則僅會生成手動設定的支撐區域。"
|
||||
|
||||
msgid "Normal (auto)"
|
||||
msgstr "普通 (自動)"
|
||||
@@ -13469,8 +13499,9 @@ msgid ""
|
||||
"If threshold angle is zero, support will be generated for overhangs whose "
|
||||
"overlap is below the threshold. The smaller this value is, the steeper the "
|
||||
"overhang that can be printed without support."
|
||||
msgstr "當閾值角度設為 0 時,系統將為重疊比例低於該閾值的懸垂部分生成支撐。"
|
||||
"數值越小,代表可以在不使用支撐的情況下列印更陡峭的懸垂結構。"
|
||||
msgstr ""
|
||||
"當閾值角度設為 0 時,系統將為重疊比例低於該閾值的懸垂部分生成支撐。數值越小,"
|
||||
"代表可以在不使用支撐的情況下列印更陡峭的懸垂結構。"
|
||||
|
||||
msgid "Tree support branch angle"
|
||||
msgstr "樹狀支撐分支角度"
|
||||
@@ -13597,8 +13628,8 @@ msgstr "啟動溫度控制"
|
||||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
@@ -13885,9 +13916,9 @@ msgid "Idle temperature"
|
||||
msgstr "閒置溫度"
|
||||
|
||||
msgid ""
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool "
|
||||
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
|
||||
"Set to 0 to disable."
|
||||
"Nozzle temperature when the tool is currently not used in multi-tool setups."
|
||||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
"當工具頭在多工具頭設置中未使用時的噴嘴溫度。僅在『列印設定』中啟用『防止漏"
|
||||
"料』時有效。設置 0 為禁用。"
|
||||
@@ -15288,6 +15319,23 @@ msgstr "取消中"
|
||||
msgid "Error uploading to print host"
|
||||
msgstr "上傳到列印設備時發生錯誤"
|
||||
|
||||
msgid ""
|
||||
"The selected bed type does not match the file. Please confirm before "
|
||||
"starting the print."
|
||||
msgstr ""
|
||||
|
||||
msgid "Time-lapse"
|
||||
msgstr ""
|
||||
|
||||
msgid "Heated Bed Leveling"
|
||||
msgstr ""
|
||||
|
||||
msgid "Textured Build Plate (Side A)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Smooth Build Plate (Side B)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr "無法對所選零件執行布林運算"
|
||||
|
||||
@@ -15462,8 +15510,8 @@ msgstr ""
|
||||
"確定要覆寫嗎?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"將會將預設名稱重新命名為「廠牌 型號 序號 @選擇的列印設備」。\n"
|
||||
@@ -16026,7 +16074,7 @@ msgstr ""
|
||||
"HTTP 狀態:%1%\n"
|
||||
"訊息內容:\"%2%\""
|
||||
|
||||
#, possible-boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Parsing of host response failed.\n"
|
||||
"Message body: \"%1%\"\n"
|
||||
@@ -16674,6 +16722,18 @@ msgstr ""
|
||||
"你知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度\n"
|
||||
"可以降低翹曲的機率。"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid ""
|
||||
#~ "When the overhang exceeds this specified threshold, force the cooling fan "
|
||||
#~ "to run at the 'Overhang Fan Speed' set below. This threshold is expressed "
|
||||
#~ "as a percentage, indicating the portion of each line's width that is "
|
||||
#~ "unsupported by the layer beneath it. Setting this value to 0%% forces the "
|
||||
#~ "cooling fan to run for all outer walls, regardless of the overhang degree."
|
||||
#~ msgstr ""
|
||||
#~ "當懸垂超過此設定的閾值時,冷卻風扇將強制以「懸垂風扇轉速」運行。該閾值以百"
|
||||
#~ "分比表示,代表每條列印線寬中未受下層支撐的比例。若將此值設為 0%%,則冷卻風"
|
||||
#~ "扇將對所有外牆啟動,不論懸垂角度大小。"
|
||||
|
||||
#~ msgid "Orca Slicer"
|
||||
#~ msgstr "Orca Slicer"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Anker",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Anker configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Anycubic",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Anycubic configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Artillery",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Artillery configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "AliZPX1FSA04",
|
||||
"name": "AliZ PA-CF @P1-X1",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "AliZ PA-CF @base",
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.026"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "AliZPX1FSA04",
|
||||
"name": "AliZ PETG @P1-X1",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "AliZ PETG @base",
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.026"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "AliZ PETG-CF @P1-X1",
|
||||
"inherits": "AliZ PETG-CF @base",
|
||||
"from": "system",
|
||||
"setting_id": "AliZPX1FSG50",
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.026"
|
||||
],
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "AliZ PETG-Metal @P1-X1",
|
||||
"inherits": "AliZ PETG-Metal @base",
|
||||
"from": "system",
|
||||
"setting_id": "AliZPX1FSG50",
|
||||
"instantiation": "true",
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.026"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "AliZPX1FSA04",
|
||||
"name": "AliZ PLA @P1-X1",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "AliZ PLA @base",
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.015"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "BIQU",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "BIQU configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Blocks",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Blocks configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -19,9 +19,6 @@
|
||||
"filament_cost": [
|
||||
"30"
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"80"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "CONSTRUCT3D",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Construct3D configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Chuanying",
|
||||
"url": "",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Chuanying configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Co Print",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "CoPrint configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Comgrow",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Comgrow configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Creality",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Creality configurations",
|
||||
"machine_model_list": [
|
||||
@@ -398,6 +398,10 @@
|
||||
"name": "0.12mm Fine @Creality K1 (0.4 nozzle)",
|
||||
"sub_path": "process/0.12mm Fine @Creality K1 (0.4 nozzle).json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Creality K1 SE",
|
||||
"sub_path": "process/0.12mm Fine @Creality K1 SE 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Creality K1C",
|
||||
"sub_path": "process/0.12mm Fine @Creality K1C 0.4 nozzle.json"
|
||||
@@ -582,6 +586,10 @@
|
||||
"name": "0.16mm Optimal @Creality K1 (0.4 nozzle)",
|
||||
"sub_path": "process/0.16mm Optimal @Creality K1 (0.4 nozzle).json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality K1 SE",
|
||||
"sub_path": "process/0.16mm Optimal @Creality K1 SE 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Creality K1C",
|
||||
"sub_path": "process/0.16mm Optimal @Creality K1C 0.4 nozzle.json"
|
||||
@@ -795,8 +803,8 @@
|
||||
"sub_path": "process/0.40mm Standard @Creality K2 Plus 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Fast @Creality K1 SE 0.4",
|
||||
"sub_path": "process/0.20mm Fast @Creality K1 SE 0.4.json"
|
||||
"name": "0.20mm Standard @Creality K1 SE 0.4",
|
||||
"sub_path": "process/0.20mm Standard @Creality K1 SE 0.4.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Creality Hi",
|
||||
@@ -1094,6 +1102,10 @@
|
||||
"name": "0.24mm Draft @Creality K1 (0.4 nozzle)",
|
||||
"sub_path": "process/0.24mm Draft @Creality K1 (0.4 nozzle).json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality K1 SE",
|
||||
"sub_path": "process/0.24mm Draft @Creality K1 SE 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Creality K1C",
|
||||
"sub_path": "process/0.24mm Draft @Creality K1C 0.4 nozzle.json"
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"inherits": "fdm_creality_common",
|
||||
"printer_model": "Creality K1 SE",
|
||||
"gcode_flavor": "klipper",
|
||||
"default_print_profile": "0.20mm Fast @Creality K1 SE 0.4",
|
||||
"default_print_profile": "0.20mm Standard @Creality K1 SE 0.4",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
|
||||
@@ -0,0 +1,119 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.12mm Fine @Creality K1 SE",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_common_klipper",
|
||||
"instantiation": "true",
|
||||
"adaptive_layer_height": "0",
|
||||
"reduce_crossing_wall": "0",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "3",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "50",
|
||||
"internal_bridge_speed": "150%",
|
||||
"brim_width": "5",
|
||||
"brim_object_gap": "0.1",
|
||||
"compatible_printers": [
|
||||
"Creality K1 SE 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "12000",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"outer_wall_line_width": "0.42",
|
||||
"outer_wall_speed": "200",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"inner_wall_acceleration": "5000",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.42",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "crosshatch",
|
||||
"internal_bridge_support_thickness": "0.8",
|
||||
"initial_layer_acceleration": "500",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.12",
|
||||
"initial_layer_speed": "60",
|
||||
"gap_infill_speed": "300",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"infill_wall_overlap": "15%",
|
||||
"sparse_infill_speed": "500",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_spacing": "0.15",
|
||||
"ironing_speed": "100",
|
||||
"ironing_type": "no ironing",
|
||||
"layer_height": "0.12",
|
||||
"reduce_infill_retraction": "1",
|
||||
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||
"detect_overhang_wall": "1",
|
||||
"overhang_1_4_speed": "60",
|
||||
"overhang_2_4_speed": "30",
|
||||
"overhang_3_4_speed": "10",
|
||||
"overhang_4_4_speed": "10",
|
||||
"only_one_wall_top": "1",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"inner_wall_speed": "300",
|
||||
"wall_loops": "3",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"seam_slope_conditional": "1",
|
||||
"seam_slope_inner_walls": "1",
|
||||
"seam_slope_entire_loop": "1",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
"minimum_sparse_infill_area": "15",
|
||||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_speed": "300",
|
||||
"spiral_mode": "0",
|
||||
"initial_layer_infill_speed": "105",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
"resolution": "0.012",
|
||||
"support_type": "normal(auto)",
|
||||
"support_style": "default",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_top_z_distance": "0.2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.42",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_top_layers": "2",
|
||||
"support_interface_bottom_layers": "2",
|
||||
"support_interface_spacing": "0.5",
|
||||
"support_expansion": "0",
|
||||
"support_interface_speed": "80",
|
||||
"support_base_pattern": "default",
|
||||
"support_base_pattern_spacing": "2.5",
|
||||
"support_speed": "150",
|
||||
"support_threshold_angle": "30",
|
||||
"support_object_xy_distance": "0.35",
|
||||
"tree_support_branch_diameter": "2",
|
||||
"tree_support_branch_angle": "45",
|
||||
"tree_support_wall_count": "1",
|
||||
"detect_thin_wall": "0",
|
||||
"top_surface_pattern": "monotonicline",
|
||||
"top_surface_line_width": "0.42",
|
||||
"top_surface_acceleration": "5000",
|
||||
"top_surface_speed": "200",
|
||||
"top_shell_layers": "5",
|
||||
"top_shell_thickness": "0.6",
|
||||
"travel_acceleration": "12000",
|
||||
"travel_speed": "500",
|
||||
"enable_prime_tower": "0",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"gcode_label_objects": "0",
|
||||
"precise_outer_wall": "1"
|
||||
}
|
||||
@@ -0,0 +1,119 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.16mm Optimal @Creality K1 SE",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_common_klipper",
|
||||
"instantiation": "true",
|
||||
"adaptive_layer_height": "0",
|
||||
"reduce_crossing_wall": "0",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "3",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "50",
|
||||
"internal_bridge_speed": "150%",
|
||||
"brim_width": "5",
|
||||
"brim_object_gap": "0.1",
|
||||
"compatible_printers": [
|
||||
"Creality K1 SE 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "12000",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"outer_wall_line_width": "0.42",
|
||||
"outer_wall_speed": "200",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"inner_wall_acceleration": "5000",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.42",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "crosshatch",
|
||||
"internal_bridge_support_thickness": "0.8",
|
||||
"initial_layer_acceleration": "500",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.16",
|
||||
"initial_layer_speed": "60",
|
||||
"gap_infill_speed": "300",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"infill_wall_overlap": "15%",
|
||||
"sparse_infill_speed": "500",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_spacing": "0.15",
|
||||
"ironing_speed": "100",
|
||||
"ironing_type": "no ironing",
|
||||
"layer_height": "0.16",
|
||||
"reduce_infill_retraction": "1",
|
||||
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||
"detect_overhang_wall": "1",
|
||||
"overhang_1_4_speed": "60",
|
||||
"overhang_2_4_speed": "30",
|
||||
"overhang_3_4_speed": "10",
|
||||
"overhang_4_4_speed": "10",
|
||||
"only_one_wall_top": "1",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"inner_wall_speed": "300",
|
||||
"wall_loops": "3",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"seam_slope_conditional": "1",
|
||||
"seam_slope_inner_walls": "1",
|
||||
"seam_slope_entire_loop": "1",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
"minimum_sparse_infill_area": "15",
|
||||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_speed": "300",
|
||||
"spiral_mode": "0",
|
||||
"initial_layer_infill_speed": "105",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
"resolution": "0.012",
|
||||
"support_type": "normal(auto)",
|
||||
"support_style": "default",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_top_z_distance": "0.2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.42",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_top_layers": "2",
|
||||
"support_interface_bottom_layers": "2",
|
||||
"support_interface_spacing": "0.5",
|
||||
"support_expansion": "0",
|
||||
"support_interface_speed": "80",
|
||||
"support_base_pattern": "default",
|
||||
"support_base_pattern_spacing": "2.5",
|
||||
"support_speed": "150",
|
||||
"support_threshold_angle": "30",
|
||||
"support_object_xy_distance": "0.35",
|
||||
"tree_support_branch_diameter": "2",
|
||||
"tree_support_branch_angle": "45",
|
||||
"tree_support_wall_count": "1",
|
||||
"detect_thin_wall": "0",
|
||||
"top_surface_pattern": "monotonicline",
|
||||
"top_surface_line_width": "0.42",
|
||||
"top_surface_acceleration": "5000",
|
||||
"top_surface_speed": "200",
|
||||
"top_shell_layers": "3",
|
||||
"top_shell_thickness": "0.6",
|
||||
"travel_acceleration": "12000",
|
||||
"travel_speed": "500",
|
||||
"enable_prime_tower": "0",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"gcode_label_objects": "0",
|
||||
"precise_outer_wall": "1"
|
||||
}
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.20mm Fast @Creality K1 SE 0.4",
|
||||
"name": "0.20mm Standard @Creality K1 SE",
|
||||
"renamed_from": "0.20mm Fast @Creality K1 SE 0.4",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_common_klipper",
|
||||
"instantiation": "true",
|
||||
@@ -106,5 +107,6 @@
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"gcode_label_objects": "0"
|
||||
"gcode_label_objects": "0",
|
||||
"precise_outer_wall": "1"
|
||||
}
|
||||
@@ -0,0 +1,119 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.24mm Draft @Creality K1 SE",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_common_klipper",
|
||||
"instantiation": "true",
|
||||
"adaptive_layer_height": "0",
|
||||
"reduce_crossing_wall": "0",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "3",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "50",
|
||||
"internal_bridge_speed": "150%",
|
||||
"brim_width": "5",
|
||||
"brim_object_gap": "0.1",
|
||||
"compatible_printers": [
|
||||
"Creality K1 SE 0.4 nozzle"
|
||||
],
|
||||
"compatible_printers_condition": "",
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "12000",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"outer_wall_line_width": "0.42",
|
||||
"outer_wall_speed": "200",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"inner_wall_acceleration": "5000",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.42",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "crosshatch",
|
||||
"internal_bridge_support_thickness": "0.8",
|
||||
"initial_layer_acceleration": "500",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"initial_layer_speed": "60",
|
||||
"gap_infill_speed": "300",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"infill_wall_overlap": "15%",
|
||||
"sparse_infill_speed": "500",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_spacing": "0.15",
|
||||
"ironing_speed": "100",
|
||||
"ironing_type": "no ironing",
|
||||
"layer_height": "0.24",
|
||||
"reduce_infill_retraction": "1",
|
||||
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||
"detect_overhang_wall": "1",
|
||||
"overhang_1_4_speed": "0",
|
||||
"overhang_2_4_speed": "50",
|
||||
"overhang_3_4_speed": "30",
|
||||
"overhang_4_4_speed": "10",
|
||||
"only_one_wall_top": "1",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"inner_wall_speed": "300",
|
||||
"wall_loops": "3",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"seam_slope_conditional": "1",
|
||||
"seam_slope_inner_walls": "1",
|
||||
"seam_slope_entire_loop": "1",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
"minimum_sparse_infill_area": "15",
|
||||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_speed": "300",
|
||||
"spiral_mode": "0",
|
||||
"initial_layer_infill_speed": "105",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
"resolution": "0.012",
|
||||
"support_type": "normal(auto)",
|
||||
"support_style": "default",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_top_z_distance": "0.2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.42",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_top_layers": "2",
|
||||
"support_interface_bottom_layers": "2",
|
||||
"support_interface_spacing": "0.5",
|
||||
"support_expansion": "0",
|
||||
"support_interface_speed": "80",
|
||||
"support_base_pattern": "default",
|
||||
"support_base_pattern_spacing": "2.5",
|
||||
"support_speed": "150",
|
||||
"support_threshold_angle": "30",
|
||||
"support_object_xy_distance": "0.35",
|
||||
"tree_support_branch_diameter": "2",
|
||||
"tree_support_branch_angle": "45",
|
||||
"tree_support_wall_count": "1",
|
||||
"detect_thin_wall": "0",
|
||||
"top_surface_pattern": "monotonicline",
|
||||
"top_surface_line_width": "0.42",
|
||||
"top_surface_acceleration": "5000",
|
||||
"top_surface_speed": "200",
|
||||
"top_shell_layers": "3",
|
||||
"top_shell_thickness": "0.6",
|
||||
"travel_acceleration": "12000",
|
||||
"travel_speed": "500",
|
||||
"enable_prime_tower": "0",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"gcode_label_objects": "0",
|
||||
"precise_outer_wall": "1"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Custom Printer",
|
||||
"version": "02.02.00.05",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "My configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "DeltaMaker",
|
||||
"url": "",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "DeltaMaker configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Dremel",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Dremel configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -5,7 +5,32 @@
|
||||
"from": "system",
|
||||
"setting_id": "EASA00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
]
|
||||
"compatible_printers": [
|
||||
"Elegoo Neptune 0.4 nozzle",
|
||||
"Elegoo Neptune X 0.4 nozzle",
|
||||
"Elegoo Neptune 2 0.4 nozzle",
|
||||
"Elegoo Neptune 2S 0.4 nozzle",
|
||||
"Elegoo Neptune 2D 0.4 nozzle",
|
||||
"Elegoo Neptune 3 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Pro 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Plus 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Max 0.4 nozzle",
|
||||
"Elegoo Neptune 4 (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.8 nozzle)"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -5,6 +5,31 @@
|
||||
"from": "system",
|
||||
"setting_id": "EPETGPRO00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
]
|
||||
"compatible_printers": [
|
||||
"Elegoo Neptune 0.4 nozzle",
|
||||
"Elegoo Neptune X 0.4 nozzle",
|
||||
"Elegoo Neptune 2 0.4 nozzle",
|
||||
"Elegoo Neptune 2S 0.4 nozzle",
|
||||
"Elegoo Neptune 2D 0.4 nozzle",
|
||||
"Elegoo Neptune 3 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Pro 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Plus 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Max 0.4 nozzle",
|
||||
"Elegoo Neptune 4 (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.8 nozzle)"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -33,5 +33,30 @@
|
||||
"60"
|
||||
],
|
||||
"compatible_printers": [
|
||||
]
|
||||
"Elegoo Neptune 0.4 nozzle",
|
||||
"Elegoo Neptune X 0.4 nozzle",
|
||||
"Elegoo Neptune 2 0.4 nozzle",
|
||||
"Elegoo Neptune 2S 0.4 nozzle",
|
||||
"Elegoo Neptune 2D 0.4 nozzle",
|
||||
"Elegoo Neptune 3 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Pro 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Plus 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Max 0.4 nozzle",
|
||||
"Elegoo Neptune 4 (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.8 nozzle)"
|
||||
]
|
||||
}
|
||||
@@ -9,5 +9,30 @@
|
||||
"16"
|
||||
],
|
||||
"compatible_printers": [
|
||||
]
|
||||
"Elegoo Neptune 0.4 nozzle",
|
||||
"Elegoo Neptune X 0.4 nozzle",
|
||||
"Elegoo Neptune 2 0.4 nozzle",
|
||||
"Elegoo Neptune 2S 0.4 nozzle",
|
||||
"Elegoo Neptune 2D 0.4 nozzle",
|
||||
"Elegoo Neptune 3 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Pro 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Plus 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Max 0.4 nozzle",
|
||||
"Elegoo Neptune 4 (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.8 nozzle)"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -30,5 +30,30 @@
|
||||
"60"
|
||||
],
|
||||
"compatible_printers": [
|
||||
]
|
||||
"Elegoo Neptune 0.4 nozzle",
|
||||
"Elegoo Neptune X 0.4 nozzle",
|
||||
"Elegoo Neptune 2 0.4 nozzle",
|
||||
"Elegoo Neptune 2S 0.4 nozzle",
|
||||
"Elegoo Neptune 2D 0.4 nozzle",
|
||||
"Elegoo Neptune 3 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Pro 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Plus 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Max 0.4 nozzle",
|
||||
"Elegoo Neptune 4 (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.8 nozzle)"
|
||||
]
|
||||
}
|
||||
@@ -9,5 +9,30 @@
|
||||
"16"
|
||||
],
|
||||
"compatible_printers": [
|
||||
]
|
||||
"Elegoo Neptune 0.4 nozzle",
|
||||
"Elegoo Neptune X 0.4 nozzle",
|
||||
"Elegoo Neptune 2 0.4 nozzle",
|
||||
"Elegoo Neptune 2S 0.4 nozzle",
|
||||
"Elegoo Neptune 2D 0.4 nozzle",
|
||||
"Elegoo Neptune 3 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Pro 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Plus 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Max 0.4 nozzle",
|
||||
"Elegoo Neptune 4 (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.8 nozzle)"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -33,5 +33,30 @@
|
||||
"65"
|
||||
],
|
||||
"compatible_printers": [
|
||||
]
|
||||
"Elegoo Neptune 0.4 nozzle",
|
||||
"Elegoo Neptune X 0.4 nozzle",
|
||||
"Elegoo Neptune 2 0.4 nozzle",
|
||||
"Elegoo Neptune 2S 0.4 nozzle",
|
||||
"Elegoo Neptune 2D 0.4 nozzle",
|
||||
"Elegoo Neptune 3 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Pro 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Plus 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Max 0.4 nozzle",
|
||||
"Elegoo Neptune 4 (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.8 nozzle)"
|
||||
]
|
||||
}
|
||||
@@ -9,5 +9,30 @@
|
||||
"15"
|
||||
],
|
||||
"compatible_printers": [
|
||||
]
|
||||
"Elegoo Neptune 0.4 nozzle",
|
||||
"Elegoo Neptune X 0.4 nozzle",
|
||||
"Elegoo Neptune 2 0.4 nozzle",
|
||||
"Elegoo Neptune 2S 0.4 nozzle",
|
||||
"Elegoo Neptune 2D 0.4 nozzle",
|
||||
"Elegoo Neptune 3 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Pro 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Plus 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Max 0.4 nozzle",
|
||||
"Elegoo Neptune 4 (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.8 nozzle)"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -6,5 +6,30 @@
|
||||
"setting_id": "ERPETGPLUS00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
]
|
||||
"Elegoo Neptune 0.4 nozzle",
|
||||
"Elegoo Neptune X 0.4 nozzle",
|
||||
"Elegoo Neptune 2 0.4 nozzle",
|
||||
"Elegoo Neptune 2S 0.4 nozzle",
|
||||
"Elegoo Neptune 2D 0.4 nozzle",
|
||||
"Elegoo Neptune 3 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Pro 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Plus 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Max 0.4 nozzle",
|
||||
"Elegoo Neptune 4 (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.8 nozzle)"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -6,5 +6,30 @@
|
||||
"setting_id": "ERPETG00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
]
|
||||
"Elegoo Neptune 0.4 nozzle",
|
||||
"Elegoo Neptune X 0.4 nozzle",
|
||||
"Elegoo Neptune 2 0.4 nozzle",
|
||||
"Elegoo Neptune 2S 0.4 nozzle",
|
||||
"Elegoo Neptune 2D 0.4 nozzle",
|
||||
"Elegoo Neptune 3 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Pro 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Plus 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Max 0.4 nozzle",
|
||||
"Elegoo Neptune 4 (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.8 nozzle)"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -33,5 +33,30 @@
|
||||
"60"
|
||||
],
|
||||
"compatible_printers": [
|
||||
]
|
||||
"Elegoo Neptune 0.4 nozzle",
|
||||
"Elegoo Neptune X 0.4 nozzle",
|
||||
"Elegoo Neptune 2 0.4 nozzle",
|
||||
"Elegoo Neptune 2S 0.4 nozzle",
|
||||
"Elegoo Neptune 2D 0.4 nozzle",
|
||||
"Elegoo Neptune 3 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Pro 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Plus 0.4 nozzle",
|
||||
"Elegoo Neptune 3 Max 0.4 nozzle",
|
||||
"Elegoo Neptune 4 (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Max (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Plus (0.8 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.2 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.4 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.6 nozzle)",
|
||||
"Elegoo Neptune 4 Pro (0.8 nozzle)"
|
||||
]
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Thinker X400",
|
||||
"version": "01.09.00.02",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Eryone configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "FLSun",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "FLSun configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Flashforge",
|
||||
"url": "",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Flashforge configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "FlyingBear",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "1",
|
||||
"description": "FlyingBear configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -110,7 +110,7 @@
|
||||
],
|
||||
"extruder_clearance_height_to_lid": "80",
|
||||
"extruder_clearance_height_to_rod": "64",
|
||||
"extruder_clearance_radius": "40",
|
||||
"extruder_clearance_radius": "55",
|
||||
"z_hop": [
|
||||
"0.2"
|
||||
],
|
||||
@@ -131,4 +131,4 @@
|
||||
"100x100",
|
||||
"320x320"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
"extra_loading_move": "-2",
|
||||
"extruder_clearance_height_to_lid": "69",
|
||||
"extruder_clearance_height_to_rod": "69",
|
||||
"extruder_clearance_radius": "49",
|
||||
"extruder_clearance_radius": "55",
|
||||
"extruder_colour": [
|
||||
"#FCE94F"
|
||||
],
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Folgertech",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Folgertech configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Geeetech",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Geeetech configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Ginger Additive",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "1",
|
||||
"description": "Ginger configuration",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "InfiMech",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "1",
|
||||
"description": "InfiMech configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Kingroon",
|
||||
"url": "https://kingroon.com/",
|
||||
"version": "02.02.00.04",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "1",
|
||||
"description": "Kingroon configuration files",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"name": "Lulzbot",
|
||||
"url": "https://ohai.lulzbot.com/group/taz-6/",
|
||||
"version": "02.03.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Lulzbot configurations",
|
||||
"machine_model_list": [
|
||||
{
|
||||
"name": "Lulzbot Taz 6",
|
||||
"sub_path": "machine/Lulzbot Taz 6.json"
|
||||
}
|
||||
],
|
||||
"process_list": [
|
||||
{
|
||||
"name": "fdm_process_common",
|
||||
"sub_path": "process/fdm_process_common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Standard @Lulzbot Taz 6",
|
||||
"sub_path": "process/0.25mm Standard @Lulzbot Taz 6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.18mm High Detail @Lulzbot Taz 6",
|
||||
"sub_path": "process/0.18mm High Detail @Lulzbot Taz 6.json"
|
||||
}
|
||||
],
|
||||
"filament_list": [
|
||||
{
|
||||
"name": "Lulzbot 2.85mm ABS",
|
||||
"sub_path": "filament/Lulzbot 2.85mm ABS.json"
|
||||
},
|
||||
{
|
||||
"name": "Lulzbot 2.85mm PETG",
|
||||
"sub_path": "filament/Lulzbot 2.85mm PETG.json"
|
||||
},
|
||||
{
|
||||
"name": "Lulzbot 2.85mm PLA",
|
||||
"sub_path": "filament/Lulzbot 2.85mm PLA.json"
|
||||
}
|
||||
],
|
||||
"machine_list": [
|
||||
{
|
||||
"name": "fdm_machine_common",
|
||||
"sub_path": "machine/fdm_machine_common.json"
|
||||
},
|
||||
{
|
||||
"name": "Lulzbot Taz 6 0.5 nozzle",
|
||||
"sub_path": "machine/Lulzbot Taz 6 0.5 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 184 KiB |
|
After Width: | Height: | Size: 99 KiB |
|
After Width: | Height: | Size: 289 KiB |
|
After Width: | Height: | Size: 336 KiB |
|
After Width: | Height: | Size: 308 KiB |
|
After Width: | Height: | Size: 279 KiB |
|
After Width: | Height: | Size: 156 KiB |
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFB99",
|
||||
"setting_id": "GFSA04",
|
||||
"name": "Lulzbot 2.85mm ABS",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic ABS @System",
|
||||
"filament_diameter": [
|
||||
"2.85"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"6"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Lulzbot Taz 6 0.5 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFG99",
|
||||
"setting_id": "GFSG99",
|
||||
"name": "Lulzbot 2.85mm PETG",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PETG @System",
|
||||
"filament_diameter": [
|
||||
"2.85"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"6"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Lulzbot Taz 6 0.5 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSL99",
|
||||
"name": "Lulzbot 2.85mm PLA",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic PLA @System",
|
||||
"filament_diameter": [
|
||||
"2.85"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Lulzbot Taz 6 0.5 nozzle"
|
||||
]
|
||||
}
|
||||
|
After Width: | Height: | Size: 46 KiB |
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Lulzbot Taz 6",
|
||||
"model_id": "Lulzbot-Taz-6",
|
||||
"nozzle_diameter": "0.5",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Lulzbot",
|
||||
"bed_model": "taz_6_build_plate.stl",
|
||||
"bed_texture": "lulzbot_logo.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Lulzbot 2.85mm ABS;Lulzbot 2.85mm PETG;Lulzbot 2.85mm PLA"
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "fdm_machine_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"printer_technology": "FFF",
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"extruder_colour": [
|
||||
"#FCE94F"
|
||||
],
|
||||
"extruder_offset": [
|
||||
"0x0"
|
||||
],
|
||||
"gcode_flavor": "marlin2",
|
||||
"silent_mode": "0",
|
||||
"machine_max_acceleration_e": [
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.4"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "36",
|
||||
"extruder_clearance_height_to_lid": "140",
|
||||
"nozzle_diameter": [
|
||||
"0.5"
|
||||
],
|
||||
"printer_settings_id": "",
|
||||
"printer_variant": "0.5",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retract_when_changing_layer": [
|
||||
"1"
|
||||
],
|
||||
"retraction_length": [
|
||||
"5"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"z_hop": [
|
||||
"0"
|
||||
],
|
||||
"retract_restart_extra": [
|
||||
"0"
|
||||
],
|
||||
"retract_restart_extra_toolchange": [
|
||||
"0"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"60"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "",
|
||||
"wipe": [
|
||||
"1"
|
||||
],
|
||||
"z_lift_type": "NormalLift",
|
||||
"default_print_profile": "",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
|
||||
"machine_start_gcode": "",
|
||||
"machine_end_gcode": ""
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "LZH06",
|
||||
"name": "0.18mm High Detail @Lulzbot Taz 6",
|
||||
"from": "system",
|
||||
"inherits": "0.25mm Standard @Lulzbot Taz 6",
|
||||
"instantiation": "true",
|
||||
"layer_height": "0.18",
|
||||
"compatible_printers": [
|
||||
"Lulzbot Taz 6 0.5 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,109 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "LZS06",
|
||||
"name": "0.25mm Standard @Lulzbot Taz 6",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_common",
|
||||
"instantiation": "true",
|
||||
"adaptive_layer_height": "1",
|
||||
"reduce_crossing_wall": "0",
|
||||
"layer_height": "0.25",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "5",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_flow": "0.85",
|
||||
"bridge_speed": "25",
|
||||
"brim_width": "0",
|
||||
"brim_object_gap": "0",
|
||||
"compatible_printers_condition": "",
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "0",
|
||||
"outer_wall_acceleration": "0",
|
||||
"top_surface_acceleration": "0",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0.1",
|
||||
"enable_arc_fitting": "0",
|
||||
"outer_wall_line_width": "0.5",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.5",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "20%",
|
||||
"sparse_infill_pattern": "crosshatch",
|
||||
"initial_layer_acceleration": "0",
|
||||
"travel_acceleration": "0",
|
||||
"inner_wall_acceleration": "0",
|
||||
"initial_layer_line_width": "0.50",
|
||||
"initial_layer_print_height": "0.425",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.50",
|
||||
"infill_wall_overlap": "25%",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "15%",
|
||||
"ironing_spacing": "0.1",
|
||||
"ironing_speed": "15",
|
||||
"ironing_type": "no ironing",
|
||||
"reduce_infill_retraction": "1",
|
||||
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||
"detect_overhang_wall": "1",
|
||||
"overhang_1_4_speed": "0",
|
||||
"overhang_2_4_speed": "20",
|
||||
"overhang_3_4_speed": "15",
|
||||
"overhang_4_4_speed": "10",
|
||||
"inner_wall_line_width": "0.50",
|
||||
"wall_loops": "2",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"skirt_distance": "3",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "2",
|
||||
"minimum_sparse_infill_area": "10",
|
||||
"internal_solid_infill_line_width": "0",
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
"resolution": "0.012",
|
||||
"support_type": "normal(auto)",
|
||||
"support_style": "grid",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_top_z_distance": "0.19",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.5",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_top_layers": "3",
|
||||
"support_interface_bottom_layers": "-1",
|
||||
"support_interface_spacing": "0.2",
|
||||
"support_interface_speed": "100%",
|
||||
"support_base_pattern": "rectilinear",
|
||||
"support_base_pattern_spacing": "0.2",
|
||||
"support_speed": "40",
|
||||
"support_threshold_angle": "30",
|
||||
"support_object_xy_distance": "60%",
|
||||
"tree_support_branch_angle": "40",
|
||||
"tree_support_wall_count": "0",
|
||||
"detect_thin_wall": "1",
|
||||
"top_surface_pattern": "monotonicline",
|
||||
"top_surface_line_width": "0.5",
|
||||
"top_shell_layers": "5",
|
||||
"top_shell_thickness": "1.0",
|
||||
"initial_layer_speed": "35%",
|
||||
"initial_layer_infill_speed": "35%",
|
||||
"outer_wall_speed": "40",
|
||||
"inner_wall_speed": "40",
|
||||
"internal_solid_infill_speed": "40",
|
||||
"top_surface_speed": "30",
|
||||
"gap_infill_speed": "30",
|
||||
"sparse_infill_speed": "60",
|
||||
"travel_speed": "150",
|
||||
"enable_prime_tower": "0",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"compatible_printers": [
|
||||
"Lulzbot Taz 6 0.5 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "fdm_process_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"adaptive_layer_height": "0",
|
||||
"reduce_crossing_wall": "0",
|
||||
"bridge_flow": "0.95",
|
||||
"bridge_speed": "25",
|
||||
"brim_width": "5",
|
||||
"compatible_printers": [],
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "0",
|
||||
"bridge_no_support": "0",
|
||||
"elefant_foot_compensation": "0.1",
|
||||
"outer_wall_line_width": "0.4",
|
||||
"outer_wall_speed": "120",
|
||||
"line_width": "0.45",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "alignedrectilinear",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"initial_layer_speed": "20",
|
||||
"gap_infill_speed": "30",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"infill_wall_overlap": "25%",
|
||||
"sparse_infill_speed": "50",
|
||||
"interface_shells": "0",
|
||||
"detect_overhang_wall": "0",
|
||||
"reduce_infill_retraction": "0",
|
||||
"filename_format": "{input_filename_base}.gcode",
|
||||
"wall_loops": "3",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"inner_wall_speed": "40",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "nearest",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "2",
|
||||
"minimum_sparse_infill_area": "0",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"internal_solid_infill_speed": "40",
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.42",
|
||||
"support_interface_filament": "0",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_top_z_distance": "0.15",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_top_layers": "2",
|
||||
"support_interface_spacing": "0",
|
||||
"support_interface_speed": "80",
|
||||
"support_base_pattern": "rectilinear",
|
||||
"support_base_pattern_spacing": "2",
|
||||
"support_speed": "40",
|
||||
"support_threshold_angle": "30",
|
||||
"support_object_xy_distance": "0.5",
|
||||
"detect_thin_wall": "0",
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_surface_speed": "30",
|
||||
"travel_speed": "400",
|
||||
"enable_prime_tower": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0"
|
||||
}
|
||||