mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-17 18:42:24 +00:00
Compare commits
43 Commits
v1.6.4-bet
...
v1.6.6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f7184c868b | ||
|
|
761417f1bf | ||
|
|
ec8d348c5a | ||
|
|
dee6120c34 | ||
|
|
ff925783de | ||
|
|
6dbb429c85 | ||
|
|
2aefba2cf5 | ||
|
|
de4e34ec01 | ||
|
|
004bea72db | ||
|
|
cd8a377f09 | ||
|
|
5072bf3d16 | ||
|
|
08b7af645d | ||
|
|
95762fabee | ||
|
|
44a013a5a7 | ||
|
|
baa11c9b7e | ||
|
|
ba87a1b8f9 | ||
|
|
c5df165824 | ||
|
|
53c6db9168 | ||
|
|
3f15339345 | ||
|
|
86d908f44e | ||
|
|
6e1bdaf9d4 | ||
|
|
a202fde769 | ||
|
|
29da81527e | ||
|
|
15d96e1f6d | ||
|
|
6a767a5f67 | ||
|
|
1fa6ee78e7 | ||
|
|
27eb7bbe9f | ||
|
|
5f848b7a93 | ||
|
|
94f8c26c30 | ||
|
|
3e49c3f55b | ||
|
|
a148b9d85f | ||
|
|
f65871b3fb | ||
|
|
5a5955f3bc | ||
|
|
2e78f7e809 | ||
|
|
79a7201f52 | ||
|
|
a35264e910 | ||
|
|
d9a8526843 | ||
|
|
d5e5992b02 | ||
|
|
a422b9a01d | ||
|
|
37c0f8d0bd | ||
|
|
719a25a291 | ||
|
|
1279beb3de | ||
|
|
c1fbcd5661 |
32
.github/workflows/build_deps.yml
vendored
32
.github/workflows/build_deps.yml
vendored
@@ -15,18 +15,22 @@ on:
|
||||
- 'deps/**'
|
||||
- .github/workflows/build_deps.yml
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build_deps:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: ubuntu-22.04
|
||||
- os: windows-2019
|
||||
- os: macos-12
|
||||
arch: x86_64
|
||||
- os: macos-12
|
||||
arch: arm64
|
||||
# - os: ubuntu-22.04
|
||||
- os: windows-latest
|
||||
# - os: macos-12
|
||||
# arch: x86_64
|
||||
# - os: macos-12
|
||||
# arch: arm64
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
@@ -35,31 +39,29 @@ jobs:
|
||||
|
||||
- name: setup dev on Windows
|
||||
if: matrix.os == 'Windows'
|
||||
uses: ilammy/msvc-dev-cmd@v1
|
||||
uses: microsoft/setup-msbuild@v1.1
|
||||
|
||||
- name: Get the date on Ubuntu and macOS
|
||||
if: matrix.os != 'windows-2019'
|
||||
if: matrix.os != 'windows-latest'
|
||||
id: get-date-unix
|
||||
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||
shell: bash
|
||||
|
||||
- name: Get the date on Windows
|
||||
if: matrix.os == 'windows-2019'
|
||||
if: matrix.os == 'windows-latest'
|
||||
id: get-date-windows
|
||||
run: echo "date=$(Get-Date -Format 'yyyyMMdd')" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
|
||||
shell: pwsh
|
||||
|
||||
- name: Build on Windows
|
||||
if: matrix.os == 'windows-2019'
|
||||
if: matrix.os == 'windows-latest'
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
choco install strawberryperl
|
||||
mkdir ${{ github.workspace }}/deps/build
|
||||
mkdir ${{ github.workspace }}/deps/build/OrcaSlicer_dep
|
||||
.\build_release.bat deps
|
||||
.\build_release_vs2022.bat deps
|
||||
cd ${{ github.workspace }}/deps/build
|
||||
'"C:/Program Files/7-Zip/7z.exe" a OrcaSlicer_dep_win64_${{ env.date }}.zip ${{ github.workspace }}/deps/build/OrcaSlicer_dep'
|
||||
ls
|
||||
|
||||
- name: Build on Mac x86_64
|
||||
if: matrix.os == 'macos-12' && matrix.arch == 'x86_64'
|
||||
@@ -110,11 +112,11 @@ jobs:
|
||||
path: ${{ github.workspace }}/deps/build_x86_64/OrcaSlicer_dep*.tar.gz
|
||||
|
||||
- name: Upload Windows artifacts
|
||||
if: matrix.os == 'windows-2019'
|
||||
if: matrix.os == 'windows-latest'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: OrcaSlicer_dep_win64_${{ env.date }}
|
||||
path: ${{ github.workspace }}/deps/build/*.zip
|
||||
path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep
|
||||
|
||||
- name: Upload Ubuntu artifacts
|
||||
if: matrix.os == 'ubuntu-22.04'
|
||||
|
||||
31
.github/workflows/build_orca.yml
vendored
31
.github/workflows/build_orca.yml
vendored
@@ -22,7 +22,11 @@ on:
|
||||
- 'localization/**'
|
||||
- 'resources/**'
|
||||
- ".github/workflows/build_orca.yml"
|
||||
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build_orca:
|
||||
strategy:
|
||||
@@ -146,12 +150,12 @@ jobs:
|
||||
# Windows
|
||||
- name: setup MSVC
|
||||
if: matrix.os == 'windows-2019'
|
||||
uses: ilammy/msvc-dev-cmd@v1
|
||||
uses: microsoft/setup-msbuild@v1.1
|
||||
|
||||
- name: Install perl
|
||||
- name: Install nsis
|
||||
if: matrix.os == 'windows-2019'
|
||||
run: |
|
||||
choco install strawberryperl
|
||||
choco install nsis
|
||||
|
||||
- name: download deps
|
||||
if: matrix.os == 'windows-2019'
|
||||
@@ -185,7 +189,7 @@ jobs:
|
||||
# name: build deps
|
||||
# working-directory: ${{ github.workspace }}
|
||||
# continue-on-error: true
|
||||
# run: .\build_release.bat deps
|
||||
# run: .\build_release_vs2022.bat deps
|
||||
|
||||
# - run: Get-ChildItem ${{ github.workspace }}/deps/build/ -Exclude OrcaSlicer_dep | Remove-Item -Recurse -Force
|
||||
|
||||
@@ -194,19 +198,30 @@ jobs:
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: .\build_release.bat slicer
|
||||
|
||||
- name: Create installer Win
|
||||
if: matrix.os == 'windows-2019'
|
||||
working-directory: ${{ github.workspace }}/build
|
||||
run: cpack -G NSIS
|
||||
|
||||
# - name: pack app
|
||||
# if: matrix.os == 'windows-2019'
|
||||
# working-directory: ${{ github.workspace }}/build
|
||||
# shell: cmd
|
||||
# run: '"C:/Program Files/7-Zip/7z.exe" a -tzip OrcaSlicer_dev_build.zip ${{ github.workspace }}/build/OrcaSlicer'
|
||||
|
||||
- name: Upload artifacts Win
|
||||
- name: Upload artifacts Win zip
|
||||
if: matrix.os == 'windows-2019'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: OrcaSlicer_Windows_V${{ env.ver }}_portable
|
||||
path: ${{ github.workspace }}/build/OrcaSlicer
|
||||
|
||||
- name: Upload artifacts Win installer
|
||||
if: matrix.os == 'windows-2019'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: OrcaSlicer_Windows_V${{ env.ver }}
|
||||
path: ${{ github.workspace }}/build/OrcaSlicer
|
||||
|
||||
path: ${{ github.workspace }}/build/OrcaSlicer*.exe
|
||||
# Ubuntu
|
||||
|
||||
- name: Install dependencies
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -25,4 +25,4 @@ build_*/
|
||||
SVG
|
||||
src/OrcaSlicer-doc/
|
||||
.idea/
|
||||
/.cache/
|
||||
/.cache/
|
||||
|
||||
@@ -42,7 +42,6 @@ set(SLIC3R_GTK "2" CACHE STRING "GTK version to use with wxWidgets on Linux")
|
||||
|
||||
set(IS_CROSS_COMPILE FALSE)
|
||||
|
||||
|
||||
if (APPLE)
|
||||
set(CMAKE_FIND_FRAMEWORK LAST)
|
||||
set(CMAKE_FIND_APPBUNDLE LAST)
|
||||
@@ -568,6 +567,20 @@ else ()
|
||||
"OpenVDB installation with the OPENVDB_FIND_MODULE_PATH cache variable.")
|
||||
endif ()
|
||||
|
||||
find_path(SPNAV_INCLUDE_DIR spnav.h)
|
||||
if (SPNAV_INCLUDE_DIR)
|
||||
find_library(HAVE_SPNAV spnav)
|
||||
if (HAVE_SPNAV)
|
||||
add_definitions(-DHAVE_SPNAV)
|
||||
add_library(libspnav SHARED IMPORTED)
|
||||
target_link_libraries(libspnav INTERFACE spnav)
|
||||
message(STATUS "SPNAV library found")
|
||||
else()
|
||||
message(STATUS "SPNAV library NOT found, Spacenavd not supported")
|
||||
endif()
|
||||
else()
|
||||
message(STATUS "SPNAV library NOT found, Spacenavd not supported")
|
||||
endif()
|
||||
|
||||
set(TOP_LEVEL_PROJECT_DIR ${PROJECT_SOURCE_DIR})
|
||||
function(orcaslicer_copy_dlls target config postfix output_dlls)
|
||||
@@ -699,7 +712,10 @@ endif()
|
||||
|
||||
# Resources install target, configure fhs.hpp on UNIX
|
||||
if (WIN32)
|
||||
install(DIRECTORY "${SLIC3R_RESOURCES_DIR}/" DESTINATION "${CMAKE_INSTALL_PREFIX}/resources")
|
||||
install(DIRECTORY "${SLIC3R_RESOURCES_DIR}/" DESTINATION "./resources")
|
||||
set(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP TRUE)
|
||||
include(InstallRequiredSystemLibraries)
|
||||
install (PROGRAMS ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS} DESTINATION ".")
|
||||
elseif (SLIC3R_FHS)
|
||||
# CMAKE_INSTALL_FULL_DATAROOTDIR: read-only architecture-independent data root (share)
|
||||
set(SLIC3R_FHS_RESOURCES "${CMAKE_INSTALL_FULL_DATAROOTDIR}/OrcaSlicer")
|
||||
@@ -719,4 +735,34 @@ else ()
|
||||
install(DIRECTORY "${SLIC3R_RESOURCES_DIR}/" DESTINATION "${CMAKE_INSTALL_PREFIX}/resources")
|
||||
endif ()
|
||||
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/LICENSE.txt DESTINATION ".")
|
||||
configure_file(${LIBDIR}/platform/unix/fhs.hpp.in ${LIBDIR_BIN}/platform/unix/fhs.hpp)
|
||||
|
||||
set (CPACK_PACKAGE_NAME "OrcaSlicer")
|
||||
set (CPACK_PACKAGE_VENDOR "SoftFever")
|
||||
set (CPACK_PACKAGE_VERSION_MAJOR "${ORCA_VERSION_MAJOR}")
|
||||
set (CPACK_PACKAGE_VERSION_MINOR "${ORCA_VERSION_MINOR}")
|
||||
set (CPACK_PACKAGE_VERSION_PATCH "${ORCA_VERSION_PATCH}")
|
||||
set (CPACK_PACKAGE_FILE_NAME "OrcaSlicer_Windows_${SoftFever_VERSION}")
|
||||
set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Orca Slicer is an open source slicer for FDM printers")
|
||||
set (CPACK_PACKAGE_HOMEPAGE_URL "https://github.com/SoftFever/OrcaSlicer")
|
||||
set (CPACK_PACKAGE_INSTALL_DIRECTORY ${CPACK_PACKAGE_NAME})
|
||||
set (CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/resources/images\\\\OrcaSlicer.ico")
|
||||
set (CPACK_NSIS_MUI_ICON "${CPACK_PACKAGE_ICON}")
|
||||
set (CPACK_NSIS_MUI_UNIICON "${CPACK_PACKAGE_ICON}")
|
||||
set (CPACK_NSIS_INSTALLED_ICON_NAME "$INSTDIR\\\\orca-slicer.exe")
|
||||
set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "
|
||||
CreateShortCut \\\"$DESKTOP\\\\OrcaSlicer.lnk\\\" \\\"$INSTDIR\\\\orca-slicer.exe\\\"
|
||||
")
|
||||
set (CPACK_PACKAGE_CHECKSUM SHA256)
|
||||
set (CPACK_PACKAGE_INSTALL_REGISTRY_KEY "OrcaSlicer")
|
||||
set (CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON)
|
||||
set (CPACK_NSIS_EXECUTABLES_DIRECTORY ".")
|
||||
# set (CPACK_NSIS_MODIFY_PATH "ON")
|
||||
set(CPACK_PACKAGE_EXECUTABLES "orca-slicer;OrcaSlicer")
|
||||
set(CPACK_CREATE_DESKTOP_LINKS "orca-slicer")
|
||||
set (CPACK_RESOURCE_FILE_LICENSE ${CMAKE_SOURCE_DIR}/LICENSE.txt) # must also include in install command
|
||||
|
||||
set(CPACK_WIX_UPGRADE_GUID "058245e8-20e0-4a95-9ab7-1acfe17ad511")
|
||||
set(CPACK_GENERATOR NSIS)
|
||||
include(CPack)
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+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"
|
||||
@@ -4376,6 +4376,9 @@ msgstr ""
|
||||
msgid "Login Region"
|
||||
msgstr ""
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr ""
|
||||
|
||||
@@ -4610,6 +4613,12 @@ msgstr ""
|
||||
msgid "Plate name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr ""
|
||||
|
||||
@@ -4992,8 +5001,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Line width"
|
||||
@@ -5964,6 +5973,9 @@ msgstr ""
|
||||
msgid "Gap infill"
|
||||
msgstr ""
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr ""
|
||||
|
||||
@@ -6168,6 +6180,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr ""
|
||||
@@ -6363,6 +6391,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr ""
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr ""
|
||||
|
||||
@@ -6539,7 +6570,7 @@ msgstr ""
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
|
||||
msgid "outer_only"
|
||||
msgid "Outer brim only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inner brim only"
|
||||
@@ -7198,10 +7229,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 "Support interface fan speed"
|
||||
@@ -8894,21 +8925,21 @@ msgstr ""
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"PO-Revision-Date: 2023-07-17 21:51+0200\n"
|
||||
"Last-Translator: Momo <renemosner@seznam.cz>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -790,7 +790,7 @@ msgid "Extruders"
|
||||
msgstr "Extrudery"
|
||||
|
||||
msgid "Extrusion Width"
|
||||
msgstr "Šířka extruze"
|
||||
msgstr "Šířka Extruze"
|
||||
|
||||
msgid "Wipe options"
|
||||
msgstr "Možnosti čištění"
|
||||
@@ -874,10 +874,10 @@ msgid "Set as individual objects"
|
||||
msgstr "Nastavit jako jednotlivé objekty"
|
||||
|
||||
msgid "Fill bed with copies"
|
||||
msgstr ""
|
||||
msgstr "Vyplnit tiskovou plochu kopiemi"
|
||||
|
||||
msgid "Fill the remaining area of bed with copies of the selected object"
|
||||
msgstr ""
|
||||
msgstr "Vyplní zbývající tiskovou plochu kopiemi vybraného objektu"
|
||||
|
||||
msgid "Printable"
|
||||
msgstr "Tisknout objekt"
|
||||
@@ -1484,7 +1484,7 @@ msgid "Cali"
|
||||
msgstr "Kalibrace"
|
||||
|
||||
msgid "Calibration of extrusion"
|
||||
msgstr "Kalibrace Extruze"
|
||||
msgstr "Kalibrace extruze"
|
||||
|
||||
msgid "Load Filament"
|
||||
msgstr "Zavézt Filament"
|
||||
@@ -1619,13 +1619,13 @@ msgid "Orienting"
|
||||
msgstr "Orientování"
|
||||
|
||||
msgid "Filling bed "
|
||||
msgstr ""
|
||||
msgstr "Vyplňování podložky "
|
||||
|
||||
msgid "Bed filling canceled."
|
||||
msgstr ""
|
||||
msgstr "Vyplnění podložky zrušeno."
|
||||
|
||||
msgid "Bed filling done."
|
||||
msgstr ""
|
||||
msgstr "Vyplnění podložky je dokončené."
|
||||
|
||||
msgid "Error! Unable to create thread!"
|
||||
msgstr "Chyba! Nelze vytvořit vlákno!"
|
||||
@@ -2952,7 +2952,7 @@ msgid "Assembly Return"
|
||||
msgstr "Návrat k sestavení"
|
||||
|
||||
msgid "return"
|
||||
msgstr "návrat"
|
||||
msgstr "Návrat"
|
||||
|
||||
msgid "Paint Toolbar"
|
||||
msgstr "Panel nástrojů Malování"
|
||||
@@ -2990,7 +2990,7 @@ msgid "An object is layed over the boundary of plate."
|
||||
msgstr "Objekt je položen přes hranici podložky."
|
||||
|
||||
msgid "A G-code path goes beyond the max print height."
|
||||
msgstr ""
|
||||
msgstr "Cesta G-kódu přesahuje maximální výšku tisku."
|
||||
|
||||
msgid "A G-code path goes beyond the boundary of plate."
|
||||
msgstr "Cesta G-kódu přesahuje hranici podložky."
|
||||
@@ -3998,7 +3998,7 @@ msgid "Export successfully."
|
||||
msgstr "Export úspěšně."
|
||||
|
||||
msgid "Serious warning:"
|
||||
msgstr ""
|
||||
msgstr "Vážné varování:"
|
||||
|
||||
msgid " (Repair)"
|
||||
msgstr " (Oprava)"
|
||||
@@ -4522,6 +4522,8 @@ msgid ""
|
||||
"Unable to perform boolean operation on model meshes. Only positive parts "
|
||||
"will be exported."
|
||||
msgstr ""
|
||||
"Nelze provést logickou operaci nad mashí modelů. Budou exportovány pouze "
|
||||
"kladné části."
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
@@ -4548,11 +4550,11 @@ msgstr "Nastavení Podložky"
|
||||
|
||||
#, boost-format
|
||||
msgid "Number of currently selected parts: %1%\n"
|
||||
msgstr ""
|
||||
msgstr "Počet aktuálně vybraných částí: %1%\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Number of currently selected objects: %1%\n"
|
||||
msgstr ""
|
||||
msgstr "Počet aktuálně vybraných objektů: %1%\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Part name: %1%\n"
|
||||
@@ -4653,6 +4655,9 @@ msgstr "Ostatní"
|
||||
msgid "Login Region"
|
||||
msgstr "Región přihlášení"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "Metrický"
|
||||
|
||||
@@ -4895,6 +4900,12 @@ msgstr "Tisková sekvence"
|
||||
msgid "Plate name"
|
||||
msgstr "Název Podložky"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr "Přizpůsobit"
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr "Sekvence tisku první vrstvy"
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "Stejné jako globální typ Podložky"
|
||||
|
||||
@@ -5317,8 +5328,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"
|
||||
@@ -5365,7 +5376,7 @@ msgid "Bridge"
|
||||
msgstr "Most"
|
||||
|
||||
msgid "Set speed for external and internal bridges"
|
||||
msgstr ""
|
||||
msgstr "Nastavit rychlost pro vnější a vnitřní mosty"
|
||||
|
||||
msgid "Travel speed"
|
||||
msgstr "Cestovní rychlost"
|
||||
@@ -6354,11 +6365,14 @@ msgid "Bottom surface"
|
||||
msgstr "Spodní plocha"
|
||||
|
||||
msgid "Internal Bridge"
|
||||
msgstr ""
|
||||
msgstr "Vnitřní most"
|
||||
|
||||
msgid "Gap infill"
|
||||
msgstr "Výplň mezery"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr "Obrys"
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "Kontaktní vrstva podpěr"
|
||||
|
||||
@@ -6586,6 +6600,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "Výška vrstvy nemůže překročit průměr trysky"
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "Podložka %d: %s nepodporuje filament %s"
|
||||
@@ -6823,6 +6853,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "Typy podložek podporované tiskárnou"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr "Sekvence tisku první vrstvy"
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr "Tento G-kód se vkládá při každé změně vrstvy před zvednutím z"
|
||||
|
||||
@@ -6957,9 +6990,9 @@ msgstr ""
|
||||
"prostoru pro horní vzor výplně"
|
||||
|
||||
msgid "One wall threshold"
|
||||
msgstr ""
|
||||
msgstr "Hranice jedné stěny"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, fuzzy, c-format, boost-format
|
||||
msgid ""
|
||||
"If a top surface has to be printed and it's partially covered by another "
|
||||
"layer, it won't be considered at a top layer where its width is below this "
|
||||
@@ -6970,6 +7003,14 @@ msgid ""
|
||||
"on the next layer, like letters. Set this setting to 0 to remove these "
|
||||
"artifacts."
|
||||
msgstr ""
|
||||
"Pokud má být tisknuta horní plocha a je částečně zakrytá jinou vrstvou, "
|
||||
"nebude brána v úvahu jako horní vrstva, pokud je její šířka nižší než tato "
|
||||
"hodnota. Toto může být užitečné, aby se zabránilo spuštění funkce 'jeden "
|
||||
"perimetr nahoře' na ploše, která by měla být pokryta pouze perimetry. Tato "
|
||||
"hodnota může být udávána v mm nebo jako % šířky extruze perimetru.\n"
|
||||
"Varování: Pokud je tato funkce povolena, mohou vzniknout artefakty, pokud "
|
||||
"máte na následující vrstvě nějaké tenké prvky, například písmena. Tuto volbu "
|
||||
"nastavte na 0, abyste se tyto artefakty odstranili."
|
||||
|
||||
msgid "Only one wall on first layer"
|
||||
msgstr "Pouze jedna stěna v první vrstvě"
|
||||
@@ -6997,7 +7038,7 @@ msgid "mm/s or %"
|
||||
msgstr "mm/s or %"
|
||||
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
msgstr "Vnější"
|
||||
|
||||
msgid "Speed of bridge and completely overhang wall"
|
||||
msgstr "Rychlost mostu a zcela převislé stěny"
|
||||
@@ -7006,12 +7047,14 @@ msgid "mm/s"
|
||||
msgstr "mm/s"
|
||||
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
msgstr "Vnitřní"
|
||||
|
||||
msgid ""
|
||||
"Speed of internal bridge. If the value is expressed as a percentage, it will "
|
||||
"be calculated based on the bridge_speed. Default value is 150%."
|
||||
msgstr ""
|
||||
"Rychlost vnitřního mostu. Pokud je hodnota vyjádřena jako procento, bude "
|
||||
"vypočítána na základě most_speed. Výchozí hodnota je 150 %."
|
||||
|
||||
msgid "Brim width"
|
||||
msgstr "Šířka Límce"
|
||||
@@ -7030,9 +7073,9 @@ msgstr ""
|
||||
"Auto znamená, že šířka límce je automaticky analyzována a vypočítána."
|
||||
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
msgstr "Uši myši"
|
||||
|
||||
msgid "outer_only"
|
||||
msgid "Outer brim only"
|
||||
msgstr "Pouze vnější"
|
||||
|
||||
msgid "Inner brim only"
|
||||
@@ -7051,28 +7094,34 @@ msgstr ""
|
||||
"Mezera mezi nejvnitřnějším límcem a předmětem může usnadnit odstranění límce"
|
||||
|
||||
msgid "Brim ears"
|
||||
msgstr ""
|
||||
msgstr "Uši límce"
|
||||
|
||||
msgid "Only draw brim over the sharp edges of the model."
|
||||
msgstr ""
|
||||
msgstr "Pouze kreslit límec (brim) přes ostré hrany modelu."
|
||||
|
||||
msgid "Brim ear max angle"
|
||||
msgstr ""
|
||||
msgstr "Maximální úhel uší límce"
|
||||
|
||||
msgid ""
|
||||
"Maximum angle to let a brim ear appear. \n"
|
||||
"If set to 0, no brim will be created. \n"
|
||||
"If set to ~180, brim will be created on everything but straight sections."
|
||||
msgstr ""
|
||||
"Maximální úhel, při kterém se můžou objevit uši límce.\n"
|
||||
"Pokud je nastaveno na 0, nebude vytvořen žádný límec.\n"
|
||||
"Pokud je nastaveno na ~180, límec bude vytvořen na všem kromě rovných úseků."
|
||||
|
||||
msgid "Brim ear detection radius"
|
||||
msgstr ""
|
||||
msgstr "Poloměr detekce uší límce"
|
||||
|
||||
msgid ""
|
||||
"The geometry will be decimated before dectecting sharp angles. This "
|
||||
"parameter indicates the minimum length of the deviation for the decimation.\n"
|
||||
"0 to deactivate"
|
||||
msgstr ""
|
||||
"Geometrie bude zredukována před detekcí ostrých úhlů. Tento parametr udává "
|
||||
"minimální délku odchylky pro redukci.\n"
|
||||
"0 pro deaktivaci"
|
||||
|
||||
msgid "Compatible machine"
|
||||
msgstr "Kompatibilní stroj"
|
||||
@@ -7256,12 +7305,14 @@ msgid "Line pattern of bottom surface infill, not bridge infill"
|
||||
msgstr "Čárový vzor výplně spodní plochy, nikoli výplně mostů"
|
||||
|
||||
msgid "Internal solid infill pattern"
|
||||
msgstr ""
|
||||
msgstr "Vzor vnitřní plné výplně"
|
||||
|
||||
msgid ""
|
||||
"Line pattern of internal solid infill. if the detect nattow internal solid "
|
||||
"infill be enabled, the concentric pattern will be used for the small area."
|
||||
msgstr ""
|
||||
"Čárový vzor vnitřní plné výplně. Pokud je povolena detekce úzké vnitřní plné "
|
||||
"výplně, bude pro malou plochu použit koncentrický vzor."
|
||||
|
||||
msgid ""
|
||||
"Line width of outer wall. If expressed as a %, it will be computed over the "
|
||||
@@ -7390,7 +7441,7 @@ msgid ""
|
||||
"Default line width if other line widths are set to 0. If expressed as a %, "
|
||||
"it will be computed over the nozzle diameter."
|
||||
msgstr ""
|
||||
"Výchozí šířka Extruze, pokud jsou ostatní šířky extruze nastaveny na 0. "
|
||||
"Výchozí šířka extruze, pokud jsou ostatní šířky extruze nastaveny na 0. "
|
||||
"Pokud je vyjádřeno jako %, bude vypočteno na základě průměru trysky."
|
||||
|
||||
msgid "Keep fan always on"
|
||||
@@ -7499,8 +7550,8 @@ msgid ""
|
||||
"after the checks."
|
||||
msgstr ""
|
||||
"Zadejte procento smrštění, které filament získá po ochlazení (94% pokud "
|
||||
"naměříte 94 mm místo 100 mm). Část bude pro kompenzaci zmenšena v xy. Bere "
|
||||
"se v úvahu pouze filamentu použit pro obvod.\n"
|
||||
"naměříte 94mm místo 100mm). Část bude pro kompenzaci zmenšena v xy. Bere se "
|
||||
"v úvahu pouze filamentu použit pro obvod.\n"
|
||||
"Ujistěte se aby byl mezi objekty dostatek prostoru, protože tato kompenzace "
|
||||
"se provádí po kontrolách."
|
||||
|
||||
@@ -7552,10 +7603,10 @@ msgid "money/kg"
|
||||
msgstr "Kč/kg"
|
||||
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
msgstr "Výrobce"
|
||||
|
||||
msgid "Vendor of filament. For show only"
|
||||
msgstr ""
|
||||
msgstr "Výrobce filamentu. Pouze pro zobrazení."
|
||||
|
||||
msgid "(Undefined)"
|
||||
msgstr "(Nedefinováno)"
|
||||
@@ -7755,7 +7806,7 @@ msgid ""
|
||||
"Line width of initial layer. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
msgstr ""
|
||||
"Šířka Extruze pro první vrstvu. Pokud je vyjádřena jako %, vypočítá se "
|
||||
"Šířka extruze pro první vrstvu. Pokud je vyjádřena jako %, vypočítá se "
|
||||
"vzhledem k průměru trysky."
|
||||
|
||||
msgid "Initial layer height"
|
||||
@@ -7804,10 +7855,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\". "
|
||||
@@ -8054,7 +8105,7 @@ msgid ""
|
||||
"Line width of internal sparse infill. If expressed as a %, it will be "
|
||||
"computed over the nozzle diameter."
|
||||
msgstr ""
|
||||
"Šířka Extruze pro vnitřní výplně. Pokud je vyjádřena jako %, vypočítá se "
|
||||
"Šířka extruze pro vnitřní výplně. Pokud je vyjádřena jako %, vypočítá se "
|
||||
"vzhledem k průměru trysky."
|
||||
|
||||
msgid "Infill/Wall overlap"
|
||||
@@ -8105,7 +8156,7 @@ msgid "All solid layer"
|
||||
msgstr "Všechny pevné vrstvy"
|
||||
|
||||
msgid "Ironing Pattern"
|
||||
msgstr ""
|
||||
msgstr "Vzor Žehlení"
|
||||
|
||||
msgid "Ironing flow"
|
||||
msgstr "Průtok žehlení"
|
||||
@@ -8402,7 +8453,7 @@ msgid ""
|
||||
"Line width of inner wall. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter."
|
||||
msgstr ""
|
||||
"Šířka Extruze vnitřní stěny. Pokud je vyjádřena jako %, vypočítá se vzhledem "
|
||||
"Šířka extruze vnitřní stěny. Pokud je vyjádřena jako %, vypočítá se vzhledem "
|
||||
"k průměru trysky."
|
||||
|
||||
msgid "Speed of inner wall"
|
||||
@@ -8876,10 +8927,10 @@ msgstr ""
|
||||
"atd."
|
||||
|
||||
msgid "Remove small overhangs"
|
||||
msgstr ""
|
||||
msgstr "Odstranit malé převisy"
|
||||
|
||||
msgid "Remove small overhangs that possibly need no supports."
|
||||
msgstr ""
|
||||
msgstr "Odstranit malé převisy, které pravděpodobně nepotřebují podpěry."
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "Vzdálenost horní Z"
|
||||
@@ -9472,10 +9523,10 @@ msgid "Load cached slicing data from directory"
|
||||
msgstr "Načíst data dělení z mezipaměti z adresáře"
|
||||
|
||||
msgid "Export STL"
|
||||
msgstr ""
|
||||
msgstr "Exportovat STL"
|
||||
|
||||
msgid "Export the objects as multiple STL."
|
||||
msgstr ""
|
||||
msgstr "Exportovat objekty jako více STL souborů."
|
||||
|
||||
msgid "Slice"
|
||||
msgstr "Slicovat"
|
||||
@@ -9493,10 +9544,10 @@ msgid "Update the configs values of 3mf to latest."
|
||||
msgstr "Aktualizujte konfigurační hodnoty 3mf na nejnovější."
|
||||
|
||||
msgid "Load default filaments"
|
||||
msgstr ""
|
||||
msgstr "Načíst výchozí filameny"
|
||||
|
||||
msgid "Load first filament as default for those not loaded"
|
||||
msgstr ""
|
||||
msgstr "Načíst první filament jako výchozí pro ty, které nebyly načteny"
|
||||
|
||||
msgid "mtcpp"
|
||||
msgstr "mtcpp"
|
||||
@@ -9548,10 +9599,10 @@ msgid "Arrange options: 0-disable, 1-enable, others-auto"
|
||||
msgstr "Volby uspořádání: 0-zakázat, 1-povolit, ostatní-automaticky"
|
||||
|
||||
msgid "Repetions count"
|
||||
msgstr ""
|
||||
msgstr "Počet opakování"
|
||||
|
||||
msgid "Repetions count of the whole model"
|
||||
msgstr ""
|
||||
msgstr "Počet opakování celého modelu"
|
||||
|
||||
msgid "Convert Unit"
|
||||
msgstr "Převést jednotku"
|
||||
@@ -9584,12 +9635,14 @@ msgid "Skip some objects in this print"
|
||||
msgstr "Přeskočit některé objekty při tisku"
|
||||
|
||||
msgid "load uptodate process/machine settings when using uptodate"
|
||||
msgstr ""
|
||||
msgstr "Načítat aktuální nastavení procesu/stroje při použití aktuálního"
|
||||
|
||||
msgid ""
|
||||
"load uptodate process/machine settings from the specified file when using "
|
||||
"uptodate"
|
||||
msgstr ""
|
||||
"Načítat aktuální nastavení procesu/stroje ze zadaného souboru při použití "
|
||||
"aktuálního"
|
||||
|
||||
msgid "Data directory"
|
||||
msgstr "Složka Data"
|
||||
@@ -9719,106 +9772,109 @@ 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)"
|
||||
|
||||
msgid "Loading of a model file failed."
|
||||
msgstr ""
|
||||
msgstr "Nahrávání souboru modelu selhalo."
|
||||
|
||||
msgid "The supplied file couldn't be read because it's empty"
|
||||
msgstr ""
|
||||
msgstr "Nahraný soubor nemohl být načten, protože je prázdný."
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Neznámý formát souboru. Vstupní soubor musí mít příponu .3mf nebo .zip.amf."
|
||||
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
msgstr "Zrušeno"
|
||||
|
||||
msgid "load_obj: failed to parse"
|
||||
msgstr ""
|
||||
msgstr "load_obj: nepodařilo se zpracovat"
|
||||
|
||||
msgid "The file contains polygons with more than 4 vertices."
|
||||
msgstr ""
|
||||
msgstr "Soubor obsahuje polygon s více než 4 vrcholy."
|
||||
|
||||
msgid "The file contains polygons with less than 2 vertices."
|
||||
msgstr ""
|
||||
msgstr "Soubor obsahuje polygon s méně než 2 vrcholy."
|
||||
|
||||
msgid "The file contains invalid vertex index."
|
||||
msgstr ""
|
||||
msgstr "Soubor obsahuje neplatný index vrcholu"
|
||||
|
||||
msgid "This OBJ file couldn't be read because it's empty."
|
||||
msgstr ""
|
||||
msgstr "Tento soubor formátu OBJ nemohl být načten, protože je prázdný."
|
||||
|
||||
msgid "Network lookup"
|
||||
msgstr ""
|
||||
msgstr "Vyhledávání v síti"
|
||||
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
msgstr "Adresa"
|
||||
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
msgstr "Název hostitele"
|
||||
|
||||
msgid "Service name"
|
||||
msgstr ""
|
||||
msgstr "Název služby"
|
||||
|
||||
msgid "OctoPrint version"
|
||||
msgstr ""
|
||||
msgstr "Service name"
|
||||
|
||||
msgid "Searching for devices"
|
||||
msgstr ""
|
||||
msgstr "Vyhledávání zařízení"
|
||||
|
||||
msgid "Finished"
|
||||
msgstr ""
|
||||
msgstr "Dokončeno"
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr ""
|
||||
msgstr "Nelze provést booleovskou operaci na vybraných částech"
|
||||
|
||||
msgid "Mesh Boolean"
|
||||
msgstr ""
|
||||
msgstr "Booleovská síť"
|
||||
|
||||
msgid "Union"
|
||||
msgstr ""
|
||||
msgstr "Sjednocení"
|
||||
|
||||
msgid "Difference"
|
||||
msgstr ""
|
||||
msgstr "Rozdíl"
|
||||
|
||||
msgid "Intersection"
|
||||
msgstr ""
|
||||
msgstr "Průsečík"
|
||||
|
||||
msgid "Source Volume"
|
||||
msgstr ""
|
||||
msgstr "Zdrojový objem"
|
||||
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
msgstr "Objem nástroje"
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
msgstr "Odečíst od"
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
msgstr "Odečíst s"
|
||||
|
||||
msgid "selected"
|
||||
msgstr "vybráno"
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr "Část 1"
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr "Část 2"
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
msgstr "Smazat vstup"
|
||||
|
||||
msgid "Send to print"
|
||||
msgstr "Odeslat do tiskárny"
|
||||
|
||||
msgid "Upload to Printer Host with the following filename:"
|
||||
msgstr ""
|
||||
msgstr "Nahrát do tiskového serveru s následujícím názvem souboru:"
|
||||
|
||||
msgid "Use forward slashes ( / ) as a directory separator if needed."
|
||||
msgstr "Pokud je to nutné, použijte pro oddělení složek lomítko (/)."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr ""
|
||||
msgstr "Název nahrávaného souboru neskončí s \"%s\". Přejete si pokračovat?"
|
||||
|
||||
msgid "Upload"
|
||||
msgstr "Nahrát"
|
||||
@@ -9827,47 +9883,47 @@ msgid "Upload and Print"
|
||||
msgstr "Nahrát a Tisknout"
|
||||
|
||||
msgid "Simulate"
|
||||
msgstr ""
|
||||
msgstr "Simulovat"
|
||||
|
||||
msgid "Print host upload queue"
|
||||
msgstr ""
|
||||
msgstr "Fronta nahrávání tiskového serveru"
|
||||
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "ID"
|
||||
|
||||
msgid "Progress"
|
||||
msgstr ""
|
||||
msgstr "Postup"
|
||||
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
msgstr "Hostitel"
|
||||
|
||||
msgctxt "OfFile"
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
msgstr "Velikost"
|
||||
|
||||
msgid "Filename"
|
||||
msgstr ""
|
||||
msgstr "Název souboru"
|
||||
|
||||
msgid "Error Message"
|
||||
msgstr ""
|
||||
msgstr "Chybové hlášení"
|
||||
|
||||
msgid "Cancel selected"
|
||||
msgstr ""
|
||||
msgstr "Zrušit vybrané"
|
||||
|
||||
msgid "Show error message"
|
||||
msgstr ""
|
||||
msgstr "Zobrazit chybové hlášení"
|
||||
|
||||
msgid "Enqueued"
|
||||
msgstr ""
|
||||
msgstr "Ve frontě"
|
||||
|
||||
msgid "Uploading"
|
||||
msgstr ""
|
||||
msgstr "Nahrávání"
|
||||
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
msgstr "Ruší se"
|
||||
|
||||
msgid "Error uploading to print host:"
|
||||
msgstr ""
|
||||
msgstr "Chyba při nahrávání na tiskový server:"
|
||||
|
||||
msgid "PA Calibration"
|
||||
msgstr "PA Kalibrace"
|
||||
@@ -10125,8 +10181,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 ""
|
||||
@@ -10337,9 +10393,6 @@ msgstr ""
|
||||
#~ msgid "&Cancel"
|
||||
#~ msgstr "&Storno"
|
||||
|
||||
#~ msgid "Skirt"
|
||||
#~ msgstr "Obrys"
|
||||
|
||||
#~ msgid "Post-processing scripts"
|
||||
#~ msgstr "Post-processing skripty"
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -1809,8 +1809,8 @@ msgid ""
|
||||
"The imported SLA archive did not contain any presets. The current SLA "
|
||||
"presets were used as fallback."
|
||||
msgstr ""
|
||||
"Die importierte SLA-Archivdatei enthält keine Voreinstellungen. Die "
|
||||
"aktuellen SLA-Voreinstellungen wurden als Fallback verwendet."
|
||||
"Das importierte SLA-Archiv enthält keine Voreinstellungen. Die aktuellen SLA-"
|
||||
"Voreinstellungen wurden als Ersatz verwendet."
|
||||
|
||||
msgid "You cannot load SLA project with a multi-part object on the bed"
|
||||
msgstr ""
|
||||
@@ -3055,7 +3055,7 @@ msgid "An object is layed over the boundary of plate."
|
||||
msgstr "Ein Objekt ragt über die Begrenzung der Druckplatte."
|
||||
|
||||
msgid "A G-code path goes beyond the max print height."
|
||||
msgstr ""
|
||||
msgstr "Ein G-Code-Pfad überschreitet die maximale Druckhöhe."
|
||||
|
||||
msgid "A G-code path goes beyond the boundary of plate."
|
||||
msgstr "Ein G-Code-Pfad geht über die Begrenzung der Druckplatte hinaus."
|
||||
@@ -4080,7 +4080,7 @@ msgid "Export successfully."
|
||||
msgstr "Export erfolgreich."
|
||||
|
||||
msgid "Serious warning:"
|
||||
msgstr ""
|
||||
msgstr "Wichtige Warnung:"
|
||||
|
||||
msgid " (Repair)"
|
||||
msgstr " (Reparatur)"
|
||||
@@ -4658,7 +4658,7 @@ msgstr "Anzahl der aktuell ausgewählten Teile: %1%\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Number of currently selected objects: %1%\n"
|
||||
msgstr ""
|
||||
msgstr "Anzahl der aktuell ausgewählten Objekte: %1%\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Part name: %1%\n"
|
||||
@@ -4760,6 +4760,9 @@ msgstr "Sonstiges"
|
||||
msgid "Login Region"
|
||||
msgstr "Login-Region"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "Metrisch"
|
||||
|
||||
@@ -5005,6 +5008,12 @@ msgstr "Druckreihenfolge"
|
||||
msgid "Plate name"
|
||||
msgstr "Platten-Name"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "Entspricht dem allgemeinen Bettyp"
|
||||
|
||||
@@ -5458,13 +5467,13 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Wenn Sie einen Zeitraffer ohne Werkzeugkopf aufnehmen, wird empfohlen, einen "
|
||||
"\"Timelapse Wischturm\" hinzuzufügen, indem Sie mit der rechten Maustaste "
|
||||
"auf die leere Position der Bauplatte klicken und \"Primitiv hinzufügen\"-"
|
||||
">\"Timelapse Wischturm\" wählen."
|
||||
"auf die leere Position der Bauplatte klicken und \"Primitiv hinzufügen\"->"
|
||||
"\"Timelapse Wischturm\" wählen."
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Breite der Linie"
|
||||
@@ -5507,7 +5516,7 @@ msgid "Bridge"
|
||||
msgstr "Überbrückung"
|
||||
|
||||
msgid "Set speed for external and internal bridges"
|
||||
msgstr ""
|
||||
msgstr "Setze Geschwindigkeit für externe und interne Brücken"
|
||||
|
||||
msgid "Travel speed"
|
||||
msgstr "Fahrgeschwindigkeit"
|
||||
@@ -5732,7 +5741,7 @@ msgid "Layer height limits"
|
||||
msgstr "Höhenbegrenzungen für Schichten"
|
||||
|
||||
msgid "Lift Z Enforcement"
|
||||
msgstr ""
|
||||
msgstr "Z-Höhe einhalten"
|
||||
|
||||
msgid "Retraction when switching material"
|
||||
msgstr "Rückzug bei Materialwechsel"
|
||||
@@ -6527,11 +6536,14 @@ msgid "Bottom surface"
|
||||
msgstr "Untere Fläche"
|
||||
|
||||
msgid "Internal Bridge"
|
||||
msgstr ""
|
||||
msgstr "Interne Brücke"
|
||||
|
||||
msgid "Gap infill"
|
||||
msgstr "Lückenfüllung"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "Stützstruktur-Schnittstelle"
|
||||
|
||||
@@ -6767,6 +6779,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "Schichthöhe darf den Düsendurchmesser nicht überschreiten."
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "Druckplatte %d: %s unterstützt kein Filament %s"
|
||||
@@ -7016,6 +7044,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "Vom Drucker unterstützte Druckbettypen"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr ""
|
||||
"Dieser G-Code wird bei jedem Schichtwechsel vor dem anheben von Z eingefügt."
|
||||
@@ -7157,9 +7188,9 @@ msgstr ""
|
||||
"Füllungsmuster zu schaffen"
|
||||
|
||||
msgid "One wall threshold"
|
||||
msgstr ""
|
||||
msgstr "Schwellenwert für eine Wand"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, fuzzy, c-format, boost-format
|
||||
msgid ""
|
||||
"If a top surface has to be printed and it's partially covered by another "
|
||||
"layer, it won't be considered at a top layer where its width is below this "
|
||||
@@ -7170,6 +7201,15 @@ msgid ""
|
||||
"on the next layer, like letters. Set this setting to 0 to remove these "
|
||||
"artifacts."
|
||||
msgstr ""
|
||||
"Wenn eine obere Oberfläche gedruckt werden muss und sie teilweise von einer "
|
||||
"anderen Schicht bedeckt ist, wird sie nicht als obere Schicht betrachtet, "
|
||||
"wenn ihre Breite unterhalb dieses Werts liegt. Dies kann nützlich sein, um "
|
||||
"das Auslösen von 'einem Umfang oben' zu verhindern, wenn Oberflächen nur von "
|
||||
"Umfängen bedeckt werden sollen. Dieser Wert kann in Millimetern oder als "
|
||||
"Prozentsatz der Extrusionsbreite des Umfangs angegeben werden.\n"
|
||||
"Warnung: Wenn aktiviert, können Artefakte entstehen, wenn Sie dünnere "
|
||||
"Merkmale auf der nächsten Schicht haben, z. B. Buchstaben. Setzen Sie diesen "
|
||||
"Wert auf 0, um diese Artefakte zu entfernen."
|
||||
|
||||
msgid "Only one wall on first layer"
|
||||
msgstr "Nur eine Wand in der ersten Schicht"
|
||||
@@ -7199,7 +7239,7 @@ msgid "mm/s or %"
|
||||
msgstr "mm/s o. %"
|
||||
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
msgstr "Extern"
|
||||
|
||||
msgid "Speed of bridge and completely overhang wall"
|
||||
msgstr "Geschwindigkeit für Brücken und vollständig überhängende Wände."
|
||||
@@ -7208,12 +7248,15 @@ msgid "mm/s"
|
||||
msgstr "mm/s"
|
||||
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
msgstr "Intern"
|
||||
|
||||
msgid ""
|
||||
"Speed of internal bridge. If the value is expressed as a percentage, it will "
|
||||
"be calculated based on the bridge_speed. Default value is 150%."
|
||||
msgstr ""
|
||||
"Geschwindigkeit der internen Brücke. Wenn der Wert als Prozentsatz angegeben "
|
||||
"ist, wird er basierend auf der Brückengeschwindigkeit berechnet. "
|
||||
"Standardwert ist 150%."
|
||||
|
||||
msgid "Brim width"
|
||||
msgstr "Randbreite"
|
||||
@@ -7233,9 +7276,9 @@ msgstr ""
|
||||
"analysiert und berechnet wird."
|
||||
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
msgstr "Mausohren"
|
||||
|
||||
msgid "outer_only"
|
||||
msgid "Outer brim only"
|
||||
msgstr "Nur Außen"
|
||||
|
||||
msgid "Inner brim only"
|
||||
@@ -7255,28 +7298,36 @@ msgstr ""
|
||||
"des Randes erleichtern"
|
||||
|
||||
msgid "Brim ears"
|
||||
msgstr ""
|
||||
msgstr "Brim Ohren"
|
||||
|
||||
msgid "Only draw brim over the sharp edges of the model."
|
||||
msgstr ""
|
||||
msgstr "Zeichne den Brim nur über die scharfen Kanten des Modells."
|
||||
|
||||
msgid "Brim ear max angle"
|
||||
msgstr ""
|
||||
msgstr "Maximaler Winkel für Brim-Ohren"
|
||||
|
||||
msgid ""
|
||||
"Maximum angle to let a brim ear appear. \n"
|
||||
"If set to 0, no brim will be created. \n"
|
||||
"If set to ~180, brim will be created on everything but straight sections."
|
||||
msgstr ""
|
||||
"Höchster Winkel, bei dem ein Brim-Ohr erscheinen soll.\n"
|
||||
"Wenn auf 0 gesetzt, wird kein Brim erstellt.\n"
|
||||
"Wenn auf etwa 180 gesetzt, wird ein Brim auf allem außer geraden Abschnitten "
|
||||
"erstellt."
|
||||
|
||||
msgid "Brim ear detection radius"
|
||||
msgstr ""
|
||||
msgstr "Radius für die Erkennung von Brim-Ohren"
|
||||
|
||||
msgid ""
|
||||
"The geometry will be decimated before dectecting sharp angles. This "
|
||||
"parameter indicates the minimum length of the deviation for the decimation.\n"
|
||||
"0 to deactivate"
|
||||
msgstr ""
|
||||
"Die Geometrie wird vor der Erkennung von scharfen Winkeln reduziert. "
|
||||
"DieserParameter gibt die minimale Länge der Abweichung für die Reduzierung "
|
||||
"an.\n"
|
||||
"0, um die Reduzierung zu deaktivieren."
|
||||
|
||||
msgid "Compatible machine"
|
||||
msgstr "Kompatible Maschine"
|
||||
@@ -7463,17 +7514,22 @@ msgid "Line pattern of bottom surface infill, not bridge infill"
|
||||
msgstr "Linienmuster der Bodenfüllung. Brückenfüllung nicht eingeschlossen"
|
||||
|
||||
msgid "Internal solid infill pattern"
|
||||
msgstr ""
|
||||
msgstr "Muster für das interne feste Füllmuster"
|
||||
|
||||
msgid ""
|
||||
"Line pattern of internal solid infill. if the detect nattow internal solid "
|
||||
"infill be enabled, the concentric pattern will be used for the small area."
|
||||
msgstr ""
|
||||
"Linienmuster des internen festen Füllmusters. Wenn die Erkennung von "
|
||||
"schmalem internen festen Infill aktiviert ist, wird das konzentrische Muster "
|
||||
"für den kleinen Bereich verwendet."
|
||||
|
||||
msgid ""
|
||||
"Line width of outer wall. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter."
|
||||
msgstr ""
|
||||
"Linienbreite der Außenwand. Wenn als Prozentsatz angegeben, wird sie in "
|
||||
"Bezug auf den Düsendurchmesser berechnet."
|
||||
|
||||
msgid ""
|
||||
"Speed of outer wall which is outermost and visible. It's used to be slower "
|
||||
@@ -7598,6 +7654,9 @@ msgid ""
|
||||
"Default line width if other line widths are set to 0. If expressed as a %, "
|
||||
"it will be computed over the nozzle diameter."
|
||||
msgstr ""
|
||||
"Standardmäßige Linienbreite, wenn andere Linienbreiten auf 0 gesetzt sind. "
|
||||
"Wenn als Prozentsatz angegeben, wird sie in Bezug auf den Düsendurchmesser "
|
||||
"berechnet."
|
||||
|
||||
msgid "Keep fan always on"
|
||||
msgstr "Lüfter ständig laufen lassen"
|
||||
@@ -7767,10 +7826,10 @@ msgid "money/kg"
|
||||
msgstr "€/kg"
|
||||
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
msgstr "Hersteller"
|
||||
|
||||
msgid "Vendor of filament. For show only"
|
||||
msgstr ""
|
||||
msgstr "Hersteller des Filaments. Nur zur Anzeige."
|
||||
|
||||
msgid "(Undefined)"
|
||||
msgstr "(undefiniert)"
|
||||
@@ -7982,6 +8041,8 @@ msgid ""
|
||||
"Line width of initial layer. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
msgstr ""
|
||||
"Linienbreite der ersten Schicht. Wenn als Prozentsatz angegeben, wird sie in "
|
||||
"Bezug auf den Düsendurchmesser berechnet."
|
||||
|
||||
msgid "Initial layer height"
|
||||
msgstr "Höhe der ersten Schicht"
|
||||
@@ -8033,13 +8094,13 @@ msgstr "Volle Lüfterdrehzahl ab Schicht"
|
||||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Die Lüftergeschwindigkeit wird linear von Null bei der "
|
||||
"Schicht\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
|
||||
"Die Lüftergeschwindigkeit wird linear von Null bei der Schicht"
|
||||
"\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
|
||||
"\"full_fan_speed_layer\" erhöht. \"full_fan_speed_layer\" wird ignoriert, "
|
||||
"wenn es niedriger ist als \"close_fan_the_first_x_layers\",in diesem Fall "
|
||||
"läuft der Lüfter bei Schicht \"close_fan_the_first_x_layers\"+ 1 mit maximal "
|
||||
@@ -8294,6 +8355,8 @@ msgid ""
|
||||
"Line width of internal sparse infill. If expressed as a %, it will be "
|
||||
"computed over the nozzle diameter."
|
||||
msgstr ""
|
||||
"Linienbreite des internen geringen Füllmusters. Wenn als Prozentsatz "
|
||||
"angegeben, wird sie in Bezug auf den Düsendurchmesser berechnet."
|
||||
|
||||
msgid "Infill/Wall overlap"
|
||||
msgstr "Überlappung Füllung/Wand"
|
||||
@@ -8605,27 +8668,34 @@ msgid "User can self-define the project file name when export"
|
||||
msgstr "Der Benutzer kann den Projektdateinamen beim Export selbst bestimmen"
|
||||
|
||||
msgid "Make overhang printable"
|
||||
msgstr ""
|
||||
msgstr "Überhang druckbar machen"
|
||||
|
||||
msgid "Modify the geometry to print overhangs without support material."
|
||||
msgstr ""
|
||||
msgstr "Die Geometrie anpassen, um Überhänge ohne Stützmaterial zu drucken."
|
||||
|
||||
msgid "Make overhang printable maximum angle"
|
||||
msgstr ""
|
||||
msgstr "Maximaler Winkel für druckbare Überhänge"
|
||||
|
||||
msgid ""
|
||||
"Maximum angle of overhangs to allow after making more steep overhangs "
|
||||
"printable.90° will not change the model at all and allow any overhang, while "
|
||||
"0 will replace all overhangs with conical material."
|
||||
msgstr ""
|
||||
"Maximaler Winkel der Überhänge, die erlaubt sind, nachdem steilere Überhänge "
|
||||
"druckbar gemacht wurden. 90° wird das Modell überhaupt nicht verändern und "
|
||||
"jeden Überhang erlauben, während 0 alle Überhänge durch konisches Material "
|
||||
"ersetzt."
|
||||
|
||||
msgid "Make overhang printable hole area"
|
||||
msgstr ""
|
||||
msgstr "Flächenbereich für druckbare Überhänge von Löchern"
|
||||
|
||||
msgid ""
|
||||
"Maximum area of a hole in the base of the model before it's filled by "
|
||||
"conical material.A value of 0 will fill all the holes in the model base."
|
||||
msgstr ""
|
||||
"Maximaler Flächenbereich eines Lochs in der Basis des Modells, bevor es mit "
|
||||
"konischem Material gefüllt wird. Ein Wert von 0 füllt alle Löcher in der "
|
||||
"Basis des Modells."
|
||||
|
||||
msgid "mm²"
|
||||
msgstr "mm²"
|
||||
@@ -8646,6 +8716,8 @@ msgid ""
|
||||
"Line width of inner wall. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter."
|
||||
msgstr ""
|
||||
"Linienbreite der inneren Wand. Wenn als Prozentsatz angegeben, wird sie in "
|
||||
"Bezug auf den Düsendurchmesser berechnet."
|
||||
|
||||
msgid "Speed of inner wall"
|
||||
msgstr "Druckgeschwindigkeit der Innenwand"
|
||||
@@ -8773,40 +8845,46 @@ msgid "Spiral"
|
||||
msgstr "Spirale"
|
||||
|
||||
msgid "Only lift Z above"
|
||||
msgstr ""
|
||||
msgstr "Nur Z anheben über"
|
||||
|
||||
msgid ""
|
||||
"If you set this to a positive value, Z lift will only take place above the "
|
||||
"specified absolute Z."
|
||||
msgstr ""
|
||||
"Wenn Sie diesen Wert auf einen positiven Wert setzen, wird das Z-Heben nur "
|
||||
"oberhalb des angegebenen absoluten Z-Wertes erfolgen."
|
||||
|
||||
msgid "Only lift Z below"
|
||||
msgstr ""
|
||||
msgstr "Nur Z anheben unter"
|
||||
|
||||
msgid ""
|
||||
"If you set this to a positive value, Z lift will only take place below the "
|
||||
"specified absolute Z."
|
||||
msgstr ""
|
||||
"Wenn Sie diesen Wert auf einen positiven Wert setzen, wird das Z-Heben nur "
|
||||
"unterhalb des angegebenen absoluten Z-Wertes erfolgen."
|
||||
|
||||
msgid "On surfaces"
|
||||
msgstr ""
|
||||
msgstr "Auf Oberflächen"
|
||||
|
||||
msgid ""
|
||||
"Enforce Z Hop behavior. This setting is impacted by the above settings (Only "
|
||||
"lift Z above/below)."
|
||||
msgstr ""
|
||||
"Verhalten des Z-Hops erzwingen. Diese Einstellung wird von den oben "
|
||||
"genannten Einstellungen (Nur Z überheben oberhalb/unterhalb) beeinflusst."
|
||||
|
||||
msgid "All Surfaces"
|
||||
msgstr ""
|
||||
msgstr "Alle Oberflächen"
|
||||
|
||||
msgid "Top Only"
|
||||
msgstr ""
|
||||
msgstr "Nur Oben"
|
||||
|
||||
msgid "Bottom Only"
|
||||
msgstr ""
|
||||
msgstr "Nur Unten"
|
||||
|
||||
msgid "Top and Bottom"
|
||||
msgstr ""
|
||||
msgstr "Oben und Unten"
|
||||
|
||||
msgid "Extra length on restart"
|
||||
msgstr "Zusätzliche Länge beim Neustart"
|
||||
@@ -8990,6 +9068,8 @@ msgid ""
|
||||
"Line width of internal solid infill. If expressed as a %, it will be "
|
||||
"computed over the nozzle diameter."
|
||||
msgstr ""
|
||||
"Linienbreite des internen massiven Infill. Wenn als Prozentsatz angegeben, "
|
||||
"wird sie in Bezug auf den Düsendurchmesser berechnet."
|
||||
|
||||
msgid "Speed of internal solid infill, not the top and bottom surface"
|
||||
msgstr ""
|
||||
@@ -9136,10 +9216,12 @@ msgstr ""
|
||||
"Kanten, Ausragungen, usw."
|
||||
|
||||
msgid "Remove small overhangs"
|
||||
msgstr ""
|
||||
msgstr "Kleine Überhänge entfernen"
|
||||
|
||||
msgid "Remove small overhangs that possibly need no supports."
|
||||
msgstr ""
|
||||
"Kleine Überhänge entfernen, die möglicherweise keine Stützstrukturen "
|
||||
"benötigen."
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "Oberer Z-Abstand"
|
||||
@@ -9168,6 +9250,8 @@ msgid ""
|
||||
"Line width of support. If expressed as a %, it will be computed over the "
|
||||
"nozzle diameter."
|
||||
msgstr ""
|
||||
"Linienbreite der Stützstrukturen. Wenn als Prozentsatz angegeben, wird sie "
|
||||
"in Bezug auf den Düsendurchmesser berechnet."
|
||||
|
||||
msgid "Interface use loop pattern"
|
||||
msgstr "Schleifenmuster-Schnittstelle"
|
||||
@@ -9422,6 +9506,8 @@ msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
msgstr ""
|
||||
"Linienbreite für obere Oberflächen. Wenn als Prozentsatz angegeben, wird sie "
|
||||
"in Bezug auf den Düsendurchmesser berechnet."
|
||||
|
||||
msgid "Speed of top surface infill which is solid"
|
||||
msgstr "Geschwindigkeit der massiven Füllung der Oberseite."
|
||||
@@ -9755,7 +9841,7 @@ msgid "Export STL"
|
||||
msgstr ""
|
||||
|
||||
msgid "Export the objects as multiple STL."
|
||||
msgstr ""
|
||||
msgstr "Die Objekte als mehrere STL-Dateien exportieren."
|
||||
|
||||
msgid "Slice"
|
||||
msgstr "Slice"
|
||||
@@ -9775,10 +9861,10 @@ msgid "Update the configs values of 3mf to latest."
|
||||
msgstr "Aktualisierung der 3mf Konfigurationswerte auf die neueste Version."
|
||||
|
||||
msgid "Load default filaments"
|
||||
msgstr ""
|
||||
msgstr "Standard-Filamente laden"
|
||||
|
||||
msgid "Load first filament as default for those not loaded"
|
||||
msgstr ""
|
||||
msgstr "Das erste Filament als Standard für nicht geladene übernehmen"
|
||||
|
||||
msgid "mtcpp"
|
||||
msgstr "mtcpp"
|
||||
@@ -9831,10 +9917,10 @@ msgid "Arrange options: 0-disable, 1-enable, others-auto"
|
||||
msgstr "Anordnungsoptionen: 0-deaktiviert; 1-aktiviert; andere-automatisch"
|
||||
|
||||
msgid "Repetions count"
|
||||
msgstr ""
|
||||
msgstr "Anzahl der Wiederholungen"
|
||||
|
||||
msgid "Repetions count of the whole model"
|
||||
msgstr ""
|
||||
msgstr "Anzahl der Wiederholungen des gesamten Modells"
|
||||
|
||||
msgid "Convert Unit"
|
||||
msgstr "Einheit umrechnen"
|
||||
@@ -9868,11 +9954,14 @@ msgstr "Einige Objekte in diesem Druck überspringen"
|
||||
|
||||
msgid "load uptodate process/machine settings when using uptodate"
|
||||
msgstr ""
|
||||
"Aktuelle Prozess-/Maschineneinstellungen laden, wenn 'Aktuell' verwendet wird"
|
||||
|
||||
msgid ""
|
||||
"load uptodate process/machine settings from the specified file when using "
|
||||
"uptodate"
|
||||
msgstr ""
|
||||
"Aktuelle Prozess-/Maschineneinstellungen aus der angegebenen Datei laden, "
|
||||
"wenn Aktuell verwendet wird"
|
||||
|
||||
msgid "Data directory"
|
||||
msgstr "Datenverzeichnis"
|
||||
@@ -10038,71 +10127,73 @@ msgid "This OBJ file couldn't be read because it's empty."
|
||||
msgstr "Diese OBJ-Datei konnte nicht gelesen werden, da sie leer ist."
|
||||
|
||||
msgid "Network lookup"
|
||||
msgstr ""
|
||||
msgstr "Netzwerk durchsuchen"
|
||||
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
msgstr "IP Adresse"
|
||||
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
|
||||
msgid "Service name"
|
||||
msgstr ""
|
||||
msgstr "Service Name"
|
||||
|
||||
msgid "OctoPrint version"
|
||||
msgstr ""
|
||||
msgstr "OctoPrint Version"
|
||||
|
||||
msgid "Searching for devices"
|
||||
msgstr ""
|
||||
msgstr "Suche nach Geräten"
|
||||
|
||||
msgid "Finished"
|
||||
msgstr "Erledigt"
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr ""
|
||||
"Die boolesche Operation kann auf den ausgewählten Teilen nicht durchgeführt "
|
||||
"werden"
|
||||
|
||||
msgid "Mesh Boolean"
|
||||
msgstr ""
|
||||
msgstr "Mesh-Boolesche Operation"
|
||||
|
||||
msgid "Union"
|
||||
msgstr ""
|
||||
msgstr "Vereinigen"
|
||||
|
||||
msgid "Difference"
|
||||
msgstr ""
|
||||
msgstr "Differenz"
|
||||
|
||||
msgid "Intersection"
|
||||
msgstr ""
|
||||
msgstr "Schnittmenge"
|
||||
|
||||
msgid "Source Volume"
|
||||
msgstr ""
|
||||
msgstr "Quellvolumen"
|
||||
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
msgstr "Werkzeugvolumen"
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr "Abziehen von"
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr "Abziehen mit"
|
||||
|
||||
msgid "selected"
|
||||
msgstr "Ausgewählt"
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
msgstr "Eingabe löschen"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Send to print"
|
||||
msgstr "Zum Drucker senden"
|
||||
|
||||
msgid "Upload to Printer Host with the following filename:"
|
||||
msgstr ""
|
||||
msgstr "Mit folgendem Dateinamen auf den Drucker-Host hochladen:"
|
||||
|
||||
msgid "Use forward slashes ( / ) as a directory separator if needed."
|
||||
msgstr ""
|
||||
@@ -10111,6 +10202,8 @@ msgstr ""
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr ""
|
||||
"Der Dateiname für den Upload endet nicht mit \"%s\". Möchten Sie den Vorgang "
|
||||
"fortsetzen?"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Upload"
|
||||
@@ -10120,7 +10213,7 @@ msgid "Upload and Print"
|
||||
msgstr "Hochladen und Drucken"
|
||||
|
||||
msgid "Simulate"
|
||||
msgstr ""
|
||||
msgstr "Simulation"
|
||||
|
||||
msgid "Print host upload queue"
|
||||
msgstr ""
|
||||
@@ -10129,7 +10222,7 @@ msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Progress"
|
||||
msgstr ""
|
||||
msgstr "Fortschritt"
|
||||
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
@@ -10142,25 +10235,25 @@ msgid "Filename"
|
||||
msgstr ""
|
||||
|
||||
msgid "Error Message"
|
||||
msgstr ""
|
||||
msgstr "Fehlermeldung"
|
||||
|
||||
msgid "Cancel selected"
|
||||
msgstr ""
|
||||
msgstr "Ausgewählten abbrechen"
|
||||
|
||||
msgid "Show error message"
|
||||
msgstr ""
|
||||
msgstr "Fehlermeldung Anzeigen"
|
||||
|
||||
msgid "Enqueued"
|
||||
msgstr ""
|
||||
msgstr "In Warteschlange"
|
||||
|
||||
msgid "Uploading"
|
||||
msgstr "Hochladen"
|
||||
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
msgstr "Wird abgebrochen"
|
||||
|
||||
msgid "Error uploading to print host:"
|
||||
msgstr ""
|
||||
msgstr "Error uploading to print host:"
|
||||
|
||||
msgid "PA Calibration"
|
||||
msgstr "PA Kalibrierung"
|
||||
@@ -10181,7 +10274,7 @@ msgid "PA Line"
|
||||
msgstr "PA Linie"
|
||||
|
||||
msgid "PA Pattern"
|
||||
msgstr ""
|
||||
msgstr "PA Muster"
|
||||
|
||||
msgid "Method"
|
||||
msgstr "Methode"
|
||||
@@ -10677,9 +10770,6 @@ msgstr ""
|
||||
#~ msgid "Bambu Studio GUI initialization failed"
|
||||
#~ msgstr "Initialisierung der Bambu Studio GUI ist fehlgeschlagen"
|
||||
|
||||
#~ msgid "Outer brim only"
|
||||
#~ msgstr "Nur äußerer Rand"
|
||||
|
||||
#~ msgid "Check cloud service status"
|
||||
#~ msgstr "Status des Cloud-Dienstes prüfen"
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -11,7 +11,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
||||
"X-Generator: Poedit 3.1\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
|
||||
msgid "Supports Painting"
|
||||
msgstr "Support Painting"
|
||||
@@ -4607,6 +4607,9 @@ msgstr "Others"
|
||||
msgid "Login Region"
|
||||
msgstr "Login Region"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "Metric"
|
||||
|
||||
@@ -4851,6 +4854,12 @@ msgstr "Print sequence"
|
||||
msgid "Plate name"
|
||||
msgstr "Plate name"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "Same as Global Plate Type"
|
||||
|
||||
@@ -5275,13 +5284,13 @@ msgstr ""
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Line width"
|
||||
@@ -6313,6 +6322,9 @@ msgstr ""
|
||||
msgid "Gap infill"
|
||||
msgstr "Gap infill"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "Support interface"
|
||||
|
||||
@@ -6539,6 +6551,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "Layer height cannot exceed nozzle diameter."
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "Plate %d: %s does not support filament %s"
|
||||
@@ -6778,6 +6806,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "Bed types supported by the printer"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr "This G-code is inserted at every layer change before lifting z."
|
||||
|
||||
@@ -6982,8 +7013,8 @@ msgstr ""
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
|
||||
msgid "outer_only"
|
||||
msgstr ""
|
||||
msgid "Outer brim only"
|
||||
msgstr "Outer brim only"
|
||||
|
||||
msgid "Inner brim only"
|
||||
msgstr "Inner brim only"
|
||||
@@ -7712,10 +7743,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 "Support interface fan speed"
|
||||
@@ -9619,21 +9650,21 @@ msgstr ""
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
|
||||
@@ -10174,9 +10205,6 @@ msgstr ""
|
||||
#~ msgid "Bambu Studio GUI initialization failed"
|
||||
#~ msgstr "Bambu Studio GUI initialization failed"
|
||||
|
||||
#~ msgid "Outer brim only"
|
||||
#~ msgstr "Outer brim only"
|
||||
|
||||
#~ msgid "Check cloud service status"
|
||||
#~ msgstr "Check cloud service status"
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Guislain Cyril\n"
|
||||
@@ -4733,6 +4733,9 @@ msgstr "Autres"
|
||||
msgid "Login Region"
|
||||
msgstr "Région"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "Métrique"
|
||||
|
||||
@@ -4979,6 +4982,12 @@ msgstr "Séquence d'impression"
|
||||
msgid "Plate name"
|
||||
msgstr "Nom du plateau"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "Identique au type de plateau par défaut"
|
||||
|
||||
@@ -5441,8 +5450,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 ""
|
||||
"Lors de l'enregistrement d'un Timelapse sans tête d'outil, il est recommandé "
|
||||
"d'ajouter une \"Tour d’essuyage Timelapse\"\n"
|
||||
@@ -6519,6 +6528,9 @@ msgstr ""
|
||||
msgid "Gap infill"
|
||||
msgstr "Remplissage des espaces"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "Interfaces de support"
|
||||
|
||||
@@ -6762,6 +6774,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "La hauteur de la couche ne peut pas dépasser le diamètre de la buse"
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "Le plateau %d : %s ne prend pas en charge le filament %s"
|
||||
@@ -7011,6 +7039,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "Types de plateaux pris en charge par l'imprimante"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr "Ce G-code est inséré à chaque changement de couche avant la levée en Z"
|
||||
|
||||
@@ -7228,7 +7259,7 @@ msgstr ""
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
|
||||
msgid "outer_only"
|
||||
msgid "Outer brim only"
|
||||
msgstr "Bordure extérieure uniquement"
|
||||
|
||||
msgid "Inner brim only"
|
||||
@@ -8022,10 +8053,10 @@ msgstr "Vitesse maximale du ventilateur à 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 "
|
||||
@@ -10067,21 +10098,21 @@ msgstr ""
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
|
||||
@@ -10661,9 +10692,6 @@ msgstr ""
|
||||
#~ msgid "Bambu Studio GUI initialization failed"
|
||||
#~ msgstr "L'initialisation de l'interface de Bambu Studio a échoué"
|
||||
|
||||
#~ msgid "Outer brim only"
|
||||
#~ msgstr "Bordure extérieure uniquement"
|
||||
|
||||
#~ msgid "Check cloud service status"
|
||||
#~ msgstr "Vérifiez l'état du service cloud"
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -4643,6 +4643,9 @@ msgstr "Egyéb"
|
||||
msgid "Login Region"
|
||||
msgstr "Régió"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "Metrikus"
|
||||
|
||||
@@ -4889,6 +4892,12 @@ msgstr "Nyomtatás sorrendje"
|
||||
msgid "Plate name"
|
||||
msgstr "Plate name"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "Ugyanaz, mint a globális tálca típusa"
|
||||
|
||||
@@ -5321,8 +5330,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 "
|
||||
@@ -6373,6 +6382,9 @@ msgstr ""
|
||||
msgid "Gap infill"
|
||||
msgstr "Réskitöltés"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "Támasz érintkező felület"
|
||||
|
||||
@@ -6609,6 +6621,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "A rétegmagasság nem lehet nagyobb a fúvóka átmérőjénél."
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "%d. tálca: %s nem használható %s filamenttel."
|
||||
@@ -6848,6 +6876,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "Nyomtató által támogatott asztaltípusok"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr "Ez a G-kód minden rétegváltáshoz bekerül a Z tengely emelése előtt."
|
||||
|
||||
@@ -7055,8 +7086,8 @@ msgstr ""
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
|
||||
msgid "outer_only"
|
||||
msgstr ""
|
||||
msgid "Outer brim only"
|
||||
msgstr "Outer brim only"
|
||||
|
||||
msgid "Inner brim only"
|
||||
msgstr "Inner brim only"
|
||||
@@ -7787,10 +7818,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 "Support interface fan speed"
|
||||
@@ -9717,21 +9748,21 @@ msgstr ""
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
|
||||
@@ -10273,9 +10304,6 @@ msgstr ""
|
||||
#~ msgid "Bambu Studio GUI initialization failed"
|
||||
#~ msgstr "Nem sikerült a Bambu Studio GUI inicializálása"
|
||||
|
||||
#~ msgid "Outer brim only"
|
||||
#~ msgstr "Outer brim only"
|
||||
|
||||
#~ msgid "Check cloud service status"
|
||||
#~ msgstr "Check cloud service status"
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -4633,6 +4633,9 @@ msgstr "Others"
|
||||
msgid "Login Region"
|
||||
msgstr "Login Region"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "Metric"
|
||||
|
||||
@@ -4877,6 +4880,12 @@ msgstr "Print sequence"
|
||||
msgid "Plate name"
|
||||
msgstr "Nome Piatto"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "Uguale al tipo di piano globale"
|
||||
|
||||
@@ -5309,8 +5318,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 satmpa, si consiglia di "
|
||||
"aggiungere un \"Timelapse Torre di pulizia\"\n"
|
||||
@@ -6207,8 +6216,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 "
|
||||
@@ -6350,6 +6359,9 @@ msgstr ""
|
||||
msgid "Gap infill"
|
||||
msgstr "Gap infill"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "Support interface"
|
||||
|
||||
@@ -6580,6 +6592,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "Layer height cannot exceed nozzle diameter."
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "Piatto %d: %s non supporta il filamento %s"
|
||||
@@ -6821,6 +6849,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "Bed types supported by the printer"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr "This G-code is inserted at every layer change before lifting z."
|
||||
|
||||
@@ -7027,8 +7058,8 @@ msgstr ""
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
|
||||
msgid "outer_only"
|
||||
msgstr ""
|
||||
msgid "Outer brim only"
|
||||
msgstr "Solo brim esterno"
|
||||
|
||||
msgid "Inner brim only"
|
||||
msgstr "Solo brim interno"
|
||||
@@ -7760,10 +7791,10 @@ 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 ""
|
||||
|
||||
msgid "Support interface fan speed"
|
||||
@@ -9691,21 +9722,21 @@ msgstr ""
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
|
||||
@@ -10248,9 +10279,6 @@ msgstr ""
|
||||
#~ msgid "Bambu Studio GUI initialization failed"
|
||||
#~ msgstr "Inizializzazione della GUI di Bambu Studio non riuscita"
|
||||
|
||||
#~ msgid "Outer brim only"
|
||||
#~ msgstr "Solo brim esterno"
|
||||
|
||||
#~ msgid "Check cloud service status"
|
||||
#~ msgstr "Verifica lo stato del servizio cloud"
|
||||
|
||||
@@ -11827,8 +11855,8 @@ msgstr ""
|
||||
#~ "Quando si registra un timelapse senza testa di satmpa, si consiglia di "
|
||||
#~ "aggiungere un \"Timelapse Torre di pulizia\"\n"
|
||||
#~ "facendo clic con il pulsante destro del mouse sulla posizione vuota del "
|
||||
#~ "piatto e scegli \"Aggiungi primitiva\" ->\"Timelapse Torre di "
|
||||
#~ "pulizia\"».\n"
|
||||
#~ "piatto e scegli \"Aggiungi primitiva\" ->\"Timelapse Torre di pulizia"
|
||||
#~ "\"».\n"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When sparse infill density is low, the internal solid infill or internal "
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -4529,6 +4529,9 @@ msgstr "その他"
|
||||
msgid "Login Region"
|
||||
msgstr "地域"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "メートル"
|
||||
|
||||
@@ -4767,6 +4770,12 @@ msgstr "造形シーケンス"
|
||||
msgid "Plate name"
|
||||
msgstr "Plate name"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "全般設定の「ベッドタイプ」と同様"
|
||||
|
||||
@@ -5171,8 +5180,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 ""
|
||||
"ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」"
|
||||
"を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム"
|
||||
@@ -6179,6 +6188,9 @@ msgstr ""
|
||||
msgid "Gap infill"
|
||||
msgstr "隙間インフィル"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "サポート接触面"
|
||||
|
||||
@@ -6400,6 +6412,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "積層ピッチはノズルの直径を超える為設定できません"
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "プレート %d: %s がフィラメント %s を使用できません"
|
||||
@@ -6616,6 +6644,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "適応ベッド種類"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr "積層が変わる直前に実行するG-codeです。"
|
||||
|
||||
@@ -6812,7 +6843,7 @@ msgstr ""
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
|
||||
msgid "outer_only"
|
||||
msgid "Outer brim only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inner brim only"
|
||||
@@ -7508,10 +7539,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 "Support interface fan speed"
|
||||
@@ -9332,21 +9363,21 @@ msgstr ""
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
|
||||
@@ -9862,9 +9893,6 @@ msgstr ""
|
||||
#~ msgid "Bambu Studio GUI initialization failed"
|
||||
#~ msgstr "GUI初期化に失敗した"
|
||||
|
||||
#~ msgid "Outer brim only"
|
||||
#~ msgstr "Outer brim only"
|
||||
|
||||
#~ msgid "Check cloud service status"
|
||||
#~ msgstr "Check cloud service status"
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"PO-Revision-Date: 2023-08-03 10:45+0900\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"PO-Revision-Date: 2023-08-23 15:56+0900\n"
|
||||
"Last-Translator: Hotsolidinfill\n"
|
||||
"Language-Team: \n"
|
||||
"Language: ko_KR\n"
|
||||
@@ -872,7 +872,7 @@ msgid "Fill bed with copies"
|
||||
msgstr "복제하여 베드 채우기"
|
||||
|
||||
msgid "Fill the remaining area of bed with copies of the selected object"
|
||||
msgstr "베드의 나머지 영역을 선택한 객체의 복사본으로 채웁니다."
|
||||
msgstr "베드의 나머지 영역을 선택한 개체의 복사본으로 채웁니다"
|
||||
|
||||
msgid "Printable"
|
||||
msgstr "출력 가능"
|
||||
@@ -1275,11 +1275,11 @@ msgid "Renaming"
|
||||
msgstr "이름 변경 중"
|
||||
|
||||
msgid "Repairing model object"
|
||||
msgstr "모델 개체 교정중"
|
||||
msgstr "모델 개체 수리 중"
|
||||
|
||||
msgid "Following model object has been repaired"
|
||||
msgid_plural "Following model objects have been repaired"
|
||||
msgstr[0] "다음 모델 개체가 교정되었습니다"
|
||||
msgstr[0] "다음 모델 개체가 수리되었습니다"
|
||||
|
||||
msgid "Failed to repair folowing model object"
|
||||
msgid_plural "Failed to repair folowing model objects"
|
||||
@@ -1322,7 +1322,7 @@ msgid "Manual"
|
||||
msgstr "수동"
|
||||
|
||||
msgid "No-brim"
|
||||
msgstr "챙(브림) 비활성화"
|
||||
msgstr "챙 비활성화"
|
||||
|
||||
msgid " "
|
||||
msgstr " "
|
||||
@@ -1595,10 +1595,10 @@ msgid "Orienting"
|
||||
msgstr "방향 지정 중"
|
||||
|
||||
msgid "Filling bed "
|
||||
msgstr "베드 채우기"
|
||||
msgstr "베드 채우기 "
|
||||
|
||||
msgid "Bed filling canceled."
|
||||
msgstr "베드 채우기 취소됨"
|
||||
msgstr "베드 채우기 취소됨."
|
||||
|
||||
msgid "Bed filling done."
|
||||
msgstr "베드 채우기 완료."
|
||||
@@ -2947,7 +2947,7 @@ msgid "An object is layed over the boundary of plate."
|
||||
msgstr "개체가 플레이트 경계 위에 놓여 있습니다."
|
||||
|
||||
msgid "A G-code path goes beyond the max print height."
|
||||
msgstr ""
|
||||
msgstr "G코드 경로가 출력 최대 높이를 넘어갑니다."
|
||||
|
||||
msgid "A G-code path goes beyond the boundary of plate."
|
||||
msgstr "G코드 경로가 플레이트 경계를 넘어갑니다."
|
||||
@@ -3939,7 +3939,7 @@ msgid "Export successfully."
|
||||
msgstr "내보내기 성공."
|
||||
|
||||
msgid "Serious warning:"
|
||||
msgstr ""
|
||||
msgstr "심각한 경고:"
|
||||
|
||||
msgid " (Repair)"
|
||||
msgstr " (수리)"
|
||||
@@ -4460,8 +4460,7 @@ msgid ""
|
||||
"Unable to perform boolean operation on model meshes. Only positive parts "
|
||||
"will be exported."
|
||||
msgstr ""
|
||||
"모델 메쉬에 부울 연산을 수행할 수 없습니다. 오직 양수 부분만 내보내질 것입니"
|
||||
"다"
|
||||
"모델 메쉬에 부울 연산을 수행할 수 없습니다. 오직 양수 부품만 내보내집니다."
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
@@ -4491,7 +4490,7 @@ msgstr "현재 선택된 부품 수: %1%\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Number of currently selected objects: %1%\n"
|
||||
msgstr ""
|
||||
msgstr "현재 선택된 개체 수: %1%\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Part name: %1%\n"
|
||||
@@ -4591,6 +4590,9 @@ msgstr "기타"
|
||||
msgid "Login Region"
|
||||
msgstr "로그인 지역"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr "스텔스 모드"
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "미터법"
|
||||
|
||||
@@ -4829,6 +4831,12 @@ msgstr "출력 순서"
|
||||
msgid "Plate name"
|
||||
msgstr "플레이트 이름"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr "사용자 지정"
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr "첫 레이어 출력 순서"
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "글로벌 베드유형과 동일"
|
||||
|
||||
@@ -5291,7 +5299,7 @@ msgid "Bridge"
|
||||
msgstr "다리"
|
||||
|
||||
msgid "Set speed for external and internal bridges"
|
||||
msgstr ""
|
||||
msgstr "외부 및 내부 다리 속도 설정"
|
||||
|
||||
msgid "Travel speed"
|
||||
msgstr "이동 속도(트레블)"
|
||||
@@ -6268,11 +6276,14 @@ msgid "Bottom surface"
|
||||
msgstr "하단 표면"
|
||||
|
||||
msgid "Internal Bridge"
|
||||
msgstr ""
|
||||
msgstr "내부 다리"
|
||||
|
||||
msgid "Gap infill"
|
||||
msgstr "틈(갭) 채우기"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr "스커트"
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "지지대 접점"
|
||||
|
||||
@@ -6494,6 +6505,27 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "레이어 높이는 노즐 직경을 초과할 수 없습니다"
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
"상대 압출 모드에서는 부동 소수점 정확도를 위해 각 레이어에서 압출기 위치를 재"
|
||||
"설정해야 합니다. layer_gcode에 \"G92 E0\"을 추가하세요."
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
"\"G92 E0\"이 before_layer_gcode에서 발견되었으며 절대 압출 모드와 호환되지 않"
|
||||
"습니다."
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
"\"G92 E0\"이 layer_gcode에서 발견되었으며 절대 압출 모드와 호환되지 않습니다."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "%d: %s 플레이트는 %s 필라멘트를 지원하지 않습니다"
|
||||
@@ -6728,6 +6760,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "프린터가 지원하는 침대 유형"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr "첫 레이어 출력 순서"
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr "이 G코드는 Z를 올리기 전에 모든 레이어 변경에 삽입됩니다"
|
||||
|
||||
@@ -6830,7 +6865,7 @@ msgstr ""
|
||||
"위해 약간 줄일 수 있습니다"
|
||||
|
||||
msgid "Bottom surface flow ratio"
|
||||
msgstr "하단 표면 비율"
|
||||
msgstr "하단 표면 유량 비율"
|
||||
|
||||
msgid "This factor affects the amount of material for bottom solid infill"
|
||||
msgstr "이 인수는 하단 꽉찬 채우기의 압출량에 영향을 미칩니다"
|
||||
@@ -6846,7 +6881,7 @@ msgstr ""
|
||||
"시킵니다."
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
msgstr "상단 표면에서 벽 하나만 그리기"
|
||||
msgstr "상단 표면에 단일 벽 생성"
|
||||
|
||||
msgid ""
|
||||
"Use only one wall on flat top surface, to give more space to the top infill "
|
||||
@@ -6856,7 +6891,7 @@ msgstr ""
|
||||
"합니다"
|
||||
|
||||
msgid "One wall threshold"
|
||||
msgstr ""
|
||||
msgstr "단일 벽 임계값"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
@@ -6869,9 +6904,16 @@ msgid ""
|
||||
"on the next layer, like letters. Set this setting to 0 to remove these "
|
||||
"artifacts."
|
||||
msgstr ""
|
||||
"상단 표면을 출력해야 하고 부분적으로 다른 레이어로 덮여 있는 경우 너비가 이 "
|
||||
"값 미만인 상단 레이어에서는 고려되지 않습니다. 이는 둘레로만 덮여야 하는 표면"
|
||||
"에서 '상단 둘레 하나'가 발동되지 않도록 하는 데 유용할 수 있습니다. 이 값은 "
|
||||
"압출 너비의 mm 또는 % o로 설정됩니다.\n"
|
||||
"경고: 활성화된 경우, 의도치 않은 형상이 생성되는건 다음 레이어에 문자와 같은 "
|
||||
"일부 얇은 형상이 있기 때문입니다. 이러한 형상을 제거하려면 이 값을 0으로 설정"
|
||||
"하십시오."
|
||||
|
||||
msgid "Only one wall on first layer"
|
||||
msgstr "첫 레이어에서 벽 하나만 그리기"
|
||||
msgstr "하단 표면에 단일 벽 생성"
|
||||
|
||||
msgid ""
|
||||
"Use only one wall on first layer, to give more space to the bottom infill "
|
||||
@@ -6895,7 +6937,7 @@ msgid "mm/s or %"
|
||||
msgstr "mm/s or %"
|
||||
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
msgstr "외부"
|
||||
|
||||
msgid "Speed of bridge and completely overhang wall"
|
||||
msgstr "다리와 완전히 돌출된 돌출부 벽의 속도"
|
||||
@@ -6904,12 +6946,14 @@ msgid "mm/s"
|
||||
msgstr "mm/s"
|
||||
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
msgstr "내부"
|
||||
|
||||
msgid ""
|
||||
"Speed of internal bridge. If the value is expressed as a percentage, it will "
|
||||
"be calculated based on the bridge_speed. Default value is 150%."
|
||||
msgstr ""
|
||||
"내부 다리 속도. 값을 백분율로 표시하면 외부 다리 속도(bridge_speed)를 기준으"
|
||||
"로 계산됩니다. 기본값은 150%입니다."
|
||||
|
||||
msgid "Brim width"
|
||||
msgstr "챙(브림) 너비"
|
||||
@@ -6928,16 +6972,16 @@ msgstr ""
|
||||
"림) 너비가 자동으로 분석 및 계산됨을 의미합니다."
|
||||
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
msgstr "생쥐 귀"
|
||||
|
||||
msgid "outer_only"
|
||||
msgstr "외부 챙(브림)만"
|
||||
msgid "Outer brim only"
|
||||
msgstr "외부 챙만"
|
||||
|
||||
msgid "Inner brim only"
|
||||
msgstr "내부 챙(브림)만"
|
||||
msgstr "내부 챙만"
|
||||
|
||||
msgid "Outer and inner brim"
|
||||
msgstr "내부와 외부 챙(브림)"
|
||||
msgstr "내부와 외부 챙"
|
||||
|
||||
msgid "Brim-object gap"
|
||||
msgstr "챙(브림)-개체 간격"
|
||||
@@ -6950,28 +6994,34 @@ msgstr ""
|
||||
"있게 합니다"
|
||||
|
||||
msgid "Brim ears"
|
||||
msgstr ""
|
||||
msgstr "챙(브림) 귀"
|
||||
|
||||
msgid "Only draw brim over the sharp edges of the model."
|
||||
msgstr ""
|
||||
msgstr "모델의 날카로운 가장자리에만 챙을 그립니다."
|
||||
|
||||
msgid "Brim ear max angle"
|
||||
msgstr ""
|
||||
msgstr "챙(브림) 귀 최대 각도"
|
||||
|
||||
msgid ""
|
||||
"Maximum angle to let a brim ear appear. \n"
|
||||
"If set to 0, no brim will be created. \n"
|
||||
"If set to ~180, brim will be created on everything but straight sections."
|
||||
msgstr ""
|
||||
"챙 귀가 나타날 수 있는 최대 각도.\n"
|
||||
"0으로 설정하면 챙이 생성되지 않습니다.\n"
|
||||
"~180으로 설정하면 직선 부분을 제외한 모든 부분에 챙이 생성됩니다."
|
||||
|
||||
msgid "Brim ear detection radius"
|
||||
msgstr ""
|
||||
msgstr "챙 귀 감지 반경"
|
||||
|
||||
msgid ""
|
||||
"The geometry will be decimated before dectecting sharp angles. This "
|
||||
"parameter indicates the minimum length of the deviation for the decimation.\n"
|
||||
"0 to deactivate"
|
||||
msgstr ""
|
||||
"날카로운 각도를 감지하기 전에 형상이 무시됩니다. 이 매개변수는 무시하는 형상"
|
||||
"의 최소 길이를 나타냅니다.\n"
|
||||
"0으로 비활성화합니다"
|
||||
|
||||
msgid "Compatible machine"
|
||||
msgstr "호환 장비"
|
||||
@@ -7150,12 +7200,14 @@ msgid "Line pattern of bottom surface infill, not bridge infill"
|
||||
msgstr "하단 표면 채우기의 선 패턴, 다리엔 적용 안됨"
|
||||
|
||||
msgid "Internal solid infill pattern"
|
||||
msgstr ""
|
||||
msgstr "내부 꽉찬 채우기 패턴"
|
||||
|
||||
msgid ""
|
||||
"Line pattern of internal solid infill. if the detect nattow internal solid "
|
||||
"infill be enabled, the concentric pattern will be used for the small area."
|
||||
msgstr ""
|
||||
"내부 꽉찬 채우기의 선 패턴. 좁은 내부 꽉찬 채우기 감지가 활성화된 경우 작은 "
|
||||
"영역에 동심 패턴이 사용됩니다."
|
||||
|
||||
msgid ""
|
||||
"Line width of outer wall. If expressed as a %, it will be computed over the "
|
||||
@@ -7429,10 +7481,10 @@ msgid "money/kg"
|
||||
msgstr "원/kg"
|
||||
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
msgstr "제조사"
|
||||
|
||||
msgid "Vendor of filament. For show only"
|
||||
msgstr ""
|
||||
msgstr "필라멘트 제조사"
|
||||
|
||||
msgid "(Undefined)"
|
||||
msgstr "(정의되지 않음)"
|
||||
@@ -7921,7 +7973,7 @@ msgstr ""
|
||||
"내부 드문 채우기의 선 너비. %로 입력 시 노즐 직경에 대한 비율로 계산됩니다."
|
||||
|
||||
msgid "Infill/Wall overlap"
|
||||
msgstr "채우기/벽 겹침"
|
||||
msgstr "채우기/벽 겹치기"
|
||||
|
||||
msgid ""
|
||||
"Infill area is enlarged slightly to overlap with wall for better bonding. "
|
||||
@@ -8417,7 +8469,7 @@ msgid "Top Only"
|
||||
msgstr "상단 표면"
|
||||
|
||||
msgid "Bottom Only"
|
||||
msgstr "하단 표면"
|
||||
msgstr "하단 표면만"
|
||||
|
||||
msgid "Top and Bottom"
|
||||
msgstr "상단 및 하단 표면"
|
||||
@@ -8723,10 +8775,11 @@ msgstr ""
|
||||
"부위에 대해서만 지지대를 생성합니다."
|
||||
|
||||
msgid "Remove small overhangs"
|
||||
msgstr ""
|
||||
msgstr "작은 돌출부 제거"
|
||||
|
||||
msgid "Remove small overhangs that possibly need no supports."
|
||||
msgstr ""
|
||||
"Remove small overhangs; 지지대가 필요하지 않은 작은 돌출부를 제거합니다."
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "상단 Z 거리"
|
||||
@@ -9296,10 +9349,10 @@ msgid "Load cached slicing data from directory"
|
||||
msgstr "디렉토리에 캐시된 슬라이싱 데이터 로드"
|
||||
|
||||
msgid "Export STL"
|
||||
msgstr ""
|
||||
msgstr "STL 내보내기"
|
||||
|
||||
msgid "Export the objects as multiple STL."
|
||||
msgstr ""
|
||||
msgstr "개체를 여러개의 STL로 내보내기."
|
||||
|
||||
msgid "Slice"
|
||||
msgstr "슬라이스"
|
||||
@@ -9317,10 +9370,10 @@ msgid "Update the configs values of 3mf to latest."
|
||||
msgstr "3mf의 구성 값을 최신으로 업데이트합니다."
|
||||
|
||||
msgid "Load default filaments"
|
||||
msgstr ""
|
||||
msgstr "기본 필라멘트 로드"
|
||||
|
||||
msgid "Load first filament as default for those not loaded"
|
||||
msgstr ""
|
||||
msgstr "로드되지 않은 경우 기본값으로 첫 번째 필라멘트 로드"
|
||||
|
||||
msgid "mtcpp"
|
||||
msgstr "mtcpp"
|
||||
@@ -9371,10 +9424,10 @@ msgid "Arrange options: 0-disable, 1-enable, others-auto"
|
||||
msgstr "정렬 옵션: 0-사용 안 함, 1-사용, 기타-자동"
|
||||
|
||||
msgid "Repetions count"
|
||||
msgstr ""
|
||||
msgstr "반복 횟수"
|
||||
|
||||
msgid "Repetions count of the whole model"
|
||||
msgstr ""
|
||||
msgstr "전체 모델의 반복 횟수"
|
||||
|
||||
msgid "Convert Unit"
|
||||
msgstr "단위 변환"
|
||||
@@ -9407,12 +9460,13 @@ msgid "Skip some objects in this print"
|
||||
msgstr "이 출력에서 일부 개체를 건너뜁니다"
|
||||
|
||||
msgid "load uptodate process/machine settings when using uptodate"
|
||||
msgstr ""
|
||||
msgstr "uptodate 사용 시 최신 프로세스/프린터 설정 로드"
|
||||
|
||||
msgid ""
|
||||
"load uptodate process/machine settings from the specified file when using "
|
||||
"uptodate"
|
||||
msgstr ""
|
||||
"uptodate를 사용할 때 지정된 파일에서 최신 프로세스/프린터 설정을 로드합니다"
|
||||
|
||||
msgid "Data directory"
|
||||
msgstr "데이터 디렉토리"
|
||||
@@ -9547,7 +9601,7 @@ msgid "Loading of a model file failed."
|
||||
msgstr "모델 파일 로드에 실패했습니다."
|
||||
|
||||
msgid "The supplied file couldn't be read because it's empty"
|
||||
msgstr "제공된 파일이 비어 있어 읽을 수 없습니다."
|
||||
msgstr "제공된 파일이 비어 있어 읽을 수 없습니다"
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
@@ -9560,138 +9614,138 @@ msgid "load_obj: failed to parse"
|
||||
msgstr "load_obj: 구문 분석에 실패"
|
||||
|
||||
msgid "The file contains polygons with more than 4 vertices."
|
||||
msgstr "이 파일에는 꼭짓점이 4개 이상인 다각형이 포함되어 있습니다."
|
||||
msgstr "이 파일에는 꼭지점이 4개 이상인 다각형이 포함되어 있습니다."
|
||||
|
||||
msgid "The file contains polygons with less than 2 vertices."
|
||||
msgstr "이 파일에는 꼭짓점이 2개 미만인 다각형이 포함되어 있습니다."
|
||||
msgstr "이 파일에는 꼭지점이 2개 미만인 다각형이 포함되어 있습니다."
|
||||
|
||||
msgid "The file contains invalid vertex index."
|
||||
msgstr "파일에 잘못된 꼭짓점 인덱스가 포함되어 있습니다."
|
||||
msgstr "파일에 잘못된 꼭지점 인덱스가 포함되어 있습니다."
|
||||
|
||||
msgid "This OBJ file couldn't be read because it's empty."
|
||||
msgstr "이 OBJ 파일은 비어 있어서 읽을 수 없습니다."
|
||||
|
||||
msgid "Network lookup"
|
||||
msgstr ""
|
||||
msgstr "네트워크 조회"
|
||||
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
msgstr "주소"
|
||||
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
msgstr "호스트 이름"
|
||||
|
||||
msgid "Service name"
|
||||
msgstr ""
|
||||
msgstr "서비스 이름"
|
||||
|
||||
msgid "OctoPrint version"
|
||||
msgstr ""
|
||||
msgstr "OctoPrint 버전"
|
||||
|
||||
msgid "Searching for devices"
|
||||
msgstr ""
|
||||
msgstr "장치 검색 중"
|
||||
|
||||
msgid "Finished"
|
||||
msgstr "완료됨"
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr ""
|
||||
msgstr "선택한 부품에서 부울 연산을 수행할 수 없습니다"
|
||||
|
||||
msgid "Mesh Boolean"
|
||||
msgstr ""
|
||||
msgstr "메쉬 부울"
|
||||
|
||||
msgid "Union"
|
||||
msgstr ""
|
||||
msgstr "합집합"
|
||||
|
||||
msgid "Difference"
|
||||
msgstr ""
|
||||
msgstr "차집합"
|
||||
|
||||
msgid "Intersection"
|
||||
msgstr ""
|
||||
msgstr "교집합"
|
||||
|
||||
msgid "Source Volume"
|
||||
msgstr ""
|
||||
msgstr "소스 볼륨"
|
||||
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
msgstr "도구 볼륨"
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
msgstr "다음에서 잘라내기"
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
msgstr "다음으로 잘라내기"
|
||||
|
||||
msgid "selected"
|
||||
msgstr "선택됨"
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr "요소 1"
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr "요소 2"
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
msgstr "입력개체 삭제"
|
||||
|
||||
msgid "Send to print"
|
||||
msgstr ""
|
||||
msgstr "프린터로 보내기"
|
||||
|
||||
msgid "Upload to Printer Host with the following filename:"
|
||||
msgstr ""
|
||||
msgstr "다음 파일 이름으로 프린터 호스트에 업로드:"
|
||||
|
||||
msgid "Use forward slashes ( / ) as a directory separator if needed."
|
||||
msgstr ""
|
||||
msgstr "필요한 경우 슬래시( / )를 디렉토리 구분 기호로 사용하십시오."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr ""
|
||||
msgstr "업로드 파일 이름이 \"%s\"로 끝나지 않습니다. 계속하시겠습니까?"
|
||||
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
msgstr "업로드"
|
||||
|
||||
msgid "Upload and Print"
|
||||
msgstr ""
|
||||
msgstr "업로드 및 출력"
|
||||
|
||||
msgid "Simulate"
|
||||
msgstr ""
|
||||
msgstr "모의실험"
|
||||
|
||||
msgid "Print host upload queue"
|
||||
msgstr ""
|
||||
msgstr "출력 호스트 업로드 대기열"
|
||||
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "아이디"
|
||||
|
||||
msgid "Progress"
|
||||
msgstr ""
|
||||
msgstr "진행률"
|
||||
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
msgstr "호스트"
|
||||
|
||||
msgctxt "OfFile"
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
msgstr "크기"
|
||||
|
||||
msgid "Filename"
|
||||
msgstr ""
|
||||
msgstr "파일 이름"
|
||||
|
||||
msgid "Error Message"
|
||||
msgstr ""
|
||||
msgstr "에러 메시지"
|
||||
|
||||
msgid "Cancel selected"
|
||||
msgstr ""
|
||||
msgstr "선택 취소"
|
||||
|
||||
msgid "Show error message"
|
||||
msgstr ""
|
||||
msgstr "오류 메시지 표시"
|
||||
|
||||
msgid "Enqueued"
|
||||
msgstr ""
|
||||
msgstr "대기 중"
|
||||
|
||||
msgid "Uploading"
|
||||
msgstr "업로드 중..."
|
||||
msgstr "업로드 중"
|
||||
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
msgstr "취소 중"
|
||||
|
||||
msgid "Error uploading to print host:"
|
||||
msgstr ""
|
||||
msgstr "출력 호스트에 업로드하는 중 오류 발생:"
|
||||
|
||||
msgid "PA Calibration"
|
||||
msgstr "PA 교정"
|
||||
@@ -9887,8 +9941,8 @@ msgid ""
|
||||
"touchpanel in the 3D scene?"
|
||||
msgstr ""
|
||||
"3D 화면 작업\n"
|
||||
"3D 화면에서 마우스와 터치패널로 보기 및 개체/부품 선택을 제어하는 방법을 알"
|
||||
"고 계셨습니까?"
|
||||
"3D 화면에서 마우스와 터치패널로 보기 및 개체/부품 선택을 제어하는 방법을 알"
|
||||
"고 있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Cut Tool]
|
||||
msgid ""
|
||||
@@ -9897,8 +9951,8 @@ msgid ""
|
||||
"cutting tool?"
|
||||
msgstr ""
|
||||
"자르기 도구\n"
|
||||
"자르기 도구로 어떤 각도와 위치에서도 모델을 자를 수 있다는 사실을 알고 계셨습"
|
||||
"니까?"
|
||||
"자르기 도구로 어떤 각도와 위치에서도 모델을 자를 수 있다는 사실을 알고 있습니"
|
||||
"까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Fix Model]
|
||||
msgid ""
|
||||
@@ -9908,7 +9962,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"모델 수리\n"
|
||||
"많은 슬라이싱 문제를 피하기 위해 손상된 3D 모델을 수리할 수 있다는 것을 알고 "
|
||||
"계셨습니까?"
|
||||
"있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Timelapse]
|
||||
msgid ""
|
||||
@@ -9916,7 +9970,7 @@ msgid ""
|
||||
"Did you know that you can generate a timelapse video during each print?"
|
||||
msgstr ""
|
||||
"타임랩스\n"
|
||||
"출력할 때마다 타임랩스 비디오를 생성할 수 있다는 사실을 알고 계셨습니까?"
|
||||
"출력할 때마다 타임랩스 비디오를 생성할 수 있다는 사실을 알고 있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Auto-Arrange]
|
||||
msgid ""
|
||||
@@ -9924,7 +9978,7 @@ msgid ""
|
||||
"Did you know that you can auto-arrange all objects in your project?"
|
||||
msgstr ""
|
||||
"자동 정렬\n"
|
||||
"프로젝트의 모든 개체를 자동으로 정렬할 수 있다는 사실을 알고 계셨습니까?"
|
||||
"프로젝트의 모든 개체를 자동으로 정렬할 수 있다는 사실을 알고 있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Auto-Orient]
|
||||
msgid ""
|
||||
@@ -9934,7 +9988,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"자동 방향\n"
|
||||
"간단한 클릭으로 인쇄를 위한 최적의 방향으로 개체를 회전할 수 있다는 사실을 알"
|
||||
"고 계셨습니까?"
|
||||
"고 있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Lay on Face]
|
||||
msgid ""
|
||||
@@ -9945,8 +9999,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"바닥면 선택\n"
|
||||
"모델의 면 중 하나가 프린터 베드에 놓이도록 모델의 방향을 빠르게 지정할 수 있"
|
||||
"다는 사실을 알고 계셨습니까? \"바닥면 선택\" 기능을 선택하거나 <b>F</b> 키를 "
|
||||
"누르십시오."
|
||||
"다는 사실을 알고 있습니까? \"바닥면 선택\" 기능을 선택하거나 <b>F</b> 키를 누"
|
||||
"르십시오."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Object List]
|
||||
msgid ""
|
||||
@@ -9956,7 +10010,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"개체 목록\n"
|
||||
"목록의 모든 개체/부품을 보고 각 개체/부품에 대한 설정을 변경할 수 있다는 것"
|
||||
"을 알고 계셨습니까?"
|
||||
"을 알고 있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Simplify Model]
|
||||
msgid ""
|
||||
@@ -9966,9 +10020,9 @@ msgid ""
|
||||
"more in the documentation."
|
||||
msgstr ""
|
||||
"모델 단순화\n"
|
||||
"메쉬 단순화 기능을 사용하여 메쉬의 삼각형 수를 줄일 수 있다는 사실을 알고 계"
|
||||
"셨습니까? 모델을 마우스 오른쪽 버튼으로 클릭하고 모델 단순화를 선택합니다. 자"
|
||||
"세한 내용은 설명서를 참조하십시오."
|
||||
"메쉬 단순화 기능을 사용하여 메쉬의 삼각형 수를 줄일 수 있다는 사실을 알고 있"
|
||||
"습니까? 모델을 마우스 오른쪽 버튼으로 클릭하고 모델 단순화를 선택합니다. 자세"
|
||||
"한 내용은 설명서를 참조하십시오."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Slicing Parameter Table]
|
||||
msgid ""
|
||||
@@ -9978,7 +10032,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"슬라이싱 매개변수 테이블\n"
|
||||
"테이블의 모든 개체/부품을 보고 각 개체/부품에 대한 설정을 변경할 수 있다는 것"
|
||||
"을 알고 계셨습니까?"
|
||||
"을 알고 있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Split to Objects/Parts]
|
||||
msgid ""
|
||||
@@ -9988,7 +10042,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"개체/부품으로 분할\n"
|
||||
"쉽게 색칠하거나 출력하기 위해 큰 개체를 작은 개체로 나눌 수 있다는 것을 알고 "
|
||||
"계셨습니까?"
|
||||
"있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Subtract a Part]
|
||||
msgid ""
|
||||
@@ -9999,8 +10053,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"부품 비우기\n"
|
||||
"비우기 부품 수정자를 사용하여 한 메쉬를 다른 메쉬에서 뺄 수 있다는 것을 알고 "
|
||||
"계셨습니까? 예를 들어 오르카 슬라이서에서 직접 쉽게 크기를 조정할 수 있는 구"
|
||||
"멍을 만들 수 있습니다. 자세한 내용은 설명서를 참조하십시오."
|
||||
"있습니까? 예를 들어 오르카 슬라이서에서 직접 쉽게 크기를 조정할 수 있는 구멍"
|
||||
"을 만들 수 있습니다. 자세한 내용은 설명서를 참조하십시오."
|
||||
|
||||
#: resources/data/hints.ini: [hint:STEP]
|
||||
msgid ""
|
||||
@@ -10012,7 +10066,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"STEP\n"
|
||||
"STL 대신 STEP 파일을 슬라이싱하여 출력 품질을 향상시킬 수 있다는 사실을 알고 "
|
||||
"계셨습니까?\n"
|
||||
"있습니까?\n"
|
||||
"Orca Slicer는 STEP 파일 슬라이싱을 지원하여 저해상도 STL보다 부드러운 결과를 "
|
||||
"제공합니다. 시도해 보세요!"
|
||||
|
||||
@@ -10024,8 +10078,8 @@ msgid ""
|
||||
"the overall look of your model. Check it out!"
|
||||
msgstr ""
|
||||
"Z 솔기 위치\n"
|
||||
"Z 솔기의 위치를 사용자 지정하고 출력물에 칠하여 잘 보이지 않는 위치에 배치할 "
|
||||
"수 있다는 사실을 알고 계셨습니까? 이렇게 하면 모델의 전반적인 모양이 향상됩니"
|
||||
"Z 솔기의 위치를 사용자 지정하고 출력물에 칠하여 잘 보이지 않는 위치에 배치할 "
|
||||
"수 있다는 사실을 알고 있습니까? 이렇게 하면 모델의 전반적인 모양이 향상됩니"
|
||||
"다. 확인해 보세요!"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Fine-tuning for flow rate]
|
||||
@@ -10036,7 +10090,7 @@ msgid ""
|
||||
"printed model by doing some fine-tuning."
|
||||
msgstr ""
|
||||
"유량 미세 조정\n"
|
||||
"더 보기 좋은 출력물을 위해 유량을 미세 조정할 수 있다는 사실을 알고 계셨습니"
|
||||
"더 보기 좋은 출력물을 위해 유량을 미세 조정할 수 있다는 사실을 알고 있습니"
|
||||
"까? 재료에 따라 약간의 미세 조정을 통해 출력된 모델의 전체적인 마감을 개선할 "
|
||||
"수 있습니다."
|
||||
|
||||
@@ -10049,7 +10103,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"출력을 플레이트로 분할\n"
|
||||
"부품이 많은 모델을 출력할 준비가 된 개별 플레이트로 분할할 수 있다는 사실을 "
|
||||
"알고 계셨습니까? 이렇게 하면 모든 부품을 추적하는 프로세스가 간소화됩니다."
|
||||
"알고 있습니까? 이렇게 하면 모든 부품을 추적하는 프로세스가 간소화됩니다."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer
|
||||
#: Height]
|
||||
@@ -10060,7 +10114,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"적응형 레이어 높이로 인쇄 속도 향상\n"
|
||||
"적응형 레이어 높이 옵션을 사용하여 모델을 더 빠르게 출력할 수 있다는 사실을 "
|
||||
"알고 계셨습니까? 확인해 보세요!"
|
||||
"알고 있습니까? 확인해 보세요!"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Support painting]
|
||||
msgid ""
|
||||
@@ -10070,8 +10124,8 @@ msgid ""
|
||||
"model that actually need it."
|
||||
msgstr ""
|
||||
"지지대 칠하기\n"
|
||||
"지지대의 위치를 칠할 수 있다는 것을 알고 계셨습니까? 이 기능을 사용하면 실제"
|
||||
"로 필요한 모델 부위에만 서포트 재료를 쉽게 배치할 수 있습니다."
|
||||
"지지대의 위치를 칠할 수 있다는 것을 알고 있습니까? 이 기능을 사용하면 실제로 "
|
||||
"필요한 모델 부위에만 서포트 재료를 쉽게 배치할 수 있습니다."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Different types of supports]
|
||||
msgid ""
|
||||
@@ -10081,9 +10135,9 @@ msgid ""
|
||||
"print speed. Check them out!"
|
||||
msgstr ""
|
||||
"다양한 유형의 지지대\n"
|
||||
"여러 유형의 지지대 중에서 선택할 수 있다는 것을 알고 계셨습니까? 나무 지지대"
|
||||
"는 필라멘트를 절약하고 출력 속도를 향상시키면서 유기 모델에 적합합니다. 확인"
|
||||
"해 보세요!"
|
||||
"여러 유형의 지지대 중에서 선택할 수 있다는 것을 알고 있습니까? 나무 지지대는 "
|
||||
"필라멘트를 절약하고 출력 속도를 향상시키면서 유기 모델에 적합합니다. 확인해 "
|
||||
"보세요!"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Printing Silk Filament]
|
||||
msgid ""
|
||||
@@ -10093,9 +10147,8 @@ msgid ""
|
||||
"the best results."
|
||||
msgstr ""
|
||||
"실크 필라멘트 출력\n"
|
||||
"실크 필라멘트를 성공적으로 출력하려면 특별한 주의가 필요하다는 사실을 알고 계"
|
||||
"셨습니까? 최상의 결과를 얻으려면 항상 더 높은 온도와 더 낮은 속도를 권장합니"
|
||||
"다."
|
||||
"실크 필라멘트를 성공적으로 출력하려면 특별한 주의가 필요하다는 사실을 알고 있"
|
||||
"습니까? 최상의 결과를 얻으려면 항상 더 높은 온도와 더 낮은 속도를 권장합니다."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Brim for better adhesion]
|
||||
msgid ""
|
||||
@@ -10105,7 +10158,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"더 나은 안착을 위한 챙(브림)\n"
|
||||
"출력 모델이 베드 표면과의 접촉면이 작을 때 챙(브림)를 사용하는 것이 좋다는 사"
|
||||
"실을 알고 계셨습니까?"
|
||||
"실을 알고 있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Set parameters for multiple objects]
|
||||
msgid ""
|
||||
@@ -10115,7 +10168,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"여러 개체에 대한 매개변수 설정\n"
|
||||
"선택한 모든 개체에 대한 슬라이싱 매개변수를 한 번에 설정할 수 있다는 사실을 "
|
||||
"알고 계셨습니까?"
|
||||
"알고 있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Stack objects]
|
||||
msgid ""
|
||||
@@ -10123,7 +10176,7 @@ msgid ""
|
||||
"Did you know that you can stack objects as a whole one?"
|
||||
msgstr ""
|
||||
"개체 쌓기\n"
|
||||
"물건을 통째로 쌓을 수 있다는 사실을 알고 계셨나요?"
|
||||
"물건을 통째로 쌓을 수 있다는 사실을 알고 있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Flush into support/objects/infill]
|
||||
msgid ""
|
||||
@@ -10133,7 +10186,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"지지대/개체/채우기에 쏟기(플러쉬)\n"
|
||||
"필라멘트를 교체하는 동안 낭비되는 필라멘트를 지지대/개체/채우기에 쏟기(플러"
|
||||
"쉬)하여 절약할 수 있다는 사실을 알고 계셨습니까?"
|
||||
"쉬)하여 절약할 수 있다는 사실을 알고 있습니까?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Improve strength]
|
||||
msgid ""
|
||||
@@ -10143,7 +10196,10 @@ msgid ""
|
||||
msgstr ""
|
||||
"강도 향상\n"
|
||||
"모델의 강도를 개선하기 위해 더 많은 벽 루프와 더 높은 드문 채우기 밀도를 사용"
|
||||
"할 수 있다는 것을 알고 계셨습니까?"
|
||||
"할 수 있다는 것을 알고 있습니까?"
|
||||
|
||||
#~ msgid "outer_only"
|
||||
#~ msgstr "외부 챙(브림)만"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The configuration may be generated by a newer version of BambuStudio."
|
||||
@@ -10191,9 +10247,6 @@ msgstr ""
|
||||
#~ msgid "Bambu Studio GUI initialization failed"
|
||||
#~ msgstr "뱀부 스튜디오 GUI 초기화 실패"
|
||||
|
||||
#~ msgid "Outer brim only"
|
||||
#~ msgstr "바깥쪽만"
|
||||
|
||||
#~ msgid "Check cloud service status"
|
||||
#~ msgstr "클라우드 서비스 상태 확인"
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -4686,6 +4686,9 @@ msgstr "Andere"
|
||||
msgid "Login Region"
|
||||
msgstr "Inlogregio"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "Metriek"
|
||||
|
||||
@@ -4933,6 +4936,12 @@ msgstr "Afdrukvolgorde"
|
||||
msgid "Plate name"
|
||||
msgstr "Plate name"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "Hetzelfde als Global Bed Type"
|
||||
|
||||
@@ -5379,8 +5388,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"
|
||||
@@ -6442,6 +6451,9 @@ msgstr ""
|
||||
msgid "Gap infill"
|
||||
msgstr "Gat opvulling"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "Support interface"
|
||||
|
||||
@@ -6680,6 +6692,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "De laaghoogte kan niet groter zijn dan de diameter van de nozzle"
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "Printbed %d: %s ondersteunt filament %s niet."
|
||||
@@ -6923,6 +6951,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "Printbedden ondersteund door de printer"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr ""
|
||||
"De G-code wordt bij iedere laagwisseling toegevoegd voor het optillen van Z"
|
||||
@@ -7130,7 +7161,7 @@ msgstr ""
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
|
||||
msgid "outer_only"
|
||||
msgid "Outer brim only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Inner brim only"
|
||||
@@ -7874,10 +7905,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 "Support interface fan speed"
|
||||
@@ -9827,21 +9858,21 @@ msgstr ""
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
|
||||
@@ -10382,9 +10413,6 @@ msgstr ""
|
||||
#~ msgid "Bambu Studio GUI initialization failed"
|
||||
#~ msgstr "Initialisatie van Bambu Studio GUI is mislukt"
|
||||
|
||||
#~ msgid "Outer brim only"
|
||||
#~ msgstr "Outer brim only"
|
||||
|
||||
#~ msgid "Check cloud service status"
|
||||
#~ msgstr "Check cloud service status"
|
||||
|
||||
|
||||
@@ -7,16 +7,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"PO-Revision-Date: 2023-08-08 15:05+0300\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"PO-Revision-Date: 2023-08-20 18:07+0300\n"
|
||||
"Last-Translator: Ilya <Lizardjazz1@gmail.com>\n"
|
||||
"Language-Team: SPb 3D Printing\n"
|
||||
"Language: ru_RU\n"
|
||||
"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.3.2\n"
|
||||
|
||||
msgid "Supports Painting"
|
||||
@@ -873,10 +873,10 @@ msgid "Set as individual objects"
|
||||
msgstr "Установить как отдельные объекты"
|
||||
|
||||
msgid "Fill bed with copies"
|
||||
msgstr ""
|
||||
msgstr "Заполнить весь стол копиями"
|
||||
|
||||
msgid "Fill the remaining area of bed with copies of the selected object"
|
||||
msgstr ""
|
||||
msgstr "Заполните оставшуюся область стола копиями выбранного объекта"
|
||||
|
||||
msgid "Printable"
|
||||
msgstr "Доступно для печати"
|
||||
@@ -1626,13 +1626,13 @@ msgid "Orienting"
|
||||
msgstr "Ориентация"
|
||||
|
||||
msgid "Filling bed "
|
||||
msgstr ""
|
||||
msgstr "Заполнить стол. "
|
||||
|
||||
msgid "Bed filling canceled."
|
||||
msgstr ""
|
||||
msgstr "Заполнение стола отменено."
|
||||
|
||||
msgid "Bed filling done."
|
||||
msgstr ""
|
||||
msgstr "Заполнение стола выполнено."
|
||||
|
||||
msgid "Error! Unable to create thread!"
|
||||
msgstr "Ошибка! Невозможно создать тему!"
|
||||
@@ -3021,7 +3021,7 @@ msgid "An object is layed over the boundary of plate."
|
||||
msgstr "Объект наложен на границу стола."
|
||||
|
||||
msgid "A G-code path goes beyond the max print height."
|
||||
msgstr ""
|
||||
msgstr "Путь G-кода выходит за пределы максимальной высоты печати."
|
||||
|
||||
msgid "A G-code path goes beyond the boundary of plate."
|
||||
msgstr "Путь G-кода выходит за пределы зоны печати."
|
||||
@@ -4044,7 +4044,7 @@ msgid "Export successfully."
|
||||
msgstr "Экспорт успешно."
|
||||
|
||||
msgid "Serious warning:"
|
||||
msgstr ""
|
||||
msgstr "Серьезное предупреждение:"
|
||||
|
||||
msgid " (Repair)"
|
||||
msgstr " (Ремонт)"
|
||||
@@ -4572,6 +4572,8 @@ msgid ""
|
||||
"Unable to perform boolean operation on model meshes. Only positive parts "
|
||||
"will be exported."
|
||||
msgstr ""
|
||||
"Не удается выполнить логическую операцию с модельными сетками. Будут "
|
||||
"экспортированы только положительные части."
|
||||
|
||||
msgid ""
|
||||
"Print By Object: \n"
|
||||
@@ -4598,11 +4600,11 @@ msgstr "Параметры области"
|
||||
|
||||
#, boost-format
|
||||
msgid "Number of currently selected parts: %1%\n"
|
||||
msgstr ""
|
||||
msgstr "Количество выбранных в данный момент деталей: %1%\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Number of currently selected objects: %1%\n"
|
||||
msgstr ""
|
||||
msgstr "Количество выбранных в данный момент объектов: %1%\n"
|
||||
|
||||
#, boost-format
|
||||
msgid "Part name: %1%\n"
|
||||
@@ -4704,6 +4706,9 @@ msgstr "Другие"
|
||||
msgid "Login Region"
|
||||
msgstr "Регион входа"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "Метрические"
|
||||
|
||||
@@ -4949,6 +4954,12 @@ msgstr "Последовательность печати"
|
||||
msgid "Plate name"
|
||||
msgstr "Название области"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr "Настроить"
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr "Последовательность печати первого слоя"
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "То же, что и глобальный тип стола"
|
||||
|
||||
@@ -5386,8 +5397,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 ""
|
||||
"При записи таймлапса без инструментальной головки рекомендуется добавить "
|
||||
"\"Timelapse Wipe Tower\"\n"
|
||||
@@ -5434,7 +5445,7 @@ msgid "Bridge"
|
||||
msgstr "Мост"
|
||||
|
||||
msgid "Set speed for external and internal bridges"
|
||||
msgstr ""
|
||||
msgstr "Установка скорости для внешних и внутренних мостов"
|
||||
|
||||
msgid "Travel speed"
|
||||
msgstr "Скорость перемещения"
|
||||
@@ -6438,11 +6449,14 @@ msgid "Bottom surface"
|
||||
msgstr "Нижняя поверхность"
|
||||
|
||||
msgid "Internal Bridge"
|
||||
msgstr ""
|
||||
msgstr "Внутренний мост"
|
||||
|
||||
msgid "Gap infill"
|
||||
msgstr "Заполнение пробелов"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "Интерфейс поддержки"
|
||||
|
||||
@@ -6675,6 +6689,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "Высота слоя не может превышать диаметр сопла"
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "Плита %d: %s не поддерживает филамент %s"
|
||||
@@ -6915,6 +6945,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "Типы столов, поддерживаемые принтером"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr "Последовательность печати первого слоя"
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr "Типы столов, поддерживаемые принтером"
|
||||
|
||||
@@ -7055,9 +7088,9 @@ msgstr ""
|
||||
"предоставить больше места для верхнего массива заполнения"
|
||||
|
||||
msgid "One wall threshold"
|
||||
msgstr ""
|
||||
msgstr "Порог одной стены"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, fuzzy, c-format, boost-format
|
||||
msgid ""
|
||||
"If a top surface has to be printed and it's partially covered by another "
|
||||
"layer, it won't be considered at a top layer where its width is below this "
|
||||
@@ -7068,6 +7101,15 @@ msgid ""
|
||||
"on the next layer, like letters. Set this setting to 0 to remove these "
|
||||
"artifacts."
|
||||
msgstr ""
|
||||
"Если необходимо напечатать верхнюю поверхность и она частично покрыта другим "
|
||||
"слоем, она не будет учитываться на верхнем слое, ширина которого меньше "
|
||||
"этого значения. Это может быть полезно, чтобы не допустить срабатывания "
|
||||
"функции \"один периметр сверху\" на поверхности, которая должна быть покрыта "
|
||||
"только периметрами. Это значение может составлять мм или % от ширины "
|
||||
"экструзии по периметру.\n"
|
||||
"Предупреждение: Если включено, артефакты могут создаваться, если у вас есть "
|
||||
"какие-то объекты на следующем слое, например буквы. Установите этот параметр "
|
||||
"равным 0, чтобы удалить эти артефакты."
|
||||
|
||||
msgid "Only one wall on first layer"
|
||||
msgstr "Только один периметр на первом слое"
|
||||
@@ -7096,7 +7138,7 @@ msgid "mm/s or %"
|
||||
msgstr "мм/с или %"
|
||||
|
||||
msgid "External"
|
||||
msgstr ""
|
||||
msgstr "Внешний"
|
||||
|
||||
msgid "Speed of bridge and completely overhang wall"
|
||||
msgstr "Скорость моста и полностью свисающий периметр"
|
||||
@@ -7105,12 +7147,14 @@ msgid "mm/s"
|
||||
msgstr "мм/с"
|
||||
|
||||
msgid "Internal"
|
||||
msgstr ""
|
||||
msgstr "Внутренний"
|
||||
|
||||
msgid ""
|
||||
"Speed of internal bridge. If the value is expressed as a percentage, it will "
|
||||
"be calculated based on the bridge_speed. Default value is 150%."
|
||||
msgstr ""
|
||||
"Скорость внутреннего моста. Если значение выражено в процентах, оно будет "
|
||||
"рассчитано на основе bridge_speed. Значение по умолчанию - 150%."
|
||||
|
||||
msgid "Brim width"
|
||||
msgstr "Ширина каймы"
|
||||
@@ -7130,10 +7174,10 @@ msgstr ""
|
||||
"рассчитывается автоматически."
|
||||
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
msgstr "На углах"
|
||||
|
||||
msgid "outer_only"
|
||||
msgstr "кайма снаружи"
|
||||
msgid "Outer brim only"
|
||||
msgstr "Кайма снаружи"
|
||||
|
||||
msgid "Inner brim only"
|
||||
msgstr "Кайма внутри"
|
||||
@@ -7152,28 +7196,39 @@ msgstr ""
|
||||
"легкому снятию каймы"
|
||||
|
||||
msgid "Brim ears"
|
||||
msgstr ""
|
||||
msgstr "Кайма с ушами"
|
||||
|
||||
msgid "Only draw brim over the sharp edges of the model."
|
||||
msgstr ""
|
||||
msgstr "Отрисовывать кайму только на острых углах модели."
|
||||
|
||||
msgid "Brim ear max angle"
|
||||
msgstr ""
|
||||
"Максимальный угол\n"
|
||||
" каймы с \"ушами\""
|
||||
|
||||
msgid ""
|
||||
"Maximum angle to let a brim ear appear. \n"
|
||||
"If set to 0, no brim will be created. \n"
|
||||
"If set to ~180, brim will be created on everything but straight sections."
|
||||
msgstr ""
|
||||
"Максимальный угол, при котором появляется кайма.\n"
|
||||
"Если установлено значение 0, кайма создаваться не будет.\n"
|
||||
"Если установлено значение ~180, кайма будет создаваться на всех участках, "
|
||||
"кроме прямых."
|
||||
|
||||
msgid "Brim ear detection radius"
|
||||
msgstr ""
|
||||
"Радиус обнаружения\n"
|
||||
" ушей по краям"
|
||||
|
||||
msgid ""
|
||||
"The geometry will be decimated before dectecting sharp angles. This "
|
||||
"parameter indicates the minimum length of the deviation for the decimation.\n"
|
||||
"0 to deactivate"
|
||||
msgstr ""
|
||||
"Геометрия будет упрощена перед обнаружением резких углов. Этот параметр "
|
||||
"указывает минимальную длину отклонения для упрощения. \n"
|
||||
" 0 для отключения"
|
||||
|
||||
msgid "Compatible machine"
|
||||
msgstr "Совместимый принтер"
|
||||
@@ -7361,12 +7416,15 @@ msgid "Line pattern of bottom surface infill, not bridge infill"
|
||||
msgstr "Узор заполнения нижней поверхности, но не мостов"
|
||||
|
||||
msgid "Internal solid infill pattern"
|
||||
msgstr ""
|
||||
msgstr "Внутренний рисунок сплошного заполнения"
|
||||
|
||||
msgid ""
|
||||
"Line pattern of internal solid infill. if the detect nattow internal solid "
|
||||
"infill be enabled, the concentric pattern will be used for the small area."
|
||||
msgstr ""
|
||||
"Линейный рисунок внутреннего сплошного заполнения. если включено обнаружение "
|
||||
"сплошного внутреннего заполнения, для небольшой области будет использоваться "
|
||||
"концентрический узор ."
|
||||
|
||||
msgid ""
|
||||
"Line width of outer wall. If expressed as a %, it will be computed over the "
|
||||
@@ -7615,9 +7673,9 @@ msgid ""
|
||||
"Be sure to allow enough space between objects, as this compensation is done "
|
||||
"after the checks."
|
||||
msgstr ""
|
||||
"Введите процент усадки, который произойдёт с филаментом после охлаждения "
|
||||
"(94% если вы измеряете 94 мм вместо 100 мм). Деталь будет масштабирована по "
|
||||
"xy для компенсации. Учитывается только филамент, используемый для измерения "
|
||||
"Введите процент усадки, который произойдёт с филаментом после охлаждения (94 "
|
||||
"% если вы измеряете 94 мм вместо 100 мм). Деталь будет масштабирована по xy "
|
||||
"для компенсации. Учитывается только филамент, используемый для измерения "
|
||||
"периметра.\n"
|
||||
"Обязательно оставляйте достаточное пространство между объектами, так как эта "
|
||||
"компенсация производится после проверок."
|
||||
@@ -7668,10 +7726,10 @@ msgid "money/kg"
|
||||
msgstr "р/кг"
|
||||
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
msgstr "Производитель"
|
||||
|
||||
msgid "Vendor of filament. For show only"
|
||||
msgstr ""
|
||||
msgstr "Производитель филамента. Только для статистики"
|
||||
|
||||
msgid "(Undefined)"
|
||||
msgstr "(Неопределенный)"
|
||||
@@ -7691,7 +7749,7 @@ msgstr "Плотность заполнения"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "Density of internal sparse infill, 100% means solid throughout"
|
||||
msgstr "Плотность внутреннего заполнения, 100% означает сплошное заполнение"
|
||||
msgstr "Плотность внутреннего заполнения, 100 % означает сплошное заполнение"
|
||||
|
||||
msgid "Sparse infill pattern"
|
||||
msgstr "Узор заполнения"
|
||||
@@ -7931,10 +7989,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» до максимума на уровне "
|
||||
@@ -8242,7 +8300,7 @@ msgid "All solid layer"
|
||||
msgstr "Весь сплошной слой"
|
||||
|
||||
msgid "Ironing Pattern"
|
||||
msgstr ""
|
||||
msgstr "Узор для разглаживания"
|
||||
|
||||
msgid "Ironing flow"
|
||||
msgstr "Поток разглаживании"
|
||||
@@ -9027,10 +9085,10 @@ msgstr ""
|
||||
"консоль и т.д."
|
||||
|
||||
msgid "Remove small overhangs"
|
||||
msgstr ""
|
||||
msgstr "Удалите небольшие навесания"
|
||||
|
||||
msgid "Remove small overhangs that possibly need no supports."
|
||||
msgstr ""
|
||||
msgstr "Удалите небольшие нависания, которые, возможно, не нуждаются в опорах."
|
||||
|
||||
msgid "Top Z distance"
|
||||
msgstr "Верхнее расстояние Z"
|
||||
@@ -9632,10 +9690,10 @@ msgid "Load cached slicing data from directory"
|
||||
msgstr "Загрузить кэшированные данные нарезки из каталога"
|
||||
|
||||
msgid "Export STL"
|
||||
msgstr ""
|
||||
msgstr "Экспорт файла STL"
|
||||
|
||||
msgid "Export the objects as multiple STL."
|
||||
msgstr ""
|
||||
msgstr "Экспортируйте объекты как несколько STL."
|
||||
|
||||
msgid "Slice"
|
||||
msgstr "Нарезка"
|
||||
@@ -9653,10 +9711,10 @@ msgid "Update the configs values of 3mf to latest."
|
||||
msgstr "Обновить значения конфигурации 3mf до последних."
|
||||
|
||||
msgid "Load default filaments"
|
||||
msgstr ""
|
||||
msgstr "Загрузите филамент по умолчанию"
|
||||
|
||||
msgid "Load first filament as default for those not loaded"
|
||||
msgstr ""
|
||||
msgstr "Загрузите первый филамент по умолчанию для тех, которые не загружены"
|
||||
|
||||
msgid "mtcpp"
|
||||
msgstr "mtcpp"
|
||||
@@ -9709,10 +9767,10 @@ msgid "Arrange options: 0-disable, 1-enable, others-auto"
|
||||
msgstr "Параметры упорядочивания: 0-disable, 1-enable, другие-auto"
|
||||
|
||||
msgid "Repetions count"
|
||||
msgstr ""
|
||||
msgstr "Количество повторений"
|
||||
|
||||
msgid "Repetions count of the whole model"
|
||||
msgstr ""
|
||||
msgstr "Количество повторений всей модели"
|
||||
|
||||
msgid "Convert Unit"
|
||||
msgstr "Преобразовать единицу измерения"
|
||||
@@ -9745,12 +9803,14 @@ msgid "Skip some objects in this print"
|
||||
msgstr "Пропустить некоторые объекты в этом принте"
|
||||
|
||||
msgid "load uptodate process/machine settings when using uptodate"
|
||||
msgstr ""
|
||||
msgstr "загрузить настройки проекта/принтера при использовании \"uptodate\""
|
||||
|
||||
msgid ""
|
||||
"load uptodate process/machine settings from the specified file when using "
|
||||
"uptodate"
|
||||
msgstr ""
|
||||
"загружать актуальные настройки процесса/принтера из указанного файла при "
|
||||
"использовании обновления"
|
||||
|
||||
msgid "Data directory"
|
||||
msgstr "Каталог данных"
|
||||
@@ -9879,155 +9939,161 @@ msgstr "Поддержка: распространение ветвей на с
|
||||
msgid ""
|
||||
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
|
||||
msgstr ""
|
||||
"Неизвестный формат файла. Входной файл должен иметь расширение .stl, .obj, ."
|
||||
"amf(.xml)."
|
||||
|
||||
msgid "Loading of a model file failed."
|
||||
msgstr ""
|
||||
msgstr "Не удалось загрузить файл модели."
|
||||
|
||||
msgid "The supplied file couldn't be read because it's empty"
|
||||
msgstr ""
|
||||
msgstr "Предоставленный файл не удалось прочитать, поскольку он пуст"
|
||||
|
||||
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
|
||||
msgstr ""
|
||||
"Неизвестный формат файла. Входной файл должен иметь расширение .3mf или .zip."
|
||||
"amf."
|
||||
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
msgstr "Отменено"
|
||||
|
||||
msgid "load_obj: failed to parse"
|
||||
msgstr ""
|
||||
msgstr "load_obj: не удалось выполнить синтаксический анализ"
|
||||
|
||||
msgid "The file contains polygons with more than 4 vertices."
|
||||
msgstr ""
|
||||
msgstr "Файл содержит многоугольники с более чем 4-мя вершинами."
|
||||
|
||||
msgid "The file contains polygons with less than 2 vertices."
|
||||
msgstr ""
|
||||
msgstr "Файл содержит многоугольники с менее чем 2-мя вершинами."
|
||||
|
||||
msgid "The file contains invalid vertex index."
|
||||
msgstr ""
|
||||
msgstr "Файл содержит недопустимый индекс вершины."
|
||||
|
||||
msgid "This OBJ file couldn't be read because it's empty."
|
||||
msgstr ""
|
||||
msgstr "Этот OBJ-файл не удалось прочитать, потому что он пуст."
|
||||
|
||||
msgid "Network lookup"
|
||||
msgstr ""
|
||||
msgstr "Поиск в сети"
|
||||
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
msgstr "Адрес"
|
||||
|
||||
msgid "Hostname"
|
||||
msgstr ""
|
||||
msgstr "Имя хоста"
|
||||
|
||||
msgid "Service name"
|
||||
msgstr ""
|
||||
msgstr "Название службы"
|
||||
|
||||
msgid "OctoPrint version"
|
||||
msgstr ""
|
||||
msgstr "Версия OctoPrint"
|
||||
|
||||
msgid "Searching for devices"
|
||||
msgstr ""
|
||||
msgstr "Поиск устройств"
|
||||
|
||||
msgid "Finished"
|
||||
msgstr ""
|
||||
msgstr "Завершено"
|
||||
|
||||
msgid "Unable to perform boolean operation on selected parts"
|
||||
msgstr ""
|
||||
msgstr "Невозможно выполнить логическую операцию над выбранными деталями"
|
||||
|
||||
msgid "Mesh Boolean"
|
||||
msgstr ""
|
||||
msgstr "Логическое значение сетки"
|
||||
|
||||
msgid "Union"
|
||||
msgstr ""
|
||||
msgstr "Союз"
|
||||
|
||||
msgid "Difference"
|
||||
msgstr ""
|
||||
msgstr "Различия"
|
||||
|
||||
msgid "Intersection"
|
||||
msgstr ""
|
||||
msgstr "Пересечение"
|
||||
|
||||
msgid "Source Volume"
|
||||
msgstr ""
|
||||
msgstr "Основной объём"
|
||||
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
msgstr "Общий объем"
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
msgstr "Вычесть из"
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
msgstr "Вычтите с помощью"
|
||||
|
||||
msgid "selected"
|
||||
msgstr "выбранный"
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr "Часть 1"
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr "Часть 2"
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
msgstr "Удалить входные данные"
|
||||
|
||||
msgid "Send to print"
|
||||
msgstr ""
|
||||
msgstr "Отправить на печать"
|
||||
|
||||
msgid "Upload to Printer Host with the following filename:"
|
||||
msgstr ""
|
||||
msgstr "Отправить на узел принтера со следующим именем файла:"
|
||||
|
||||
msgid "Use forward slashes ( / ) as a directory separator if needed."
|
||||
msgstr ""
|
||||
"При необходимости используйте косую черту (/) в качестве разделителя "
|
||||
"каталога."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr ""
|
||||
msgstr "Имя загружаемого файла не заканчивается на \"%s2\". Продолжить?"
|
||||
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
msgstr "Загрузить"
|
||||
|
||||
msgid "Upload and Print"
|
||||
msgstr ""
|
||||
msgstr "Загрузить и распечатать"
|
||||
|
||||
msgid "Simulate"
|
||||
msgstr ""
|
||||
msgstr "Имитация"
|
||||
|
||||
msgid "Print host upload queue"
|
||||
msgstr ""
|
||||
msgstr "Очередь загрузки узла печати"
|
||||
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "ID"
|
||||
|
||||
msgid "Progress"
|
||||
msgstr ""
|
||||
msgstr "Прогресс"
|
||||
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
msgstr "Хост"
|
||||
|
||||
msgctxt "OfFile"
|
||||
msgid "Size"
|
||||
msgstr ""
|
||||
msgstr "Размер"
|
||||
|
||||
msgid "Filename"
|
||||
msgstr ""
|
||||
msgstr "Имя файла"
|
||||
|
||||
msgid "Error Message"
|
||||
msgstr ""
|
||||
msgstr "Сообщение об ошибке"
|
||||
|
||||
msgid "Cancel selected"
|
||||
msgstr ""
|
||||
msgstr "Отменить выбранное"
|
||||
|
||||
msgid "Show error message"
|
||||
msgstr ""
|
||||
msgstr "Показать сообщение об ошибке"
|
||||
|
||||
msgid "Enqueued"
|
||||
msgstr ""
|
||||
msgstr "Поставлен в очередь"
|
||||
|
||||
msgid "Uploading"
|
||||
msgstr ""
|
||||
msgstr "Загрузка"
|
||||
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
msgstr "Отмена"
|
||||
|
||||
msgid "Error uploading to print host:"
|
||||
msgstr ""
|
||||
msgstr "Ошибка загрузки на хост печати:"
|
||||
|
||||
msgid "PA Calibration"
|
||||
msgstr "РА Калибровка"
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -4622,6 +4622,9 @@ msgstr "Andra"
|
||||
msgid "Login Region"
|
||||
msgstr "Logga in Region"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "Metrisk"
|
||||
|
||||
@@ -4862,6 +4865,12 @@ msgstr "Utskrifts sekvens"
|
||||
msgid "Plate name"
|
||||
msgstr "Plattans namn"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "Samma som Global Bed Type"
|
||||
|
||||
@@ -5293,8 +5302,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"
|
||||
@@ -6336,6 +6345,9 @@ msgstr ""
|
||||
msgid "Gap infill"
|
||||
msgstr "Mellanrums ifyllnad"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "Support kontaktyta"
|
||||
|
||||
@@ -6556,6 +6568,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "Lagerhöjden kan inte överstiga nozzel diametern"
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "Plate %d: %s stöder inte filamentet %s"
|
||||
@@ -6791,6 +6819,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "Byggplattans typ stöds av skrivaren"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr "Denna G-kod används för varje lager innan Z axis lyfts"
|
||||
|
||||
@@ -6994,8 +7025,8 @@ msgstr ""
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
|
||||
msgid "outer_only"
|
||||
msgstr ""
|
||||
msgid "Outer brim only"
|
||||
msgstr "Endast yttre brim"
|
||||
|
||||
msgid "Inner brim only"
|
||||
msgstr "Endast inre kant"
|
||||
@@ -7071,9 +7102,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"
|
||||
@@ -7719,10 +7750,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 "Support interface fan speed"
|
||||
@@ -9634,21 +9665,21 @@ msgstr ""
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
|
||||
@@ -10188,9 +10219,6 @@ msgstr ""
|
||||
#~ msgid "Bambu Studio GUI initialization failed"
|
||||
#~ msgstr "Bambu Studio GUI-initiering misslyckades"
|
||||
|
||||
#~ msgid "Outer brim only"
|
||||
#~ msgstr "Endast yttre brim"
|
||||
|
||||
#~ msgid "Check cloud service status"
|
||||
#~ msgstr "Kontrollera molntjänstens status"
|
||||
|
||||
@@ -10495,9 +10523,9 @@ msgstr ""
|
||||
#~ "Tack för att du har köpt en Bambu Lab enhet. Innan du använder din Bambu "
|
||||
#~ "Lab enhet ska du läsa villkoren. Genom att klicka för att godkänna "
|
||||
#~ "användningen av din Bambu Lab enhet godkänner du att följa "
|
||||
#~ "sekretesspolicyn och användningsvillkoren (gemensamt kallade "
|
||||
#~ "\"Villkor\"). Om du inte följer eller samtycker till Bambu Labs "
|
||||
#~ "integritetspolicy ska du inte använda Bambu Labs utrustning och tjänster."
|
||||
#~ "sekretesspolicyn och användningsvillkoren (gemensamt kallade \"Villkor"
|
||||
#~ "\"). Om du inte följer eller samtycker till Bambu Labs integritetspolicy "
|
||||
#~ "ska du inte använda Bambu Labs utrustning och tjänster."
|
||||
|
||||
#~ msgid "and"
|
||||
#~ msgstr "och"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"PO-Revision-Date: 2023-08-10 20:25-0400\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \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.3.2\n"
|
||||
|
||||
msgid "Supports Painting"
|
||||
@@ -4695,6 +4695,9 @@ msgstr "Інші"
|
||||
msgid "Login Region"
|
||||
msgstr "Регіон входу"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "Метрика"
|
||||
|
||||
@@ -4939,6 +4942,12 @@ msgstr "Послідовність друку"
|
||||
msgid "Plate name"
|
||||
msgstr "Назва пластини"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "Те ж, що й глобальний тип столу"
|
||||
|
||||
@@ -5368,8 +5377,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 ""
|
||||
"При записі таймлапсу без інструментальної головки рекомендується додати "
|
||||
"“Timelapse Wipe Tower” \n"
|
||||
@@ -6421,6 +6430,9 @@ msgstr ""
|
||||
msgid "Gap infill"
|
||||
msgstr "Заповнення пропусків"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "Інтерфейс підтримки"
|
||||
|
||||
@@ -6649,6 +6661,22 @@ msgstr ""
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "Висота шару не може перевищувати діаметр сопла"
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "Плита %d: %s не підтримує філамент %s"
|
||||
@@ -6889,6 +6917,9 @@ msgstr ""
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "Типи ліжок, які підтримує принтер"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr "Типи ліжок, які підтримує принтер"
|
||||
|
||||
@@ -7104,7 +7135,7 @@ msgstr ""
|
||||
msgid "Mouse ear"
|
||||
msgstr ""
|
||||
|
||||
msgid "outer_only"
|
||||
msgid "Outer brim only"
|
||||
msgstr "кайма зовні"
|
||||
|
||||
msgid "Inner brim only"
|
||||
@@ -7888,10 +7919,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» до максимуму на рівні "
|
||||
@@ -9859,21 +9890,21 @@ msgstr ""
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "selected"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr ""
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Slic3rPE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-08-14 19:56+0800\n"
|
||||
"POT-Creation-Date: 2023-08-22 19:19+0800\n"
|
||||
"PO-Revision-Date: 2023-04-01 13:21+0800\n"
|
||||
"Last-Translator: Jiang Yue <maze1024@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -4485,6 +4485,9 @@ msgstr "其他"
|
||||
msgid "Login Region"
|
||||
msgstr "登录区域"
|
||||
|
||||
msgid "Stealth Mode"
|
||||
msgstr "局域网模式"
|
||||
|
||||
msgid "Metric"
|
||||
msgstr "公制"
|
||||
|
||||
@@ -4719,6 +4722,12 @@ msgstr "打印顺序"
|
||||
msgid "Plate name"
|
||||
msgstr "盘名称"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr "自定义"
|
||||
|
||||
msgid "First Layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "Same as Global Bed Type"
|
||||
msgstr "跟随全局热床类型"
|
||||
|
||||
@@ -5124,8 +5133,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"
|
||||
"右键单击打印板的空白位置,选择“添加标准模型”->“延时摄影擦料塔”。"
|
||||
@@ -6116,6 +6125,9 @@ msgstr "内部搭桥"
|
||||
msgid "Gap infill"
|
||||
msgstr "填缝"
|
||||
|
||||
msgid "Skirt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface"
|
||||
msgstr "支撑面"
|
||||
|
||||
@@ -6321,6 +6333,22 @@ msgstr "使用了支撑添加器但没有打开支撑。请打开支撑。"
|
||||
msgid "Layer height cannot exceed nozzle diameter"
|
||||
msgstr "层高不能超过喷嘴直径"
|
||||
|
||||
msgid ""
|
||||
"Relative extruder addressing requires resetting the extruder position at "
|
||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||
"layer_gcode."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
||||
"absolute extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
||||
"extruder addressing."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Plate %d: %s does not support filament %s"
|
||||
msgstr "盘 %d: %s 不支持耗材丝 %s"
|
||||
@@ -6529,6 +6557,9 @@ msgstr "首层热床温度。0值表示这个耗材丝不支持纹理PEI热床"
|
||||
msgid "Bed types supported by the printer"
|
||||
msgstr "打印机所支持的热床类型"
|
||||
|
||||
msgid "First layer print sequence"
|
||||
msgstr ""
|
||||
|
||||
msgid "This G-code is inserted at every layer change before lifting z"
|
||||
msgstr "在每次换层抬升z高度之前插入这段G-code"
|
||||
|
||||
@@ -6718,7 +6749,7 @@ msgstr ""
|
||||
msgid "Mouse ear"
|
||||
msgstr "圆盘"
|
||||
|
||||
msgid "outer_only"
|
||||
msgid "Outer brim only"
|
||||
msgstr "仅外侧"
|
||||
|
||||
msgid "Inner brim only"
|
||||
@@ -7421,10 +7452,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 ""
|
||||
"风扇速度将从“禁用第一层”的零线性上升到“全风扇速度层”的最大。如果低于“禁用风扇"
|
||||
"第一层”,则“全风扇速度第一层”将被忽略,在这种情况下,风扇将在“禁用风扇第一"
|
||||
@@ -9220,21 +9251,21 @@ msgstr ""
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr "从中减去"
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr "与之相减"
|
||||
|
||||
msgid "selected"
|
||||
msgstr "已选中"
|
||||
|
||||
msgid "Part 1"
|
||||
msgstr "零件 1"
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr "从中减去"
|
||||
|
||||
msgid "Part 2"
|
||||
msgstr "零件 2"
|
||||
|
||||
msgid "Subtract with"
|
||||
msgstr "与之相减"
|
||||
|
||||
msgid "Delete input"
|
||||
msgstr "删除输入"
|
||||
|
||||
@@ -9713,6 +9744,12 @@ msgstr ""
|
||||
"提高强度\n"
|
||||
"你知道吗?你可以使用更多的墙层数和更高的疏散填充密度来提高模型的强度。"
|
||||
|
||||
#~ msgid "First layer filament sequence"
|
||||
#~ msgstr "首层耗材打印顺序"
|
||||
|
||||
#~ msgid "The failed test result has been dropped."
|
||||
#~ msgstr "测试失败的结果已被删除。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The configuration may be generated by a newer version of BambuStudio."
|
||||
#~ msgstr "此配置可能由新版本的Bambu Studio生成。"
|
||||
@@ -12173,9 +12210,6 @@ msgstr ""
|
||||
#~ msgid "No brim"
|
||||
#~ msgstr "无"
|
||||
|
||||
#~ msgid "Outer brim only"
|
||||
#~ msgstr "仅外侧"
|
||||
|
||||
#~ msgid "X/Y Axis"
|
||||
#~ msgstr "X/Y 轴"
|
||||
|
||||
@@ -14583,8 +14617,8 @@ msgstr ""
|
||||
#~ msgstr "正在准备设置页"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You have the following presets with saved options for \"Print Host "
|
||||
#~ "upload\""
|
||||
#~ "You have the following presets with saved options for \"Print Host upload"
|
||||
#~ "\""
|
||||
#~ msgstr "您的以下预设中包含未保存的选项“打印主机上传”"
|
||||
|
||||
#~ msgid ""
|
||||
|
||||
@@ -1,54 +1,83 @@
|
||||
{
|
||||
"printers": [
|
||||
{
|
||||
"display_name": "Bambu Lab P1P",
|
||||
"func": {
|
||||
"FUNC_CHAMBER_TEMP": false,
|
||||
"FUNC_FIRSTLAYER_INSPECT": false,
|
||||
"FUNC_AI_MONITORING": false,
|
||||
"FUNC_BUILDPLATE_MARKER_DETECT": false,
|
||||
"FUNC_FLOW_CALIBRATION": false,
|
||||
"FUNC_MONITORING": false,
|
||||
"FUNC_MEDIA_FILE": false,
|
||||
"FUNC_REMOTE_TUNNEL": false,
|
||||
"FUNC_LOCAL_TUNNEL": true,
|
||||
"FUNC_VIRTUAL_CAMERA" : false,
|
||||
"FUNC_PRINT_WITHOUT_SD": false,
|
||||
"FUNC_ALTER_RESOLUTION": false,
|
||||
"FUNC_CHAMBER_FAN" : false,
|
||||
"FUNC_EXTRUSION_CALI": true,
|
||||
"FUNC_PRINT_ALL" : false
|
||||
},
|
||||
"camera_resolution":["720p"],
|
||||
"bed_temperature_limit": 100,
|
||||
"model_id": "C11",
|
||||
"printer_type": "C11",
|
||||
"ftp_folder" : "sdcard/",
|
||||
"printer_thumbnail_image": "printer_thumbnail_p1p"
|
||||
{
|
||||
"display_name": "Bambu Lab P1P",
|
||||
"func": {
|
||||
"FUNC_CHAMBER_TEMP": false,
|
||||
"FUNC_FIRSTLAYER_INSPECT": false,
|
||||
"FUNC_AI_MONITORING": true,
|
||||
"FUNC_LIDAR_CALIBRATION": false,
|
||||
"FUNC_BUILDPLATE_MARKER_DETECT": false,
|
||||
"FUNC_FLOW_CALIBRATION": false,
|
||||
"FUNC_MONITORING": false,
|
||||
"FUNC_MEDIA_FILE": false,
|
||||
"FUNC_VIRTUAL_CAMERA": false,
|
||||
"FUNC_PRINT_WITHOUT_SD": false,
|
||||
"FUNC_ALTER_RESOLUTION": false,
|
||||
|
||||
"FUNC_PRINT_ALL": false,
|
||||
"FUNC_EXTRUSION_CALI": true
|
||||
},
|
||||
{
|
||||
"display_name": "Bambu Lab X1",
|
||||
"func": {
|
||||
"FUNC_VIRTUAL_TYAY" : true,
|
||||
"FUNC_EXTRUSION_CALI": false,
|
||||
"FUNC_LOCAL_TUNNEL": false
|
||||
},
|
||||
"model_id": "BL-P002",
|
||||
"camera_resolution":["720p","1080p"],
|
||||
"printer_type": "3DPrinter-X1",
|
||||
"printer_thumbnail_image": "printer_thumbnail"
|
||||
"camera_resolution": [ "720p" ],
|
||||
"bed_temperature_limit": 100,
|
||||
"model_id": "C11",
|
||||
"printer_type": "C11",
|
||||
"compatible_machine": [ "BL-P001", "BL-P002", "C12"],
|
||||
"ftp_folder": "sdcard/",
|
||||
"printer_thumbnail_image": "printer_thumbnail_p1p"
|
||||
},
|
||||
{
|
||||
"display_name": "Bambu Lab P1S",
|
||||
"func": {
|
||||
"FUNC_CHAMBER_TEMP": false,
|
||||
"FUNC_FIRSTLAYER_INSPECT": false,
|
||||
"FUNC_AI_MONITORING": true,
|
||||
"FUNC_LIDAR_CALIBRATION": false,
|
||||
"FUNC_BUILDPLATE_MARKER_DETECT": false,
|
||||
"FUNC_FLOW_CALIBRATION": false,
|
||||
"FUNC_MONITORING": false,
|
||||
"FUNC_MEDIA_FILE": false,
|
||||
"FUNC_VIRTUAL_CAMERA": false,
|
||||
"FUNC_PRINT_WITHOUT_SD": false,
|
||||
"FUNC_ALTER_RESOLUTION": false,
|
||||
"FUNC_PRINT_ALL": false,
|
||||
"FUNC_VIRTUAL_TYAY": true,
|
||||
"FUNC_EXTRUSION_CALI": true
|
||||
},
|
||||
{
|
||||
"display_name": "Bambu Lab X1 Carbon",
|
||||
"func": {
|
||||
"FUNC_VIRTUAL_TYAY" : true,
|
||||
"FUNC_EXTRUSION_CALI": false,
|
||||
"FUNC_LOCAL_TUNNEL": false
|
||||
},
|
||||
"model_id": "BL-P001",
|
||||
"camera_resolution":["720p","1080p"],
|
||||
"printer_type": "3DPrinter-X1-Carbon",
|
||||
"printer_thumbnail_image": "printer_thumbnail"
|
||||
}
|
||||
"camera_resolution": [ "720p" ],
|
||||
"bed_temperature_limit": 100,
|
||||
"model_id": "C12",
|
||||
"compatible_machine":["BL-P001", "BL-P002", "C11"],
|
||||
"printer_type": "C12",
|
||||
"ftp_folder" : "sdcard/",
|
||||
"printer_thumbnail_image": "printer_thumbnail_p1p"
|
||||
},
|
||||
{
|
||||
|
||||
"display_name": "Bambu Lab X1",
|
||||
"func": {
|
||||
"FUNC_VIRTUAL_TYAY": true,
|
||||
"FUNC_EXTRUSION_CALI": false,
|
||||
"FUNC_LOCAL_TUNNEL": false
|
||||
},
|
||||
"model_id": "BL-P002",
|
||||
"compatible_machine": [ "BL-P001", "C11", "C12"],
|
||||
"camera_resolution": [ "720p", "1080p" ],
|
||||
"printer_type": "3DPrinter-X1",
|
||||
"printer_thumbnail_image": "printer_thumbnail"
|
||||
},
|
||||
{
|
||||
"display_name": "Bambu Lab X1 Carbon",
|
||||
"func": {
|
||||
"FUNC_VIRTUAL_TYAY": true,
|
||||
"FUNC_EXTRUSION_CALI": false,
|
||||
"FUNC_LOCAL_TUNNEL": false
|
||||
},
|
||||
"model_id": "BL-P001",
|
||||
"compatible_machine": [ "BL-P002", "C11", "C12"],
|
||||
"camera_resolution": [ "720p", "1080p" ],
|
||||
"printer_type": "3DPrinter-X1-Carbon",
|
||||
"printer_thumbnail_image": "printer_thumbnail"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
10
resources/images/plate_settings_arrow.svg
Normal file
10
resources/images/plate_settings_arrow.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_13328_29956)">
|
||||
<path d="M13.8527 8.35312C14.0465 8.15937 14.0465 7.84062 13.8527 7.64687L8.35274 2.14687C8.15899 1.95312 7.84024 1.95312 7.64649 2.14687C7.45274 2.34062 7.45274 2.65937 7.64649 2.85312L12.2934 7.5L0.49961 7.5C0.22461 7.5 -0.000390458 7.725 -0.000390482 8C-0.000390506 8.275 0.22461 8.5 0.499609 8.5L12.2934 8.5L7.64648 13.1469C7.45273 13.3406 7.45273 13.6594 7.64648 13.8531C7.84023 14.0469 8.15898 14.0469 8.35273 13.8531L13.8527 8.35312Z" fill="#A5A5A5"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_13328_29956">
|
||||
<rect width="14" height="16" fill="white" transform="translate(14 16) rotate(-180)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 754 B |
@@ -7,6 +7,9 @@
|
||||
"inherits": "fdm_machine_common",
|
||||
"printer_model": "Anker M5",
|
||||
"default_print_profile": "0.20mm Standard @Anker",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
|
||||
@@ -6,7 +6,10 @@
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_machine_common",
|
||||
"printer_model": "Anker M5C",
|
||||
"default_print_profile": "0.20mm Normal @Anker",
|
||||
"default_print_profile": "0.20mm Standard @Anker",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
|
||||
@@ -4,12 +4,11 @@
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"gcode_flavor": "marlin",
|
||||
"machine_start_gcode": "M4899 T3 ; Enable v3 jerk and S-curve acceleration \nM104 S{first_layer_temperature[0]-30} ; Anti-ooze - Set hotend temp to 30 degrees less than target\nM190 S{first_layer_bed_temperature[0]} ; set and wait for bed temp to stabilize\nM109 S{first_layer_temperature[0]} ; set final nozzle temp to stabilize\nG28 ;Home",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n\n",
|
||||
"machine_start_gcode": "M4899 T3 ; Enable v3 jerk and S-curve acceleration \nM104 Sfirst_layer_temperature[0] ; Set hotend temp\nM190 S{first_layer_bed_temperature[0]} ; set and wait for bed temp to stabilize\nM109 S{first_layer_temperature[0]} ; set final nozzle temp to stabilize\nG28 ;Home",
|
||||
"machine_end_gcode": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"change_filament_gcode": ";FILAMENT CHANGE (by Lukagra)\nG91\nG1 Z10 F600\nG90\nM600\nG91\nG1 E-3 F1200\nG1 Z-10 F600\nG90",
|
||||
"machine_pause_gcode": "G91\nG1 Z5 F600\nG90\nM601\nG91\nG1 E-3 F1200\nG1 Z-5 F600\nG90",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M601",
|
||||
"extruder_colour": [
|
||||
"#018001"
|
||||
],
|
||||
@@ -110,7 +109,7 @@
|
||||
],
|
||||
"silent_mode": "0",
|
||||
"single_extruder_multi_material": "1",
|
||||
"use_relative_e_distances": "0",
|
||||
"use_relative_e_distances": "1",
|
||||
"wipe_distance": [
|
||||
"0"
|
||||
],
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
"top_shell_layers": "6",
|
||||
"support_bottom_z_distance": "0.15",
|
||||
"support_top_z_distance": "0.15",
|
||||
"top_surface_pattern": "zig-zag",
|
||||
"bottom_surface_pattern": "zig-zag",
|
||||
"top_surface_pattern": "monotonic",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_thickness": "0",
|
||||
"top_shell_thickness": "0",
|
||||
"default_acceleration": "6000",
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
"top_shell_layers": "5",
|
||||
"support_bottom_z_distance": "0.20",
|
||||
"support_top_z_distance": "0.20",
|
||||
"top_surface_pattern": "rectilinear",
|
||||
"bottom_surface_pattern": "rectilinear",
|
||||
"top_surface_pattern": "monotonic",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_thickness": "0",
|
||||
"top_shell_thickness": "0",
|
||||
"default_acceleration": "6000",
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP_Anker_005",
|
||||
"name": "0.20mm Normal @Anker",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_process_common",
|
||||
"bottom_shell_layers": "4",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
],
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.2",
|
||||
"raft_contact_distance": "0.2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_top_z_distance": "0.2",
|
||||
"top_shell_layers": "5"
|
||||
}
|
||||
@@ -13,8 +13,8 @@
|
||||
"top_shell_layers": "3",
|
||||
"support_bottom_z_distance": "0.25",
|
||||
"support_top_z_distance": "0.25",
|
||||
"top_surface_pattern": "rectilinear",
|
||||
"bottom_surface_pattern": "rectilinear",
|
||||
"top_surface_pattern": "monotonic",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_thickness": "0",
|
||||
"top_shell_thickness": "0",
|
||||
"default_acceleration": "6000",
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
"resolution": "0.008",
|
||||
"resolution": "0.012",
|
||||
"support_type": "normal(auto)",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_top_z_distance": "0.2",
|
||||
|
||||
@@ -20,6 +20,10 @@
|
||||
"name": "Anycubic Kobra Max",
|
||||
"sub_path": "machine/Anycubic Kobra Max.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic Kobra Plus",
|
||||
"sub_path": "machine/Anycubic Kobra Plus.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic 4Max Pro",
|
||||
"sub_path": "machine/Anycubic 4Max Pro.json"
|
||||
@@ -53,6 +57,10 @@
|
||||
{
|
||||
"name": "0.15mm Optimal @Anycubic KobraMax",
|
||||
"sub_path": "process/0.15mm Optimal @Anycubic KobraMax.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Optimal @Anycubic KobraPlus",
|
||||
"sub_path": "process/0.15mm Optimal @Anycubic KobraPlus.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Optimal @Anycubic 4MaxPro2",
|
||||
@@ -78,6 +86,10 @@
|
||||
"name": "0.20mm Standard @Anycubic KobraMax",
|
||||
"sub_path": "process/0.20mm Standard @Anycubic KobraMax.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Anycubic KobraPlus",
|
||||
"sub_path": "process/0.20mm Standard @Anycubic KobraPlus.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Anycubic 4MaxPro",
|
||||
"sub_path": "process/0.20mm Standard @Anycubic 4MaxPro.json"
|
||||
@@ -105,6 +117,10 @@
|
||||
{
|
||||
"name": "0.30mm Draft @Anycubic KobraMax",
|
||||
"sub_path": "process/0.30mm Draft @Anycubic KobraMax.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Draft @Anycubic KobraPlus",
|
||||
"sub_path": "process/0.30mm Draft @Anycubic KobraPlus.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Draft @Anycubic 4MaxPro2",
|
||||
@@ -214,6 +230,10 @@
|
||||
"name": "Anycubic Kobra Max 0.4 nozzle",
|
||||
"sub_path": "machine/Anycubic Kobra Max 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic Kobra Plus 0.4 nozzle",
|
||||
"sub_path": "machine/Anycubic Kobra Plus 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Anycubic 4Max Pro 0.4 nozzle",
|
||||
"sub_path": "machine/Anycubic 4Max Pro 0.4 nozzle.json"
|
||||
|
||||
BIN
resources/profiles/Anycubic/Anycubic Kobra Plus_cover.png
Normal file
BIN
resources/profiles/Anycubic/Anycubic Kobra Plus_cover.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 9.0 KiB |
@@ -17,6 +17,7 @@
|
||||
"Anycubic Chiron 0.4 nozzle",
|
||||
"Anycubic Vyper 0.4 nozzle",
|
||||
"Anycubic Kobra Max 0.4 nozzle",
|
||||
"Anycubic Kobra Plus 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 2 0.4 nozzle",
|
||||
"Anycubic Kobra 2 0.4 nozzle"
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
"Anycubic Chiron 0.4 nozzle",
|
||||
"Anycubic Vyper 0.4 nozzle",
|
||||
"Anycubic Kobra Max 0.4 nozzle",
|
||||
"Anycubic Kobra Plus 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 2 0.4 nozzle",
|
||||
"Anycubic Kobra 2 0.4 nozzle"
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
"Anycubic Chiron 0.4 nozzle",
|
||||
"Anycubic Vyper 0.4 nozzle",
|
||||
"Anycubic Kobra Max 0.4 nozzle",
|
||||
"Anycubic Kobra Plus 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 2 0.4 nozzle",
|
||||
"Anycubic Kobra 2 0.4 nozzle"
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"Anycubic Chiron 0.4 nozzle",
|
||||
"Anycubic Vyper 0.4 nozzle",
|
||||
"Anycubic Kobra Max 0.4 nozzle",
|
||||
"Anycubic Kobra Plus 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 2 0.4 nozzle",
|
||||
"Anycubic Kobra 2 0.4 nozzle"
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
"Anycubic Chiron 0.4 nozzle",
|
||||
"Anycubic Vyper 0.4 nozzle",
|
||||
"Anycubic Kobra Max 0.4 nozzle",
|
||||
"Anycubic Kobra Plus 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 2 0.4 nozzle",
|
||||
"Anycubic Kobra 2 0.4 nozzle"
|
||||
|
||||
@@ -47,6 +47,7 @@
|
||||
"Anycubic Chiron 0.4 nozzle",
|
||||
"Anycubic Vyper 0.4 nozzle",
|
||||
"Anycubic Kobra Max 0.4 nozzle",
|
||||
"Anycubic Kobra Plus 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 2 0.4 nozzle",
|
||||
"Anycubic Kobra 2 0.4 nozzle"
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
"Anycubic Chiron 0.4 nozzle",
|
||||
"Anycubic Vyper 0.4 nozzle",
|
||||
"Anycubic Kobra Max 0.4 nozzle",
|
||||
"Anycubic Kobra Plus 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 2 0.4 nozzle",
|
||||
"Anycubic Kobra 2 0.4 nozzle"
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
"Anycubic Chiron 0.4 nozzle",
|
||||
"Anycubic Vyper 0.4 nozzle",
|
||||
"Anycubic Kobra Max 0.4 nozzle",
|
||||
"Anycubic Kobra Plus 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 2 0.4 nozzle",
|
||||
"Anycubic Kobra 2 0.4 nozzle"
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
"Anycubic Chiron 0.4 nozzle",
|
||||
"Anycubic Vyper 0.4 nozzle",
|
||||
"Anycubic Kobra Max 0.4 nozzle",
|
||||
"Anycubic Kobra Plus 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 2 0.4 nozzle",
|
||||
"Anycubic Kobra 2 0.4 nozzle"
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
"Anycubic Chiron 0.4 nozzle",
|
||||
"Anycubic Vyper 0.4 nozzle",
|
||||
"Anycubic Kobra Max 0.4 nozzle",
|
||||
"Anycubic Kobra Plus 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 0.4 nozzle",
|
||||
"Anycubic 4Max Pro 2 0.4 nozzle",
|
||||
"Anycubic Kobra 2 0.4 nozzle"
|
||||
|
||||
@@ -0,0 +1,118 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "Anycubic Kobra Plus 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_machine_common",
|
||||
"printer_model": "Anycubic Kobra Plus",
|
||||
"default_print_profile": "0.20mm Standard @Anycubic KobraPlus",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "350",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"machine_max_acceleration_e": [
|
||||
"3000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"4000",
|
||||
"1250"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000",
|
||||
"1250"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"4000",
|
||||
"1250"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"700",
|
||||
"960"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"600",
|
||||
"960"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60",
|
||||
"120"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"300",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"300",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"40",
|
||||
"12"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5",
|
||||
"4.5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"20",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"20",
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.3",
|
||||
"0.4"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.3"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.15"
|
||||
],
|
||||
"printer_settings_id": "Anycubic",
|
||||
"retraction_minimum_travel": [
|
||||
"5"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"6"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"4"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"single_extruder_multi_material": "0",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M601",
|
||||
"default_filament_profile": [
|
||||
"Anycubic Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "M104 S140;start the nozzle preheat and don't wait\nG21;metric values\nG90;absolute positioning\nM82;set extruder to absolute mode\nM107;start with the fan off\nG28;home all\nM190 S[bed_temperature_initial_layer_single] ; set wait for bed temp\nM355 S1;turn on the case light\nM109 S[nozzle_temperature_initial_layer]; wait for extruder temp\nG1 Z15.0 F1000 ;move the nozzle up 15mm\nG92 E0;zero the extruded length\nG1 F100 E60;extrude 60mm of feed stock\nG92 E0;zero the extruded length again",
|
||||
"machine_end_gcode": "M104 S0;extruder heater off\nM140 S0;heated bed heater off (if you have it)\nG91;relative positioning\nG1 Z+10 F3600 ;move Z up a bit\nG90;absolute positioning\nG1 X10 F3000; get the head off the bed\nG1 F3000 Y400 ;kick the bed out\nM84;steppers off\nM355 S0;turn off the case light",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;G92 E0.0\n;[layer_z]\n\n",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"scan_first_layer": "0"
|
||||
}
|
||||
12
resources/profiles/Anycubic/machine/Anycubic Kobra Plus.json
Normal file
12
resources/profiles/Anycubic/machine/Anycubic Kobra Plus.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "Anycubic Kobra Plus",
|
||||
"model_id": "Anycubic-Kobra-Plus",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "Anycubic",
|
||||
"bed_model": "anycubic_kobraplus_buildplate_model.stl",
|
||||
"bed_texture": "anycubic_kobraplus_buildplate_texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Anycubic Generic ABS;Anycubic Generic PLA;Anycubic Generic PLA-CF;Anycubic Generic PETG;Anycubic Generic TPU;Anycubic Generic ASA;Anycubic Generic PC;Anycubic Generic PVA;Anycubic Generic PA;Anycubic Generic PA-CF"
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.15mm Optimal @Anycubic KobraPlus",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_common",
|
||||
"instantiation": "true",
|
||||
"adaptive_layer_height": "1",
|
||||
"reduce_crossing_wall": "0",
|
||||
"layer_height": "0.15",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "5",
|
||||
"bottom_shell_thickness": "1.2",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "45",
|
||||
"brim_width": "8",
|
||||
"brim_object_gap": "0",
|
||||
"compatible_printers_condition": "",
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "1000",
|
||||
"top_surface_acceleration": "0",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0.2",
|
||||
"enable_arc_fitting": "0",
|
||||
"outer_wall_line_width": "0.4",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.4",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_acceleration": "1000",
|
||||
"travel_acceleration": "0",
|
||||
"inner_wall_acceleration": "0",
|
||||
"initial_layer_line_width": "0.4",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.4",
|
||||
"infill_wall_overlap": "10%",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_spacing": "0.08",
|
||||
"ironing_speed": "15",
|
||||
"ironing_type": "no ironing",
|
||||
"reduce_infill_retraction": "1",
|
||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{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.4",
|
||||
"wall_loops": "3",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"skirt_distance": "5",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "4",
|
||||
"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.15",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.4",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_top_layers": "3",
|
||||
"support_interface_bottom_layers": "-1",
|
||||
"support_interface_spacing": "0.15",
|
||||
"support_interface_speed": "100%",
|
||||
"support_base_pattern": "rectilinear",
|
||||
"support_base_pattern_spacing": "0.15",
|
||||
"support_speed": "70",
|
||||
"support_threshold_angle": "65",
|
||||
"support_object_xy_distance": "60%",
|
||||
"tree_support_branch_angle": "40",
|
||||
"tree_support_wall_count": "0",
|
||||
"detect_thin_wall": "1",
|
||||
"top_surface_pattern": "monotonic",
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_shell_layers": "5",
|
||||
"top_shell_thickness": "1.2",
|
||||
"initial_layer_speed": "35%",
|
||||
"initial_layer_infill_speed": "35%",
|
||||
"outer_wall_speed": "40",
|
||||
"inner_wall_speed": "40",
|
||||
"internal_solid_infill_speed": "70",
|
||||
"top_surface_speed": "40",
|
||||
"gap_infill_speed": "30",
|
||||
"sparse_infill_speed": "70",
|
||||
"travel_speed": "120",
|
||||
"enable_prime_tower": "0",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"compatible_printers": [
|
||||
"Anycubic Kobra Plus 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.20mm Standard @Anycubic KobraPlus",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_common",
|
||||
"instantiation": "true",
|
||||
"adaptive_layer_height": "1",
|
||||
"reduce_crossing_wall": "0",
|
||||
"layer_height": "0.2",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "5",
|
||||
"bottom_shell_thickness": "1.2",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "45",
|
||||
"brim_width": "8",
|
||||
"brim_object_gap": "0",
|
||||
"compatible_printers_condition": "",
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "1000",
|
||||
"top_surface_acceleration": "0",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0.2",
|
||||
"enable_arc_fitting": "0",
|
||||
"outer_wall_line_width": "0.4",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.4",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_acceleration": "1000",
|
||||
"travel_acceleration": "0",
|
||||
"inner_wall_acceleration": "0",
|
||||
"initial_layer_line_width": "0.4",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.4",
|
||||
"infill_wall_overlap": "10%",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_spacing": "0.08",
|
||||
"ironing_speed": "15",
|
||||
"ironing_type": "no ironing",
|
||||
"reduce_infill_retraction": "1",
|
||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{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.4",
|
||||
"wall_loops": "3",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"skirt_distance": "5",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "4",
|
||||
"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.2",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.4",
|
||||
"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": "70",
|
||||
"support_threshold_angle": "65",
|
||||
"support_object_xy_distance": "60%",
|
||||
"tree_support_branch_angle": "40",
|
||||
"tree_support_wall_count": "0",
|
||||
"detect_thin_wall": "1",
|
||||
"top_surface_pattern": "monotonic",
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_shell_layers": "5",
|
||||
"top_shell_thickness": "1.2",
|
||||
"initial_layer_speed": "35%",
|
||||
"initial_layer_infill_speed": "35%",
|
||||
"outer_wall_speed": "40",
|
||||
"inner_wall_speed": "40",
|
||||
"internal_solid_infill_speed": "70",
|
||||
"top_surface_speed": "40",
|
||||
"gap_infill_speed": "30",
|
||||
"sparse_infill_speed": "70",
|
||||
"travel_speed": "120",
|
||||
"enable_prime_tower": "0",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"compatible_printers": [
|
||||
"Anycubic Kobra Plus 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.30mm Draft @Anycubic KobraPlus",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_common",
|
||||
"instantiation": "true",
|
||||
"adaptive_layer_height": "1",
|
||||
"reduce_crossing_wall": "0",
|
||||
"layer_height": "0.3",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "5",
|
||||
"bottom_shell_thickness": "1.2",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "45",
|
||||
"brim_width": "8",
|
||||
"brim_object_gap": "0",
|
||||
"compatible_printers_condition": "",
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "1000",
|
||||
"top_surface_acceleration": "0",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0.2",
|
||||
"enable_arc_fitting": "0",
|
||||
"outer_wall_line_width": "0.4",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.4",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_acceleration": "1000",
|
||||
"travel_acceleration": "0",
|
||||
"inner_wall_acceleration": "0",
|
||||
"initial_layer_line_width": "0.4",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.4",
|
||||
"infill_wall_overlap": "10%",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_spacing": "0.08",
|
||||
"ironing_speed": "15",
|
||||
"ironing_type": "no ironing",
|
||||
"reduce_infill_retraction": "1",
|
||||
"filename_format": "{input_filename_base}_{filament_type[0]}_{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.4",
|
||||
"wall_loops": "3",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"skirt_distance": "5",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "4",
|
||||
"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.3",
|
||||
"support_filament": "0",
|
||||
"support_line_width": "0.4",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_top_layers": "3",
|
||||
"support_interface_bottom_layers": "-1",
|
||||
"support_interface_spacing": "0.3",
|
||||
"support_interface_speed": "100%",
|
||||
"support_base_pattern": "rectilinear",
|
||||
"support_base_pattern_spacing": "0.3",
|
||||
"support_speed": "70",
|
||||
"support_threshold_angle": "65",
|
||||
"support_object_xy_distance": "60%",
|
||||
"tree_support_branch_angle": "40",
|
||||
"tree_support_wall_count": "0",
|
||||
"detect_thin_wall": "1",
|
||||
"top_surface_pattern": "monotonic",
|
||||
"top_surface_line_width": "0.4",
|
||||
"top_shell_layers": "5",
|
||||
"top_shell_thickness": "1.2",
|
||||
"initial_layer_speed": "35%",
|
||||
"initial_layer_infill_speed": "35%",
|
||||
"outer_wall_speed": "40",
|
||||
"inner_wall_speed": "40",
|
||||
"internal_solid_infill_speed": "70",
|
||||
"top_surface_speed": "40",
|
||||
"gap_infill_speed": "30",
|
||||
"sparse_infill_speed": "70",
|
||||
"travel_speed": "120",
|
||||
"enable_prime_tower": "0",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"compatible_printers": [
|
||||
"Anycubic Kobra Plus 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Qidi",
|
||||
"version": "01.06.05.00",
|
||||
"version": "01.06.05.01",
|
||||
"force_update": "0",
|
||||
"description": "Qidi configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -10,12 +10,12 @@
|
||||
"0.926"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
"15"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
|
||||
@@ -7,17 +7,17 @@
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_asa",
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
"15"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.926"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -36,12 +36,12 @@
|
||||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
]
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -19,11 +19,11 @@
|
||||
"16"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -13,9 +13,9 @@
|
||||
"0.94"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
|
||||
@@ -82,9 +82,9 @@
|
||||
"20"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
|
||||
@@ -38,14 +38,11 @@
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
|
||||
@@ -18,13 +18,10 @@
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
|
||||
@@ -33,13 +33,10 @@
|
||||
"nozzle_temperature_range_high": [
|
||||
"240"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
"15"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
"Qidi X-CF Pro 0.4 nozzle",
|
||||
"Qidi X-Smart 3 0.4 nozzle",
|
||||
"Qidi X-Plus 3 0.4 nozzle",
|
||||
"Qidi X-Max 3 0.4 nozzle"
|
||||
|
||||
@@ -8,9 +8,6 @@
|
||||
"inherits": "fdm_filament_tpu",
|
||||
"filament_max_volumetric_speed": [
|
||||
"3.2"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
|
||||
@@ -5,28 +5,28 @@
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"105"
|
||||
"95"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"105"
|
||||
"95"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"105"
|
||||
"95"
|
||||
],
|
||||
"textured_plate_temp" : [
|
||||
"105"
|
||||
"95"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
"95"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
"95"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
"95"
|
||||
],
|
||||
"textured_plate_temp_initial_layer" : [
|
||||
"105"
|
||||
"95"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
@@ -38,7 +38,7 @@
|
||||
"30"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"28.6"
|
||||
"15"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS"
|
||||
@@ -50,7 +50,7 @@
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260"
|
||||
"250"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
|
||||
@@ -5,28 +5,28 @@
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_filament_common",
|
||||
"cool_plate_temp" : [
|
||||
"0"
|
||||
"95"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"90"
|
||||
"95"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"90"
|
||||
"95"
|
||||
],
|
||||
"textured_plate_temp" : [
|
||||
"90"
|
||||
"95"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"0"
|
||||
"95"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"90"
|
||||
"95"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"90"
|
||||
"95"
|
||||
],
|
||||
"textured_plate_temp_initial_layer" : [
|
||||
"90"
|
||||
"95"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
@@ -38,7 +38,7 @@
|
||||
"35"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"28.6"
|
||||
"15"
|
||||
],
|
||||
"filament_type": [
|
||||
"ASA"
|
||||
@@ -50,7 +50,7 @@
|
||||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"260"
|
||||
"250"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
|
||||
@@ -39,9 +39,6 @@
|
||||
"close_fan_the_first_x_layers": [
|
||||
"3"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"1"
|
||||
],
|
||||
@@ -133,7 +130,10 @@
|
||||
"8"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; Filament gcode\n"
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >90)||(bed_temperature_initial_layer[current_extruder] >90)}M106 P3 S0\n{elsif(bed_temperature[current_extruder] >70)||(bed_temperature_initial_layer[current_extruder] >70)}M106 P3 S153\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{endif}"
|
||||
],
|
||||
"filament_end_gcode": [
|
||||
"; filament end gcode \nM106 P3 S0"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"200"
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"80"
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp" : [
|
||||
"80"
|
||||
@@ -23,7 +23,7 @@
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"80"
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp_initial_layer" : [
|
||||
"80"
|
||||
@@ -50,7 +50,7 @@
|
||||
"30"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"255"
|
||||
"250"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
@@ -65,7 +65,7 @@
|
||||
"100"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"255"
|
||||
"250"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"80"
|
||||
@@ -75,8 +75,5 @@
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"260"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -87,8 +87,5 @@
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -93,8 +93,5 @@
|
||||
],
|
||||
"additional_cooling_fan_speed": [
|
||||
"70"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -81,8 +81,5 @@
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"250"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.12",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.12",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.12",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.16",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.16",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.16",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.25",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.3",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.3",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "grid",
|
||||
"initial_layer_line_width": "0.42",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.3",
|
||||
"infill_combination": "0",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
|
||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 7.3 KiB |
@@ -204,7 +204,7 @@ if (WIN32)
|
||||
if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
|
||||
orcaslicer_copy_dlls(COPY_DLLS "Debug" "d" output_dlls_Debug)
|
||||
elseif("${CMAKE_BUILD_TYPE}" STREQUAL "RelWithDebInfo")
|
||||
orcaslicer_copy_dlls(COPY_DLLS "RelWithDebInfo" "" output_dlls_RelWithDebInfo)
|
||||
orcaslicer_copy_dlls(COPY_DLLS "RelWithDebInfo" "" output_dlls_Release)
|
||||
else()
|
||||
orcaslicer_copy_dlls(COPY_DLLS "Release" "" output_dlls_Release)
|
||||
endif()
|
||||
@@ -264,11 +264,11 @@ endif()
|
||||
message(STATUS "libslic3r-CMAKE_BUILD_TYPE: ${build_type}")
|
||||
message(STATUS "CMAKE_CURRENT_BINARY_DIR: ${CMAKE_CURRENT_BINARY_DIR}")
|
||||
if (WIN32)
|
||||
install(TARGETS OrcaSlicer RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}")
|
||||
install(TARGETS OrcaSlicer RUNTIME DESTINATION ".")
|
||||
if (MSVC)
|
||||
install(TARGETS OrcaSlicer_app_gui RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}")
|
||||
install(TARGETS OrcaSlicer_app_gui RUNTIME DESTINATION ".")
|
||||
endif ()
|
||||
install(FILES ${output_dlls_${build_type}} DESTINATION "${CMAKE_INSTALL_PREFIX}")
|
||||
install(FILES ${output_dlls_${build_type}} DESTINATION ".")
|
||||
else ()
|
||||
install(TARGETS OrcaSlicer RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" BUNDLE DESTINATION ${CMAKE_INSTALL_BINDIR})
|
||||
endif ()
|
||||
|
||||
@@ -229,6 +229,10 @@ void AppConfig::set_defaults()
|
||||
set("slicer_uuid", to_string(uuid));
|
||||
}
|
||||
|
||||
// Orca
|
||||
if (get("stealth_mode").empty()) {
|
||||
set_bool("stealth_mode", false);
|
||||
}
|
||||
if (get("show_model_mesh").empty()) {
|
||||
set_bool("show_model_mesh", false);
|
||||
}
|
||||
|
||||
@@ -356,8 +356,8 @@ std::string ExtrusionEntity::role_to_string(ExtrusionRole role)
|
||||
case erBridgeInfill : return L("Bridge");
|
||||
case erInternalBridgeInfill : return L("Internal Bridge");
|
||||
case erGapFill : return L("Gap infill");
|
||||
case erSkirt : return ("Skirt");
|
||||
case erBrim : return ("Brim");
|
||||
case erSkirt : return L("Skirt");
|
||||
case erBrim : return L("Brim");
|
||||
case erSupportMaterial : return L("Support");
|
||||
case erSupportMaterialInterface : return L("Support interface");
|
||||
case erSupportTransition : return L("Support transition");
|
||||
|
||||
@@ -176,18 +176,20 @@ std::vector<SurfaceFill> group_fills(const Layer &layer)
|
||||
|
||||
params.extrusion_role = erInternalInfill;
|
||||
if (is_bridge) {
|
||||
if(surface.is_internal_bridge())
|
||||
if (surface.is_internal_bridge())
|
||||
params.extrusion_role = erInternalBridgeInfill;
|
||||
else
|
||||
params.extrusion_role = erBridgeInfill;
|
||||
} else if (surface.is_solid()) {
|
||||
if (surface.is_top()) {
|
||||
params.extrusion_role = erTopSolidInfill;
|
||||
} else if (surface.is_bottom()) {
|
||||
params.extrusion_role = erBottomSurface;
|
||||
} else {
|
||||
params.extrusion_role = erSolidInfill;
|
||||
}
|
||||
}
|
||||
params.bridge_angle = float(surface.bridge_angle);
|
||||
params.bridge_angle = float(surface.bridge_angle);
|
||||
params.angle = float(Geometry::deg2rad(region_config.infill_direction.value));
|
||||
|
||||
// Calculate the actual flow we'll be using for this infill.
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user