Merge branch 'main' into enh-spoolman-support
2
.devcontainer/Dockerfile
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
ARG BASE_IMAGE
|
||||
FROM ${BASE_IMAGE}
|
||||
|
|
@ -1,6 +1,13 @@
|
|||
{
|
||||
"name": "OrcaSlicer",
|
||||
"image": "mcr.microsoft.com/devcontainers/cpp:ubuntu-20.04",
|
||||
"build": {
|
||||
"dockerfile": "Dockerfile",
|
||||
"args": {
|
||||
"PLATFORM": "linux/amd64",
|
||||
"BASE_IMAGE": "mcr.microsoft.com/devcontainers/cpp:ubuntu-20.04"
|
||||
},
|
||||
"options": ["--platform=linux/amd64"]
|
||||
},
|
||||
"runArgs": ["--env-file", "/tmp/devcontainer.env"],
|
||||
"features": {
|
||||
"ghcr.io/devcontainers/features/desktop-lite:1": {
|
||||
|
|
@ -48,4 +55,4 @@
|
|||
"Set postCreate executable flag": "chmod +x .devcontainer/postCreate.sh"
|
||||
},
|
||||
"postCreateCommand": "sudo .devcontainer/postCreate.sh"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
36
.github/workflows/build_all.yml
vendored
|
|
@ -60,21 +60,21 @@ jobs:
|
|||
arch: ${{ matrix.arch }}
|
||||
build-deps-only: ${{ inputs.build-deps-only || false }}
|
||||
secrets: inherit
|
||||
# flatpak:
|
||||
# name: "Flatpak"
|
||||
# runs-on: ubuntu-latest
|
||||
# container:
|
||||
# image: bilelmoussaoui/flatpak-github-actions:gnome-45
|
||||
# options: --privileged
|
||||
# steps:
|
||||
# # maybe i'm too dumb and fucked up to do CI. OH WELL :D -ppd
|
||||
# - name: "Remove unneeded stuff to free disk space"
|
||||
# run:
|
||||
# sudo rm -rf /usr/share/dotnet /opt/ghc "/usr/local/share/boost" "$AGENT_TOOLSDIRECTORY"
|
||||
# - uses: actions/checkout@v4
|
||||
# - uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
||||
# with:
|
||||
# bundle: orcaslicer.flatpak
|
||||
# manifest-path: flatpak/io.github.softfever.OrcaSlicer.yml
|
||||
# cache-key: flatpak-builder-${{ github.sha }}
|
||||
# cache: false
|
||||
flatpak:
|
||||
name: "Flatpak"
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: bilelmoussaoui/flatpak-github-actions:gnome-46
|
||||
options: --privileged
|
||||
steps:
|
||||
# maybe i'm too dumb and fucked up to do CI. OH WELL :D -ppd
|
||||
- name: "Remove unneeded stuff to free disk space"
|
||||
run:
|
||||
sudo rm -rf /usr/share/dotnet /opt/ghc "/usr/local/share/boost" "$AGENT_TOOLSDIRECTORY"
|
||||
- uses: actions/checkout@v4
|
||||
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
||||
with:
|
||||
bundle: orcaslicer.flatpak
|
||||
manifest-path: flatpak/io.github.softfever.OrcaSlicer.yml
|
||||
cache-key: flatpak-builder-${{ github.sha }}
|
||||
cache: false
|
||||
|
|
|
|||
|
|
@ -302,6 +302,10 @@ if (NOT MSVC AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMP
|
|||
add_compile_options(-gz=zstd)
|
||||
endif()
|
||||
|
||||
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 14)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=template-id-cdtor" )
|
||||
endif()
|
||||
|
||||
endif()
|
||||
|
||||
if (SLIC3R_ASAN)
|
||||
|
|
@ -407,12 +411,14 @@ if(SLIC3R_STATIC)
|
|||
set(Boost_USE_STATIC_LIBS ON)
|
||||
# Use boost libraries linked statically to the C++ runtime.
|
||||
# set(Boost_USE_STATIC_RUNTIME ON)
|
||||
else()
|
||||
add_definitions(-DBOOST_LOG_DYN_LINK)
|
||||
endif()
|
||||
#set(Boost_DEBUG ON)
|
||||
# set(Boost_COMPILER "-mgw81")
|
||||
# boost::process was introduced first in version 1.64.0,
|
||||
# boost::beast::detail::base64 was introduced first in version 1.66.0
|
||||
find_package(Boost 1.66 REQUIRED COMPONENTS system filesystem thread log locale regex chrono atomic date_time iostreams program_options)
|
||||
find_package(Boost 1.66 REQUIRED COMPONENTS system filesystem thread log log_setup locale regex chrono atomic date_time iostreams program_options)
|
||||
|
||||
add_library(boost_libs INTERFACE)
|
||||
add_library(boost_headeronly INTERFACE)
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
PROJECT_ROOT=$(cd -P -- "$(dirname -- "$0")" && printf '%s\n' "$(pwd -P)")
|
||||
|
||||
set -x
|
||||
|
||||
# Wishlist hint: For developers, creating a Docker Compose
|
||||
# setup with persistent volumes for the build & deps directories
|
||||
# would speed up recompile times significantly. For end users,
|
||||
|
|
|
|||
|
|
@ -5,6 +5,8 @@ set -x
|
|||
# -h $HOSTNAME \
|
||||
# If there's problems with the X display, try this
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# If you get an error like "Authorization required, but no authorization protocol specified," run line 9 in your terminal before rerunning this program
|
||||
# xhost +local:docker
|
||||
docker run \
|
||||
`# Use the hosts networking. Printer wifi and also dbus communication` \
|
||||
--net=host \
|
||||
|
|
|
|||
|
|
@ -68,14 +68,14 @@ WORKDIR OrcaSlicer
|
|||
RUN ./BuildLinux.sh -u
|
||||
|
||||
# Build dependencies in ./deps
|
||||
RUN ./BuildLinux.sh -d
|
||||
RUN ./BuildLinux.sh -dr
|
||||
|
||||
# Build slic3r
|
||||
RUN ./BuildLinux.sh -s
|
||||
RUN ./BuildLinux.sh -sr
|
||||
|
||||
# Build AppImage
|
||||
ENV container podman
|
||||
RUN ./BuildLinux.sh -i
|
||||
RUN ./BuildLinux.sh -ir
|
||||
|
||||
# It's easier to run Orca Slicer as the same username,
|
||||
# UID and GID as your workstation. Since we bind mount
|
||||
|
|
|
|||
25
README.md
|
|
@ -10,7 +10,7 @@ Join our Discord community here:<br>
|
|||
|
||||
<h3>🚨🚨🚨Important Security Alert🚨🚨🚨</h3>
|
||||
|
||||
Please be aware that "orcaslicer.net" is NOT an official website for OrcaSlicer and may be potentially malicious. This site appears to use AI-generated content, lacking genuine context, and seems to exist solely to profit from advertisements. Worse, it may redirect download links to harmful sources. For your safety, avoid downloading OrcaSlicer from this site as the links may be compromised.
|
||||
Please be aware that "**orcaslicer.net**" or "**orcaslicer.info**" are NOT an official website for OrcaSlicer and may be potentially malicious. This site appears to use AI-generated content, lacking genuine context, and seems to exist solely to profit from advertisements. Worse, it may redirect download links to harmful sources. For your safety, avoid downloading OrcaSlicer from this site as the links may be compromised.
|
||||
|
||||
The only official platforms for OrcaSlicer are our GitHub project page and the <a href="https://discord.gg/P4VE9UY9gJ">official Discord channel</a> .
|
||||
|
||||
|
|
@ -103,11 +103,19 @@ Explore the latest developments in Orca Slicer with our nightly builds. Feedback
|
|||
- Run => Options tab => Document Versions: uncheck `Allow debugging when browsing versions`
|
||||
- menu bar: Product => Run
|
||||
|
||||
- Ubuntu
|
||||
- Dependencies **Will be auto-installed with the shell script**: `libmspack-dev libgstreamerd-3-dev libsecret-1-dev libwebkit2gtk-4.0-dev libosmesa6-dev libssl-dev libcurl4-openssl-dev eglexternalplatform-dev libudev-dev libdbus-1-dev extra-cmake-modules libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev cmake git texinfo`
|
||||
- run 'sudo ./BuildLinux.sh -u'
|
||||
- run './BuildLinux.sh -dsir'
|
||||
|
||||
- Linux (All Distros)
|
||||
- Docker
|
||||
- Dependencies: Docker [Installation Instructions](https://www.docker.com/get-started/), git
|
||||
- clone this repository `git clone https://github.com/SoftFever/OrcaSlicer`
|
||||
- run `cd OrcaSlicer`
|
||||
- run `./DockerBuild.sh`
|
||||
- To run OrcaSlicer:
|
||||
- run `./DockerRun.sh`
|
||||
- For most common errors, open `DockerRun.sh` and read the comments.
|
||||
- Ubuntu
|
||||
- Dependencies **Will be auto installed with the shell script**: `libmspack-dev libgstreamerd-3-dev libsecret-1-dev libwebkit2gtk-4.0-dev libosmesa6-dev libssl-dev libcurl4-openssl-dev eglexternalplatform-dev libudev-dev libdbus-1-dev extra-cmake-modules libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev cmake git texinfo`
|
||||
- run 'sudo ./BuildLinux.sh -u'
|
||||
- run './BuildLinux.sh -dsir'
|
||||
|
||||
# Note:
|
||||
If you're running Klipper, it's recommended to add the following configuration to your `printer.cfg` file.
|
||||
|
|
@ -134,11 +142,6 @@ Thank you! :)
|
|||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://phrozen3d.com/">
|
||||
<img src="SoftFever_doc\sponsor_logos\Phrozen_Logo圓_.png" alt="Phrozen Technology" width="96" height="">
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://bigtree-tech.com/">
|
||||
<img src="SoftFever_doc\sponsor_logos\BigTreeTech.png" alt="BIGTREE TECH" width="96" height="">
|
||||
</a>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 37 KiB |
8
deps/CMakeLists.txt
vendored
|
|
@ -30,6 +30,10 @@ if (APPLE)
|
|||
|
||||
endif ()
|
||||
|
||||
if(POLICY CMP0135) # DOWNLOAD_EXTRACT_TIMESTAMP
|
||||
cmake_policy(SET CMP0135 NEW)
|
||||
endif()
|
||||
|
||||
project(OrcaSlicer-deps)
|
||||
|
||||
include(ExternalProject)
|
||||
|
|
@ -56,10 +60,6 @@ endif ()
|
|||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
option(DEP_WX_GTK3 "Build wxWidgets against GTK3" OFF)
|
||||
else()
|
||||
if(POLICY CMP0135) # DOWNLOAD_EXTRACT_TIMESTAMP
|
||||
cmake_policy(SET CMP0135 NEW)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
set(IS_CROSS_COMPILE FALSE)
|
||||
|
|
|
|||
|
|
@ -4,3 +4,4 @@ This is a documentation from someone exploring the code and is by no means compl
|
|||
|
||||
- [Preset, PresetBundle and PresetCollection](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/Preset-and-bundle.md)
|
||||
- [Plater, Sidebar, Tab, ComboBox](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/plater-sidebar-tab-combobox.md)
|
||||
- [Slicing Call Hierarchy](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/slicing-hierarchy.md)
|
||||
|
|
|
|||
5
doc/developer-reference/slicing-hierarchy.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
## Slicing Call Hierarchy
|
||||
|
||||
The Slicing logic is not the easiest to locate in the code base. Below is a flow diagram of function calls that are made after clicking the `Slice Plate` button in the UI. Most of the processing happens in different threads. Note the calls after `BackgroundSlicingProcess::start()`, but this is how you can find the slicing logic.
|
||||
|
||||
<img src="../images/slicing_call_heirarchy.svg" alt="Example Image" width="320">
|
||||
4
doc/images/slicing_call_heirarchy.svg
Normal file
|
After Width: | Height: | Size: 390 KiB |
|
|
@ -6,10 +6,4 @@ grep -q org.freedesktop.Platform.GL.nvidia /.flatpak-info && export WEBKIT_DISAB
|
|||
# Work-around https://github.com/bambulab/BambuStudio/issues/3440
|
||||
export LC_ALL=C.UTF-8
|
||||
|
||||
if [ $BAMBU_STUDIO_DARK_THEME == true ]; then
|
||||
export GTK_THEME='Adwaita:dark'
|
||||
# echo "Message: $(date +%T): INFO: using dark theme variant"
|
||||
fi
|
||||
|
||||
exec /app/bin/orca-slicer "$@" &
|
||||
$(/app/bin/set-dark-theme-variant.py) &
|
||||
exec /app/bin/orca-slicer "$@"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
app-id: io.github.softfever.OrcaSlicer
|
||||
runtime: org.gnome.Platform
|
||||
runtime-version: "45"
|
||||
runtime-version: "46"
|
||||
sdk: org.gnome.Sdk
|
||||
command: entrypoint
|
||||
separate-locales: true
|
||||
|
|
@ -14,11 +14,11 @@ finish-args:
|
|||
- --filesystem=xdg-run/gvfs
|
||||
- --filesystem=/run/media
|
||||
- --filesystem=/media
|
||||
- --filesystem=/run/spnav.sock:ro
|
||||
# Allow OrcaSlicer to talk to other instances
|
||||
- --talk-name=io.github.softfever.OrcaSlicer.InstanceCheck.*
|
||||
- --system-talk-name=org.freedesktop.UDisks2
|
||||
# set dark theme
|
||||
- --env=BAMBU_STUDIO_DARK_THEME=false
|
||||
- --env=SPNAV_SOCKET=/run/spnav.sock
|
||||
|
||||
modules:
|
||||
|
||||
|
|
@ -36,47 +36,6 @@ modules:
|
|||
url: https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.22.8.tar.xz
|
||||
sha256: e305b9f07f52743ca481da0a4e0c76c35efd60adaf1b0694eb3bb021e2137e39
|
||||
|
||||
# xprop, xlib is needed to manipulate the X11 window and set _GTK_THEME_VARIANT dark on X11
|
||||
# and paint the window dark when PRUSA_SLICER_DARK_THEME is true
|
||||
# see: entrypoint & set-dark-theme-variant.py (originated from spotify client flatpak)
|
||||
- name: xprop
|
||||
sources:
|
||||
- type: archive
|
||||
url: http://mirrors.ircam.fr/pub/x.org/individual/app/xprop-1.2.5.tar.gz
|
||||
sha256: b7bf6b6be6cf23e7966a153fc84d5901c14f01ee952fbd9d930aa48e2385d670
|
||||
- name: python-flit_core
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- pip3 install --no-deps --no-build-isolation --verbose --prefix=${FLATPAK_DEST} .
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://files.pythonhosted.org/packages/c4/e6/c1ac50fe3eebb38a155155711e6e864e254ce4b6e17fe2429b4c4d5b9e80/flit_core-3.9.0.tar.gz
|
||||
sha256: 72ad266176c4a3fcfab5f2930d76896059851240570ce9a98733b658cb786eba
|
||||
- name: python-packaging
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- pip3 install --no-deps --no-build-isolation --verbose --prefix=${FLATPAK_DEST} .
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz
|
||||
sha256: 026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002
|
||||
- name: python-setuptools_scm
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- pip3 install --no-deps --no-build-isolation --verbose --prefix=${FLATPAK_DEST} .
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://files.pythonhosted.org/packages/57/38/930b1241372a9f266a7df2b184fb9d4f497c2cef2e016b014f82f541fe7c/setuptools_scm-6.0.1.tar.gz
|
||||
sha256: d1925a69cb07e9b29416a275b9fadb009a23c148ace905b2fb220649a6c18e92
|
||||
- name: python-xlib
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- pip3 install --no-deps --no-build-isolation --verbose --prefix=${FLATPAK_DEST} .
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://files.pythonhosted.org/packages/86/f5/8c0653e5bb54e0cbdfe27bf32d41f27bc4e12faa8742778c17f2a71be2c0/python-xlib-0.33.tar.gz
|
||||
sha256: 55af7906a2c75ce6cb280a584776080602444f75815a7aff4d287bb2d7018b32
|
||||
|
||||
# For libOSMesa
|
||||
- name: mesa
|
||||
buildsystem: meson
|
||||
|
|
@ -121,6 +80,12 @@ modules:
|
|||
tag: v5.249.0
|
||||
cleanup:
|
||||
- /
|
||||
|
||||
- name: libspnav
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://github.com/FreeSpacenav/libspnav/releases/download/v1.1/libspnav-1.1.tar.gz
|
||||
sha256: 04b297f68a10db4fa40edf68d7f823ba7b9d0442f2b665181889abe2cea42759
|
||||
|
||||
- name: orca_wxwidgets
|
||||
buildsystem: simple
|
||||
|
|
@ -162,6 +127,8 @@ modules:
|
|||
url: https://github.com/SoftFever/Orca-deps-wxWidgets
|
||||
branch: master
|
||||
path: ../
|
||||
- type: patch
|
||||
path: patches/0001-Enable-using-a-dark-theme-when-Gnome-dark-style-is-s.patch
|
||||
cleanup:
|
||||
- "*.la"
|
||||
- "*.a"
|
||||
|
|
@ -323,7 +290,6 @@ modules:
|
|||
install -Dm644 ${FLATPAK_ID}.metainfo.xml /app/share/metainfo/${FLATPAK_ID}.metainfo.xml
|
||||
mv /app/share/applications/OrcaSlicer.desktop /app/share/applications/${FLATPAK_ID}.desktop
|
||||
desktop-file-edit --set-key=Exec --set-value="entrypoint %U" /app/share/applications/${FLATPAK_ID}.desktop
|
||||
install -Dm755 set-dark-theme-variant.py /app/bin
|
||||
install -Dm755 entrypoint /app/bin
|
||||
install -Dm755 umount /app/bin
|
||||
|
||||
|
|
@ -343,15 +309,7 @@ modules:
|
|||
- type: file
|
||||
path: io.github.softfever.OrcaSlicer.metainfo.xml
|
||||
|
||||
# script to set dark theme variant
|
||||
- type: file
|
||||
path: set-dark-theme-variant.py
|
||||
|
||||
# start-up script
|
||||
# README: workaround for the following issues, also enables dark theme variant:
|
||||
# SEE: https://github.com/flathub/com.bambulab.BambuStudio/issues/27
|
||||
# SEE: https://github.com/flathub/com.bambulab.BambuStudio/issues/3
|
||||
# SEE: https://github.com/prusa3d/PrusaSlicer/issues/2365
|
||||
- type: file
|
||||
path: entrypoint
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,158 @@
|
|||
From 221be0af1a0b5bcf05c59b3403f969643b42dbaf Mon Sep 17 00:00:00 2001
|
||||
From: Paul Cornett <paulcor@users.noreply.github.com>
|
||||
Date: Sat, 30 Sep 2023 16:42:58 -0700
|
||||
Subject: [PATCH] Enable using a dark theme when Gnome "dark style" is set
|
||||
|
||||
The dark style setting does not cause a dark theme to be used
|
||||
automatically, so request it explicitly.
|
||||
|
||||
Co-authored-by: Colin Kinloch
|
||||
---
|
||||
src/gtk/settings.cpp | 112 ++++++++++++++++++++++++++++++++++++++++++-
|
||||
1 file changed, 111 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/gtk/settings.cpp b/src/gtk/settings.cpp
|
||||
index 304724773711..74898d9bb953 100644
|
||||
--- a/src/gtk/settings.cpp
|
||||
+++ b/src/gtk/settings.cpp
|
||||
@@ -183,6 +183,64 @@ static void notify_gtk_font_name(GObject*, GParamSpec*, void*)
|
||||
}
|
||||
}
|
||||
|
||||
+static bool UpdatePreferDark(GVariant* value)
|
||||
+{
|
||||
+ // 0: No preference, 1: Prefer dark appearance, 2: Prefer light appearance
|
||||
+ gboolean preferDark = g_variant_get_uint32(value) == 1;
|
||||
+
|
||||
+ GtkSettings* settings = gtk_settings_get_default();
|
||||
+ char* themeName;
|
||||
+ gboolean preferDarkPrev;
|
||||
+ g_object_get(settings,
|
||||
+ "gtk-theme-name", &themeName,
|
||||
+ "gtk-application-prefer-dark-theme", &preferDarkPrev, nullptr);
|
||||
+
|
||||
+ // We don't need to enable prefer-dark if the theme is already dark
|
||||
+ if (strstr(themeName, "-dark") || strstr(themeName, "-Dark"))
|
||||
+ preferDark = false;
|
||||
+ g_free(themeName);
|
||||
+
|
||||
+ const bool changed = preferDark != preferDarkPrev;
|
||||
+ if (changed)
|
||||
+ {
|
||||
+ g_object_set(settings,
|
||||
+ "gtk-application-prefer-dark-theme", preferDark, nullptr);
|
||||
+ }
|
||||
+ return changed;
|
||||
+}
|
||||
+
|
||||
+// "g-signal" from GDBusProxy
|
||||
+extern "C" {
|
||||
+static void
|
||||
+proxy_g_signal(GDBusProxy*, const char*, const char* signal_name, GVariant* parameters, void*)
|
||||
+{
|
||||
+ if (strcmp(signal_name, "SettingChanged") != 0)
|
||||
+ return;
|
||||
+
|
||||
+ const char* nameSpace;
|
||||
+ const char* key;
|
||||
+ GVariant* value;
|
||||
+ g_variant_get(parameters, "(&s&sv)", &nameSpace, &key, &value);
|
||||
+ if (strcmp(nameSpace, "org.freedesktop.appearance") == 0 &&
|
||||
+ strcmp(key, "color-scheme") == 0)
|
||||
+ {
|
||||
+ if (UpdatePreferDark(value))
|
||||
+ {
|
||||
+ for (int i = wxSYS_COLOUR_MAX; i--;)
|
||||
+ gs_systemColorCache[i].UnRef();
|
||||
+
|
||||
+ for (auto* win: wxTopLevelWindows)
|
||||
+ {
|
||||
+ wxSysColourChangedEvent event;
|
||||
+ event.SetEventObject(win);
|
||||
+ win->HandleWindowEvent(event);
|
||||
+ }
|
||||
+ }
|
||||
+ }
|
||||
+ g_variant_unref(value);
|
||||
+}
|
||||
+}
|
||||
+
|
||||
// Some notes on using GtkStyleContext. Style information from a context
|
||||
// attached to a non-visible GtkWidget is not accurate. The context has an
|
||||
// internal visibility state, controlled by the widget, which it presumably
|
||||
@@ -1124,12 +1182,62 @@ bool wxSystemSettingsNative::HasFeature(wxSystemFeature index)
|
||||
class wxSystemSettingsModule: public wxModule
|
||||
{
|
||||
public:
|
||||
- virtual bool OnInit() wxOVERRIDE { return true; }
|
||||
+ virtual bool OnInit() wxOVERRIDE;
|
||||
virtual void OnExit() wxOVERRIDE;
|
||||
+
|
||||
+#ifdef __WXGTK3__
|
||||
+ GDBusProxy* m_proxy;
|
||||
+#endif
|
||||
wxDECLARE_DYNAMIC_CLASS(wxSystemSettingsModule);
|
||||
};
|
||||
wxIMPLEMENT_DYNAMIC_CLASS(wxSystemSettingsModule, wxModule);
|
||||
|
||||
+bool wxSystemSettingsModule::OnInit()
|
||||
+{
|
||||
+#ifdef __WXGTK3__
|
||||
+ // Gnome has gone to a dark style setting rather than a selectable dark
|
||||
+ // theme, available via GSettings as the 'color-scheme' key under the
|
||||
+ // 'org.gnome.desktop.interface' schema. It's also available via a "portal"
|
||||
+ // (https://docs.flatpak.org/en/latest/portal-api-reference.html), which
|
||||
+ // has the advantage of allowing the setting to be accessed from within a
|
||||
+ // virtualized environment such as Flatpak. Since the setting does not
|
||||
+ // change the theme, we propagate it to the GtkSettings
|
||||
+ // 'gtk-application-prefer-dark-theme' property to get a dark theme.
|
||||
+
|
||||
+ m_proxy = nullptr;
|
||||
+
|
||||
+ // GTK_THEME environment variable overrides other settings
|
||||
+ if (getenv("GTK_THEME") == nullptr)
|
||||
+ {
|
||||
+ m_proxy = g_dbus_proxy_new_for_bus_sync(
|
||||
+ G_BUS_TYPE_SESSION, G_DBUS_PROXY_FLAGS_NONE, nullptr,
|
||||
+ "org.freedesktop.portal.Desktop",
|
||||
+ "/org/freedesktop/portal/desktop",
|
||||
+ "org.freedesktop.portal.Settings",
|
||||
+ nullptr, nullptr);
|
||||
+ }
|
||||
+ if (m_proxy)
|
||||
+ {
|
||||
+ g_signal_connect(m_proxy, "g-signal", G_CALLBACK(proxy_g_signal), nullptr);
|
||||
+
|
||||
+ GVariant* ret = g_dbus_proxy_call_sync(m_proxy, "Read",
|
||||
+ g_variant_new("(ss)", "org.freedesktop.appearance", "color-scheme"),
|
||||
+ G_DBUS_CALL_FLAGS_NONE, -1, nullptr, nullptr);
|
||||
+ if (ret)
|
||||
+ {
|
||||
+ GVariant* child;
|
||||
+ g_variant_get(ret, "(v)", &child);
|
||||
+ GVariant* value = g_variant_get_variant(child);
|
||||
+ UpdatePreferDark(value);
|
||||
+ g_variant_unref(value);
|
||||
+ g_variant_unref(child);
|
||||
+ g_variant_unref(ret);
|
||||
+ }
|
||||
+ }
|
||||
+#endif // __WXGTK3__
|
||||
+ return true;
|
||||
+}
|
||||
+
|
||||
void wxSystemSettingsModule::OnExit()
|
||||
{
|
||||
#ifdef __WXGTK3__
|
||||
@@ -1141,6 +1249,8 @@ void wxSystemSettingsModule::OnExit()
|
||||
g_signal_handlers_disconnect_by_func(settings,
|
||||
(void*)notify_gtk_font_name, NULL);
|
||||
}
|
||||
+ if (m_proxy)
|
||||
+ g_object_unref(m_proxy);
|
||||
#endif
|
||||
if (gs_tlw_parent)
|
||||
{
|
||||
--
|
||||
2.46.2
|
||||
|
||||
|
|
@ -1,85 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import Xlib
|
||||
import Xlib.display
|
||||
import time
|
||||
import subprocess
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
||||
disp = Xlib.display.Display()
|
||||
root = disp.screen().root
|
||||
|
||||
NET_CLIENT_LIST = disp.intern_atom('_NET_CLIENT_LIST')
|
||||
|
||||
|
||||
def set_theme_variant_by_window_id(id, variant):
|
||||
# Use subprocess to call
|
||||
# xprop and set the variant from id.
|
||||
try:
|
||||
s = subprocess.call(['xprop', '-f', '_GTK_THEME_VARIANT', '8u', '-set', '_GTK_THEME_VARIANT', variant, '-id', str(id)],
|
||||
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
||||
if s == 0:
|
||||
return True
|
||||
return False
|
||||
except Exception as ex:
|
||||
return False
|
||||
|
||||
|
||||
def set_theme_variant_from_win_id_collection(win_id_collection, variant):
|
||||
# Loop though all of the collected
|
||||
# window ids and set theme variant
|
||||
for win_id in win_id_collection:
|
||||
set_theme_variant_by_window_id(win_id, variant)
|
||||
|
||||
|
||||
def collection_win_id_from_wm_class_name(win_class_name):
|
||||
|
||||
collect = []
|
||||
|
||||
# Loop though all of the windows
|
||||
# and collect id's those that match
|
||||
# win_class: prusa-slicer
|
||||
for win_id in root.get_full_property(NET_CLIENT_LIST, Xlib.X.AnyPropertyType).value:
|
||||
try:
|
||||
win = disp.create_resource_object('window', win_id)
|
||||
if not win.get_wm_transient_for():
|
||||
win_class = win.get_wm_class()
|
||||
if win_id and win_class_name in win_class:
|
||||
collect.append(
|
||||
win_id) if win_id not in collect else collect
|
||||
except Xlib.error.BadWindow:
|
||||
pass
|
||||
|
||||
return collect
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
if os.environ.get('PRUSA_SLICER_DARK_THEME', 'false') != 'true':
|
||||
sys.exit(0)
|
||||
|
||||
# Listen for X Property Change events.
|
||||
root.change_attributes(event_mask=Xlib.X.PropertyChangeMask)
|
||||
# the class name of the slicer window
|
||||
win_class_name = 'prusa-slicer'
|
||||
# the variant to set
|
||||
variant = 'dark'
|
||||
|
||||
start = time.time()
|
||||
|
||||
while True:
|
||||
# collect all of the window ids
|
||||
collect = collection_win_id_from_wm_class_name(win_class_name)
|
||||
# give PrusaSlicer window 2 secs to
|
||||
# collect the wanted window ids
|
||||
# set the theme variant and exit
|
||||
if time.time() - start <= 2:
|
||||
# disp.next_event() blocks if no events are
|
||||
# queued. In combination with while True
|
||||
# it creates a very simple event loop.
|
||||
disp.next_event()
|
||||
set_theme_variant_from_win_id_collection(collect, variant)
|
||||
else:
|
||||
break
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
FOUND_GTK3=$(dpkg -l libgtk* | grep gtk-3)
|
||||
FOUND_GTK3=$(dpkg -l libgtk* | grep gtk-3 || echo '')
|
||||
|
||||
REQUIRED_DEV_PACKAGES=(
|
||||
autoconf
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ REQUIRED_DEV_PACKAGES=(
|
|||
gstreamermm-devel
|
||||
gtk3-devel
|
||||
libmspack-devel
|
||||
libquadmath-devel
|
||||
libsecret-devel
|
||||
libtool
|
||||
m4
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -4116,7 +4116,7 @@ msgstr ""
|
|||
msgid "Size:"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
#, possible-boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7102,8 +7102,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Line width"
|
||||
|
|
@ -10441,10 +10441,10 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
|
|
@ -11365,6 +11365,14 @@ msgstr ""
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12275,8 +12283,8 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -13953,8 +13961,8 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: 2024-07-07 18:43+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -4427,7 +4427,7 @@ msgstr "Volum:"
|
|||
msgid "Size:"
|
||||
msgstr "Mida:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7740,8 +7740,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Quan graveu timelapse sense capçal d'impressió, es recomana afegir una "
|
||||
"\"Torre de Purga Timelapse\" \n"
|
||||
|
|
@ -11658,15 +11658,15 @@ msgstr "Velocitat màxima del ventilador a la capa"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"La velocitat del ventilador augmentarà linealment de zero a la capa "
|
||||
"\"close_fan_the_first_x_layers\" al màxim a la capa \"full_fan_speed_layer"
|
||||
"\". S'ignorarà \"full_fan_speed_layer\" si és inferior a "
|
||||
"\"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a "
|
||||
"\"close_fan_the_first_x_layers\" al màxim a la capa "
|
||||
"\"full_fan_speed_layer\". S'ignorarà \"full_fan_speed_layer\" si és inferior "
|
||||
"a \"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a "
|
||||
"la velocitat màxima permesa a la capa \"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
|
|
@ -12822,6 +12822,14 @@ msgstr "Retracció quan canvia de capa"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Forçar una retracció quan canvia de capa"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Longitud de Retracció"
|
||||
|
||||
|
|
@ -13947,8 +13955,8 @@ msgstr "Activar el control de temperatura"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -15984,8 +15992,8 @@ msgstr ""
|
|||
"Vols reescriure'l?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus "
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"PO-Revision-Date: 2023-09-30 15:15+0200\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: 2024-11-03 20:59+0100\n"
|
||||
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: cs_CZ\n"
|
||||
|
|
@ -16,7 +16,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
msgid "Supports Painting"
|
||||
msgstr "Malování podpěr"
|
||||
|
|
@ -4342,7 +4342,7 @@ msgstr "Objem:"
|
|||
msgid "Size:"
|
||||
msgstr "Velikost:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -5999,6 +5999,7 @@ msgstr "Opravte je prosím na kartách parametrů"
|
|||
|
||||
msgid "The 3mf has following modified G-codes in filament or printer presets:"
|
||||
msgstr ""
|
||||
"3mf má následující úpravy G-kódu v předvolbách filamentu nebo tiskárny:"
|
||||
|
||||
msgid ""
|
||||
"Please confirm that these modified G-codes are safe to prevent any damage to "
|
||||
|
|
@ -6015,9 +6016,11 @@ msgid ""
|
|||
"Please confirm that the G-codes within these presets are safe to prevent any "
|
||||
"damage to the machine!"
|
||||
msgstr ""
|
||||
"Potvrďte prosím, že G-kód v těchto předvolbách je bezpečný, aby nedošlo k "
|
||||
"poškození stroje!"
|
||||
|
||||
msgid "Customized Preset"
|
||||
msgstr ""
|
||||
msgstr "Přizpůsobená Předvolba"
|
||||
|
||||
msgid "Name of components inside step file is not UTF8 format!"
|
||||
msgstr "Názvy součástí v souboru kroku nejsou ve formátu UTF8!"
|
||||
|
|
@ -7524,8 +7527,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"
|
||||
|
|
@ -11203,10 +11206,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\". "
|
||||
|
|
@ -12281,6 +12284,14 @@ msgstr "Retrakce při změně vrstvy"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Vynutit retrakci při změně vrstvy"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Vzdálenost retrakce"
|
||||
|
||||
|
|
@ -12681,18 +12692,20 @@ msgid "Enabled"
|
|||
msgstr "Povoleno"
|
||||
|
||||
msgid "Skirt type"
|
||||
msgstr ""
|
||||
msgstr "Typ obrysu"
|
||||
|
||||
msgid ""
|
||||
"Combined - single skirt for all objects, Per object - individual object "
|
||||
"skirt."
|
||||
msgstr ""
|
||||
"Kombinovaný - jeden obrys pro všechny objekty, Individuální - každý objekt "
|
||||
"má vlastní obrys."
|
||||
|
||||
msgid "Combined"
|
||||
msgstr ""
|
||||
msgstr "Kombinovaný "
|
||||
|
||||
msgid "Per object"
|
||||
msgstr ""
|
||||
msgstr "Individuální "
|
||||
|
||||
msgid "Skirt loops"
|
||||
msgstr "Obrysové smyčky"
|
||||
|
|
@ -13315,8 +13328,8 @@ msgstr "Aktivovat řízení teploty"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -15198,8 +15211,8 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -16093,8 +16106,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 ""
|
||||
|
|
@ -16491,12 +16504,12 @@ msgstr ""
|
|||
#~ "Najdete podrobnosti o kalibraci průtoku dynamiky v naší wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Obvykle kalibrace není potřebná. Při spuštění tisku s jednobarevným/"
|
||||
#~ "materiálovým filamentem a zaškrtnutou volbou \"kalibrace průtoku dynamiky"
|
||||
#~ "\" v menu spuštění tisku, tiskárna bude postupovat podle staré metody a "
|
||||
#~ "zkalibruje filament před tiskem. Při spuštění tisku s vícebarevným/"
|
||||
#~ "materiálovým filamentem bude tiskárna při každé změně filamentu používat "
|
||||
#~ "výchozí kompenzační parametr pro filament, což má většinou dobrý "
|
||||
#~ "výsledek.\n"
|
||||
#~ "materiálovým filamentem a zaškrtnutou volbou \"kalibrace průtoku "
|
||||
#~ "dynamiky\" v menu spuštění tisku, tiskárna bude postupovat podle staré "
|
||||
#~ "metody a zkalibruje filament před tiskem. Při spuštění tisku s "
|
||||
#~ "vícebarevným/materiálovým filamentem bude tiskárna při každé změně "
|
||||
#~ "filamentu používat výchozí kompenzační parametr pro filament, což má "
|
||||
#~ "většinou dobrý výsledek.\n"
|
||||
#~ "\n"
|
||||
#~ "Všimněte si, že existují některé případy, které mohou způsobit, že "
|
||||
#~ "výsledek kalibrace nebude spolehlivý: použití texturované podložky pro "
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -4470,7 +4470,7 @@ msgstr "Volumen:"
|
|||
msgid "Size:"
|
||||
msgstr "Größe:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -5981,7 +5981,7 @@ msgid "Edit current plate name"
|
|||
msgstr "Bearbeite den Namen der aktuellen Platte"
|
||||
|
||||
msgid "Move plate to the front"
|
||||
msgstr ""
|
||||
msgstr "Bewege die Platte nach vorne"
|
||||
|
||||
msgid "Customize current plate"
|
||||
msgstr "Aktuelle Platte anpassen"
|
||||
|
|
@ -7417,8 +7417,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"Timelapse is not supported because Print sequence is set to \"By object\"."
|
||||
msgstr ""
|
||||
"Zeitraffer wird nicht unterstützt, da die Druckreihenfolge auf \"Nach Objekt"
|
||||
"\" eingestellt ist."
|
||||
"Zeitraffer wird nicht unterstützt, da die Druckreihenfolge auf \"Nach "
|
||||
"Objekt\" eingestellt ist."
|
||||
|
||||
msgid "Errors"
|
||||
msgstr "Fehler"
|
||||
|
|
@ -7812,13 +7812,13 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Wenn Sie einen Zeitraffer ohne Werkzeugkopf aufnehmen, wird empfohlen, einen "
|
||||
"\"Timelapse Wischturm\" hinzuzufügen, indem Sie mit der rechten Maustaste "
|
||||
"auf die leere Position der Bauplatte klicken und \"Primitiv hinzufügen\"->"
|
||||
"\"Timelapse Wischturm\" wählen."
|
||||
"auf die leere Position der Bauplatte klicken und \"Primitiv hinzufügen\"-"
|
||||
">\"Timelapse Wischturm\" wählen."
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Breite der Linie"
|
||||
|
|
@ -10404,6 +10404,14 @@ msgid ""
|
|||
"When Detect overhang wall is not enabled, this option is ignored and "
|
||||
"reversal happens on every even layers regardless."
|
||||
msgstr ""
|
||||
"Die Anzahl der Millimeter, die der Überhang betragen muss, damit die "
|
||||
"Umkehrung als nützlich angesehen wird. Kann ein Prozentsatz der "
|
||||
"Umfangsbreite sein.\n"
|
||||
"Der Wert 0 aktiviert die Umkehrung auf jeder geraden Schicht unabhängig "
|
||||
"davon.\n"
|
||||
"Wenn die Erkennung der Überhangswand nicht aktiviert ist, wird diese Option "
|
||||
"ignoriert und die Umkehrung erfolgt auf jeder geraden Schicht unabhängig "
|
||||
"davon."
|
||||
|
||||
msgid "Classic mode"
|
||||
msgstr "Klassicher Modus"
|
||||
|
|
@ -11981,7 +11989,7 @@ msgid ""
|
|||
"increased in a linear fashion over the specified number of layers."
|
||||
msgstr ""
|
||||
"Die ersten paar Schichten werden langsamer als normal gedruckt. Die "
|
||||
"Geschwindigkeitwird allmählich linear über die angegebene Anzahl von "
|
||||
"Geschwindigkeit wird allmählich linear über die angegebene Anzahl von "
|
||||
"Schichten erhöht."
|
||||
|
||||
msgid "Initial layer nozzle temperature"
|
||||
|
|
@ -11997,13 +12005,13 @@ msgstr "Volle Lüfterdrehzahl ab Schicht"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Die Lüftergeschwindigkeit wird linear von Null bei der Schicht"
|
||||
"\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
|
||||
"Die Lüftergeschwindigkeit wird linear von Null bei der "
|
||||
"Schicht\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
|
||||
"\"full_fan_speed_layer\" erhöht. \"full_fan_speed_layer\" wird ignoriert, "
|
||||
"wenn es niedriger ist als \"close_fan_the_first_x_layers\",in diesem Fall "
|
||||
"läuft der Lüfter bei Schicht \"close_fan_the_first_x_layers\"+ 1 mit maximal "
|
||||
|
|
@ -13174,6 +13182,17 @@ msgstr "Zurückziehen beim Schichtwechsel"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Erzwingen eines Rückzugs beim Schichtwechsel"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr "Rückzug auf der obersten Schicht"
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
"Forciert einen Rückzug auf der obersten Schicht. Das Deaktivieren könnte "
|
||||
"eine Verstopfung bei sehr langsamen Mustern mit kleinen Bewegungen wie der "
|
||||
"Hilbert-Kurve verhindern."
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Rückzugslänge"
|
||||
|
||||
|
|
@ -14334,8 +14353,8 @@ msgstr "aktiviere Temperaturkontrolle"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -16418,8 +16437,8 @@ msgstr ""
|
|||
"Möchten Sie es überschreiben?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Wir würden die Voreinstellungen als \"Hersteller Typ Seriennummer @Drucker, "
|
||||
|
|
@ -18475,8 +18494,8 @@ msgstr ""
|
|||
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
|
||||
#~ "automatically load or unload filiament."
|
||||
#~ msgstr ""
|
||||
#~ "Wählen Sie einen AMS-Slot und drücken Sie dann \"Laden\" oder \"Entladen"
|
||||
#~ "\", um automatisch Filament zu laden oder zu entladen."
|
||||
#~ "Wählen Sie einen AMS-Slot und drücken Sie dann \"Laden\" oder "
|
||||
#~ "\"Entladen\", um automatisch Filament zu laden oder zu entladen."
|
||||
|
||||
#~ msgid "MC"
|
||||
#~ msgstr "MC"
|
||||
|
|
@ -18792,8 +18811,8 @@ msgstr ""
|
|||
#~ msgstr "Keine dünnen Schichten (EXPERIMENTELL)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "To add preset for more prinetrs, Please go to printer selection"
|
||||
#~ msgstr ""
|
||||
#~ "Wir würden die Voreinstellungen als \"Hersteller Typ Seriennummer "
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -4298,7 +4298,7 @@ msgstr "Volume:"
|
|||
msgid "Size:"
|
||||
msgstr "Size:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7494,13 +7494,13 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Line width"
|
||||
|
|
@ -11084,10 +11084,10 @@ msgstr "Full fan speed at layer"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
|
|
@ -12071,6 +12071,14 @@ msgstr "Retract on layer change"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "This forces a retraction on layer changes."
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Retraction Length"
|
||||
|
||||
|
|
@ -13071,8 +13079,8 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -14912,8 +14920,8 @@ msgstr ""
|
|||
"Do you want to rewrite it?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Carlos Fco. Caruncho Serrano <puzzlero@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -4463,7 +4463,7 @@ msgstr "Volumen:"
|
|||
msgid "Size:"
|
||||
msgstr "Tamaño:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7421,8 +7421,8 @@ msgid ""
|
|||
"start printing."
|
||||
msgstr ""
|
||||
"Hay algunos filamentos desconocidos en los mapeados AMS. Por favor, "
|
||||
"compruebe si son los filamentos requeridos. Si lo son, presione \"Confirmar"
|
||||
"\" para empezar a imprimir."
|
||||
"compruebe si son los filamentos requeridos. Si lo son, presione "
|
||||
"\"Confirmar\" para empezar a imprimir."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "nozzle in preset: %s %s"
|
||||
|
|
@ -7784,13 +7784,13 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Cuando se graba un timelapse sin cabezal, se recomienda añadir una \"Torre "
|
||||
"de Purga de Timelapse\" haciendo clic con el botón derecho del ratón en una "
|
||||
"posición vacía de la bandeja de impresión y seleccionando \"Añadir Primitivo"
|
||||
"\"->Torre de Purga de Timelapse\"."
|
||||
"posición vacía de la bandeja de impresión y seleccionando \"Añadir "
|
||||
"Primitivo\"->Torre de Purga de Timelapse\"."
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Ancho de linea"
|
||||
|
|
@ -11954,16 +11954,16 @@ msgstr "Velocidad máxima del ventilador en la capa"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"La velocidad de ventilador se incrementará linealmente de cero desde la capa "
|
||||
"\"close_fan_the_first_x_layers\" al máximo en la capa \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" se ignorará si es menor que "
|
||||
"\"close_fan_the_first_x_layers\", en cuyo caso el ventilador funcionará al "
|
||||
"máximo permitido en la capa \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" al máximo en la capa "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" se ignorará si es menor "
|
||||
"que \"close_fan_the_first_x_layers\", en cuyo caso el ventilador funcionará "
|
||||
"al máximo permitido en la capa \"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
msgstr "Capa"
|
||||
|
|
@ -13145,6 +13145,14 @@ msgstr "Retracción al cambiar de capa"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Forzar una retracción al cambiar de capa"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Longitud de retracción"
|
||||
|
||||
|
|
@ -14297,8 +14305,8 @@ msgstr "Activar control de temperatura"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -15631,12 +15639,12 @@ msgstr ""
|
|||
"impresión de varios colores/materiales, la impresora utilizará el parámetro "
|
||||
"de compensación por defecto para el filamento durante cada cambio de "
|
||||
"filamento que tendrá un buen resultado en la mayoría de los casos.\n"
|
||||
"un solo color/material, con la opción \"calibración de la dinámica de flujo"
|
||||
"\" marcada en el menú de inicio de impresión, la impresora seguirá el camino "
|
||||
"antiguo, calibrar el filamento antes de la impresión; cuando se inicia una "
|
||||
"impresión de varios colores/materiales, la impresora utilizará el parámetro "
|
||||
"de compensación por defecto para el filamento durante cada cambio de "
|
||||
"filamento que tendrá un buen resultado en la mayoría de los casos.\n"
|
||||
"un solo color/material, con la opción \"calibración de la dinámica de "
|
||||
"flujo\" marcada en el menú de inicio de impresión, la impresora seguirá el "
|
||||
"camino antiguo, calibrar el filamento antes de la impresión; cuando se "
|
||||
"inicia una impresión de varios colores/materiales, la impresora utilizará el "
|
||||
"parámetro de compensación por defecto para el filamento durante cada cambio "
|
||||
"de filamento que tendrá un buen resultado en la mayoría de los casos.\n"
|
||||
"\n"
|
||||
"Tenga en cuenta que hay algunos casos que pueden hacer que los resultados de "
|
||||
"la calibración no sean fiables, como una adhesión insuficiente en la bandeja "
|
||||
|
|
@ -16391,8 +16399,8 @@ msgstr ""
|
|||
"¿Quieres reescribirlo?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Cambiaremos el nombre de los perfiles a \"Tipo Número de Serie @impresora "
|
||||
|
|
@ -18166,14 +18174,14 @@ msgstr ""
|
|||
#~ "Cuando grabamos timelapse sin cabezal de impresión, es recomendable "
|
||||
#~ "añadir un \"Torre de Purga de Intervalo\" \n"
|
||||
#~ "presionando con el botón derecho la posición vacía de la bandeja de "
|
||||
#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de Purga"
|
||||
#~ "\"."
|
||||
#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de "
|
||||
#~ "Purga\"."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "To add preset for more printers, Please go to printer selection"
|
||||
#~ msgstr ""
|
||||
#~ "Cambiaríamos el nombre de los preajustes a \"Número de serie del Vendedor "
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Guislain Cyril, Thomas Lété\n"
|
||||
|
|
@ -4456,7 +4456,7 @@ msgstr "Le volume:"
|
|||
msgid "Size:"
|
||||
msgstr "Taille:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -5964,7 +5964,7 @@ msgid "Edit current plate name"
|
|||
msgstr "Modifier le nom du plateau actuel"
|
||||
|
||||
msgid "Move plate to the front"
|
||||
msgstr ""
|
||||
msgstr "Déplacer le plateau vers l’avant"
|
||||
|
||||
msgid "Customize current plate"
|
||||
msgstr "Personnaliser le plateau actuel"
|
||||
|
|
@ -7828,8 +7828,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé "
|
||||
"d’ajouter une \"Tour d’essuyage timelapse\".\n"
|
||||
|
|
@ -7996,9 +7996,9 @@ msgid ""
|
|||
"Bed temperature when cool plate is installed. Value 0 means the filament "
|
||||
"does not support to print on the Cool Plate"
|
||||
msgstr ""
|
||||
"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool plate"
|
||||
"\") est installé. Une valeur à 0 signifie que ce filament ne peut pas être "
|
||||
"imprimé sur le plateau froid."
|
||||
"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool "
|
||||
"plate\") est installé. Une valeur à 0 signifie que ce filament ne peut pas "
|
||||
"être imprimé sur le plateau froid."
|
||||
|
||||
msgid "Textured Cool plate"
|
||||
msgstr "Plaque Cool plate texturée"
|
||||
|
|
@ -10454,6 +10454,11 @@ msgid ""
|
|||
"When Detect overhang wall is not enabled, this option is ignored and "
|
||||
"reversal happens on every even layers regardless."
|
||||
msgstr ""
|
||||
"Nombre de mm de dépassement nécessaire pour que l’inversion soit considérée "
|
||||
"comme utile. Il peut s’agir d’un pourcentage de la largeur du périmètre.\n"
|
||||
"La valeur 0 active l’inversion toutes les couches paires.\n"
|
||||
"Lorsque la paroi en surplomb n’est pas activée, cette option est ignorée et "
|
||||
"l’inversion se fait sur toutes les couches paires."
|
||||
|
||||
msgid "Classic mode"
|
||||
msgstr "Classique"
|
||||
|
|
@ -12064,10 +12069,10 @@ msgstr "Ventilateur à pleine vitesse à la couche"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à "
|
||||
"la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche "
|
||||
|
|
@ -13269,6 +13274,14 @@ msgstr "Rétracter lors de changement de couche"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Cela force une rétraction sur les changements de couche."
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Longueur de Rétraction"
|
||||
|
||||
|
|
@ -14005,8 +14018,8 @@ msgid ""
|
|||
"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
|
||||
"close all holes in the model."
|
||||
msgstr ""
|
||||
"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « "
|
||||
"Fermer les trous » pour fermer tous les trous du modèle."
|
||||
"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez "
|
||||
"« Fermer les trous » pour fermer tous les trous du modèle."
|
||||
|
||||
msgid "Regular"
|
||||
msgstr "Standard"
|
||||
|
|
@ -14432,8 +14445,8 @@ msgstr "Activer le contrôle de la température"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -14876,8 +14889,8 @@ msgid ""
|
|||
"Wipe tower is only compatible with relative mode. It is recommended on most "
|
||||
"printers. Default is checked"
|
||||
msgstr ""
|
||||
"L’extrusion relative est recommandée lors de l’utilisation de l’option « "
|
||||
"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
|
||||
"L’extrusion relative est recommandée lors de l’utilisation de l’option "
|
||||
"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
|
||||
"non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est "
|
||||
"compatible qu’avec le mode relatif. Il est recommandé sur la plupart des "
|
||||
"imprimantes. L’option par défaut est cochée"
|
||||
|
|
@ -16537,8 +16550,8 @@ msgstr ""
|
|||
"Voulez-vous le réécrire ?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Nous renommerions les préréglages en « Vendor Type Serial @printer you "
|
||||
|
|
@ -18112,8 +18125,8 @@ msgstr ""
|
|||
#~ "modèle. Réglez le « seuil d’une paroi » dans les paramètres avancés ci-"
|
||||
#~ "dessous pour ajuster la sensibilité de ce qui est considéré comme une "
|
||||
#~ "surface supérieure. Le « seuil d’une paroi » n’est visible que si ce "
|
||||
#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option « "
|
||||
#~ "surfaces supérieures à une paroi » est activée."
|
||||
#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option "
|
||||
#~ "« surfaces supérieures à une paroi » est activée."
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid ""
|
||||
|
|
@ -19000,8 +19013,8 @@ msgstr ""
|
|||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour "
|
||||
#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure"
|
||||
#~ "+inférieure)."
|
||||
#~ "garantir l'épaisseur verticale de la coque (couches solides "
|
||||
#~ "supérieure+inférieure)."
|
||||
|
||||
#~ msgid "Further reduce solid infill on walls (beta)"
|
||||
#~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -4339,7 +4339,7 @@ msgstr "Térfogat:"
|
|||
msgid "Size:"
|
||||
msgstr "Méret:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7565,8 +7565,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Ha a nyomtatófej nélküli timelapse engedélyezve van, javasoljuk, hogy "
|
||||
"helyezz el a tálcán egy „Timelapse törlőtornyot“. Ehhez kattints jobb "
|
||||
|
|
@ -11208,10 +11208,10 @@ msgstr "Teljes ventilátor fordulatszám ennél a rétegnél"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
|
|
@ -12215,6 +12215,14 @@ msgstr "Visszahúzás rétegváltáskor"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Kényszeríti a visszahúzást minden rétegváltáskor"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Visszahúzás hossza"
|
||||
|
||||
|
|
@ -13242,8 +13250,8 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -15099,8 +15107,8 @@ msgstr ""
|
|||
"Szeretnéd felülírni?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -4438,7 +4438,7 @@ msgstr "Volume:"
|
|||
msgid "Size:"
|
||||
msgstr "Dimensione:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7717,8 +7717,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Quando si registra un timelapse senza testa di stampa, si consiglia di "
|
||||
"aggiungere un \"Timelapse Torre di pulizia\"\n"
|
||||
|
|
@ -9012,8 +9012,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"È stato rilevato un aggiornamento importante che deve essere eseguito prima "
|
||||
"che la stampa possa continuare. Si desidera aggiornare ora? È possibile "
|
||||
"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna firmware"
|
||||
"\"."
|
||||
"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna "
|
||||
"firmware\"."
|
||||
|
||||
msgid ""
|
||||
"The firmware version is abnormal. Repairing and updating are required before "
|
||||
|
|
@ -11616,16 +11616,17 @@ msgstr "Massima velocità della ventola al layer"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"La velocità della ventola aumenterà linearmente da zero al livello "
|
||||
"\"close_fan_the_first_x_layers\" al massimo al livello \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" verrà ignorato se inferiore a "
|
||||
"\"close_fan_the_first_x_layers\", nel qual caso la ventola funzionerà alla "
|
||||
"massima velocità consentita al livello \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" al massimo al livello "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" verrà ignorato se "
|
||||
"inferiore a \"close_fan_the_first_x_layers\", nel qual caso la ventola "
|
||||
"funzionerà alla massima velocità consentita al livello "
|
||||
"\"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
msgstr ""
|
||||
|
|
@ -12754,6 +12755,14 @@ msgstr "Ritrai al cambio layer"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Questo forza una retrazione nei cambi layer."
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Lunghezza Retrazione"
|
||||
|
||||
|
|
@ -13871,8 +13880,8 @@ msgstr "Attiva il controllo della temperatura"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -15868,8 +15877,8 @@ msgstr ""
|
|||
"Vuoi riscriverlo?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Rinomineremo le preimpostazioni come \"Tipo di fornitore seriale @printer "
|
||||
|
|
@ -17583,12 +17592,13 @@ msgstr ""
|
|||
#~ "nostro wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Di solito la calibrazione non è necessaria. Quando si avvia una stampa a "
|
||||
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del flusso"
|
||||
#~ "\" selezionata nel menu di avvio della stampa, la stampante seguirà il "
|
||||
#~ "vecchio modo, calibrando il filamento prima della stampa; Quando si avvia "
|
||||
#~ "una stampa multicolore/materiale, la stampante utilizzerà il parametro di "
|
||||
#~ "compensazione predefinito per il filamento durante ogni cambio di "
|
||||
#~ "filamento, che avrà un buon risultato nella maggior parte dei casi.\n"
|
||||
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del "
|
||||
#~ "flusso\" selezionata nel menu di avvio della stampa, la stampante seguirà "
|
||||
#~ "il vecchio modo, calibrando il filamento prima della stampa; Quando si "
|
||||
#~ "avvia una stampa multicolore/materiale, la stampante utilizzerà il "
|
||||
#~ "parametro di compensazione predefinito per il filamento durante ogni "
|
||||
#~ "cambio di filamento, che avrà un buon risultato nella maggior parte dei "
|
||||
#~ "casi.\n"
|
||||
#~ "\n"
|
||||
#~ "Si prega di notare che ci sono alcuni casi che renderanno il risultato "
|
||||
#~ "della calibrazione non affidabile: utilizzo di una piastra di texture per "
|
||||
|
|
@ -17978,8 +17988,8 @@ msgstr ""
|
|||
#~ msgstr "Nessun layer sparso (SPERIMENTALE)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "To add preset for more prinetrs, Please go to printer selection"
|
||||
#~ msgstr ""
|
||||
#~ "Rinomineremo le impostazioni predefinite come \"Tipo di fornitore seriale "
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -289,7 +289,7 @@ msgid "Dowel"
|
|||
msgstr "Dowel"
|
||||
|
||||
msgid "Snap"
|
||||
msgstr "Snap"
|
||||
msgstr "スナップ"
|
||||
|
||||
msgid "Prism"
|
||||
msgstr "プリズム"
|
||||
|
|
@ -374,7 +374,7 @@ msgid "Change cut mode"
|
|||
msgstr "カットモード変更"
|
||||
|
||||
msgid "Tolerance"
|
||||
msgstr "Tolerance"
|
||||
msgstr "公差"
|
||||
|
||||
msgid "Drag"
|
||||
msgstr "Drag"
|
||||
|
|
@ -383,13 +383,13 @@ msgid "Draw cut line"
|
|||
msgstr ""
|
||||
|
||||
msgid "Left click"
|
||||
msgstr "Left click"
|
||||
msgstr "左クリック"
|
||||
|
||||
msgid "Add connector"
|
||||
msgstr "Add connector"
|
||||
|
||||
msgid "Right click"
|
||||
msgstr "Right click"
|
||||
msgstr "右クリック"
|
||||
|
||||
msgid "Remove connector"
|
||||
msgstr "Remove connector"
|
||||
|
|
@ -468,13 +468,13 @@ msgid "Reset cutting plane and remove connectors"
|
|||
msgstr "カット面をリセットし、コネクターを削除"
|
||||
|
||||
msgid "Upper part"
|
||||
msgstr "Upper part"
|
||||
msgstr "上部パーツ"
|
||||
|
||||
msgid "Lower part"
|
||||
msgstr "Lower part"
|
||||
msgstr "下部パーツ"
|
||||
|
||||
msgid "Keep"
|
||||
msgstr "Keep"
|
||||
msgstr "残す"
|
||||
|
||||
msgid "Flip"
|
||||
msgstr "Flip"
|
||||
|
|
@ -1278,7 +1278,7 @@ msgid "Center of edge"
|
|||
msgstr "Center of edge"
|
||||
|
||||
msgid "Center of circle"
|
||||
msgstr "Center of circle"
|
||||
msgstr "円の中心"
|
||||
|
||||
msgid "ShiftLeft mouse button"
|
||||
msgstr ""
|
||||
|
|
@ -1466,7 +1466,8 @@ msgid "Choose one file (3mf):"
|
|||
msgstr "ファイルを選択 (3mf):"
|
||||
|
||||
msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):"
|
||||
msgstr "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):"
|
||||
msgstr ""
|
||||
"1つ以上のファイルを選択してください (3mf/step/stl/svg/obj/amf/usd*/abc/ply):"
|
||||
|
||||
msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):"
|
||||
msgstr "ファイルを選択 (3mf/step/stl/svg/obj/amf)"
|
||||
|
|
@ -1732,10 +1733,10 @@ msgid "Set as individual objects"
|
|||
msgstr "個別オブジェクトとして設定"
|
||||
|
||||
msgid "Fill bed with copies"
|
||||
msgstr "Fill bed with copies"
|
||||
msgstr "コピーでビルドプレートを埋める"
|
||||
|
||||
msgid "Fill the remaining area of bed with copies of the selected object"
|
||||
msgstr "Fill the remaining area of bed with copies of the selected object"
|
||||
msgstr "選択したオブジェクトのコピーでビルドプレートの残りの領域を埋める"
|
||||
|
||||
msgid "Printable"
|
||||
msgstr "造形可能"
|
||||
|
|
@ -1744,7 +1745,7 @@ msgid "Fix model"
|
|||
msgstr "モデルを修復"
|
||||
|
||||
msgid "Export as one STL"
|
||||
msgstr "Export as one STL"
|
||||
msgstr "1つのSTLとしてエクスポート"
|
||||
|
||||
msgid "Export as STLs"
|
||||
msgstr "Export as STLs"
|
||||
|
|
@ -1916,10 +1917,10 @@ msgid "arrange current plate"
|
|||
msgstr "現在のプレートをレイアウト"
|
||||
|
||||
msgid "Reload All"
|
||||
msgstr ""
|
||||
msgstr "全て再読み込み"
|
||||
|
||||
msgid "reload all from disk"
|
||||
msgstr ""
|
||||
msgstr "全てディスクから再読み込み"
|
||||
|
||||
msgid "Auto Rotate"
|
||||
msgstr "自動回転"
|
||||
|
|
@ -2068,7 +2069,7 @@ msgstr ""
|
|||
"cut information first."
|
||||
|
||||
msgid "Delete all connectors"
|
||||
msgstr "Delete all connectors"
|
||||
msgstr "全てのコネクターを削除"
|
||||
|
||||
msgid "Deleting the last solid part is not allowed."
|
||||
msgstr "最後のソリッドパーツは削除できません。"
|
||||
|
|
@ -2205,13 +2206,13 @@ msgid "Mouse ear"
|
|||
msgstr ""
|
||||
|
||||
msgid "Outer brim only"
|
||||
msgstr "Outer brim only"
|
||||
msgstr "外側ブリムのみ"
|
||||
|
||||
msgid "Inner brim only"
|
||||
msgstr "Inner brim only"
|
||||
msgstr "内側ブリムのみ"
|
||||
|
||||
msgid "Outer and inner brim"
|
||||
msgstr "Outer and inner brim"
|
||||
msgstr "外側および内側ブリム"
|
||||
|
||||
msgid "No-brim"
|
||||
msgstr "ブリム無し"
|
||||
|
|
@ -2286,7 +2287,7 @@ msgid "Add Pause"
|
|||
msgstr "一時停止を追加"
|
||||
|
||||
msgid "Insert a pause command at the beginning of this layer."
|
||||
msgstr "Insert a pause command at the beginning of this layer."
|
||||
msgstr "このレイヤーの先頭にポーズコマンドを挿入"
|
||||
|
||||
msgid "Add Custom G-code"
|
||||
msgstr "カスタムG-codeを追加"
|
||||
|
|
@ -2298,13 +2299,13 @@ msgid "Add Custom Template"
|
|||
msgstr "カスタムテンプレートを追加"
|
||||
|
||||
msgid "Insert template custom G-code at the beginning of this layer."
|
||||
msgstr "Insert template custom G-code at the beginning of this layer."
|
||||
msgstr "このレイヤーの先頭にテンプレートカスタムGコードを挿入"
|
||||
|
||||
msgid "Filament "
|
||||
msgstr "フィラメント"
|
||||
|
||||
msgid "Change filament at the beginning of this layer."
|
||||
msgstr "Change filament at the beginning of this layer."
|
||||
msgstr "このレイヤーの先頭でフィラメントを交換"
|
||||
|
||||
msgid "Delete Pause"
|
||||
msgstr "Delete Pause"
|
||||
|
|
@ -2337,19 +2338,21 @@ msgid "code"
|
|||
msgstr "code"
|
||||
|
||||
msgid "Failed to connect to cloud service"
|
||||
msgstr "Failed to connect to cloud service"
|
||||
msgstr "クラウドサービスへの接続に失敗しました。"
|
||||
|
||||
msgid "Please click on the hyperlink above to view the cloud service status"
|
||||
msgstr "Please click on the hyperlink above to view the cloud service status"
|
||||
msgstr ""
|
||||
"クラウドサービスのステータスを確認するには、上記のハイパーリンクをクリックし"
|
||||
"てください。"
|
||||
|
||||
msgid "Failed to connect to the printer"
|
||||
msgstr "プリンターへ接続できませんでした"
|
||||
|
||||
msgid "Connection to printer failed"
|
||||
msgstr "Connection to printer failed"
|
||||
msgstr "プリンターへの接続に失敗しました。"
|
||||
|
||||
msgid "Please check the network connection of the printer and Orca."
|
||||
msgstr "Please check the network connection of the printer and Orca."
|
||||
msgstr "プリンターとOrcaのネットワーク接続を確認してください。"
|
||||
|
||||
msgid "Connecting..."
|
||||
msgstr "接続中…"
|
||||
|
|
@ -4280,7 +4283,7 @@ msgstr "ボリューム"
|
|||
msgid "Size:"
|
||||
msgstr "サイズ:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7435,8 +7438,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」"
|
||||
"を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム"
|
||||
|
|
@ -8614,10 +8617,12 @@ msgid "Where to find your printer's IP and Access Code?"
|
|||
msgstr "どこでプリンターのIPアドレスとアクセスコードを確認できますか?"
|
||||
|
||||
msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgstr "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgstr ""
|
||||
"ステップ3: パケットロスとレイテンシを確認するために、IPアドレスに対してpingを"
|
||||
"実行します。"
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
msgstr "テスト"
|
||||
|
||||
msgid "IP and Access Code Verified! You may close the window"
|
||||
msgstr "IP and Access Code Verified! You may close the window"
|
||||
|
|
@ -8887,13 +8892,13 @@ msgid "file open failed"
|
|||
msgstr "file open failed"
|
||||
|
||||
msgid "file create failed"
|
||||
msgstr "file create failed"
|
||||
msgstr "ファイルの作成に失敗しました"
|
||||
|
||||
msgid "file write failed"
|
||||
msgstr "file write failed"
|
||||
msgstr "ファイルの書き込みに失敗しました"
|
||||
|
||||
msgid "file read failed"
|
||||
msgstr "file read failed"
|
||||
msgstr "ファイルの読み込みに失敗しました"
|
||||
|
||||
msgid "file close failed"
|
||||
msgstr "file close failed"
|
||||
|
|
@ -9028,13 +9033,15 @@ msgid ""
|
|||
"Ooze prevention is only supported with the wipe tower when "
|
||||
"'single_extruder_multi_material' is off."
|
||||
msgstr ""
|
||||
"オーズ防止は、'single_extruder_multi_material'がオフの場合にのみ、 ワイプタ"
|
||||
"ワーと併用してサポートされます。"
|
||||
|
||||
msgid ""
|
||||
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
|
||||
"RepRapFirmware and Repetier G-code flavors."
|
||||
msgstr ""
|
||||
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
|
||||
"RepRapFirmware and Repetier G-code flavors."
|
||||
"プライムタワーは現在、Marlin、RepRap/Sprinter、RepRapFirmware、およびRepetier"
|
||||
"のGコード形式のみサポートされています。"
|
||||
|
||||
msgid "The prime tower is not supported in \"By object\" print."
|
||||
msgstr "オブジェクト順で造形する場合、プライムタワーを利用できません"
|
||||
|
|
@ -10969,10 +10976,10 @@ msgstr "最大回転速度の積層"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
|
|
@ -11943,6 +11950,14 @@ msgstr "積層変更時のリトラクション"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "この設定により、積層を変更時にリトラクションを実行します。"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "リトラクション長さ"
|
||||
|
||||
|
|
@ -12943,8 +12958,8 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -14799,8 +14814,8 @@ msgstr ""
|
|||
"Do you want to rewrite it?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -15371,10 +15386,10 @@ msgid "Could not connect to Prusa Connect"
|
|||
msgstr "Prusaコネクトに接続できませんでした"
|
||||
|
||||
msgid "Connection to Repetier works correctly."
|
||||
msgstr "Connection to Repetier is working correctly."
|
||||
msgstr "Repetierへの接続は正常に動作しています"
|
||||
|
||||
msgid "Could not connect to Repetier"
|
||||
msgstr "Could not connect to Repetier"
|
||||
msgstr "Repetierに接続できませんでした。"
|
||||
|
||||
msgid "Note: Repetier version at least 0.90.0 is required."
|
||||
msgstr "Note: Repetier version 0.90.0 or higher is required."
|
||||
|
|
@ -15437,8 +15452,9 @@ msgid ""
|
|||
"height, and results in slightly visible layer lines, but shorter printing "
|
||||
"time."
|
||||
msgstr ""
|
||||
"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
|
||||
"height. This results in slightly visible layer lines but shorter print time."
|
||||
"0.2 mmノズルのデフォルトプロファイルと比較すると、レイヤー高さが大きくなって"
|
||||
"います。そのため、レイヤーラインがわずかに見えますが、印刷時間は短縮されま"
|
||||
"す。"
|
||||
|
||||
msgid ""
|
||||
"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"PO-Revision-Date: 2024-10-26 10:01+0900\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: 2024-11-06 21:10+0900\n"
|
||||
"Last-Translator: ElectricalBoy <15651807+ElectricalBoy@users.noreply.github."
|
||||
"com>\n"
|
||||
"Language-Team: crwusiz@gmail.com\n"
|
||||
|
|
@ -108,7 +108,7 @@ msgid "Support Generated"
|
|||
msgstr "지지대 생성됨"
|
||||
|
||||
msgid "Gizmo-Place on Face"
|
||||
msgstr "Gizmo-면에 배치"
|
||||
msgstr "기즈모-면에 배치"
|
||||
|
||||
msgid "Lay on face"
|
||||
msgstr "바닥면 선택"
|
||||
|
|
@ -189,13 +189,13 @@ msgid "Move"
|
|||
msgstr "이동"
|
||||
|
||||
msgid "Gizmo-Move"
|
||||
msgstr "Gizmo-이동"
|
||||
msgstr "기즈모-이동"
|
||||
|
||||
msgid "Rotate"
|
||||
msgstr "회전"
|
||||
|
||||
msgid "Gizmo-Rotate"
|
||||
msgstr "Gizmo-회전"
|
||||
msgstr "기즈모-회전"
|
||||
|
||||
msgid "Optimize orientation"
|
||||
msgstr "방향 최적화"
|
||||
|
|
@ -207,7 +207,7 @@ msgid "Scale"
|
|||
msgstr "배율"
|
||||
|
||||
msgid "Gizmo-Scale"
|
||||
msgstr "Gizmo-배율"
|
||||
msgstr "기즈모-배율"
|
||||
|
||||
msgid "Error: Please close all toolbar menus first"
|
||||
msgstr "오류: 먼저 모든 도구 모음 메뉴를 닫으십시오."
|
||||
|
|
@ -280,7 +280,7 @@ msgid "Planar"
|
|||
msgstr "평면"
|
||||
|
||||
msgid "Dovetail"
|
||||
msgstr "도브테이"
|
||||
msgstr "도브테일"
|
||||
|
||||
msgid "Auto"
|
||||
msgstr "자동"
|
||||
|
|
@ -292,7 +292,7 @@ msgid "Plug"
|
|||
msgstr "플러그"
|
||||
|
||||
msgid "Dowel"
|
||||
msgstr "맞춤핀"
|
||||
msgstr "도웰"
|
||||
|
||||
msgid "Snap"
|
||||
msgstr "스냅"
|
||||
|
|
@ -301,7 +301,7 @@ msgid "Prism"
|
|||
msgstr "프리즘"
|
||||
|
||||
msgid "Frustum"
|
||||
msgstr "원뿔"
|
||||
msgstr "원뿔대"
|
||||
|
||||
msgid "Square"
|
||||
msgstr "사각형"
|
||||
|
|
@ -542,7 +542,7 @@ msgid "Delete connector"
|
|||
msgstr "커넥터 삭제"
|
||||
|
||||
msgid "Mesh name"
|
||||
msgstr "메쉬 이름"
|
||||
msgstr "메시 이름"
|
||||
|
||||
msgid "Detail level"
|
||||
msgstr "세부 레벨"
|
||||
|
|
@ -1112,7 +1112,7 @@ msgid "Linear gradient"
|
|||
msgstr "선형 그래디언트"
|
||||
|
||||
msgid "Radial gradient"
|
||||
msgstr "방사형 그래디언트"
|
||||
msgstr "방사형 그라데이션"
|
||||
|
||||
msgid "Open filled path"
|
||||
msgstr "채워진 경로 열기"
|
||||
|
|
@ -1840,10 +1840,10 @@ msgid "Assemble the selected objects to an object with single part"
|
|||
msgstr "선택한 개체를 단일 부품이 있는 개체로 조립"
|
||||
|
||||
msgid "Mesh boolean"
|
||||
msgstr "메쉬 부울"
|
||||
msgstr "메시 합집합/차집합/교집합"
|
||||
|
||||
msgid "Mesh boolean operations including union and subtraction"
|
||||
msgstr "합집합과 차집합을 포함한 메쉬 부울 연산"
|
||||
msgstr "합집합과 차집합을 포함한 메시 부울 연산"
|
||||
|
||||
msgid "Along X axis"
|
||||
msgstr "X축"
|
||||
|
|
@ -3054,7 +3054,7 @@ msgstr ""
|
|||
"로 이동합니다"
|
||||
|
||||
msgid "Air Printing Detection"
|
||||
msgstr "에어 프린팅 감지"
|
||||
msgstr "허공 출력 감지"
|
||||
|
||||
msgid ""
|
||||
"Detects clogging and filament grinding, halting printing immediately to "
|
||||
|
|
@ -3136,7 +3136,7 @@ msgid "Stack overflow"
|
|||
msgstr "스택 오버플로"
|
||||
|
||||
msgid "Running post-processing scripts"
|
||||
msgstr "사후 처리 스크립트 실행중"
|
||||
msgstr "후처리 스크립트 실행중"
|
||||
|
||||
msgid "Successfully executed post-processing script"
|
||||
msgstr "성공적으로 실행된 후처리 스크립트"
|
||||
|
|
@ -3284,13 +3284,13 @@ msgid "syncing"
|
|||
msgstr "동기화"
|
||||
|
||||
msgid "Printing Finish"
|
||||
msgstr "인쇄 완료"
|
||||
msgstr "출력 완료"
|
||||
|
||||
msgid "Printing Failed"
|
||||
msgstr "인쇄 실패"
|
||||
msgstr "출력 실패"
|
||||
|
||||
msgid "Printing Pause"
|
||||
msgstr "인쇄 일시중지"
|
||||
msgstr "출력 일시중지"
|
||||
|
||||
msgid "Prepare"
|
||||
msgstr "준비 하기"
|
||||
|
|
@ -3314,10 +3314,10 @@ msgid "Sending Failed"
|
|||
msgstr "전송 실패"
|
||||
|
||||
msgid "Print Success"
|
||||
msgstr "인쇄 성공"
|
||||
msgstr "출력 성공"
|
||||
|
||||
msgid "Print Failed"
|
||||
msgstr "인쇄 실패"
|
||||
msgstr "출력 실패"
|
||||
|
||||
msgid "Removed"
|
||||
msgstr "삭제됨"
|
||||
|
|
@ -3356,7 +3356,7 @@ msgid "Abnormal print file data. Please slice again"
|
|||
msgstr "비정상적인 출력 파일 데이터입니다. 다시 슬라이스하세요"
|
||||
|
||||
msgid "There is no device available to send printing."
|
||||
msgstr "인쇄를 전송할 수 있는 장치가 없습니다."
|
||||
msgstr "출력을 전송할 수 있는 장치가 없습니다."
|
||||
|
||||
msgid "The number of printers in use simultaneously cannot be equal to 0."
|
||||
msgstr "동시에 사용 중인 프린터의 수는 0과 같을 수 없습니다."
|
||||
|
|
@ -3374,7 +3374,7 @@ msgid "Ams Status"
|
|||
msgstr "AMS 상태"
|
||||
|
||||
msgid "Printing Options"
|
||||
msgstr "인쇄 옵션"
|
||||
msgstr "출력 옵션"
|
||||
|
||||
msgid "Bed Leveling"
|
||||
msgstr "베드 레벨링"
|
||||
|
|
@ -4309,7 +4309,7 @@ msgstr "용량:"
|
|||
msgid "Size:"
|
||||
msgstr "크기:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -4386,7 +4386,7 @@ msgid "Go Live"
|
|||
msgstr "실시간"
|
||||
|
||||
msgid "Liveview Retry"
|
||||
msgstr "라이브뷰 재시도"
|
||||
msgstr "실시간 화면보기 재시도"
|
||||
|
||||
msgid "Resolution"
|
||||
msgstr "해상도"
|
||||
|
|
@ -6282,8 +6282,8 @@ msgid ""
|
|||
"Unable to perform boolean operation on model meshes. Only positive parts "
|
||||
"will be kept. You may fix the meshes and try again."
|
||||
msgstr ""
|
||||
"모델 메쉬에 대해 부울 연산을 수행할 수 없습니다. 긍정적인 부분만 유지됩니다. "
|
||||
"메쉬를 수정하고 재시도해 볼 수 있습니다."
|
||||
"모델 메시에 대해 부울 연산을 수행할 수 없습니다. 긍정적인 부분만 유지됩니다. "
|
||||
"메시를 수정하고 재시도해 볼 수 있습니다."
|
||||
|
||||
#, boost-format
|
||||
msgid "Reason: part \"%1%\" is empty."
|
||||
|
|
@ -6305,7 +6305,7 @@ msgid ""
|
|||
"Unable to perform boolean operation on model meshes. Only positive parts "
|
||||
"will be exported."
|
||||
msgstr ""
|
||||
"모델 메쉬에 부울 연산을 수행할 수 없습니다. 오직 양수 부품만 내보내집니다."
|
||||
"모델 메시에 부울 연산을 수행할 수 없습니다. 오직 양수 부품만 내보내집니다."
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to store original SVGs with their local paths into the "
|
||||
|
|
@ -6562,10 +6562,10 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel."
|
|||
msgstr "활성화되면 마우스 휠을 사용하여 확대/축소 방향을 반대로 바꿉니다."
|
||||
|
||||
msgid "Show splash screen"
|
||||
msgstr "스플래시 화면 표시"
|
||||
msgstr "시작 화면 표시"
|
||||
|
||||
msgid "Show the splash screen during startup."
|
||||
msgstr "시작하는 동안 스플래시 화면을 표시합니다."
|
||||
msgstr "시작 화면을 표시합니다."
|
||||
|
||||
msgid "Show \"Tip of the day\" notification after start"
|
||||
msgstr "시작 후 \"오늘의 팁\" 알림 표시"
|
||||
|
|
@ -6782,7 +6782,7 @@ msgid "debug save button"
|
|||
msgstr "디버그 저장 버튼"
|
||||
|
||||
msgid "save debug settings"
|
||||
msgstr "디버그 세팅 저장"
|
||||
msgstr "디버그 설정 저장"
|
||||
|
||||
msgid "DEBUG settings have saved successfully!"
|
||||
msgstr "디버그 설정이 성공적으로 저장되었습니다!"
|
||||
|
|
@ -6830,7 +6830,7 @@ msgid "Create printer"
|
|||
msgstr "프린터 생성"
|
||||
|
||||
msgid "The selected preset is null!"
|
||||
msgstr "선택한 사전 설정의 값이 존재하지 않습니다!(null)"
|
||||
msgstr "선택한 사전 설정의 값이 존재하지 않습니다!"
|
||||
|
||||
msgid "End"
|
||||
msgstr "끝"
|
||||
|
|
@ -7249,7 +7249,7 @@ msgid "Get ticket from device timeout"
|
|||
msgstr "기기에서 티켓 가져오는데 시간 초과"
|
||||
|
||||
msgid "Get ticket from server timeout"
|
||||
msgstr "서버에서 티켓 가져오는데 시간 초과"
|
||||
msgstr "서버에서 티켓 가져오기 시간 초과"
|
||||
|
||||
msgid "Failed to post ticket to server"
|
||||
msgstr "서버에 티켓게시 실패"
|
||||
|
|
@ -7295,7 +7295,7 @@ msgid "Check the reason"
|
|||
msgstr "이유 확인"
|
||||
|
||||
msgid "Read and accept"
|
||||
msgstr "읽고 수락"
|
||||
msgstr "읽고 동의하기"
|
||||
|
||||
msgid "Terms and Conditions"
|
||||
msgstr "이용약관"
|
||||
|
|
@ -7496,13 +7496,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 ""
|
||||
"툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 닦기 타워\"를 추가하는 것이 좋"
|
||||
"습니다\n"
|
||||
"툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 프라임 타워\"를 추가하는 것이 "
|
||||
"좋습니다\n"
|
||||
"빌드 플레이트의 빈 위치를 마우스 오른쪽 버튼으로 클릭하고 \"기본 모델 추가\"-"
|
||||
"> \"타임랩스 닦기 타워\"를 선택합니다."
|
||||
"> \"타임랩스 프라임 타워\"를 선택합니다."
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "선 너비"
|
||||
|
|
@ -7594,7 +7594,7 @@ msgid "G-code output"
|
|||
msgstr "G코드 출력"
|
||||
|
||||
msgid "Post-processing Scripts"
|
||||
msgstr "사후 처리 스크립트"
|
||||
msgstr "후처리 스크립트"
|
||||
|
||||
msgid "Notes"
|
||||
msgstr "메모"
|
||||
|
|
@ -7667,7 +7667,7 @@ msgid ""
|
|||
"does not support to print on the Textured Cool Plate"
|
||||
msgstr ""
|
||||
"쿨 플레이트가 설치되었을 때의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 "
|
||||
"플레이트에서 인쇄를 지원하지 않음을 의미합니다"
|
||||
"플레이트에서 출력를 지원하지 않음을 의미합니다"
|
||||
|
||||
msgid "Engineering plate"
|
||||
msgstr "엔지니어링 플레이트"
|
||||
|
|
@ -7753,7 +7753,7 @@ msgid "Filament end G-code"
|
|||
msgstr "필라멘트 종료 G코드"
|
||||
|
||||
msgid "Wipe tower parameters"
|
||||
msgstr "닦기 타워 매개변수"
|
||||
msgstr "프라임 타워 매개변수"
|
||||
|
||||
msgid "Toolchange parameters with single extruder MM printers"
|
||||
msgstr "다중 재료 프린터의 단일 압출기 툴 체인지 매개변수"
|
||||
|
|
@ -7785,7 +7785,7 @@ msgid "Extruder Clearance"
|
|||
msgstr "압출기 회피"
|
||||
|
||||
msgid "Adaptive bed mesh"
|
||||
msgstr "적응형 베드 메쉬"
|
||||
msgstr "적응형 베드 메시"
|
||||
|
||||
msgid "Accessory"
|
||||
msgstr "악세서리"
|
||||
|
|
@ -7858,7 +7858,7 @@ msgid "Nozzle diameter"
|
|||
msgstr "노즐 직경"
|
||||
|
||||
msgid "Wipe tower"
|
||||
msgstr "닦기 타워"
|
||||
msgstr "프라임 타워"
|
||||
|
||||
msgid "Single extruder multi-material parameters"
|
||||
msgstr "단일 압출기 다중 재료 매개변수"
|
||||
|
|
@ -7889,7 +7889,7 @@ msgstr ""
|
|||
"펌웨어 후퇴를 활성화하기 위해 비활성화하겠습니까?"
|
||||
|
||||
msgid "Firmware Retraction"
|
||||
msgstr "펌웨어 후퇴"
|
||||
msgstr "펌웨어 리트렉션"
|
||||
|
||||
msgid "Detached"
|
||||
msgstr "분리됨"
|
||||
|
|
@ -8869,7 +8869,7 @@ msgid ""
|
|||
"Maybe parts of the object at these height are too thin, or the object has "
|
||||
"faulty mesh"
|
||||
msgstr ""
|
||||
"이 높이에 있는 개체의 일부가 너무 얇거나 개체에 결함이 있는 메쉬가 있을 수 있"
|
||||
"이 높이에 있는 개체의 일부가 너무 얇거나 개체에 결함이 있는 메시가 있을 수 있"
|
||||
"습니다"
|
||||
|
||||
msgid "No object can be printed. Maybe too small"
|
||||
|
|
@ -8878,7 +8878,7 @@ msgstr "개체를 출력할 수 없습니다. 너무 작을 수 있습니다"
|
|||
msgid ""
|
||||
"Your print is very close to the priming regions. Make sure there is no "
|
||||
"collision."
|
||||
msgstr "인쇄물이 프라이밍 영역에 매우 가깝습니다. 충돌이 없는지 확인합니다."
|
||||
msgstr "출력물이 프라이밍 영역에 매우 가깝습니다. 충돌이 없는지 확인합니다."
|
||||
|
||||
msgid ""
|
||||
"Failed to generate gcode for invalid custom G-code.\n"
|
||||
|
|
@ -9137,14 +9137,14 @@ msgid ""
|
|||
"The Wipe Tower is currently only supported with the relative extruder "
|
||||
"addressing (use_relative_e_distances=1)."
|
||||
msgstr ""
|
||||
"닦기 타워는 현재 관련 압출기에서만 지원됩니다.주소 지정"
|
||||
"프라임 타워는 현재 관련 압출기에서만 지원됩니다.주소 지정"
|
||||
"(use_relative_e_distances=1)."
|
||||
|
||||
msgid ""
|
||||
"Ooze prevention is only supported with the wipe tower when "
|
||||
"'single_extruder_multi_material' is off."
|
||||
msgstr ""
|
||||
"오수 방지는 'single_extruder_multi_material'이 꺼져 있을 때만 와이프 타워에"
|
||||
"유출 방지는 'single_extruder_multi_material'이 꺼져 있을 때만 와이프 타워에"
|
||||
"서 지원됩니다."
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9504,7 +9504,7 @@ msgid ""
|
|||
"filament does not support to print on the Textured Cool Plate"
|
||||
msgstr ""
|
||||
"초기 레이어를 제외한 레이어의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 "
|
||||
"플레이트에서 인쇄를 지원하지 않음을 의미합니다"
|
||||
"플레이트에서 출력를 지원하지 않음을 의미합니다"
|
||||
|
||||
msgid ""
|
||||
"Bed temperature for layers except the initial one. Value 0 means the "
|
||||
|
|
@ -9544,7 +9544,7 @@ msgid ""
|
|||
"Bed temperature of the initial layer. Value 0 means the filament does not "
|
||||
"support to print on the Textured Cool Plate"
|
||||
msgstr ""
|
||||
"초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 플레이트에 인쇄"
|
||||
"초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 플레이트에 출력"
|
||||
"할 수 없음을 의미합니다"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9915,7 +9915,7 @@ msgstr ""
|
|||
"데 도움이 될 수 있습니다.\n"
|
||||
"\n"
|
||||
"이 설정이 가장 효과적이려면 모든 내부 벽이 돌출 정도에 관계없이 균일한 레이어"
|
||||
"에서 교대로 인쇄되도록 역방향 임계값을 0으로 설정하는 것이 좋습니다."
|
||||
"에서 교대로 출력되도록 역방향 임계값을 0으로 설정하는 것이 좋습니다."
|
||||
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "브릿지 카운터보어 구멍"
|
||||
|
|
@ -9934,7 +9934,7 @@ msgstr ""
|
|||
"3. 희생 레이어: 전체 희생 브릿지 레이어가 생성됩니다."
|
||||
|
||||
msgid "Partially bridged"
|
||||
msgstr "부분적으로 브릿지"
|
||||
msgstr "부분적 브릿지"
|
||||
|
||||
msgid "Sacrificial layer"
|
||||
msgstr "희생층"
|
||||
|
|
@ -9953,6 +9953,11 @@ msgid ""
|
|||
"When Detect overhang wall is not enabled, this option is ignored and "
|
||||
"reversal happens on every even layers regardless."
|
||||
msgstr ""
|
||||
"반전이 유용한 것으로 간주되려면 오버행이 몇 mm가 되어야 합니다. 둘레 폭을 % o"
|
||||
"으로 설정할 수 있습니다.\n"
|
||||
"값이 0이면 모든 짝수 레이어에 관계없이 반전이 활성화됩니다.\n"
|
||||
"돌출 벽 감지가 활성화되지 않은 경우 이 옵션은 무시되고 모든 짝수 레이어에서 "
|
||||
"반전이 수행됩니다."
|
||||
|
||||
msgid "Classic mode"
|
||||
msgstr "클래식 모드"
|
||||
|
|
@ -9967,7 +9972,7 @@ msgid "Enable this option to slow printing down for different overhang degree"
|
|||
msgstr "돌출부 정도에 따라 출력 속도를 낮추려면 이 옵션을 활성화합니다"
|
||||
|
||||
msgid "Slow down for curled perimeters"
|
||||
msgstr "꺾여 있는 둘레에서 감속"
|
||||
msgstr "구부러진 둘레에서 감속"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
|
|
@ -9989,13 +9994,13 @@ msgid ""
|
|||
"overhanging, with no wall supporting them from underneath, the 100% overhang "
|
||||
"speed will be applied."
|
||||
msgstr ""
|
||||
"주변이 위쪽으로 말릴 수 있는 영역에서 인쇄 속도를 늦추려면 이 옵션을 활성화합"
|
||||
"니다. 예를 들어 벤치 선체 전면과 같이 날카로운 모서리에 돌출부를 인쇄할 때 추"
|
||||
"주변이 위쪽으로 말릴 수 있는 영역에서 출력 속도를 늦추려면 이 옵션을 활성화합"
|
||||
"니다. 예를 들어 벤치 선체 전면과 같이 날카로운 모서리에 돌출부를 출력할 때 추"
|
||||
"가 속도 저하가 적용되어 여러 레이어에 걸쳐 합성되는 말림을 줄입니다.\n"
|
||||
"\n"
|
||||
" 프린터 냉각 성능이 충분히 강력하거나 인쇄 속도가 느려 주변 말림이 발생하지 "
|
||||
"않는 한 일반적으로 이 옵션을 켜는 것이 좋습니다. 높은 외부 주변 속도로 인쇄하"
|
||||
"는 경우 이 매개변수는 인쇄 속도의 큰 차이로 인해 속도가 느려질 때 약간의 아티"
|
||||
" 프린터 냉각 성능이 충분히 강력하거나 출력 속도가 느려 주변 말림이 발생하지 "
|
||||
"않는 한 일반적으로 이 옵션을 켜는 것이 좋습니다. 높은 외부 주변 속도로 출력하"
|
||||
"는 경우 이 매개변수는 출력 속도의 큰 차이로 인해 속도가 느려질 때 약간의 아티"
|
||||
"팩트가 발생할 수 있습니다. 아티팩트가 발견되면 압력 진행이 올바르게 조정되었"
|
||||
"는지 확인하십시오.\n"
|
||||
"\n"
|
||||
|
|
@ -10020,7 +10025,7 @@ msgstr ""
|
|||
"외부에서 볼 수 있는 브릿지 돌출 속도입니다. \n"
|
||||
"\n"
|
||||
"또한, 구부러진 둘레에 대한 속도 저하가 비활성화되거나 클래식 오버행 모드가 활"
|
||||
"성화된 경우 브릿지의 일부이든 오버행이든 상관없이 오버행 벽의 인쇄 속도는 "
|
||||
"성화된 경우 브릿지의 일부이든 오버행이든 상관없이 오버행 벽의 출력 속도는 "
|
||||
"13% 미만으로 지원됩니다."
|
||||
|
||||
msgid "mm/s"
|
||||
|
|
@ -10259,14 +10264,14 @@ msgstr ""
|
|||
"이는 데 도움이 될 수 있습니다.\n"
|
||||
"\n"
|
||||
"기본적으로 작은 내부 브릿지는 필터링되고 내부 솔리드 채우기는 희박한 채우기 "
|
||||
"위에 직접 인쇄됩니다. 이는 대부분의 경우에 잘 작동하여 상단 표면 품질을 크게 "
|
||||
"저하시키지 않고 인쇄 속도를 높입니다. \n"
|
||||
"위에 직접 출력됩니다. 이는 대부분의 경우에 잘 작동하여 상단 표면 품질을 크게 "
|
||||
"저하시키지 않고 출력 속도를 높입니다. \n"
|
||||
"\n"
|
||||
"그러나 특히 너무 낮은 희박 채우기 밀도가 사용되는 심하게 기울어지거나 곡선 모"
|
||||
"델에서는 지지되지 않는 고체 채우기가 말려 베개 현상이 발생할 수 있습니다.\n"
|
||||
"\n"
|
||||
"이 옵션을 비활성화하면 약간 지원되지 않는 내부 솔리드 채우기 위에 내부 브릿"
|
||||
"지 레이어가 인쇄됩니다. 아래 옵션은 필터링 양, 즉 생성된 내부 브릿지 양을 제"
|
||||
"지 레이어가 출력됩니다. 아래 옵션은 필터링 양, 즉 생성된 내부 브릿지 양을 제"
|
||||
"어합니다.\n"
|
||||
"\n"
|
||||
"필터 - 이 옵션을 활성화합니다. 이는 기본 동작이며 대부분의 경우 잘 작동합니"
|
||||
|
|
@ -10492,11 +10497,11 @@ msgid ""
|
|||
"external surface finish. It can also cause the infill to shine through the "
|
||||
"external surfaces of the part."
|
||||
msgstr ""
|
||||
"벽/채우기 순서. 확인란을 선택 취소하면 벽이 먼저 인쇄되며 이는 대부분의 경우 "
|
||||
"벽/채우기 순서. 확인란을 선택 취소하면 벽이 먼저 출력되며 이는 대부분의 경우 "
|
||||
"가장 잘 작동합니다.\n"
|
||||
"\n"
|
||||
"충전재를 먼저 인쇄하면 벽에 접착할 인접 충전재가 있으므로 돌출부가 심한 경우 "
|
||||
"도움이 될 수 있습니다. 그러나 충전재는 인쇄된 벽이 부착된 부분을 약간 밀어내"
|
||||
"충전재를 먼저 출력하면 벽에 접착할 인접 충전재가 있으므로 돌출부가 심한 경우 "
|
||||
"도움이 될 수 있습니다. 그러나 충전재는 출력된 벽이 부착된 부분을 약간 밀어내"
|
||||
"어 외부 표면 마감이 더 나빠집니다. 또한 충전재가 부품의 외부 표면을 통해 빛"
|
||||
"날 수도 있습니다."
|
||||
|
||||
|
|
@ -10556,7 +10561,7 @@ msgid "The height of nozzle tip."
|
|||
msgstr "노즐 팁의 높이."
|
||||
|
||||
msgid "Bed mesh min"
|
||||
msgstr "배드 메쉬 최소"
|
||||
msgstr "배드 메시 최소"
|
||||
|
||||
msgid ""
|
||||
"This option sets the min point for the allowed bed mesh area. Due to the "
|
||||
|
|
@ -10568,9 +10573,9 @@ msgid ""
|
|||
"your printer manufacturer. The default setting is (-99999, -99999), which "
|
||||
"means there are no limits, thus allowing probing across the entire bed."
|
||||
msgstr ""
|
||||
"이 옵션은 허용되는 배드 메쉬 영역의 최소 지점을 설정합니다. 프로브의 XY 옵셋"
|
||||
"이 옵션은 허용되는 배드 메시 영역의 최소 지점을 설정합니다. 프로브의 XY 옵셋"
|
||||
"으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트"
|
||||
"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메쉬의 최소 및 최대 지점을 적절"
|
||||
"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메시의 최소 및 최대 지점을 적절"
|
||||
"하게 설정해야 합니다. OrcaSlicer는 adaptive_bed_mesh_min/"
|
||||
"adaptive_bed_mesh_max 값이 이러한 최소/최대 포인트를 초과하지 않도록 보장합니"
|
||||
"다. 이 정보는 일반적으로 프린터 제조업체로부터 얻을 수 있습니다. 기본 설정은 "
|
||||
|
|
@ -10578,7 +10583,7 @@ msgstr ""
|
|||
"을 의미합니다."
|
||||
|
||||
msgid "Bed mesh max"
|
||||
msgstr "배드 메쉬 최대"
|
||||
msgstr "배드 메시 최대"
|
||||
|
||||
msgid ""
|
||||
"This option sets the max point for the allowed bed mesh area. Due to the "
|
||||
|
|
@ -10590,9 +10595,9 @@ msgid ""
|
|||
"your printer manufacturer. The default setting is (99999, 99999), which "
|
||||
"means there are no limits, thus allowing probing across the entire bed."
|
||||
msgstr ""
|
||||
"이 옵션은 허용되는 침대 메쉬 영역의 최대 지점을 설정합니다. 프로브의 XY 옵셋"
|
||||
"이 옵션은 허용되는 침대 메시 영역의 최대 지점을 설정합니다. 프로브의 XY 옵셋"
|
||||
"으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트"
|
||||
"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메쉬의 최소 및 최대 지점을 적절"
|
||||
"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메시의 최소 및 최대 지점을 적절"
|
||||
"하게 설정해야 합니다. OrcaSlicer는 adaptive_bed_mesh_min/"
|
||||
"adaptive_bed_mesh_max 값이 이러한 최소/최대 포인트를 초과하지 않도록 보장합니"
|
||||
"다. 이 정보는 일반적으로 프린터 제조업체로부터 얻을 수 있습니다. 기본 설정은 "
|
||||
|
|
@ -10610,7 +10615,7 @@ msgstr ""
|
|||
"며 X와 Y 모두에 대한 기본값은 50mm입니다."
|
||||
|
||||
msgid "Mesh margin"
|
||||
msgstr "메쉬 공간"
|
||||
msgstr "메시 공간"
|
||||
|
||||
msgid ""
|
||||
"This option determines the additional distance by which the adaptive bed "
|
||||
|
|
@ -10696,16 +10701,16 @@ msgid ""
|
|||
"and for when tool changing.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
"인쇄 속도가 증가하고(노즐을 통한 체적 흐름이 증가함) 가속도가 증가함에 따라 "
|
||||
"출력 속도가 증가하고(노즐을 통한 체적 흐름이 증가함) 가속도가 증가함에 따라 "
|
||||
"일반적으로 유효 PA 값이 감소하는 것으로 관찰되었습니다. 이는 단일 PA 값이 모"
|
||||
"든 기능에 대해 항상 100% 최적인 것은 아니며 일반적으로 유속과 가속도가 낮은 "
|
||||
"기능에 너무 많은 돌출을 일으키지 않고 더 빠른 기능에 간격을 유발하지 않는 절"
|
||||
"충 값이 사용된다는 것을 의미합니다.\n"
|
||||
"\n"
|
||||
"이 기능은 인쇄 중인 체적 흐름 속도와 가속도에 따라 프린터 압출 시스템의 반응"
|
||||
"이 기능은 출력 중인 체적 흐름 속도와 가속도에 따라 프린터 압출 시스템의 반응"
|
||||
"을 모델링하여 이러한 제한 사항을 해결하는 것을 목표로 합니다. 내부적으로는 주"
|
||||
"어진 체적 흐름 속도 및 가속도에 대해 필요한 압력 전진을 추정할 수 있는 적합 "
|
||||
"모델을 생성하며, 이는 현재 인쇄 조건에 따라 프린터로 방출됩니다.\n"
|
||||
"모델을 생성하며, 이는 현재 출력 조건에 따라 프린터로 방출됩니다.\n"
|
||||
"\n"
|
||||
"활성화되면 위의 압력 전진 값이 무시됩니다. 그러나 대체 수단으로 사용하거나 도"
|
||||
"구를 변경할 때 위의 합리적인 기본값을 사용하는 것이 좋습니다.\n"
|
||||
|
|
@ -10752,15 +10757,15 @@ msgstr ""
|
|||
"\n"
|
||||
"교정 방법:\n"
|
||||
"1. 가속도 값당 최소 3개 속도에 대해 압력 전진 테스트를 실행합니다. 최소한 외"
|
||||
"부 둘레의 속도, 내부 둘레의 속도 및 프로필의 가장 빠른 기능 인쇄 속도(일반적"
|
||||
"부 둘레의 속도, 내부 둘레의 속도 및 프로필의 가장 빠른 기능 출력 속도(일반적"
|
||||
"으로 희박하거나 단단한 충전재)에 대해 테스트를 실행하는 것이 좋습니다. 그런 "
|
||||
"다음 가장 느리고 가장 빠른 인쇄 가속을 위해 동일한 속도로 실행하고 Klipper 입"
|
||||
"다음 가장 느리고 가장 빠른 출력 가속을 위해 동일한 속도로 실행하고 Klipper 입"
|
||||
"력 셰이퍼에서 제공하는 권장 최대 가속보다 빠르지 않게 실행하십시오.\n"
|
||||
"2. 각 체적 유속 및 가속도에 대한 최적의 PA 값을 기록해 두십시오. 색상 구성표 "
|
||||
"드롭다운에서 흐름을 선택하고 PA 패턴 라인 위로 수평 슬라이더를 이동하여 흐름 "
|
||||
"번호를 찾을 수 있습니다. 페이지 하단에 번호가 표시되어야 합니다. 이상적인 PA "
|
||||
"값은 체적 유량이 높을수록 감소해야 합니다. 그렇지 않은 경우 압출기가 올바르"
|
||||
"게 작동하는지 확인하십시오. 인쇄 속도가 느리고 가속도가 낮을수록 허용되는 PA "
|
||||
"게 작동하는지 확인하십시오. 출력 속도가 느리고 가속도가 낮을수록 허용되는 PA "
|
||||
"값의 범위는 더 커집니다. 차이가 보이지 않으면 더 빠른 테스트의 PA 값을 사용하"
|
||||
"십시오.3. 여기 텍스트 상자에 PA 값, 흐름 및 가속도의 세 가지 값을 입력하고 필"
|
||||
"라멘트 프로필을 저장하세요.\n"
|
||||
|
|
@ -10792,7 +10797,7 @@ msgstr ""
|
|||
"브릿지의 압력 전진 값입니다. 비활성화하려면 0으로 설정합니다. \n"
|
||||
"\n"
|
||||
" 브릿지를 프린팅할 때 PA 값이 낮으면 브릿지 직후에 약간의 언더 압출이 나타나"
|
||||
"는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 인쇄할 때 노즐의 압력 강하로 "
|
||||
"는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 출력할 때 노즐의 압력 강하로 "
|
||||
"인해 발생하며 PA가 낮을수록 이를 방지하는 데 도움이 됩니다."
|
||||
|
||||
msgid ""
|
||||
|
|
@ -10830,7 +10835,7 @@ msgstr ""
|
|||
"활성화되면 최소 레이어 시간을 충족하기 위한 외벽의 출력 속도 감속을 적용하지 "
|
||||
"않습니다. 이 기능은 아래의 경우에 도움이 될 수 있습니다:\n"
|
||||
"\n"
|
||||
"1. 유광 필라멘트로 인쇄할 때 일정한 광택을 유지하기 위한 경우 \n"
|
||||
"1. 유광 필라멘트로 출력할 때 일정한 광택을 유지하기 위한 경우 \n"
|
||||
"2. 외벽 출력 속도의 변화로 인한 외벽의 Z밴딩처럼 보이는 형상이 생성되는 것을 "
|
||||
"방지하기 위한 경우 \n"
|
||||
"3. 외벽을 VFA를 발생시키는 속도로 출력하는 것을 방지하기 위한 경우\n"
|
||||
|
|
@ -10906,7 +10911,7 @@ msgstr ""
|
|||
"의 경우 일반적으로 0입니다. 통계용으로만 사용됩니다"
|
||||
|
||||
msgid "Tool change time"
|
||||
msgstr "툴 체이진 시가"
|
||||
msgstr "툴 체인지 시간"
|
||||
|
||||
msgid ""
|
||||
"Time taken to switch tools. It's usually applicable for tool changers or "
|
||||
|
|
@ -10976,7 +10981,7 @@ msgid "Loading speed"
|
|||
msgstr "압출 속도"
|
||||
|
||||
msgid "Speed used for loading the filament on the wipe tower."
|
||||
msgstr "닦기 타워에 필라멘트를 압출하는 데 사용되는 속도입니다."
|
||||
msgstr "프라임 타워에 필라멘트를 압출하는 데 사용되는 속도입니다."
|
||||
|
||||
msgid "Loading speed at the start"
|
||||
msgstr "시작 시 압출 속도"
|
||||
|
|
@ -10991,8 +10996,8 @@ msgid ""
|
|||
"Speed used for unloading the filament on the wipe tower (does not affect "
|
||||
"initial part of unloading just after ramming)."
|
||||
msgstr ""
|
||||
"닦기 타워에 필라멘트를 빼는 데 사용되는 속도(래밍 직후 빼기 초기 부분에는 영"
|
||||
"향을 미치지 않음)"
|
||||
"프라임 타워에 필라멘트를 빼는 데 사용되는 속도(래밍 직후 빼기 초기 부분에는 "
|
||||
"영향을 미치지 않음)"
|
||||
|
||||
msgid "Unloading speed at the start"
|
||||
msgstr "시작시 언로드 속도"
|
||||
|
|
@ -11048,7 +11053,7 @@ msgid "Cooling moves are gradually accelerating beginning at this speed."
|
|||
msgstr "이 속도부터 냉각 동작이 점차 가속됩니다."
|
||||
|
||||
msgid "Minimal purge on wipe tower"
|
||||
msgstr "닦기 타워의 최소 청소"
|
||||
msgstr "프라임 타워의 최소 청소"
|
||||
|
||||
msgid ""
|
||||
"After a tool change, the exact position of the newly loaded filament inside "
|
||||
|
|
@ -11057,10 +11062,10 @@ msgid ""
|
|||
"object, Orca Slicer will always prime this amount of material into the wipe "
|
||||
"tower to produce successive infill or sacrificial object extrusions reliably."
|
||||
msgstr ""
|
||||
"툴 교환 후 노즐 내부에 새로 로드된 필라멘트의 정확한 위치를 알 수 없으며 필라"
|
||||
"멘트 압력이 아직 안정적이지 않을 수 있습니다. 프린트 헤드를 채우기 또는 희생 "
|
||||
"개체로 청소하기 전에 Orca Slicer은 항상 이 양의 재료를 닦기 타워로 프라이밍하"
|
||||
"여 연속적인 채우기 또는 희생 물체 압출을 안정적으로 생성합니다."
|
||||
"툴 체인지 후 노즐 내부에 새로 로드된 필라멘트의 정확한 위치를 알 수 없으며 필"
|
||||
"라멘트 압력이 아직 안정적이지 않을 수 있습니다. 프린트 헤드를 채우기 또는 희"
|
||||
"생 개체로 청소하기 전에 Orca Slicer은 항상 이 양의 재료를 프라임 타워로 프라"
|
||||
"이밍하여 연속적인 채우기 또는 희생 물체 압출을 안정적으로 생성합니다."
|
||||
|
||||
msgid "Speed of the last cooling move"
|
||||
msgstr "마지막 냉각 이동 속도"
|
||||
|
|
@ -11087,9 +11092,9 @@ msgid ""
|
|||
"the toolchange. This option is only used when the wipe tower is enabled."
|
||||
msgstr ""
|
||||
"다중 압출기 프린터를 사용할 때 래밍을 수행합니다(예: 프린터 설정에서 '단일 압"
|
||||
"출기 다중 재료'가 선택 취소된 경우). 활성화하면 툴 체인지 직전 닦기 타워에 소"
|
||||
"량의 필라멘트가 빠르게 압출됩니다. 이 옵션은 닦기 타워가 활성화된 경우에만 사"
|
||||
"용됩니다."
|
||||
"출기 다중 재료'가 선택 취소된 경우). 활성화하면 툴 체인지 직전 프라임 타워에 "
|
||||
"소량의 필라멘트가 빠르게 압출됩니다. 이 옵션은 프라임 타워가 활성화된 경우에"
|
||||
"만 사용됩니다."
|
||||
|
||||
msgid "Multi-tool ramming volume"
|
||||
msgstr "다중 압출기 래밍 부피"
|
||||
|
|
@ -11423,10 +11428,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\" 의 0에서 \"full_fan_speed_layer\" "
|
||||
"의 최고 속도까지 선형적으로 증가합니다. \"full_fan_speed_layer\"가 "
|
||||
|
|
@ -11499,7 +11504,7 @@ msgid ""
|
|||
"(in mm). This setting applies to top, bottom and solid infill and, if using "
|
||||
"the classic perimeter generator, to wall gap fill. "
|
||||
msgstr ""
|
||||
"지정된 임계값(mm 단위)보다 길이가 작은 간격 채우기를 인쇄하지 마십시오. 이 설"
|
||||
"지정된 임계값(mm 단위)보다 길이가 작은 간격 채우기를 출력하지 마십시오. 이 설"
|
||||
"정은 상단, 하단 및 솔리드 채우기에 적용되며, 클래식 주변 생성기를 사용하는 경"
|
||||
"우 벽 간격 채우기에 적용됩니다. "
|
||||
|
||||
|
|
@ -11574,13 +11579,13 @@ msgid "Undefine"
|
|||
msgstr "알 수 없음"
|
||||
|
||||
msgid "Hardened steel"
|
||||
msgstr "경화강 노즐"
|
||||
msgstr "경화강"
|
||||
|
||||
msgid "Stainless steel"
|
||||
msgstr "스테인레스강 노즐"
|
||||
msgstr "스테인레스 스틸"
|
||||
|
||||
msgid "Brass"
|
||||
msgstr "황동 노즐"
|
||||
msgstr "황동"
|
||||
|
||||
msgid "Nozzle HRC"
|
||||
msgstr "노즐 록웰 경도"
|
||||
|
|
@ -11776,7 +11781,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"결합된 희소 채우기의 최대 레이어 높이입니다. \n"
|
||||
"\n"
|
||||
"노즐 직경(인쇄 시간을 최대로 줄이기 위해)을 사용하려면 0 또는 100%로 설정하"
|
||||
"노즐 직경(출력 시간을 최대로 줄이기 위해)을 사용하려면 0 또는 100%로 설정하"
|
||||
"고 희박한 채우기 강도를 최대화하려면 ~80% 값으로 설정합니다.\n"
|
||||
"\n"
|
||||
"채우기가 결합되는 레이어 수는 이 값을 레이어 높이로 나누고 가장 가까운 소수"
|
||||
|
|
@ -11809,7 +11814,7 @@ msgstr ""
|
|||
"압출 및 축적 가능성을 최소화하려면 이 값을 ~10-15%로 설정하십시오."
|
||||
|
||||
msgid "Top/Bottom solid infill/wall overlap"
|
||||
msgstr "상단/하단 솔리드 채우기/벽 겹침"
|
||||
msgstr "상하단 솔리드 채우기/벽 겹침"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
|
|
@ -11866,9 +11871,9 @@ msgid ""
|
|||
"filaments touch. This improves the adhesion between filaments, especially "
|
||||
"models printed in different materials."
|
||||
msgstr ""
|
||||
"서로 다른 필라멘트가 접촉하는 곳에 맞물리는 구조의 (인터로킹) 빔을 생성합니"
|
||||
"다. 이 기능은 필라멘트 간의 결합력을 향상시키며, 서로 다른 재료로 출력한 모델"
|
||||
"에 특히 유용합니다."
|
||||
"서로 다른 필라멘트가 접촉하는 곳에 맞물리는 구조의 인터로킹 빔을 생성합니다. "
|
||||
"이 기능은 필라멘트 간의 결합력을 향상시키며, 서로 다른 재료로 출력한 모델에 "
|
||||
"특히 유용합니다."
|
||||
|
||||
msgid "Interlocking beam width"
|
||||
msgstr "인터로킹 빔 너비"
|
||||
|
|
@ -12407,7 +12412,7 @@ msgstr ""
|
|||
"100%% 돌출부의 경우 브릿지 속도가 사용됩니다."
|
||||
|
||||
msgid "Filament to print walls"
|
||||
msgstr "벽을 인쇄하는 필라멘트"
|
||||
msgstr "벽을 출력하는 필라멘트"
|
||||
|
||||
msgid ""
|
||||
"Line width of inner wall. If expressed as a %, it will be computed over the "
|
||||
|
|
@ -12535,6 +12540,14 @@ msgstr "레이어 변경 시 후퇴"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "레이어 변경 시 강제로 후퇴를 실행합니다"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "후퇴 길이"
|
||||
|
||||
|
|
@ -12564,7 +12577,7 @@ msgstr "절단 시 후퇴 거리"
|
|||
msgid ""
|
||||
"Experimental feature.Retraction length before cutting off during filament "
|
||||
"change"
|
||||
msgstr "실험적 특징.필라멘트 교환시 절단 전 후퇴길이"
|
||||
msgstr "실험적 기능. 필라멘트 교체 시 절단 전 후퇴 길이"
|
||||
|
||||
msgid "Z hop when retract"
|
||||
msgstr "후퇴 시 Z 올리기"
|
||||
|
|
@ -12692,7 +12705,7 @@ msgstr ""
|
|||
"니다"
|
||||
|
||||
msgid "Use firmware retraction"
|
||||
msgstr "펌웨어 후퇴 사용"
|
||||
msgstr "펌웨어 리트렉션 사용"
|
||||
|
||||
msgid ""
|
||||
"This experimental setting uses G10 and G11 commands to have the firmware "
|
||||
|
|
@ -12948,7 +12961,7 @@ msgstr ""
|
|||
"사용합니다"
|
||||
|
||||
msgid "Draft shield"
|
||||
msgstr "드래프트 쉴드"
|
||||
msgstr "드래프트 실드"
|
||||
|
||||
msgid ""
|
||||
"A draft shield is useful to protect an ABS or ASA print from warping and "
|
||||
|
|
@ -12961,13 +12974,13 @@ msgid ""
|
|||
"distance from the object. Therefore, if brims are active it may intersect "
|
||||
"with them. To avoid this, increase the skirt distance value.\n"
|
||||
msgstr ""
|
||||
"드래프트 쉴드는 바람으로 인해 ABS 또는 ASA 인쇄물이 뒤틀리거나 인쇄 베드에서 "
|
||||
"드래프트 실드는 바람으로 인해 ABS 또는 ASA 출력물이 뒤틀리거나 출력 베드에서 "
|
||||
"분리되는 것을 방지하는 데 유용합니다. 일반적으로 오픈 프레임 프린터, 즉 인클"
|
||||
"로저가 없는 경우에만 필요합니다. \n"
|
||||
"\n"
|
||||
"활성화 = 스커트가 가장 높은 인쇄물의 높이와 같습니다. 그렇지 않으면 '스커트 "
|
||||
"활성화 = 스커트가 가장 높은 출력물의 높이와 같습니다. 그렇지 않으면 '스커트 "
|
||||
"높이'가 사용됩니다.\n"
|
||||
"참고: 드래프트 쉴드가 활성화되면 스커트는 개체로부터 스커트 거리에 인쇄됩니"
|
||||
"참고: 드래프트 실드가 활성화되면 스커트는 개체로부터 스커트 거리에 출력됩니"
|
||||
"다. 따라서 챙이 활성화된 경우 챙과 교차할 수 있습니다. 이를 방지하려면 스커"
|
||||
"트 거리 값을 늘리십시오.\n"
|
||||
|
||||
|
|
@ -13015,10 +13028,10 @@ msgid ""
|
|||
"Final number of loops is not taling into account whli arranging or "
|
||||
"validating objects distance. Increase loop number in such case. "
|
||||
msgstr ""
|
||||
"스커트를 인쇄할 때 최소 필라멘트 압출 길이(mm)입니다. 0은 이 기능이 비활성화"
|
||||
"스커트를 출력할 때 최소 필라멘트 압출 길이(mm)입니다. 0은 이 기능이 비활성화"
|
||||
"되었음을 의미합니다.\n"
|
||||
"\n"
|
||||
"프린터가 프라임 라인 없이 인쇄하도록 설정된 경우 0이 아닌 값을 사용하는 것이 "
|
||||
"프린터가 프라임 라인 없이 출력하도록 설정된 경우 0이 아닌 값을 사용하는 것이 "
|
||||
"유용합니다.\n"
|
||||
"루프의 최종 수는 객체 거리를 정렬하거나 검증하는 동안 고려되지 않습니다. 그러"
|
||||
"한 경우에는 루프 수를 늘리십시오. "
|
||||
|
|
@ -13042,7 +13055,7 @@ msgid "Solid infill"
|
|||
msgstr "솔리드 채우기"
|
||||
|
||||
msgid "Filament to print solid infill"
|
||||
msgstr "솔리드 인필을 인쇄하는 필라멘트"
|
||||
msgstr "솔리드 인필을 출력하는 필라멘트"
|
||||
|
||||
msgid ""
|
||||
"Line width of internal solid infill. If expressed as a %, it will be "
|
||||
|
|
@ -13184,9 +13197,9 @@ msgid ""
|
|||
"print the wipe tower. User is responsible for ensuring there is no collision "
|
||||
"with the print."
|
||||
msgstr ""
|
||||
"활성화되면 툴 체인지 없이 레이어에 닦기 타워가 출력되지 않습니다. 툴 체인지"
|
||||
"가 있는 레이어에서는 압출기가 아래쪽으로 이동하여 닦기 타워를 출력합니다. 출"
|
||||
"력물과의 충돌이 없는지 확인하는 것은 사용자의 책임입니다."
|
||||
"활성화되면 툴 체인지 없이 레이어에 프라임 타워가 출력되지 않습니다. 툴 체인지"
|
||||
"가 있는 레이어에서는 압출기가 아래쪽으로 이동하여 프라임 타워를 출력합니다. "
|
||||
"출력물과의 충돌이 없는지 확인하는 것은 사용자의 책임입니다."
|
||||
|
||||
msgid "Prime all printing extruders"
|
||||
msgstr "모든 활성화된 압출기 프라이밍"
|
||||
|
|
@ -13206,7 +13219,7 @@ msgid ""
|
|||
"triangle mesh slicing. The gap closing operation may reduce the final print "
|
||||
"resolution, therefore it is advisable to keep the value reasonably low."
|
||||
msgstr ""
|
||||
"간격 폐쇄 반경의 2배보다 작은 균열은 삼각형 메쉬 슬라이싱 중에 채워집니다. 간"
|
||||
"간격 폐쇄 반경의 2배보다 작은 균열은 삼각형 메시 슬라이싱 중에 채워집니다. 간"
|
||||
"격 채우기 작업은 최종 출력 해상도를 감소시킬 수 있으므로 값을 합리적으로 낮"
|
||||
"게 유지하는 것이 좋습니다."
|
||||
|
||||
|
|
@ -13493,7 +13506,7 @@ msgstr ""
|
|||
"다."
|
||||
|
||||
msgid "Preferred Branch Angle"
|
||||
msgstr "선호 가지 각도"
|
||||
msgstr "선호하는 가지 각도"
|
||||
|
||||
#. TRN PrintSettings: "Organic supports" > "Preferred Branch Angle"
|
||||
msgid ""
|
||||
|
|
@ -13612,8 +13625,8 @@ msgstr "온도 제어 활성화"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -13624,7 +13637,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"자동화된 챔버 온도 제어를 위해 이 옵션을 활성화합니다. 이 옵션은 "
|
||||
"\"machine_start_gcode\" 이전에 M191 명령 내보내기를 활성화합니다.\n"
|
||||
" 챔버 온도를 설정하고 온도에 도달할 때까지 기다립니다. 또한 인쇄가 끝나면 챔"
|
||||
" 챔버 온도를 설정하고 온도에 도달할 때까지 기다립니다. 또한 출력가 끝나면 챔"
|
||||
"버 히터를 끄는 M141 명령을 내보냅니다(있는 경우). \n"
|
||||
"\n"
|
||||
"이 옵션은 매크로를 통해 또는 기본적으로 M191 및 M141 명령을 지원하는 펌웨어"
|
||||
|
|
@ -13661,11 +13674,11 @@ msgstr ""
|
|||
"기 막힘을 방지하기 위해 챔버 온도가 낮아야 하므로 이 옵션을 비활성화(0으로 설"
|
||||
"정)해야 합니다.\n"
|
||||
"\n"
|
||||
"활성화된 경우 이 매개변수는 원하는 챔버 온도를 인쇄 시작 매크로 또는 "
|
||||
"활성화된 경우 이 매개변수는 원하는 챔버 온도를 출력 시작 매크로 또는 "
|
||||
"PRINT_START(기타 변수) CHAMBER_TEMP=[chamber_temp]와 같은 열 흡수 매크로에 전"
|
||||
"달하는 데 사용할 수 있는 Chamber_temp라는 G코드 변수도 설정합니다. 이는 프린"
|
||||
"터가 M141/M191 명령을 지원하지 않거나 활성 챔버 히터가 설치되지 않은 경우 인"
|
||||
"쇄 시작 매크로에서 열 흡수를 처리하려는 경우 유용할 수 있습니다."
|
||||
"터가 M141/M191 명령을 지원하지 않거나 활성 챔버 히터가 설치되지 않은 경우 출"
|
||||
"력 시작 매크로에서 열 흡수를 처리하려는 경우 유용할 수 있습니다."
|
||||
|
||||
msgid "Nozzle temperature for layers after the initial one"
|
||||
msgstr "초기 레이어 이후의 노즐 온도"
|
||||
|
|
@ -13767,8 +13780,8 @@ msgid ""
|
|||
"stabilize the chamber pressure inside the nozzle, in order to avoid "
|
||||
"appearance defects when printing objects."
|
||||
msgstr ""
|
||||
"닦기 타워는 개체를 출력할 때 외관 결함을 방지하기 위해 노즐의 잔류물을 청소하"
|
||||
"고 노즐 내부의 압력을 안정화하는 데 사용할 수 있습니다."
|
||||
"프라임 타워는 개체를 출력할 때 외관 결함을 방지하기 위해 노즐의 잔류물을 청소"
|
||||
"하고 노즐 내부의 압력을 안정화하는 데 사용할 수 있습니다."
|
||||
|
||||
msgid "Purging volumes"
|
||||
msgstr "버리기 볼륨"
|
||||
|
|
@ -13792,10 +13805,10 @@ msgid "Width of prime tower"
|
|||
msgstr "프라임 타워의 너비"
|
||||
|
||||
msgid "Wipe tower rotation angle"
|
||||
msgstr "닦기 타워 회전 각도"
|
||||
msgstr "프라임 타워 회전 각도"
|
||||
|
||||
msgid "Wipe tower rotation angle with respect to x-axis."
|
||||
msgstr "X축 기준의 닦기 타워 회전 각도."
|
||||
msgstr "X축 기준의 프라임 타워 회전 각도."
|
||||
|
||||
msgid "Stabilization cone apex angle"
|
||||
msgstr "안정화 원뿔 정점 각도"
|
||||
|
|
@ -13804,11 +13817,11 @@ msgid ""
|
|||
"Angle at the apex of the cone that is used to stabilize the wipe tower. "
|
||||
"Larger angle means wider base."
|
||||
msgstr ""
|
||||
"닦기 타워를 안정화하는 데 사용되는 원뿔 꼭대기의 각도입니다. 각도가 클수록 베"
|
||||
"이스가 넓어집니다."
|
||||
"프라임 타워를 안정화하는 데 사용되는 원뿔 꼭대기의 각도입니다. 각도가 클수록 "
|
||||
"베이스가 넓어집니다."
|
||||
|
||||
msgid "Maximum wipe tower print speed"
|
||||
msgstr "최대 와이프 타워 인쇄 속도"
|
||||
msgstr "프라임 타워 최대 속도"
|
||||
|
||||
msgid ""
|
||||
"The maximum print speed when purging in the wipe tower and printing the wipe "
|
||||
|
|
@ -13831,11 +13844,11 @@ msgid ""
|
|||
"For the wipe tower external perimeters the internal perimeter speed is used "
|
||||
"regardless of this setting."
|
||||
msgstr ""
|
||||
"와이프 타워에서 퍼징하고 와이프 타워 희박 레이어를 인쇄할 때 최대 인쇄 속도입"
|
||||
"와이프 타워에서 퍼징하고 와이프 타워 희박 레이어를 출력할 때 최대 출력 속도입"
|
||||
"니다. 퍼징 시 희소 충전 속도 또는 필라멘트 최대 체적 속도에서 계산된 속도가 "
|
||||
"더 낮은 경우 가장 낮은 속도가 대신 사용됩니다.\n"
|
||||
"\n"
|
||||
"희소 레이어를 인쇄할 때 내부 주변 속도 또는 필라멘트 최대 체적 속도에서 계산"
|
||||
"희소 레이어를 출력할 때 내부 주변 속도 또는 필라멘트 최대 체적 속도에서 계산"
|
||||
"된 속도가 더 낮은 경우 가장 낮은 속도가 대신 사용됩니다.\n"
|
||||
"\n"
|
||||
"이 속도를 높이면 타워의 안정성에 영향을 줄 수 있을 뿐만 아니라 노즐이 와이프 "
|
||||
|
|
@ -13851,8 +13864,8 @@ msgid ""
|
|||
"The extruder to use when printing perimeter of the wipe tower. Set to 0 to "
|
||||
"use the one that is available (non-soluble would be preferred)."
|
||||
msgstr ""
|
||||
"닦기 타워의 둘레를 출력할 때 사용하는 압출기입니다. 사용 가능한 압출기를 사용"
|
||||
"하려면 0으로 설정하세요(비가용성 재료가 적절함)."
|
||||
"프라임 타워의 둘레를 출력할 때 사용하는 압출기입니다. 사용 가능한 압출기를 사"
|
||||
"용하려면 0으로 설정하세요(비가용성 재료가 적절함)."
|
||||
|
||||
msgid "Purging volumes - load/unload volumes"
|
||||
msgstr "제거 부피 - 넣기/빼기 부피"
|
||||
|
|
@ -13862,7 +13875,7 @@ msgid ""
|
|||
"wipe tower. These values are used to simplify creation of the full purging "
|
||||
"volumes below."
|
||||
msgstr ""
|
||||
"이 벡터는 닦기 타워에서 사용되는 각 툴을 교체하는 데 필요한 부피을 저장합니"
|
||||
"이 벡터는 프라임 타워에서 사용되는 각 툴을 교체하는 데 필요한 부피을 저장합니"
|
||||
"다. 이러한 값은 아래의 전체 청소 부피 생성을 단순화하는 데 사용됩니다."
|
||||
|
||||
msgid ""
|
||||
|
|
@ -13901,10 +13914,10 @@ msgid "Maximal distance between supports on sparse infill sections."
|
|||
msgstr "드문 채우기 부분의 지지대 사이의 최대 거리."
|
||||
|
||||
msgid "Wipe tower purge lines spacing"
|
||||
msgstr "닦기 타워 청소 선 간격"
|
||||
msgstr "프라임 타워 청소 선 간격"
|
||||
|
||||
msgid "Spacing of purge lines on the wipe tower."
|
||||
msgstr "닦기 타워의 청소 선 간격입니다."
|
||||
msgstr "프라임 타워의 청소 선 간격입니다."
|
||||
|
||||
msgid "Extra flow for purging"
|
||||
msgstr "퍼지를 위한 추가 흐름"
|
||||
|
|
@ -13925,7 +13938,7 @@ msgid ""
|
|||
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
|
||||
"0 to disable."
|
||||
msgstr ""
|
||||
"도구가 현재 다중 도구 설정에서 사용되지 않을 때의 노즐 온도. 이는 인쇄 설정에"
|
||||
"도구가 현재 다중 도구 설정에서 사용되지 않을 때의 노즐 온도. 이는 출력 설정에"
|
||||
"서 '얼룩 방지'가 활성화된 경우에만 사용됩니다. 비활성화하려면 0으로 설정합니"
|
||||
"다."
|
||||
|
||||
|
|
@ -14318,7 +14331,7 @@ msgid "Has single extruder MM priming"
|
|||
msgstr "단일 압출기 MM 프라이밍 있음"
|
||||
|
||||
msgid "Are the extra multi-material priming regions used in this print?"
|
||||
msgstr "이 인쇄물에 추가 다중 재료 프라이밍 영역이 사용됩니까?"
|
||||
msgstr "이 출력물에 추가 다중 재료 프라이밍 영역이 사용됩니까?"
|
||||
|
||||
msgid "Volume per extruder"
|
||||
msgstr "압출기당 부피"
|
||||
|
|
@ -14550,7 +14563,7 @@ msgid "Optimizing toolpath"
|
|||
msgstr "툴 경로 최적화"
|
||||
|
||||
msgid "Slicing mesh"
|
||||
msgstr "슬라이싱 메쉬"
|
||||
msgstr "슬라이싱 메시"
|
||||
|
||||
msgid ""
|
||||
"No layers were detected. You might want to repair your STL file(s) or check "
|
||||
|
|
@ -14985,7 +14998,7 @@ msgid "Please find the best line on your plate"
|
|||
msgstr "당신의 플레이트에서 가장 좋은 선을 찾아보세요"
|
||||
|
||||
msgid "Please find the corner with perfect degree of extrusion"
|
||||
msgstr "사출 품질이 제일 좋은 모서리를 찾아보세요"
|
||||
msgstr "완벽한 돌출 정도를 가진 코너를 찾아주세요."
|
||||
|
||||
msgid "Input Value"
|
||||
msgstr "입력값"
|
||||
|
|
@ -15354,7 +15367,7 @@ msgid "ID"
|
|||
msgstr "아이디"
|
||||
|
||||
msgid "Progress"
|
||||
msgstr "진행률"
|
||||
msgstr "진행 상황"
|
||||
|
||||
msgid "Host"
|
||||
msgstr "호스트"
|
||||
|
|
@ -15388,7 +15401,7 @@ msgid "Unable to perform boolean operation on selected parts"
|
|||
msgstr "선택한 부품에서 부울 연산을 수행할 수 없습니다"
|
||||
|
||||
msgid "Mesh Boolean"
|
||||
msgstr "메쉬 부울"
|
||||
msgstr "메시 합집합/차집합/교집합"
|
||||
|
||||
msgid "Union"
|
||||
msgstr "합집합"
|
||||
|
|
@ -15566,8 +15579,8 @@ msgstr ""
|
|||
"다시 작성하시겠습니까?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
|
||||
|
|
@ -16630,7 +16643,7 @@ msgid ""
|
|||
"Simplify mesh feature? Right-click the model and select Simplify model."
|
||||
msgstr ""
|
||||
"모델 단순화\n"
|
||||
"메쉬 단순화 기능을 사용하여 메쉬의 삼각형 수를 줄일 수 있다는 것을 알고 계셨"
|
||||
"메시 단순화 기능을 사용하여 메시의 삼각형 수를 줄일 수 있다는 것을 알고 계셨"
|
||||
"나요? 모델을 마우스 오른쪽 버튼으로 클릭하고 모델 단순화를 선택하세요."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Slicing Parameter Table]
|
||||
|
|
@ -17626,8 +17639,8 @@ msgstr ""
|
|||
#~ msgstr "드문 레이어 없음(실험적)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "To add preset for more prinetrs, Please go to printer selection"
|
||||
#~ msgstr ""
|
||||
#~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -4379,7 +4379,7 @@ msgstr "Volume:"
|
|||
msgid "Size:"
|
||||
msgstr "Maat:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7675,8 +7675,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Bij het opnemen van timelapse zonder toolhead is het aan te raden om een "
|
||||
"„Timelapse Wipe Tower” toe te voegen \n"
|
||||
|
|
@ -11358,10 +11358,10 @@ msgstr "Volledige snelheid op laag"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
|
|
@ -12377,6 +12377,14 @@ msgstr ""
|
|||
"Dit forceert retraction (terugtrekken van filament) als er gewisseld wordt "
|
||||
"van laag"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Terugtrek (retraction) lengte"
|
||||
|
||||
|
|
@ -13404,8 +13412,8 @@ msgstr "Temperatuurregeling activeren"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -13762,10 +13770,11 @@ msgid ""
|
|||
"Wipe tower is only compatible with relative mode. It is recommended on most "
|
||||
"printers. Default is checked"
|
||||
msgstr ""
|
||||
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie \"label_objects"
|
||||
"\". Sommige extruders werken beter als deze optie niet is aangevinkt "
|
||||
"(absolute extrusiemodus). Wipe tower is alleen compatibel met relatieve "
|
||||
"modus. Het wordt aanbevolen op de meeste printers. Standaard is aangevinkt"
|
||||
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie "
|
||||
"\"label_objects\". Sommige extruders werken beter als deze optie niet is "
|
||||
"aangevinkt (absolute extrusiemodus). Wipe tower is alleen compatibel met "
|
||||
"relatieve modus. Het wordt aanbevolen op de meeste printers. Standaard is "
|
||||
"aangevinkt"
|
||||
|
||||
msgid ""
|
||||
"Classic wall generator produces walls with constant extrusion width and for "
|
||||
|
|
@ -15290,8 +15299,8 @@ msgstr ""
|
|||
"Wil je het herschrijven?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer 2.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Krzysztof Morga <tlumaczeniebs@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -740,7 +740,7 @@ msgstr "Pole do wprowadzania tekstu nie może być puste."
|
|||
|
||||
msgid "Text contains character glyph (represented by '?') unknown by font."
|
||||
msgstr ""
|
||||
"Tekst zawiera znak znaków (reprezentowany przez '?') nieznany dla czcionki."
|
||||
"Tekst zawiera glif znaku (reprezentowany przez \"?\") nieznany czcionce."
|
||||
|
||||
msgid "Text input doesn't show font skew."
|
||||
msgstr "Wprowadzanie tekstu nie pokazuje nachylenia czcionki."
|
||||
|
|
@ -2501,8 +2501,8 @@ msgid ""
|
|||
"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
|
||||
"load or unload filaments."
|
||||
msgstr ""
|
||||
"Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub \"Rozładuj"
|
||||
"\" ,aby automatycznie załadować lub wyładować filamenty."
|
||||
"Wybierz gniazdo AMS, a następnie naciśnij przycisk \"Ładuj\" lub "
|
||||
"\"Rozładuj\" ,aby automatycznie załadować lub wyładować filamenty."
|
||||
|
||||
msgid "Edit"
|
||||
msgstr "Edytuj"
|
||||
|
|
@ -4419,7 +4419,7 @@ msgstr "Objętość:"
|
|||
msgid "Size:"
|
||||
msgstr "Rozmiar:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7715,8 +7715,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Podczas nagrywania timelapse'a bez głowicy drukującej zaleca się dodanie "
|
||||
"\"Timelaps - Wieża Czyszcząca\" \n"
|
||||
|
|
@ -9778,10 +9778,10 @@ msgid ""
|
|||
msgstr ""
|
||||
"Unikaj ruchów nad obrysami-\n"
|
||||
"Maksymalna długość objazdu przy unikaniu przejeżdżania nad obrysami. Jeśli "
|
||||
"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad obrysami"
|
||||
"\" zostanie zignorowana dla tej ścieżki. Długość objazdu można zdefiniować "
|
||||
"jako wartość absolutna lub obliczona procentowo (np. 50%) z długości ruchu "
|
||||
"bezpośredniego."
|
||||
"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad "
|
||||
"obrysami\" zostanie zignorowana dla tej ścieżki. Długość objazdu można "
|
||||
"zdefiniować jako wartość absolutna lub obliczona procentowo (np. 50%) z "
|
||||
"długości ruchu bezpośredniego."
|
||||
|
||||
msgid "mm or %"
|
||||
msgstr "mm lub %"
|
||||
|
|
@ -10195,7 +10195,7 @@ msgstr ""
|
|||
"można zakotwiczyć mostów. "
|
||||
|
||||
msgid "Reverse on even"
|
||||
msgstr "Odwróć na parzystych"
|
||||
msgstr "Zmień kierunek na parzystych"
|
||||
|
||||
msgid "Overhang reversal"
|
||||
msgstr "Przeciwny kierunek przy nawisach"
|
||||
|
|
@ -10232,7 +10232,7 @@ msgid ""
|
|||
"Reverse Threshold to 0 so that all internal walls print in alternating "
|
||||
"directions on even layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
"Zastosuj logikę odwracania obwodów tylko do obwodów wewnętrznych.\n"
|
||||
"Zastosuj logikę zmiany kierunku tylko do obwodów wewnętrznych.\n"
|
||||
"\n"
|
||||
"Ten parametr znacznie redukuje napięcia działające na elementy, ponieważ są "
|
||||
"one teraz rozłożone w różnych kierunkach. Powinno to zmniejszyć "
|
||||
|
|
@ -10243,7 +10243,7 @@ msgstr ""
|
|||
"podpartych obszarach.\n"
|
||||
"\n"
|
||||
"Aby ten parametr był jak najskuteczniejszy, zaleca się ustawienie progu "
|
||||
"odwrócenia na 0, aby wszystkie wewnętrzne ściany były drukowane w "
|
||||
"zmiany kierunku na 0, aby wszystkie wewnętrzne ściany były drukowane w "
|
||||
"naprzemiennych kierunkach na warstwach parzystych, niezależnie od ich "
|
||||
"stopnia nawisu."
|
||||
|
||||
|
|
@ -10271,10 +10271,10 @@ msgid "Sacrificial layer"
|
|||
msgstr "Warstwa pomocnicza"
|
||||
|
||||
msgid "Reverse threshold"
|
||||
msgstr "Próg odwrócenia"
|
||||
msgstr "Próg zmiany kierunku"
|
||||
|
||||
msgid "Overhang reversal threshold"
|
||||
msgstr "Próg odwrócenia przy nawisach"
|
||||
msgstr "Próg zmiany kierunku przy nawisach"
|
||||
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
|
|
@ -10284,6 +10284,13 @@ msgid ""
|
|||
"When Detect overhang wall is not enabled, this option is ignored and "
|
||||
"reversal happens on every even layers regardless."
|
||||
msgstr ""
|
||||
"Minimalna długość nawisu (w mm), przy której zmiana kierunku jest uznawana "
|
||||
"za użyteczną. Może być również wyrażona jako % szerokości obrysu.\n"
|
||||
"Wartość 0 powoduje zmianę kierunku na każdej parzystej warstwie, niezależnie "
|
||||
"od innych ustawień.\n"
|
||||
"\n"
|
||||
"Jeśli opcja wykrywanie ściany nawisu jest wyłączona, to ustawienie jest "
|
||||
"pomijane, a zmiana kierunku następuje na każdej parzystej warstwie."
|
||||
|
||||
msgid "Classic mode"
|
||||
msgstr "Tryb klasyczny"
|
||||
|
|
@ -10352,6 +10359,12 @@ msgid ""
|
|||
"are supported by less than 13%, whether they are part of a bridge or an "
|
||||
"overhang."
|
||||
msgstr ""
|
||||
"Szybkość druku zewnętrznych widocznych obrysów mostu.\n"
|
||||
"\n"
|
||||
"Ponadto, jeśli opcja zwalniania na łukach jest wyłączona lub włączony jest "
|
||||
"klasyczny tryb druku nawisów, to szybkość druku ścian nawisu, które mają "
|
||||
"wsparcie mniejsze niż 13%, będzie taka sama, niezależnie od tego, czy są "
|
||||
"częścią mostu, czy nawisu."
|
||||
|
||||
msgid "mm/s"
|
||||
msgstr "mm/s"
|
||||
|
|
@ -10879,7 +10892,7 @@ msgstr ""
|
|||
"Kierunek, w którym wytłaczane są pętle ścian, patrząc z góry.\n"
|
||||
"\n"
|
||||
"Domyślnie wszystkie ściany są wytłaczane w kierunku przeciwnym do ruchu "
|
||||
"wskazówek zegara, chyba że opcja Odwróć na parzystych jest włączona. "
|
||||
"wskazówek zegara, chyba że opcja Zmień kierunek na parzystych jest włączona. "
|
||||
"Ustawienie tej opcji na coś innego niż Auto wymusi kierunek ściany, "
|
||||
"niezależnie od ustawienia Odwróć na parzystych.\n"
|
||||
"\n"
|
||||
|
|
@ -11848,10 +11861,10 @@ msgstr "Pełna prędkość wentylatora na warstwie"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie "
|
||||
"\"close_fan_the_first_x_layers\" do maksymalnej na warstwie "
|
||||
|
|
@ -13032,6 +13045,17 @@ msgstr "Retrakcja przy zmianie warstwy"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Wymuś retrakcję przy zmianie warstwy"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr "Retrakcja na górnej warstwie"
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
"Włącz wymuszanie retrakcji na górnej warstwie. Wyłączenie tej opcji może "
|
||||
"prowadzić do gromadzenia się materiału i zatkania dyszy, zwłaszcza przy "
|
||||
"drukowaniu skomplikowanych i wolnych wzorów, takich jak krzywa Hilberta."
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Długość retrakcji"
|
||||
|
||||
|
|
@ -13749,10 +13773,10 @@ msgid ""
|
|||
"triangle mesh slicing. The gap closing operation may reduce the final print "
|
||||
"resolution, therefore it is advisable to keep the value reasonably low."
|
||||
msgstr ""
|
||||
"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania szpar"
|
||||
"\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może zmniejszyć "
|
||||
"finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej wartości na "
|
||||
"rozsądnie niskim poziomie."
|
||||
"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania "
|
||||
"szpar\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może "
|
||||
"zmniejszyć finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej "
|
||||
"wartości na rozsądnie niskim poziomie."
|
||||
|
||||
msgid "Slicing Mode"
|
||||
msgstr "Tryb cięcia"
|
||||
|
|
@ -14176,8 +14200,8 @@ msgstr "Aktywuj kontrolę temperatury"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -14435,9 +14459,9 @@ msgid ""
|
|||
"The extruder to use when printing perimeter of the wipe tower. Set to 0 to "
|
||||
"use the one that is available (non-soluble would be preferred)."
|
||||
msgstr ""
|
||||
"Extruder używany do drukowania obrysów wieży czyszczącej. Ustaw na \"Domyślny"
|
||||
"\", aby użyć tego, który jest dostępny (preferowany jest ten, w którym "
|
||||
"załadowany jest filament nierozpuszczalny)."
|
||||
"Extruder używany do drukowania obrysów wieży czyszczącej. Ustaw na "
|
||||
"\"Domyślny\", aby użyć tego, który jest dostępny (preferowany jest ten, w "
|
||||
"którym załadowany jest filament nierozpuszczalny)."
|
||||
|
||||
msgid "Purging volumes - load/unload volumes"
|
||||
msgstr "Objętości czyszczenia - objętości ładowania/rozładowania"
|
||||
|
|
@ -16227,8 +16251,8 @@ msgstr ""
|
|||
"Czy chcesz go zastąpić?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Nazwa profilu zostanie zmieniona na \"Dostawca Typ Seria @nazwa drukarki, "
|
||||
|
|
@ -17262,8 +17286,8 @@ msgid ""
|
|||
"the surface quality of your overhangs?"
|
||||
msgstr ""
|
||||
"Odwróć na nieparzystych\n"
|
||||
"Czy wiesz, że funkcja <b>Odwróć na nieparzystych</b> może znacząco poprawić "
|
||||
"jakość powierzchni twoich występów?"
|
||||
"Czy wiesz, że funkcja <b>Zmień kierunek na nieparzystych</b> może znacząco "
|
||||
"poprawić jakość powierzchni twoich występów?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Cut Tool]
|
||||
msgid ""
|
||||
|
|
@ -17691,8 +17715,8 @@ msgstr ""
|
|||
#~ "(działają one jak rodzaj bariery).\n"
|
||||
#~ "\n"
|
||||
#~ "Nie spowoduje to również zmiany ustawień wentylatora w początkowym G-"
|
||||
#~ "code, jeśli aktywowana jest opcja \"tylko niestandardowy początkowy G-code"
|
||||
#~ "\".\n"
|
||||
#~ "code, jeśli aktywowana jest opcja \"tylko niestandardowy początkowy G-"
|
||||
#~ "code\".\n"
|
||||
#~ "\n"
|
||||
#~ "Ustaw 0, aby wyłączyć tę funkcję."
|
||||
|
||||
|
|
@ -17807,8 +17831,8 @@ msgstr ""
|
|||
#~ "\n"
|
||||
#~ "Jednakże w mocno pochylonych lub zakrzywionych modelach, zwłaszcza przy "
|
||||
#~ "niskiej gęstości struktury wypełnienia, może to prowadzić do wywijania "
|
||||
#~ "się niewspieranej struktury wypełnienia, co powoduje efekt \"pillowing"
|
||||
#~ "\".\n"
|
||||
#~ "się niewspieranej struktury wypełnienia, co powoduje efekt "
|
||||
#~ "\"pillowing\".\n"
|
||||
#~ "\n"
|
||||
#~ "Włączenie tej opcji spowoduje drukowanie wewnętrznej warstwy mostka nad "
|
||||
#~ "nieco niewspieraną wewnętrzną strukturą wypełnienia. Poniższe opcje "
|
||||
|
|
@ -19175,8 +19199,8 @@ msgstr ""
|
|||
#~ "Elevation is too low for object. Use the \"Pad around object\" feature to "
|
||||
#~ "print the object without elevation."
|
||||
#~ msgstr ""
|
||||
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół modelu"
|
||||
#~ "\", aby wydrukować model bez podniesienia."
|
||||
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół "
|
||||
#~ "modelu\", aby wydrukować model bez podniesienia."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The endings of the support pillars will be deployed on the gap between "
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: 2024-06-01 21:51-0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
|
|
@ -4420,7 +4420,7 @@ msgstr "Volume:"
|
|||
msgid "Size:"
|
||||
msgstr "Tamanho:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7716,8 +7716,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Ao gravar um timelapse sem o hotend aparecer, é recomendável adicionar uma "
|
||||
"\"Torre Prime para Timelapse\" \n"
|
||||
|
|
@ -11581,10 +11581,10 @@ msgstr "Velocidade total do ventilador na camada"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"A velocidade do ventilador aumentará linearmente de zero na camada "
|
||||
"\"close_fan_the_first_x_layers\" para o máximo na camada "
|
||||
|
|
@ -12729,6 +12729,14 @@ msgstr "Retrair ao mudar de camada"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Forçar uma retração ao mudar de camada"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Distância de retração"
|
||||
|
||||
|
|
@ -13834,8 +13842,8 @@ msgstr "Ativar controle de temperatura"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -15824,8 +15832,8 @@ msgstr ""
|
|||
"Você deseja reescrevê-lo?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Renomearíamos os presets como \"Fornecedor Tipo Serial @ impressora que você "
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer V2.2.0-beta2\n"
|
||||
"Project-Id-Version: OrcaSlicer V2.2.0 Official Release\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: 2024-09-25 22:36+0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Andylg <andylg@yandex.ru>\n"
|
||||
|
|
@ -15,8 +15,8 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 3.5\n"
|
||||
|
||||
msgid "Supports Painting"
|
||||
|
|
@ -101,8 +101,9 @@ msgstr "Позволяет рисовать на выбранных гранях
|
|||
msgid "Highlight faces according to overhang angle."
|
||||
msgstr "Выделение граней по углу свеса."
|
||||
|
||||
# это в рисование поддержки идет после - Выделение граней по углу свеса.
|
||||
msgid "No auto support"
|
||||
msgstr "Откл. автоподдержку"
|
||||
msgstr "Автоподдержка отключена."
|
||||
|
||||
msgid "Support Generated"
|
||||
msgstr "Поддержка сгенерирована"
|
||||
|
|
@ -361,17 +362,17 @@ msgid ""
|
|||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane"
|
||||
msgstr ""
|
||||
"Нажмите, чтобы перевернуть секущую плоскость\n"
|
||||
"Двигайте, чтобы переместить секущую плоскость"
|
||||
"Нажмите, чтобы перевернуть секущую плоскость.\n"
|
||||
"Двигайте, чтобы переместить секущую плоскость."
|
||||
|
||||
msgid ""
|
||||
"Click to flip the cut plane\n"
|
||||
"Drag to move the cut plane\n"
|
||||
"Right-click a part to assign it to the other side"
|
||||
msgstr ""
|
||||
"Нажмите, чтобы перевернуть секущую плоскость\n"
|
||||
"Двигайте, чтобы переместить секущую плоскость\n"
|
||||
"Правая кнопка мыши на части модели для переназначения стороны"
|
||||
"Нажмите, чтобы перевернуть секущую плоскость.\n"
|
||||
"Двигайте, чтобы переместить секущую плоскость.\n"
|
||||
"Для переназначения стороны части модели используйте правую кнопку мыши."
|
||||
|
||||
msgid "Move cut plane"
|
||||
msgstr "Перемещение секущей плоскости"
|
||||
|
|
@ -507,16 +508,16 @@ msgstr "Обнаружены недопустимые соединения"
|
|||
#, c-format, boost-format
|
||||
msgid "%1$d connector is out of cut contour"
|
||||
msgid_plural "%1$d connectors are out of cut contour"
|
||||
msgstr[0] "%1$d соединение выходит за контур модели"
|
||||
msgstr[1] "%1$d соединения выходит за контур модели"
|
||||
msgstr[2] "%1$d соединений выходит за контур модели"
|
||||
msgstr[0] "%1$d соединение выходит за контур модели."
|
||||
msgstr[1] "%1$d соединения выходит за контур модели."
|
||||
msgstr[2] "%1$d соединений выходит за контур модели."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%1$d connector is out of object"
|
||||
msgid_plural "%1$d connectors are out of object"
|
||||
msgstr[0] "%1$d соединение находится за пределами модели"
|
||||
msgstr[1] "%1$d соединения находится за пределами модели"
|
||||
msgstr[2] "%1$d соединений находится за пределами модели"
|
||||
msgstr[0] "%1$d соединение находится за пределами модели."
|
||||
msgstr[1] "%1$d соединения находится за пределами модели."
|
||||
msgstr[2] "%1$d соединений находится за пределами модели."
|
||||
|
||||
msgid "Some connectors are overlapped"
|
||||
msgstr "Имеются пересекающие соединения"
|
||||
|
|
@ -605,7 +606,6 @@ msgstr "Показывать каркас"
|
|||
msgid "%1%"
|
||||
msgstr "%1%"
|
||||
|
||||
# ???
|
||||
msgid "Can't apply when process preview."
|
||||
msgstr "Невозможно применить при предпросмотре нарезки."
|
||||
|
||||
|
|
@ -1247,10 +1247,10 @@ msgstr ""
|
|||
"Блокировка/разблокировка угла поворота при перетаскивании над поверхностью."
|
||||
|
||||
msgid "Mirror vertically"
|
||||
msgstr "Зеркалировать по вертикали"
|
||||
msgstr "Отзеркалить по вертикали"
|
||||
|
||||
msgid "Mirror horizontally"
|
||||
msgstr "Зеркалировать по горизонтали"
|
||||
msgstr "Отзеркалить по горизонтали"
|
||||
|
||||
#. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else).
|
||||
msgid "Change SVG Type"
|
||||
|
|
@ -2446,11 +2446,11 @@ msgstr "Автодозаправка"
|
|||
msgid "AMS not connected"
|
||||
msgstr "АСПП не подключена"
|
||||
|
||||
# ???? кнопка в интерфейсе? Extrude - Выдавить - Load
|
||||
# ??? кнопка в интерфейсе? Extrude - Выдавить - Load
|
||||
msgid "Load"
|
||||
msgstr "Выдавить"
|
||||
|
||||
# ???? кнопка в интерфейсе? retract - Втянуть - Unload (Выгрузить, Вырузка)
|
||||
# ??? кнопка в интерфейсе? retract - Втянуть - Unload (Выгрузить, Вырузка)
|
||||
msgid "Unload"
|
||||
msgstr "Втянуть"
|
||||
|
||||
|
|
@ -2483,6 +2483,7 @@ msgstr "Отменить калибровку"
|
|||
msgid "Idling..."
|
||||
msgstr "Простой..."
|
||||
|
||||
# При выгрузке/загрузке прутка справа отображается процесс
|
||||
msgid "Heat the nozzle"
|
||||
msgstr "Нагрев сопла"
|
||||
|
||||
|
|
@ -3877,6 +3878,7 @@ msgstr "Пауза при неисправности температуры ст
|
|||
msgid "Filament unloading"
|
||||
msgstr "Выгрузка прутка"
|
||||
|
||||
# ???
|
||||
msgid "Skip step pause"
|
||||
msgstr "Пропуск команды паузы"
|
||||
|
||||
|
|
@ -3889,6 +3891,7 @@ msgstr "Калибровка шума двигателя"
|
|||
msgid "Paused due to AMS lost"
|
||||
msgstr "Печать приостановлена из-за потери связи с АСПП"
|
||||
|
||||
# ??? Печать приостановлена из-за низкой скорости вентилятора радиатора головы
|
||||
msgid "Paused due to low speed of the heat break fan"
|
||||
msgstr ""
|
||||
"Печать приостановлена из-за низкой скорости вентилятора обдува радиатора "
|
||||
|
|
@ -4469,7 +4472,7 @@ msgstr "Объём:"
|
|||
msgid "Size:"
|
||||
msgstr "Размер:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -4610,7 +4613,7 @@ msgstr "Авторизация"
|
|||
msgid "Preview"
|
||||
msgstr "Предпросмотр нарезки"
|
||||
|
||||
# ??? Управ. принтерами, Управ. устройствами, менеджер устройств, Диспетчер устройств, Принтеры
|
||||
# ??? Управ. принтерами, менеджер принтеров, Диспетчер принтеров
|
||||
msgid "Multi-device"
|
||||
msgstr "Принтеры"
|
||||
|
||||
|
|
@ -5070,7 +5073,7 @@ msgid "File is missing"
|
|||
msgstr "Файл отсутствует"
|
||||
|
||||
msgid "The project is no longer available."
|
||||
msgstr "Проект больше не доступен."
|
||||
msgstr "Проект больше недоступен."
|
||||
|
||||
msgid "Filament Settings"
|
||||
msgstr "Настройки прутка"
|
||||
|
|
@ -5152,7 +5155,7 @@ msgstr ""
|
|||
msgid "The printer has been logged out and cannot connect."
|
||||
msgstr "Принтер вышел из системы и не может подключиться."
|
||||
|
||||
# ??? Трансляция, видеотрансляция остановлена
|
||||
# ??? видеотрансляция остановлена
|
||||
msgid "Stopped."
|
||||
msgstr "Трансляция с камеры остановлена."
|
||||
|
||||
|
|
@ -5784,8 +5787,8 @@ msgstr "Безопасное извлечение устройства."
|
|||
msgid "%1$d Object has custom supports."
|
||||
msgid_plural "%1$d Objects have custom supports."
|
||||
msgstr[0] "%1$d модель имеет пользовательскую поддержку."
|
||||
msgstr[1] "%1$d модели имеют пользовательские поддержки."
|
||||
msgstr[2] "%1$d моделей имеют пользовательские поддержки."
|
||||
msgstr[1] "%1$d модели имеют пользовательскую поддержку."
|
||||
msgstr[2] "%1$d моделей имеют пользовательскую поддержку."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "%1$d Object has color painting."
|
||||
|
|
@ -5958,7 +5961,7 @@ msgid "View all object's settings"
|
|||
msgstr "Просмотр всех настроек модели"
|
||||
|
||||
msgid "Material settings"
|
||||
msgstr "Параметры материала"
|
||||
msgstr "Настройки материала"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr "Удалить текущую печатную пластину (кроме последней)"
|
||||
|
|
@ -6120,7 +6123,7 @@ msgid ""
|
|||
"nozzle hardness of the printer. Please replace the hardened nozzle or "
|
||||
"filament, otherwise, the nozzle will be attrited or damaged."
|
||||
msgstr ""
|
||||
"Твердость сопла, установленного по умолчанию, не достаточна для печати "
|
||||
"Твердость сопла, установленного по умолчанию, недостаточна для печати "
|
||||
"данной пластиковой нитью. Замените сопло на закалённое или смените "
|
||||
"пластиковую нить. В противном случае сопло будет изношено или повреждено."
|
||||
|
||||
|
|
@ -6510,15 +6513,17 @@ msgid ""
|
|||
"will be kept. You may fix the meshes and try again."
|
||||
msgstr ""
|
||||
"Невозможно выполнить булеву операцию над сетками модели. Будут сохранены "
|
||||
"только положительные части. Вы можете исправить сетки и попробовать снова."
|
||||
"только положительные части. Попробуйте починить сетку модели и попробовать "
|
||||
"снова."
|
||||
|
||||
#, boost-format
|
||||
msgid "Reason: part \"%1%\" is empty."
|
||||
msgstr "Причина: часть \"%1%\" пустая."
|
||||
|
||||
# ??? не формирует объем, не имеет замкнутой геометрии
|
||||
#, boost-format
|
||||
msgid "Reason: part \"%1%\" does not bound a volume."
|
||||
msgstr "Причина: часть \"%1%\" не ограничивает объём."
|
||||
msgstr "Причина: часть \"%1%\" не формирует замкнутый объём."
|
||||
|
||||
#, boost-format
|
||||
msgid "Reason: part \"%1%\" has self intersection."
|
||||
|
|
@ -6532,6 +6537,8 @@ msgid ""
|
|||
"Unable to perform boolean operation on model meshes. Only positive parts "
|
||||
"will be exported."
|
||||
msgstr ""
|
||||
"Невозможно выполнить булеву операцию над сетками модели. Будут "
|
||||
"экспортированы только положительные части."
|
||||
|
||||
msgid ""
|
||||
"Are you sure you want to store original SVGs with their local paths into the "
|
||||
|
|
@ -7091,14 +7098,13 @@ msgstr "Создать принтер"
|
|||
msgid "The selected preset is null!"
|
||||
msgstr "Выбранный профиль пуст!"
|
||||
|
||||
# ?????? В двух местах - в одном месте кнопка в другом Конечный слой
|
||||
# ?????? В двух местах - в одном месте кнопка в другом Конечный слой. В V2.2.0beta2 пока не исправлено
|
||||
msgid "End"
|
||||
msgstr "End"
|
||||
|
||||
msgid "Customize"
|
||||
msgstr "Настройка"
|
||||
|
||||
# ??? layer?
|
||||
msgid "Other layer filament sequence"
|
||||
msgstr "Последовательность прутков на других слоях"
|
||||
|
||||
|
|
@ -7801,8 +7807,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"
|
||||
|
|
@ -7956,7 +7962,7 @@ msgid "Flow ratio and Pressure Advance"
|
|||
msgstr "Коэффициент потока и Pressure Advance"
|
||||
|
||||
msgid "Print chamber temperature"
|
||||
msgstr "Температура в камере"
|
||||
msgstr "Температура в термокамере при печати"
|
||||
|
||||
msgid "Print temperature"
|
||||
msgstr "Температура печати"
|
||||
|
|
@ -8061,7 +8067,7 @@ msgstr ""
|
|||
"расчётное время печати слоя меньше установленного значения."
|
||||
|
||||
msgid "Auxiliary part cooling fan"
|
||||
msgstr "Вспомогательный вентилятор для охлаждения моделей"
|
||||
msgstr "Вспомогательный вентилятор модели"
|
||||
|
||||
msgid "Exhaust fan"
|
||||
msgstr "Вытяжной вентилятор"
|
||||
|
|
@ -8192,10 +8198,6 @@ msgstr "Диаметр сопла"
|
|||
msgid "Wipe tower"
|
||||
msgstr "Черновая башня"
|
||||
|
||||
# ????2 Параметры замены материала в одноэкструдерном ММ принтере
|
||||
# ???? Параметры экструдера в одноэкструдерном мультиматериальном принтере
|
||||
# ???? Параметры для экструдера в одноэкструдерном мультиматериальном принтере
|
||||
# ???? Параметры для одноэкструдерной мультиматериальном печати
|
||||
msgid "Single extruder multi-material parameters"
|
||||
msgstr "Параметры одноэкструдерного мультиматериального принтера"
|
||||
|
||||
|
|
@ -8772,7 +8774,9 @@ msgid ""
|
|||
"objects, it just orientates the selected ones.Otherwise, it will orientates "
|
||||
"all objects in the current disk."
|
||||
msgstr ""
|
||||
"Автоориентация моделей (ориентация выбранного, иначе всего на текущем столе)"
|
||||
"Автоориентация выбранных или всех моделей. Если выбраны отдельные модели, "
|
||||
"ориентация будет применена только к ним; в противном случае ко всем моделям "
|
||||
"на текущем столе."
|
||||
|
||||
msgid "Shift+Tab"
|
||||
msgstr "Shift+Tab"
|
||||
|
|
@ -8940,10 +8944,10 @@ msgid "Select the object/part and press space to change the name"
|
|||
msgstr "Выберите модель/часть и нажмите пробел, чтобы изменить имя"
|
||||
|
||||
msgid "Mouse click"
|
||||
msgstr "Щелчок кнопкой мыши"
|
||||
msgstr "Левая кнопка мыши"
|
||||
|
||||
msgid "Select the object/part and mouse click to change the name"
|
||||
msgstr "Выберите модель/часть и нажмите клавишу мыши, чтобы изменить имя"
|
||||
msgstr "Выберите модель/часть и нажмите левую клавишу мыши, чтобы изменить имя"
|
||||
|
||||
msgid "Objects List"
|
||||
msgstr "Список моделей"
|
||||
|
|
@ -10133,7 +10137,6 @@ msgstr ""
|
|||
msgid "Cooling overhang threshold"
|
||||
msgstr "Порог включения обдува на нависаниях"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid ""
|
||||
"Force cooling fan to be specific speed when overhang degree of printed part "
|
||||
"exceeds this value. Expressed as percentage which indicates how much width "
|
||||
|
|
@ -10394,6 +10397,7 @@ msgstr "Порог для реверса"
|
|||
msgid "Overhang reversal threshold"
|
||||
msgstr "Порог разворота на свесах"
|
||||
|
||||
# ?????
|
||||
#, no-c-format, no-boost-format
|
||||
msgid ""
|
||||
"Number of mm the overhang need to be for the reversal to be considered "
|
||||
|
|
@ -10402,6 +10406,14 @@ msgid ""
|
|||
"When Detect overhang wall is not enabled, this option is ignored and "
|
||||
"reversal happens on every even layers regardless."
|
||||
msgstr ""
|
||||
"Величина свеса периметра при которой она считается достаточной для активации "
|
||||
"функции реверса печати нависаний. Может быть в мм или в % от ширины "
|
||||
"периметра.\n"
|
||||
"При нуле разворот будет на каждом чётном слое, независимо от величина "
|
||||
"свеса.\n"
|
||||
"Если «Определять нависающие периметры» не включено, этот параметр "
|
||||
"игнорируется, и разворот происходит на каждом чётном слое без "
|
||||
"исключений."
|
||||
|
||||
msgid "Classic mode"
|
||||
msgstr "Классический режим"
|
||||
|
|
@ -10928,7 +10940,7 @@ msgid ""
|
|||
"\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Последовательность печати внутреннего/внешнего периметров.\n"
|
||||
"Последовательность печати внутреннего и внешнего периметров.\n"
|
||||
"\n"
|
||||
"Используйте порядок печати периметров «Внутренний/Внешний» для получения "
|
||||
"наилучших нависаний. Однако этот вариант приводит к небольшому снижению "
|
||||
|
|
@ -11085,7 +11097,7 @@ msgstr ""
|
|||
"максимальные точки. OrcaSlicer следит за тем, чтобы значения "
|
||||
"adaptive_bed_mesh_min/adaptive_bed_mesh_max не превышают эти минимальные/"
|
||||
"максимальные значения. Эту информацию можно получить у производителя "
|
||||
"принтера. По умолчанию установлено значение (-99999, -99999), которое "
|
||||
"принтера. По умолчанию установлено значение (99999, 99999), которое "
|
||||
"означает отсутствие ограничений, что позволяет проводить зондирование по "
|
||||
"всему столу."
|
||||
|
||||
|
|
@ -11117,7 +11129,6 @@ msgstr ""
|
|||
"Используется только в качестве визуальной помощи в пользовательском "
|
||||
"интерфейсе"
|
||||
|
||||
# ??? Смещение экструдера по осям X/Y
|
||||
msgid "Extruder offset"
|
||||
msgstr "Смещение координат экструдера"
|
||||
|
||||
|
|
@ -11834,8 +11845,8 @@ msgstr ""
|
|||
"две ближайшие линии заполнения с коротким отрезком периметра. Если не "
|
||||
"найдено такого отрезка периметра короче этого параметра, линия заполнения "
|
||||
"соединяется с отрезком периметра только с одной стороны, а длина отрезка "
|
||||
"периметра ограничена значением «Длина привязок разреженного "
|
||||
"заполнения» (infill_anchor), но не больше этого параметра.\n"
|
||||
"периметра ограничена значением «Длина привязок разреженного заполнения» "
|
||||
"(infill_anchor), но не больше этого параметра.\n"
|
||||
"Если установить 0, то будет использоваться старый алгоритм для соединения "
|
||||
"заполнения, который даёт такой же результат, как и при значениях 1000 и 0."
|
||||
|
||||
|
|
@ -11900,7 +11911,7 @@ msgstr "Вкл. ограничение ускорения зигзагов"
|
|||
|
||||
msgid "Klipper's max_accel_to_decel will be adjusted automatically"
|
||||
msgstr ""
|
||||
"Значение ограничение ускорения зигзагов (max_accel_to_decel) в Klipper будет "
|
||||
"Значение Klipper-а ограничение ускорения зигзагов (max_accel_to_decel) будет "
|
||||
"скорректировано автоматически.\n"
|
||||
"\n"
|
||||
"Параметр предназначен для ограничения влияния экстремальных переходов от "
|
||||
|
|
@ -11914,8 +11925,8 @@ msgstr "Ограничение ускорение зигзагов"
|
|||
msgid ""
|
||||
"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration"
|
||||
msgstr ""
|
||||
"Значение ограничение ускорения зигзагов (max_accel_to_decel) в Klipper будет "
|
||||
"скорректировано на заданный процент ускорения."
|
||||
"Значение Klipper-а ограничение ускорения зигзагов (max_accel_to_decel) будет "
|
||||
"скорректировано на данный процент ускорения."
|
||||
|
||||
msgid "Jerk of outer walls"
|
||||
msgstr "Рывок для внешних периметров."
|
||||
|
|
@ -11990,17 +12001,17 @@ msgstr "Полная скорость вентилятора на слое"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Скорость вентилятора будет нарастать линейно от нуля на слое "
|
||||
"\"close_fan_the_first_x_layers\" до максимума на слое \"full_fan_speed_layer"
|
||||
"\". Значение \"full_fan_speed_layer\" будет игнорироваться, если оно меньше "
|
||||
"значения \"close_fan_the_first_x_layers\", в этом случае вентилятор будет "
|
||||
"работать на максимально допустимой скорости на слое "
|
||||
"\"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" до максимума на слое "
|
||||
"\"full_fan_speed_layer\". Значение \"full_fan_speed_layer\" будет "
|
||||
"игнорироваться, если оно меньше значения \"close_fan_the_first_x_layers\", в "
|
||||
"этом случае вентилятор будет работать на максимально допустимой скорости на "
|
||||
"слое \"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
msgstr "слой"
|
||||
|
|
@ -12088,7 +12099,7 @@ msgid ""
|
|||
"printed more slowly"
|
||||
msgstr ""
|
||||
"Скорость заполнения пробелов. Пробелы обычно имеют неравномерную ширину "
|
||||
"линии и должен печататься медленнее."
|
||||
"линии и должны печататься медленнее."
|
||||
|
||||
msgid "Precise Z height"
|
||||
msgstr "Точная высота по Z"
|
||||
|
|
@ -12311,7 +12322,7 @@ msgstr "Включите, если хотите использовать нес
|
|||
|
||||
# ?????? Название моделей
|
||||
msgid "Label objects"
|
||||
msgstr "Помечать объекты"
|
||||
msgstr "Помечать модели"
|
||||
|
||||
# ??????
|
||||
msgid ""
|
||||
|
|
@ -12321,7 +12332,8 @@ msgid ""
|
|||
"setup and Wipe into Object / Wipe into Infill."
|
||||
msgstr ""
|
||||
"Отвечает за присвоение уникальных меток или названий каждой модели или "
|
||||
"элементу, что позволяет отменять печать любого из них по вашему выбору."
|
||||
"элементу, что позволяет отменять печать любого из них по вашему выбору.\n"
|
||||
"\n"
|
||||
"Включите эту опцию, чтобы добавить комментарии в G-код с указанием того, к "
|
||||
"какой модели он принадлежит, что полезно для плагина Octoprint CancelObject. "
|
||||
"Эта настройка не совместима с настройкой «Одноэкструдерный "
|
||||
|
|
@ -12329,11 +12341,11 @@ msgstr ""
|
|||
"модели»."
|
||||
|
||||
msgid "Exclude objects"
|
||||
msgstr "Исключить модели"
|
||||
msgstr "Исключение моделей"
|
||||
|
||||
msgid "Enable this option to add EXCLUDE OBJECT command in g-code"
|
||||
msgstr ""
|
||||
"Включите эту опцию, чтобы добавить команду EXCLUDE OBJECT (исключения "
|
||||
"Включите эту опцию, чтобы добавить команду EXCLUDE OBJECT (исключение "
|
||||
"моделей) в G-код для принтера с прошивкой Klipper."
|
||||
|
||||
msgid "Verbose G-code"
|
||||
|
|
@ -13151,7 +13163,7 @@ msgstr "Расширение первого слоя"
|
|||
msgid "Expand the first raft or support layer to improve bed plate adhesion"
|
||||
msgstr ""
|
||||
"Расширение первого слоя подложки или поддержки в плоскости XY для улучшения "
|
||||
"адгезии с материалами склонными к отлипанию и закручиванию."
|
||||
"адгезии при печати материалами склонными к отлипанию и закручиванию."
|
||||
|
||||
msgid "Raft layers"
|
||||
msgstr "Слоёв в подложке"
|
||||
|
|
@ -13202,6 +13214,14 @@ msgstr "Откат при смене слоя"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Эта опция включает принудительный откат при переходе со слоя на слой."
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Длина отката"
|
||||
|
||||
|
|
@ -13542,7 +13562,7 @@ msgid ""
|
|||
"scarf."
|
||||
msgstr ""
|
||||
"Длина клиновидного шва. Установка этого параметра на ноль фактически "
|
||||
"отключает шарф."
|
||||
"отключает клиновидный шов."
|
||||
|
||||
msgid "Scarf steps"
|
||||
msgstr "Шагов клиновидного шва"
|
||||
|
|
@ -13816,9 +13836,9 @@ msgid ""
|
|||
"zero value."
|
||||
msgstr ""
|
||||
"Разница температур, которая будет применяться, когда экструдер не активен. "
|
||||
"Значение не используется, если для параметра «Температура "
|
||||
"ожидания» ('idle_temperature') в настройках пластиковой нити установлено "
|
||||
"ненулевое значение."
|
||||
"Значение не используется, если для параметра «Температура ожидания» "
|
||||
"('idle_temperature') в настройках пластиковой нити установлено ненулевое "
|
||||
"значение."
|
||||
|
||||
msgid "Preheat time"
|
||||
msgstr "Время преднагрева"
|
||||
|
|
@ -14375,8 +14395,8 @@ msgstr "Вкл. контроль температуры"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -14832,9 +14852,12 @@ msgid ""
|
|||
msgstr ""
|
||||
"Движок классического генератора периметров создаёт их с постоянной шириной "
|
||||
"экструзии, а для очень тонких участков используется параметр «Заполнять "
|
||||
"щели». Движок Arachne же создаёт периметры с переменной шириной экструзии, "
|
||||
"что позволяет печатать без щелей, лучше пропечатывать мелкие элементы (при "
|
||||
"условии, что у вас правильно откалиброван LA/PA)."
|
||||
"щели».\n"
|
||||
"\n"
|
||||
"Движок Arachne же создаёт периметры с переменной шириной экструзии, что "
|
||||
"позволяет печатать без щелей, лучше пропечатывать мелкие элементы (при "
|
||||
"условии, что у вас правильно откалиброван LA/PA). Этот параметр также влияет "
|
||||
"на концентрическое заполнение."
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Классический"
|
||||
|
|
@ -16288,8 +16311,9 @@ msgstr "Пересечение"
|
|||
msgid "Source Volume"
|
||||
msgstr "Исходный объём"
|
||||
|
||||
# ???
|
||||
msgid "Tool Volume"
|
||||
msgstr ""
|
||||
msgstr "Объём инструмента"
|
||||
|
||||
msgid "Subtract from"
|
||||
msgstr "Главный"
|
||||
|
|
@ -16455,8 +16479,8 @@ msgstr ""
|
|||
"Хотите перезаписать его?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Мы переименуем профиль в \"Производитель Тип Серия @выбранный принтер\".\n"
|
||||
|
|
@ -17439,7 +17463,7 @@ msgid ""
|
|||
"Auxiliary fan\n"
|
||||
"Did you know that OrcaSlicer supports Auxiliary part cooling fan?"
|
||||
msgstr ""
|
||||
"Вспомогательный вентилятор для охлаждения моделей\n"
|
||||
"Вспомогательный вентилятор модели\n"
|
||||
"Знаете ли вы, что OrcaSlicer поддерживает управление вспомогательным "
|
||||
"вентилятором для охлаждения моделей?"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -4310,7 +4310,7 @@ msgstr "Volym:"
|
|||
msgid "Size:"
|
||||
msgstr "Storlek:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7143,8 +7143,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"Timelapse is not supported because Print sequence is set to \"By object\"."
|
||||
msgstr ""
|
||||
"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per objekt"
|
||||
"\"."
|
||||
"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per "
|
||||
"objekt\"."
|
||||
|
||||
msgid "Errors"
|
||||
msgstr "Fel"
|
||||
|
|
@ -7516,8 +7516,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"När du spelar in timelapse utan verktygshuvud rekommenderas att du lägger "
|
||||
"till ett \"Timelapse Wipe Tower\".\n"
|
||||
|
|
@ -10002,9 +10002,9 @@ msgid ""
|
|||
"quality for needle and small details"
|
||||
msgstr ""
|
||||
"Aktivera detta val för att sänka utskifts hastigheten för att göra den sista "
|
||||
"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets tröskel"
|
||||
"\", detta så att lager kan kylas under en längre tid. Detta kan förbättra "
|
||||
"kylnings kvaliteten för små detaljer"
|
||||
"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets "
|
||||
"tröskel\", detta så att lager kan kylas under en längre tid. Detta kan "
|
||||
"förbättra kylnings kvaliteten för små detaljer"
|
||||
|
||||
msgid "Normal printing"
|
||||
msgstr "Normal utskrift"
|
||||
|
|
@ -11096,10 +11096,10 @@ msgstr "Full fläkthastighet vid lager"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "layer"
|
||||
|
|
@ -12085,6 +12085,14 @@ msgstr "Retraktera vid lager byte"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Tvinga retraktion vid lager byte"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Retraktions längd"
|
||||
|
||||
|
|
@ -13082,8 +13090,8 @@ msgstr ""
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -14938,8 +14946,8 @@ msgstr ""
|
|||
"Vill du skriva om det?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: 2024-10-01 22:31+0300\n"
|
||||
"Last-Translator: GlauTech\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -4376,7 +4376,7 @@ msgstr "Hacim:"
|
|||
msgid "Size:"
|
||||
msgstr "Boyut:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7649,8 +7649,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Araç başlığı olmadan timelapse kaydederken, bir \"Timelapse Wipe Tower\" "
|
||||
"eklenmesi önerilir.\n"
|
||||
|
|
@ -9267,8 +9267,8 @@ msgid ""
|
|||
"Please select \"By object\" print sequence to print multiple objects in "
|
||||
"spiral vase mode."
|
||||
msgstr ""
|
||||
"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye göre"
|
||||
"\" yazdırma sırasını seçin."
|
||||
"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye "
|
||||
"göre\" yazdırma sırasını seçin."
|
||||
|
||||
msgid ""
|
||||
"The spiral vase mode does not work when an object contains more than one "
|
||||
|
|
@ -11720,16 +11720,17 @@ msgstr "Maksimum fan hızı"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan "
|
||||
"\"ful_fan_speed_layer\" katmanında maksimuma doğrusal olarak artırılacaktır. "
|
||||
"\"full_fan_speed_layer\", \"close_fan_the_first_x_layers\" değerinden "
|
||||
"düşükse göz ardı edilecektir; bu durumda fan, \"close_fan_the_first_x_layers"
|
||||
"\" + 1 katmanında izin verilen maksimum hızda çalışacaktır."
|
||||
"düşükse göz ardı edilecektir; bu durumda fan, "
|
||||
"\"close_fan_the_first_x_layers\" + 1 katmanında izin verilen maksimum hızda "
|
||||
"çalışacaktır."
|
||||
|
||||
msgid "layer"
|
||||
msgstr "katman"
|
||||
|
|
@ -12884,6 +12885,14 @@ msgstr "Katman değişiminde geri çek"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "Katmanı değiştirdiğinde geri çekilmeyi zorla"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "Geri Çekme Uzunluğu"
|
||||
|
||||
|
|
@ -14012,8 +14021,8 @@ msgstr "Sıcaklık kontrolünü etkinleştirin"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -16049,8 +16058,8 @@ msgstr ""
|
|||
"Yeniden yazmak ister misin?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Ön ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri "
|
||||
|
|
@ -18389,12 +18398,12 @@ msgstr ""
|
|||
#~ msgstr "Seyrek katman yok (DENEYSEL)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "To add preset for more prinetrs, Please go to printer selection"
|
||||
#~ msgstr ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "To add preset for more prinetrs, Please go to printer selection"
|
||||
|
||||
#~ msgid "The Config can not be loaded."
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Slic3rPE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: 2024-07-28 07:12+0000\n"
|
||||
"Last-Translator: Handle <mail@bysb.net>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -4229,7 +4229,7 @@ msgstr "体积:"
|
|||
msgid "Size:"
|
||||
msgstr "尺寸:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7315,8 +7315,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"在录制无工具头延时摄影视频时,建议添加“延时摄影擦料塔”\n"
|
||||
"右键单击打印板的空白位置,选择“添加标准模型”->“延时摄影擦料塔”。"
|
||||
|
|
@ -9592,7 +9592,6 @@ msgstr ""
|
|||
"值0表示在每个偶数层上都启用反转。\n"
|
||||
"当未启用检测悬垂时,此选项将被忽略,反转将在每个偶数层上发生。"
|
||||
|
||||
|
||||
msgid "Classic mode"
|
||||
msgstr "经典模式"
|
||||
|
||||
|
|
@ -10878,10 +10877,10 @@ msgstr "满速风扇在"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"风扇速度将从“禁用第一层”的零线性上升到“全风扇速度层”的最大。如果低于“禁用风扇"
|
||||
"第一层”,则“全风扇速度第一层”将被忽略,在这种情况下,风扇将在“禁用风扇第一"
|
||||
|
|
@ -11883,6 +11882,14 @@ msgstr "换层时回抽"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "强制在换层时回抽。"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "回抽长度"
|
||||
|
||||
|
|
@ -12874,8 +12881,8 @@ msgstr "激活温度控制"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -14713,8 +14720,8 @@ msgstr ""
|
|||
"你想重写预设吗"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"我们将会把预设重命名为“供应商类型名 @ 您选择的打印机”\n"
|
||||
|
|
@ -16440,8 +16447,8 @@ msgstr ""
|
|||
#~ msgstr "无稀疏层(实验)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
#~ "\". \n"
|
||||
#~ "We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
#~ "selected\". \n"
|
||||
#~ "To add preset for more prinetrs, Please go to printer selection"
|
||||
#~ msgstr ""
|
||||
#~ "我们会将预设重命名为“供应商 类型 系列 @您选择的打印机”。\n"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
|
||||
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
|
||||
"PO-Revision-Date: 2023-11-06 14:37+0800\n"
|
||||
"Last-Translator: ablegods <ablegods@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -4362,7 +4362,7 @@ msgstr "體積:"
|
|||
msgid "Size:"
|
||||
msgstr "尺寸:"
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
#, fuzzy, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -7575,8 +7575,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"在錄製無工具頭縮時錄影影片時,建議增加“縮時錄影擦拭塔”\n"
|
||||
"右鍵單擊列印板的空白位置,選擇“新增標準模型”->“縮時錄影擦拭塔”。"
|
||||
|
|
@ -11216,10 +11216,10 @@ msgstr "滿速風扇在"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"風扇速度將從“禁用第一層”的零線性上升到“全風扇速度層”的最大。如果低於“禁用風扇"
|
||||
"第一層”,則“全風扇速度第一層”將被忽略,在這種情況下,風扇將在“禁用風扇第一"
|
||||
|
|
@ -12237,6 +12237,14 @@ msgstr "換層時回抽"
|
|||
msgid "Force a retraction when changes layer"
|
||||
msgstr "強制在換層時回抽。"
|
||||
|
||||
msgid "Retract on top layer"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force a retraction on top layer. Disabling could prevent clog on very slow "
|
||||
"patterns with small movements, like Hilbert curve"
|
||||
msgstr ""
|
||||
|
||||
msgid "Retraction Length"
|
||||
msgstr "回抽長度"
|
||||
|
||||
|
|
@ -13213,8 +13221,8 @@ msgstr "啟動溫度控制"
|
|||
|
||||
msgid ""
|
||||
"Enable this option for automated chamber temperature control. This option "
|
||||
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||
"\"\n"
|
||||
"activates the emitting of an M191 command before the "
|
||||
"\"machine_start_gcode\"\n"
|
||||
" which sets the chamber temperature and waits until it is reached. In "
|
||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||
"chamber heater, if present. \n"
|
||||
|
|
@ -15056,8 +15064,8 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
22
resources/images/bbl_bed_st_bottom.svg
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
34
resources/images/bbl_bed_st_left.svg
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<svg width="31" height="507" viewBox="0 0 31 507" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1_421)">
|
||||
<path d="M23.9769 127.531H6.49071C4.80136 127.531 3.40839 128.894 3.40839 130.554V145.491H6.87599V133.251C6.87599 132.747 7.26128 132.392 7.73549 132.392H22.7025C23.1767 132.392 23.562 132.777 23.562 133.251V145.491H27V130.554C27 128.865 25.6366 127.531 23.9769 127.531Z" fill="#B3B3B3"/>
|
||||
<path d="M21.4872 163.6V151.3C21.4872 149.611 20.1535 148.307 18.4938 148.307H6.46091C4.77156 148.307 3.43787 149.641 3.43787 151.3V163.6C3.43787 165.23 4.8012 166.593 6.46091 166.593H18.4938C20.1832 166.593 21.4872 165.23 21.4872 163.6ZM6.34236 161.881V152.99H18.5827V161.881H6.34236Z" fill="#B3B3B3"/>
|
||||
<path d="M21.4872 184.317V172.017C21.4872 170.328 20.1535 169.024 18.4938 169.024H6.46091C4.77156 169.024 3.43787 170.357 3.43787 172.017V184.317C3.43787 185.947 4.8012 187.31 6.46091 187.31H18.4938C20.1832 187.31 21.4872 185.947 21.4872 184.317ZM6.34236 182.627V173.736H18.5827V182.627H6.34236Z" fill="#B3B3B3"/>
|
||||
<path d="M27 194.631V189.77H6.54998C4.80136 189.77 3.40839 191.163 3.40839 192.882V199.521H6.43143V194.631H27Z" fill="#B3B3B3"/>
|
||||
<path d="M27 231.381V212.087H3.40839V216.948H11.0549V231.411C11.0549 233.1 12.4182 234.464 14.078 234.464H23.9769C25.6663 234.464 27 233.1 27 231.411V231.381ZM15.2931 229.574C14.7893 229.574 14.4336 229.188 14.4336 228.714V216.948H23.6213V228.684C23.6213 229.159 23.236 229.603 22.7618 229.603H15.2931V229.574Z" fill="#B3B3B3"/>
|
||||
<path d="M27 242.081V237.22H6.54998C4.80136 237.22 3.40839 238.613 3.40839 240.332V246.971H6.43143V242.081H27Z" fill="#B3B3B3"/>
|
||||
<path d="M21.4874 263.657V250.557H18.494V263.094H14.5818V252.157C14.5818 250.438 13.1888 249.045 11.4698 249.045H6.52034C4.80136 249.045 3.40839 250.438 3.40839 252.157V267.954H18.0494C19.9462 267.954 21.4577 266.028 21.4577 263.657H21.4874ZM6.40179 263.094V253.906H11.5291V263.094H6.40179Z" fill="#B3B3B3"/>
|
||||
<path d="M27 279.394V274.534H21.4577V270.74H18.4643V274.534H6.52034C4.80136 274.534 3.40839 275.927 3.40839 277.646V283.158H6.43143V280.58C6.43143 279.958 6.96491 279.394 7.5873 279.394H18.4347V283.158H21.4281V279.394H27Z" fill="#B3B3B3"/>
|
||||
<path d="M21.3688 301.297V288.701C21.3688 286.982 19.9758 285.618 18.2568 285.618H6.49065C4.77166 285.618 3.37869 286.982 3.37869 288.701V304.112H6.34246V290.449H10.3435V304.409H18.2272C19.9462 304.409 21.3391 303.016 21.3391 301.297H21.3688ZM13.3962 299.548V290.42H18.4643V299.548H13.3962Z" fill="#B3B3B3"/>
|
||||
<path d="M16.5971 20.8057H23.4731C25.1624 20.8057 26.4665 19.4423 26.4665 17.8122V0H3.2009V19.057C3.2009 20.6871 4.56423 22.0504 6.22394 22.0504H14.0779C14.9967 22.0504 15.8562 21.6651 16.4193 20.9242L16.5675 20.776L16.5971 20.8057ZM23.1174 4.83094V15.1745C23.1174 15.6191 22.7321 16.034 22.2579 16.034H17.3973C16.9231 16.034 16.5379 15.6191 16.5379 15.1745V4.83094H23.1174ZM7.46872 17.2788C6.96488 17.2788 6.60923 16.8935 6.60923 16.4193V4.83094H13.1592V16.4193C13.1592 16.9231 12.7739 17.2788 12.3293 17.2788H7.46872Z" fill="#B3B3B3"/>
|
||||
<path d="M21.3096 39.4478V26.3479H18.3162V38.8846H14.404V27.9483C14.404 26.2294 13.011 24.8364 11.292 24.8364H6.34255C4.62356 24.8364 3.23059 26.2294 3.23059 27.9483V43.7452H17.8716C19.7684 43.7452 21.2799 41.8188 21.2799 39.4478H21.3096ZM6.224 38.8846V29.697H11.3513V38.8846H6.224Z" fill="#B3B3B3"/>
|
||||
<path d="M21.3095 69.0854V46.5311H3.23053V51.4214H18.2568V56.934H3.2009V61.7946H18.2865V67.3072H3.2009V72.1974H18.1976C19.9166 72.1974 21.3095 70.8044 21.3095 69.0854Z" fill="#B3B3B3"/>
|
||||
<path d="M21.3096 90.4246V79.5476H26.8222V74.6573H3.23059V90.4246C3.23059 92.1732 4.62356 93.5662 6.34255 93.5662H18.1976C19.9166 93.5662 21.3096 92.1732 21.3096 90.4246ZM6.25363 88.676V79.5179H18.2865V88.676H6.25363Z" fill="#B3B3B3"/>
|
||||
<path d="M6.10545 109.63V100.738H21.3096V96.0261H6.25363C4.56429 96.0261 3.23059 97.3894 3.23059 99.0491V114.313H21.3096V109.63H6.10545Z" fill="#B3B3B3"/>
|
||||
<path d="M26.4665 322.162L14.9078 313.745L3.34906 322.162V325.066L14.9078 316.619L26.4665 325.066V322.162Z" fill="#B3B3B3"/>
|
||||
<path d="M26.4665 498.654V495.779L14.9078 504.196L3.34906 495.779V498.654L14.9078 507.071L26.4665 498.654Z" fill="#B3B3B3"/>
|
||||
<path d="M16.1821 351.651V340.626C16.1821 340.241 16.5081 339.915 16.8934 339.915H21.2502C21.6355 339.915 21.9911 340.241 21.9911 340.626V353.489H24.7474V338.433C24.7474 337.04 23.6508 335.914 22.2875 335.914H15.9154C14.5817 335.914 13.4555 337.01 13.4555 338.373V349.458C13.4555 349.843 13.0998 350.229 12.7145 350.229H9.158C8.74308 350.229 8.32815 349.873 8.32815 349.488V336.566H5.54221V351.681C5.54221 353.044 6.66844 354.141 8.03177 354.141H13.6926C15.0559 354.141 16.1821 353.014 16.1821 351.681V351.651Z" fill="#B3B3B3"/>
|
||||
<path d="M7.85389 367.478V360.216H20.2424V356.363H7.97244C6.60911 356.363 5.51251 357.46 5.51251 358.823V371.242H20.2424V367.418H7.88353V367.478H7.85389Z" fill="#B3B3B3"/>
|
||||
<path d="M20.2425 386.149V373.287H-3.05176e-05V377.228H5.51258V386.12C5.51258 387.542 6.63881 388.669 8.03178 388.669H17.6937C19.0866 388.669 20.2129 387.542 20.2129 386.12L20.2425 386.149ZM7.94287 384.727V377.258H17.7529V384.727H7.94287Z" fill="#B3B3B3"/>
|
||||
<path d="M20.1536 403.458V393.203C20.1536 391.81 19.0274 390.714 17.6344 390.714H8.06141C6.66844 390.714 5.54221 391.81 5.54221 393.203V405.74H7.9725V394.626H11.2326V406.007H17.664C19.057 406.007 20.1832 404.88 20.1832 403.487L20.1536 403.458ZM13.6333 402.035V394.626H17.7529V402.035H13.6333Z" fill="#B3B3B3"/>
|
||||
<path d="M18.4642 412.557L17.5454 411.934H20.2128V407.992H5.51251V411.934H16.3006V418.277H20.2424V415.906C20.2424 414.572 19.5608 413.297 18.4642 412.557Z" fill="#B3B3B3"/>
|
||||
<path d="M21.9614 420.262V426.783H5.51251V430.784H21.9614V437.274H24.7474V420.262H21.9614Z" fill="#B3B3B3"/>
|
||||
<path d="M20.2424 450.878V440.209H17.7825V450.434H14.5816V441.542C14.5816 440.149 13.4554 439.023 12.0624 439.023H8.03172C6.63874 439.023 5.51251 440.149 5.51251 441.542V454.405H17.4565C18.9977 454.405 20.2424 452.834 20.2424 450.908V450.878ZM7.9428 450.434V442.965H12.1217V450.434H7.9428Z" fill="#B3B3B3"/>
|
||||
<path d="M17.7233 456.657H8.06141C6.66844 456.657 5.54221 457.784 5.54221 459.177V471.625H8.00213V460.599H17.8418V471.625H20.3018V459.177C20.3018 457.784 19.1755 456.657 17.7826 456.657H17.7233Z" fill="#B3B3B3"/>
|
||||
<path d="M14.3742 485.702L20.2424 488.251V484.458L15.204 482.235V477.582H24.7474V473.64H5.51251V477.582H13.0108V482.413L5.54215 484.991V488.666L14.2556 485.643L14.3742 485.702Z" fill="#B3B3B3"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1_421">
|
||||
<rect width="31" height="507" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.4 KiB |
7
resources/images/toolbar_assembly.svg
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="7.80615" y="25.5195" width="29" height="9.19336" stroke="#009688"/>
|
||||
<rect x="19.1368" y="5.45404" width="15" height="6.00417" transform="rotate(25.5934 19.1368 5.45404)" stroke="#2b3436"/>
|
||||
<rect x="14.8062" y="18.5156" width="15" height="6.00417" stroke="#009688" stroke-dasharray="1 1"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.4877 17.5905C13.5899 17.4883 13.5432 17.3137 13.4035 17.2762L4.93754 15.0078C4.79787 14.9704 4.67006 15.0982 4.70749 15.2378L6.97593 23.7038C7.01336 23.8435 7.18794 23.8902 7.29019 23.788L13.4877 17.5905ZM7.54629 22.2037L11.9034 17.8466L5.95148 16.2518L7.54629 22.2037Z" fill="#2b3436"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.22678 16.0611C9.70526 15.1933 10.3436 14.4213 11.1102 13.787C11.8768 13.1526 12.7546 12.6699 13.6966 12.3623C13.7768 12.3361 13.8575 12.3112 13.9386 12.2875C13.9519 12.2837 13.9648 12.2792 13.9775 12.2743C14.1795 12.1952 14.3022 11.9815 14.252 11.767C14.1986 11.539 13.9701 11.3964 13.745 11.4608C13.7304 11.4649 13.7158 11.4692 13.7013 11.4734C13.609 11.5003 13.5172 11.5287 13.426 11.5586C12.3857 11.8993 11.4164 12.4329 10.5696 13.1336C9.72279 13.8344 9.01727 14.6868 8.4879 15.6449C8.44147 15.7289 8.3964 15.8138 8.35271 15.8994C8.34582 15.9129 8.33897 15.9264 8.33215 15.94C8.22679 16.1491 8.3241 16.4002 8.53808 16.4953C8.73944 16.5848 8.97228 16.5042 9.08775 16.3206C9.09499 16.3091 9.10177 16.2972 9.10806 16.2848C9.14646 16.2096 9.18604 16.135 9.22678 16.0611Z" fill="#2b3436"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
7
resources/images/toolbar_assembly_dark.svg
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="7.80615" y="25.5195" width="29" height="9.19336" stroke="#009688"/>
|
||||
<rect x="19.1368" y="5.45404" width="15" height="6.00417" transform="rotate(25.5934 19.1368 5.45404)" stroke="#b6b6b6"/>
|
||||
<rect x="14.8062" y="18.5156" width="15" height="6.00417" stroke="#009688" stroke-dasharray="1 1"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.4877 17.5905C13.5899 17.4883 13.5432 17.3137 13.4035 17.2762L4.93754 15.0078C4.79787 14.9704 4.67006 15.0982 4.70749 15.2378L6.97593 23.7038C7.01336 23.8435 7.18794 23.8902 7.29019 23.788L13.4877 17.5905ZM7.54629 22.2037L11.9034 17.8466L5.95148 16.2518L7.54629 22.2037Z" fill="#009688"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.22678 16.0611C9.70526 15.1933 10.3436 14.4213 11.1102 13.787C11.8768 13.1526 12.7546 12.6699 13.6966 12.3623C13.7768 12.3361 13.8575 12.3112 13.9386 12.2875C13.9519 12.2837 13.9648 12.2792 13.9775 12.2743C14.1795 12.1952 14.3022 11.9815 14.252 11.767C14.1986 11.539 13.9701 11.3964 13.745 11.4608C13.7304 11.4649 13.7158 11.4692 13.7013 11.4734C13.609 11.5003 13.5172 11.5287 13.426 11.5586C12.3857 11.8993 11.4164 12.4329 10.5696 13.1336C9.72279 13.8344 9.01727 14.6868 8.4879 15.6449C8.44147 15.7289 8.3964 15.8138 8.35271 15.8994C8.34582 15.9129 8.33897 15.9264 8.33215 15.94C8.22679 16.1491 8.3241 16.4002 8.53808 16.4953C8.73944 16.5848 8.97228 16.5042 9.08775 16.3206C9.09499 16.3091 9.10177 16.2972 9.10806 16.2848C9.14646 16.2096 9.18604 16.135 9.22678 16.0611Z" fill="#b6b6b6"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
|
|
@ -15,7 +15,6 @@
|
|||
"printer_variant": "0.2",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
"printer_variant": "0.25",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@
|
|||
"printer_variant": "0.4",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
"printer_variant": "0.6",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
"printer_variant": "0.2",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
"printer_variant": "0.25",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@
|
|||
"printer_variant": "0.4",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
"printer_variant": "0.6",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
"printer_variant": "0.2",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
"printer_variant": "0.25",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@
|
|||
"printer_variant": "0.4",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
"printer_variant": "0.6",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -16,46 +16,46 @@
|
|||
],
|
||||
"silent_mode": "0",
|
||||
"machine_max_acceleration_e": [
|
||||
"10000"
|
||||
"4000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"10000"
|
||||
"6000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"10000"
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"10000"
|
||||
"6000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"10000"
|
||||
"6000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"10000"
|
||||
"300"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"10000"
|
||||
"6000"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"100"
|
||||
"50"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500"
|
||||
"600"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500"
|
||||
"600"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"50"
|
||||
"30"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"3"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"15"
|
||||
"12"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"15"
|
||||
"12"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.3"
|
||||
|
|
@ -70,11 +70,11 @@
|
|||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.05"
|
||||
],
|
||||
"printer_settings_id": "",
|
||||
"retraction_minimum_travel": [
|
||||
"1.5"
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
|
|
@ -83,10 +83,10 @@
|
|||
"1"
|
||||
],
|
||||
"retraction_length": [
|
||||
"3"
|
||||
"0.5"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"4"
|
||||
"2"
|
||||
],
|
||||
"z_hop": [
|
||||
"0"
|
||||
|
|
@ -106,4 +106,4 @@
|
|||
"wipe": [
|
||||
"1"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -22,5 +22,12 @@
|
|||
"travel_speed": "500",
|
||||
"travel_acceleration": "6000",
|
||||
"top_surface_speed": "360",
|
||||
"top_surface_acceleration": "2500"
|
||||
"top_surface_acceleration": "2500",
|
||||
"default_jerk": "9",
|
||||
"outer_wall_jerk": "9",
|
||||
"inner_wall_jerk": "9",
|
||||
"infill_jerk": "9",
|
||||
"top_surface_jerk": "9",
|
||||
"initial_layer_jerk": "9",
|
||||
"travel_jerk": "10"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -51,13 +51,13 @@
|
|||
"inner_wall_acceleration": "500",
|
||||
"bridge_acceleration": "500",
|
||||
"travel_acceleration": "2500",
|
||||
"default_jerk": "15",
|
||||
"outer_wall_jerk": "10",
|
||||
"inner_wall_jerk": "15",
|
||||
"infill_jerk": "15",
|
||||
"top_surface_jerk": "12",
|
||||
"initial_layer_jerk": "12",
|
||||
"travel_jerk": "20",
|
||||
"default_jerk": "8",
|
||||
"outer_wall_jerk": "5",
|
||||
"inner_wall_jerk": "8",
|
||||
"infill_jerk": "9",
|
||||
"top_surface_jerk": "5",
|
||||
"initial_layer_jerk": "8",
|
||||
"travel_jerk": "9",
|
||||
"enable_support": "0",
|
||||
"support_type": "normal(auto)",
|
||||
"support_threshold_angle": "30",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
"seam_slope_start_height": "0",
|
||||
"seam_slope_steps": "10",
|
||||
"seam_slope_type": "none",
|
||||
"single_extruder_multi_material_priming": "1",
|
||||
"single_extruder_multi_material_priming": "0",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
|
|
@ -289,4 +289,4 @@
|
|||
],
|
||||
"xy_contour_compensation": "0",
|
||||
"xy_hole_compensation": "0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Bambulab",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "01.09.00.23",
|
||||
"version": "01.10.00.26",
|
||||
"force_update": "0",
|
||||
"description": "the initial version of BBL configurations",
|
||||
"machine_model_list": [
|
||||
|
|
@ -674,8 +674,8 @@
|
|||
"sub_path": "filament/fdm_filament_bvoh.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_sbs",
|
||||
"sub_path": "filament/fdm_filament_sbs.json"
|
||||
"name": "fdm_filament_sbs",
|
||||
"sub_path": "filament/fdm_filament_sbs.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Matte @base",
|
||||
|
|
@ -738,8 +738,8 @@
|
|||
"sub_path": "filament/Generic PLA-CF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic SBS @base",
|
||||
"sub_path": "filament/Generic SBS @base.json"
|
||||
"name": "Generic SBS @base",
|
||||
"sub_path": "filament/Generic SBS @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA-CF @base",
|
||||
|
|
@ -797,6 +797,14 @@
|
|||
"name": "Bambu TPU 95A HF @base",
|
||||
"sub_path": "filament/Bambu TPU 95A HF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic TPU for AMS @base",
|
||||
"sub_path": "filament/Generic TPU for AMS @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu TPU for AMS @base",
|
||||
"sub_path": "filament/Bambu TPU for AMS @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PETG Basic @base",
|
||||
"sub_path": "filament/Bambu PETG Basic @base.json"
|
||||
|
|
@ -833,6 +841,22 @@
|
|||
"name": "Bambu PETG HF @base",
|
||||
"sub_path": "filament/Bambu PETG HF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PETG-ESD @base",
|
||||
"sub_path": "filament/Fiberon PETG-ESD @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PETG-rCF @base",
|
||||
"sub_path": "filament/Fiberon PETG-rCF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PET-CF @base",
|
||||
"sub_path": "filament/Fiberon PET-CF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG HF @base",
|
||||
"sub_path": "filament/Generic PETG HF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ABS @base",
|
||||
"sub_path": "filament/Bambu ABS @base.json"
|
||||
|
|
@ -877,6 +901,10 @@
|
|||
"name": "Bambu ASA-Aero @base",
|
||||
"sub_path": "filament/Bambu ASA-Aero @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ASA-CF @base",
|
||||
"sub_path": "filament/Bambu ASA-CF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PVA @base",
|
||||
"sub_path": "filament/Generic PVA @base.json"
|
||||
|
|
@ -925,6 +953,22 @@
|
|||
"name": "Bambu PA6-GF @base",
|
||||
"sub_path": "filament/Bambu PA6-GF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PA6-CF @base",
|
||||
"sub_path": "filament/Fiberon PA6-CF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PA6-GF @base",
|
||||
"sub_path": "filament/Fiberon PA6-GF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PA12-CF @base",
|
||||
"sub_path": "filament/Fiberon PA12-CF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PA612-CF @base",
|
||||
"sub_path": "filament/Fiberon PA612-CF @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic HIPS @base",
|
||||
"sub_path": "filament/Generic HIPS @base.json"
|
||||
|
|
@ -1406,8 +1450,8 @@
|
|||
"sub_path": "filament/Generic PLA-CF @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic SBS",
|
||||
"sub_path": "filament/Generic SBS.json"
|
||||
"name": "Generic SBS",
|
||||
"sub_path": "filament/Generic SBS.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA-CF @BBL X1C 0.8 nozzle",
|
||||
|
|
@ -1745,6 +1789,38 @@
|
|||
"name": "Bambu TPU 95A HF @BBL A1",
|
||||
"sub_path": "filament/Bambu TPU 95A HF @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic TPU for AMS @BBL X1C",
|
||||
"sub_path": "filament/Generic TPU for AMS @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic TPU for AMS @BBL P1P",
|
||||
"sub_path": "filament/Generic TPU for AMS @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic TPU for AMS @BBL A1",
|
||||
"sub_path": "filament/Generic TPU for AMS @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic TPU for AMS @BBL A1M",
|
||||
"sub_path": "filament/Generic TPU for AMS @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu TPU for AMS @BBL X1C",
|
||||
"sub_path": "filament/Bambu TPU for AMS @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu TPU for AMS @BBL P1P",
|
||||
"sub_path": "filament/Bambu TPU for AMS @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu TPU for AMS @BBL A1",
|
||||
"sub_path": "filament/Bambu TPU for AMS @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu TPU for AMS @BBL A1M",
|
||||
"sub_path": "filament/Bambu TPU for AMS @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PETG Basic @BBL X1C",
|
||||
"sub_path": "filament/Bambu PETG Basic @BBL X1C.json"
|
||||
|
|
@ -1945,6 +2021,50 @@
|
|||
"name": "Generic PCTG @BBL A1M",
|
||||
"sub_path": "filament/Generic PCTG @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PETG-ESD @BBL X1C",
|
||||
"sub_path": "filament/Fiberon PETG-ESD @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PETG-rCF @BBL X1C",
|
||||
"sub_path": "filament/Fiberon PETG-rCF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PET-CF @BBL X1C",
|
||||
"sub_path": "filament/Fiberon PET-CF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG HF @BBL X1C",
|
||||
"sub_path": "filament/Generic PETG HF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG HF @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/Generic PETG HF @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG HF @BBL P1P",
|
||||
"sub_path": "filament/Generic PETG HF @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG HF @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/Generic PETG HF @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG HF @BBL A1",
|
||||
"sub_path": "filament/Generic PETG HF @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG HF @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/Generic PETG HF @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG HF @BBL A1M",
|
||||
"sub_path": "filament/Generic PETG HF @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG HF @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/Generic PETG HF @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ABS @BBL X1C",
|
||||
"sub_path": "filament/Bambu ABS @BBL X1C.json"
|
||||
|
|
@ -2173,6 +2293,30 @@
|
|||
"name": "Bambu ASA-Aero @BBL A1",
|
||||
"sub_path": "filament/Bambu ASA-Aero @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ASA-CF @BBL X1C",
|
||||
"sub_path": "filament/Bambu ASA-CF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ASA-CF @BBL X1C 0.6 nozzle",
|
||||
"sub_path": "filament/Bambu ASA-CF @BBL X1C 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ASA-CF @BBL P1P",
|
||||
"sub_path": "filament/Bambu ASA-CF @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ASA-CF @BBL P1P 0.6 nozzle",
|
||||
"sub_path": "filament/Bambu ASA-CF @BBL P1P 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ASA-CF @BBL A1",
|
||||
"sub_path": "filament/Bambu ASA-CF @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu ASA-CF @BBL A1 0.6 nozzle",
|
||||
"sub_path": "filament/Bambu ASA-CF @BBL A1 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PVA @0.2 nozzle",
|
||||
"sub_path": "filament/Generic PVA @0.2 nozzle.json"
|
||||
|
|
@ -2321,6 +2465,22 @@
|
|||
"name": "Bambu PA6-GF @BBL A1",
|
||||
"sub_path": "filament/Bambu PA6-GF @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PA6-CF @BBL X1C",
|
||||
"sub_path": "filament/Fiberon PA6-CF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PA6-GF @BBL X1C",
|
||||
"sub_path": "filament/Fiberon PA6-GF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PA12-CF @BBL X1C",
|
||||
"sub_path": "filament/Fiberon PA12-CF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Fiberon PA612-CF @BBL X1C",
|
||||
"sub_path": "filament/Fiberon PA612-CF @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic HIPS @BBL X1C",
|
||||
"sub_path": "filament/Generic HIPS @BBL X1C.json"
|
||||
|
|
|
|||
|
|
@ -75,80 +75,100 @@
|
|||
"Bambu Lab X1": {
|
||||
"downward_check": {
|
||||
"Bambu Lab X1 0.2 nozzle": [
|
||||
"Bambu Lab A1 mini 0.2 nozzle"
|
||||
"Bambu Lab A1 mini 0.2 nozzle",
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
],
|
||||
"Bambu Lab X1 0.4 nozzle": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle"
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle"
|
||||
],
|
||||
"Bambu Lab X1 0.6 nozzle": [
|
||||
"Bambu Lab A1 mini 0.6 nozzle"
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle"
|
||||
],
|
||||
"Bambu Lab X1 0.8 nozzle": [
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
},
|
||||
"Bambu Lab X1 Carbon": {
|
||||
"downward_check": {
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle": [
|
||||
"Bambu Lab A1 mini 0.2 nozzle"
|
||||
"Bambu Lab A1 mini 0.2 nozzle",
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
],
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle"
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle"
|
||||
],
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle": [
|
||||
"Bambu Lab A1 mini 0.6 nozzle"
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle"
|
||||
],
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle": [
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
},
|
||||
"Bambu Lab X1E": {
|
||||
"downward_check": {
|
||||
"Bambu Lab X1E 0.2 nozzle": [
|
||||
"Bambu Lab A1 mini 0.2 nozzle"
|
||||
"Bambu Lab A1 mini 0.2 nozzle",
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
],
|
||||
"Bambu Lab X1E 0.4 nozzle": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle"
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle"
|
||||
],
|
||||
"Bambu Lab X1E 0.6 nozzle": [
|
||||
"Bambu Lab A1 mini 0.6 nozzle"
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle"
|
||||
],
|
||||
"Bambu Lab X1E 0.8 nozzle": [
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
},
|
||||
"Bambu Lab P1P": {
|
||||
"downward_check": {
|
||||
"Bambu Lab P1P 0.2 nozzle": [
|
||||
"Bambu Lab A1 mini 0.2 nozzle"
|
||||
"Bambu Lab A1 mini 0.2 nozzle",
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
],
|
||||
"Bambu Lab P1P 0.4 nozzle": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle"
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle"
|
||||
],
|
||||
"Bambu Lab P1P 0.6 nozzle": [
|
||||
"Bambu Lab A1 mini 0.6 nozzle"
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle"
|
||||
],
|
||||
"Bambu Lab P1P 0.8 nozzle": [
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
},
|
||||
"Bambu Lab P1S": {
|
||||
"downward_check": {
|
||||
"Bambu Lab P1S 0.2 nozzle": [
|
||||
"Bambu Lab A1 mini 0.2 nozzle"
|
||||
"Bambu Lab A1 mini 0.2 nozzle",
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
],
|
||||
"Bambu Lab P1S 0.4 nozzle": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle"
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 0.4 nozzle"
|
||||
],
|
||||
"Bambu Lab P1S 0.6 nozzle": [
|
||||
"Bambu Lab A1 mini 0.6 nozzle"
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle"
|
||||
],
|
||||
"Bambu Lab P1S 0.8 nozzle": [
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
"Bambu Lab A1 mini 0.8 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,9 +8,15 @@
|
|||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,9 +8,15 @@
|
|||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,9 +8,15 @@
|
|||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,9 +8,15 @@
|
|||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -8,9 +8,15 @@
|
|||
"fan_max_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -5,12 +5,13 @@
|
|||
"from": "system",
|
||||
"filament_id": "GFB00",
|
||||
"instantiation": "false",
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"filament_cost": [
|
||||
"24.99"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
]
|
||||
|
|
|
|||
|
|
@ -5,6 +5,12 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB50_02",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
|
|
|
|||
|
|
@ -5,6 +5,12 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB50_01",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
|
|
|
|||
|
|
@ -5,6 +5,12 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB50_00",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
"from": "system",
|
||||
"filament_id": "GFB50",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"fan_cooling_layer_time": [
|
||||
"12"
|
||||
],
|
||||
|
|
@ -17,15 +18,15 @@
|
|||
"filament_density": [
|
||||
"1.08"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS-GF"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_type": [
|
||||
"ABS-GF"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -5,9 +5,15 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB01_10",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
|
|
|
|||
|
|
@ -8,6 +8,12 @@
|
|||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle"
|
||||
]
|
||||
|
|
|
|||
|
|
@ -8,6 +8,12 @@
|
|||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
|
|
|
|||
|
|
@ -5,9 +5,15 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB01_03",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.2 nozzle"
|
||||
]
|
||||
|
|
|
|||
|
|
@ -8,6 +8,12 @@
|
|||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_speed": [
|
||||
"0.4"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -5,9 +5,15 @@
|
|||
"from": "system",
|
||||
"setting_id": "GFSB01_01",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,12 @@
|
|||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
|
|
|
|||
|
|
@ -8,6 +8,12 @@
|
|||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
"from": "system",
|
||||
"filament_id": "GFB01",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"fan_max_speed": [
|
||||
"35"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
"from": "system",
|
||||
"filament_id": "GFB02",
|
||||
"instantiation": "false",
|
||||
"description": "This filament is only used to print models with a low density usually, and some special parameters are required. To get better printing quality, please refer to this wiki: ASA Aero Printing Guide.",
|
||||
"fan_cooling_layer_time": [
|
||||
"30"
|
||||
],
|
||||
|
|
@ -26,9 +27,6 @@
|
|||
"filament_max_volumetric_speed": [
|
||||
"12"
|
||||
],
|
||||
"filament_retract_before_wipe": [
|
||||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"1.5"
|
||||
],
|
||||
|
|
@ -58,5 +56,8 @@
|
|||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA-CF @BBL A1 0.6 nozzle",
|
||||
"inherits": "Bambu ASA-CF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB51_05",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
11
resources/profiles/BBL/filament/Bambu ASA-CF @BBL A1.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA-CF @BBL A1",
|
||||
"inherits": "Bambu ASA-CF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB51_04",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA-CF @BBL P1P 0.6 nozzle",
|
||||
"inherits": "Bambu ASA-CF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB51_03",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
11
resources/profiles/BBL/filament/Bambu ASA-CF @BBL P1P.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu ASA-CF @BBL P1P",
|
||||
"inherits": "Bambu ASA-CF @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSB51_02",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.4 nozzle"
|
||||
]
|
||||
}
|
||||