Merge branch 'main' into release/v2.3

This commit is contained in:
SoftFever
2026-03-06 11:14:54 +08:00
598 changed files with 20469 additions and 8645 deletions

View File

@@ -58,23 +58,41 @@ jobs:
os: ubuntu-24.04
build-deps-only: ${{ inputs.build-deps-only || false }}
secrets: inherit
build_all:
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
- os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }}
arch: arm64
build_windows:
# Don't run scheduled builds on forks:
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
uses: ./.github/workflows/build_check_cache.yml
with:
os: ${{ matrix.os }}
os: windows-latest
build-deps-only: ${{ inputs.build-deps-only || false }}
force-build: ${{ github.event_name == 'schedule' }}
secrets: inherit
build_macos_arch:
strategy:
fail-fast: false
matrix:
arch:
- arm64
- x86_64
# Don't run scheduled builds on forks:
if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
uses: ./.github/workflows/build_check_cache.yml
with:
os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }}
arch: ${{ matrix.arch }}
build-deps-only: ${{ inputs.build-deps-only || false }}
force-build: ${{ github.event_name == 'schedule' }}
secrets: inherit
build_macos_universal:
name: Build macOS Universal
needs: build_macos_arch
if: ${{ !cancelled() && needs.build_macos_arch.result == 'success' && !inputs.build-deps-only && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }}
uses: ./.github/workflows/build_orca.yml
with:
os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }}
arch: universal
macos-combine-only: true
secrets: inherit
unit_tests:
name: Unit Tests
runs-on: ubuntu-24.04
@@ -174,10 +192,15 @@ jobs:
path: .flatpak-builder
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.sha }}
restore-keys: flatpak-builder-${{ matrix.variant.arch }}-
- name: Disable debug info for faster CI builds
run: |
sed -i '0,/^finish-args:/s//build-options:\n no-debuginfo: true\n strip: true\nfinish-args:/' \
scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml
shell: bash
- uses: flatpak/flatpak-github-actions/flatpak-builder@master
with:
bundle: OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak
manifest-path: scripts/flatpak/io.github.softfever.OrcaSlicer.yml
manifest-path: scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml
cache: false
arch: ${{ matrix.variant.arch }}
upload-artifact: false

View File

@@ -30,16 +30,16 @@ jobs:
with:
lfs: 'true'
- name: set outputs
id: set_outputs
env:
# Normalize macOS runner names so self-hosted and GitHub-hosted produce the same cache key
cache-os: ${{ contains(inputs.os, 'macos') && 'macos-arm64' || inputs.os }}
dep-folder-name: ${{ !contains(inputs.os, 'macos') && '/OrcaSlicer_dep' || '' }}
output-cmd: ${{ inputs.os == 'windows-latest' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}}
run: |
echo cache-key=${{ env.cache-os }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }}
echo cache-path=${{ github.workspace }}/deps/build${{ env.dep-folder-name }} >> ${{ env.output-cmd }}
- name: set outputs
id: set_outputs
env:
# Keep macOS cache keys and paths architecture-specific.
cache-os: ${{ contains(inputs.os, 'macos') && format('macos-{0}', inputs.arch) || inputs.os }}
dep-folder-name: ${{ contains(inputs.os, 'macos') && format('/{0}', inputs.arch) || '/OrcaSlicer_dep' }}
output-cmd: ${{ inputs.os == 'windows-latest' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}}
run: |
echo cache-key=${{ env.cache-os }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }}
echo cache-path=${{ github.workspace }}/deps/build${{ env.dep-folder-name }} >> ${{ env.output-cmd }}
- name: load cache
id: cache_deps

View File

@@ -80,11 +80,9 @@ jobs:
if [ -z "${{ vars.SELF_HOSTED }}" ]; then
brew install automake texinfo libtool
fi
./build_release_macos.sh -dx ${{ !vars.SELF_HOSTED && '-1' || '' }} -a universal -t 10.15
for arch in arm64 x86_64; do
(cd "${{ github.workspace }}/deps/build/${arch}" && \
find . -mindepth 1 -maxdepth 1 ! -name 'OrcaSlicer_dep' -exec rm -rf {} +)
done
./build_release_macos.sh -dx ${{ !vars.SELF_HOSTED && '-1' || '' }} -a ${{ inputs.arch }} -t 10.15
(cd "${{ github.workspace }}/deps/build/${{ inputs.arch }}" && \
find . -mindepth 1 -maxdepth 1 ! -name 'OrcaSlicer_dep' -exec rm -rf {} +)
- name: Apt-Install Dependencies

View File

@@ -2,10 +2,10 @@ on:
workflow_call:
inputs:
cache-key:
required: true
required: false
type: string
cache-path:
required: true
required: false
type: string
os:
required: true
@@ -13,6 +13,10 @@ on:
arch:
required: false
type: string
macos-combine-only:
required: false
type: boolean
default: false
jobs:
build_orca:
@@ -31,6 +35,7 @@ jobs:
lfs: 'true'
- name: load cached deps
if: ${{ !(contains(inputs.os, 'macos') && inputs.macos-combine-only) }}
uses: actions/cache@v5
with:
path: ${{ inputs.cache-path }}
@@ -86,16 +91,16 @@ jobs:
# Mac
- name: Install tools mac
if: contains(inputs.os, 'macos')
if: contains(inputs.os, 'macos') && !inputs.macos-combine-only
run: |
if [ -z "${{ vars.SELF_HOSTED }}" ]; then
brew install libtool
brew list
fi
mkdir -p ${{ github.workspace }}/deps/build
mkdir -p ${{ github.workspace }}/deps/build/${{ inputs.arch }}
- name: Free disk space
if: contains(inputs.os, 'macos') && !vars.SELF_HOSTED
if: contains(inputs.os, 'macos') && !inputs.macos-combine-only && !vars.SELF_HOSTED
run: |
df -hI /dev/disk3s1s1
sudo find /Applications -maxdepth 1 -type d -name "Xcode_*.app" ! -name "Xcode_15.4.app" -exec rm -rf {} +
@@ -103,14 +108,65 @@ jobs:
df -hI /dev/disk3s1s1
- name: Build slicer mac
if: contains(inputs.os, 'macos')
if: contains(inputs.os, 'macos') && !inputs.macos-combine-only
working-directory: ${{ github.workspace }}
run: |
./build_release_macos.sh -s -n -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a universal -t 10.15
./build_release_macos.sh -s -n -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a ${{ inputs.arch }} -t 10.15
- name: Pack macOS app bundle ${{ inputs.arch }}
if: contains(inputs.os, 'macos') && !inputs.macos-combine-only
working-directory: ${{ github.workspace }}
run: |
tar -czvf OrcaSlicer_Mac_bundle_${{ inputs.arch }}_${{ github.sha }}.tar.gz -C build/${{ inputs.arch }} OrcaSlicer
- name: Upload macOS app bundle ${{ inputs.arch }}
if: contains(inputs.os, 'macos') && !inputs.macos-combine-only
uses: actions/upload-artifact@v6
with:
name: OrcaSlicer_Mac_bundle_${{ inputs.arch }}_${{ github.sha }}
path: ${{ github.workspace }}/OrcaSlicer_Mac_bundle_${{ inputs.arch }}_${{ github.sha }}.tar.gz
- name: Download macOS arm64 app bundle
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
uses: actions/download-artifact@v7
with:
name: OrcaSlicer_Mac_bundle_arm64_${{ github.sha }}
path: ${{ github.workspace }}/mac_bundles/arm64
- name: Download macOS x86_64 app bundle
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
uses: actions/download-artifact@v7
with:
name: OrcaSlicer_Mac_bundle_x86_64_${{ github.sha }}
path: ${{ github.workspace }}/mac_bundles/x86_64
- name: Extract macOS app bundles
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
working-directory: ${{ github.workspace }}
run: |
mkdir -p build/arm64 build/x86_64
arm_bundle=$(find "${{ github.workspace }}/mac_bundles/arm64" -name '*.tar.gz' -print -quit)
x86_bundle=$(find "${{ github.workspace }}/mac_bundles/x86_64" -name '*.tar.gz' -print -quit)
tar -xzvf "$arm_bundle" -C "${{ github.workspace }}/build/arm64"
tar -xzvf "$x86_bundle" -C "${{ github.workspace }}/build/x86_64"
- name: Build universal mac app bundle
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
working-directory: ${{ github.workspace }}
run: |
./build_release_macos.sh -u -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a universal -t 10.15
- name: Delete intermediate per-arch artifacts
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
uses: geekyeggo/delete-artifact@v5
with:
name: |
OrcaSlicer_Mac_bundle_arm64_${{ github.sha }}
OrcaSlicer_Mac_bundle_x86_64_${{ github.sha }}
# Thanks to RaySajuuk, it's working now
- name: Sign app and notary
if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && contains(inputs.os, 'macos')
if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && contains(inputs.os, 'macos') && inputs.macos-combine-only
working-directory: ${{ github.workspace }}
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
@@ -164,7 +220,7 @@ jobs:
fi
- name: Create DMG without notary
if: github.ref != 'refs/heads/main' && contains(inputs.os, 'macos')
if: github.ref != 'refs/heads/main' && contains(inputs.os, 'macos') && inputs.macos-combine-only
working-directory: ${{ github.workspace }}
run: |
mkdir -p ${{ github.workspace }}/build/universal/OrcaSlicer_dmg
@@ -183,14 +239,14 @@ jobs:
fi
- name: Upload artifacts mac
if: contains(inputs.os, 'macos')
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
uses: actions/upload-artifact@v6
with:
name: OrcaSlicer_Mac_universal_${{ env.ver }}
path: ${{ github.workspace }}/OrcaSlicer_Mac_universal_${{ env.ver }}.dmg
- name: Upload OrcaSlicer_profile_validator DMG mac
if: contains(inputs.os, 'macos')
if: contains(inputs.os, 'macos') && inputs.macos-combine-only
uses: actions/upload-artifact@v6
with:
name: OrcaSlicer_profile_validator_Mac_universal_DMG_${{ env.ver }}
@@ -198,7 +254,7 @@ jobs:
if-no-files-found: ignore
- name: Deploy Mac release
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && contains(inputs.os, 'macos')
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && contains(inputs.os, 'macos') && inputs.macos-combine-only
uses: WebFreak001/deploy-nightly@v3.2.0
with:
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}
@@ -209,7 +265,7 @@ jobs:
max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted
- name: Deploy Mac OrcaSlicer_profile_validator DMG release
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && contains(inputs.os, 'macos')
if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && contains(inputs.os, 'macos') && inputs.macos-combine-only
uses: WebFreak001/deploy-nightly@v3.2.0
with:
upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label}

1
.gitignore vendored
View File

@@ -36,6 +36,7 @@ src/OrcaSlicer-doc/
/deps/DL_CACHE/
/deps/DL_CACHE
**/.flatpak-builder/
*.no-debug.yml
resources/profiles/user/default
*.code-workspace
deps_src/build/

View File

@@ -436,7 +436,11 @@ if (NOT MSVC AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMP
endif()
if((${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang") AND ${CMAKE_CXX_COMPILER_VERSION} VERSION_GREATER 15)
add_compile_options(-Wno-error=enum-constexpr-conversion)
include(CheckCXXCompilerFlag)
check_cxx_compiler_flag(-Wno-error=enum-constexpr-conversion HAS_WNO_ERROR_ENUM_CONSTEXPR_CONV)
if(HAS_WNO_ERROR_ENUM_CONSTEXPR_CONV)
add_compile_options(-Wno-error=enum-constexpr-conversion)
endif()
endif()
#GCC generates loads of -Wunknown-pragmas when compiling igl. The fix is not easy due to a bug in gcc, see

View File

@@ -4,7 +4,7 @@
<img alt="OrcaSlicer logo" src="resources/images/OrcaSlicer.png" width="15%" height="15%">
</picture>
<a href="https://trendshift.io/repositories/952" target="_blank"><img src="https://trendshift.io/api/badge/repositories/952" alt="SoftFever%2FOrcaSlicer | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
<a href="https://trendshift.io/repositories/15552" target="_blank"><img src="https://trendshift.io/api/badge/repositories/15552" alt="OrcaSlicer%2FOrcaSlicer | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
[![GitHub Repo stars](https://img.shields.io/github/stars/OrcaSlicer/OrcaSlicer)](https://github.com/OrcaSlicer/OrcaSlicer/stargazers) [![Build all](https://github.com/OrcaSlicer/OrcaSlicer/actions/workflows/build_all.yml/badge.svg?branch=main)](https://github.com/OrcaSlicer/OrcaSlicer/actions/workflows/build_all.yml)

View File

@@ -21,6 +21,8 @@ INSTALL_RUNTIME=false
JOBS=$(nproc)
FORCE_CLEAN=false
ENABLE_CCACHE=false
DISABLE_ROFILES_FUSE=false
NO_DEBUGINFO=true
CACHE_DIR=".flatpak-builder"
# Help function
@@ -36,6 +38,8 @@ show_help() {
echo " -c, --cleanup Clean build directory before building"
echo " -f, --force-clean Force clean build (disables caching)"
echo " --ccache Enable ccache for faster rebuilds (requires ccache in SDK)"
echo " --disable-rofiles-fuse Disable rofiles-fuse (workaround for FUSE issues)"
echo " --with-debuginfo Include debug info (slower builds, needed for Flathub)"
echo " --cache-dir DIR Flatpak builder cache directory [default: $CACHE_DIR]"
echo " -i, --install-runtime Install required Flatpak runtime and SDK"
echo " -h, --help Show this help message"
@@ -75,6 +79,14 @@ while [[ $# -gt 0 ]]; do
ENABLE_CCACHE=true
shift
;;
--disable-rofiles-fuse)
DISABLE_ROFILES_FUSE=true
shift
;;
--with-debuginfo)
NO_DEBUGINFO=false
shift
;;
--cache-dir)
CACHE_DIR="$2"
shift 2
@@ -242,8 +254,8 @@ mkdir -p "$BUILD_DIR"
rm -rf "$BUILD_DIR/build-dir"
# Check if flatpak manifest exists
if [[ ! -f "./scripts/flatpak/io.github.softfever.OrcaSlicer.yml" ]]; then
echo -e "${RED}Error: Flatpak manifest not found at scripts/flatpak/io.github.softfever.OrcaSlicer.yml${NC}"
if [[ ! -f "./scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml" ]]; then
echo -e "${RED}Error: Flatpak manifest not found at scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml${NC}"
exit 1
fi
@@ -279,6 +291,7 @@ BUILDER_ARGS=(
--verbose
--state-dir="$CACHE_DIR"
--jobs="$JOBS"
--mirror-screenshots-url=https://dl.flathub.org/media/
)
# Add force-clean only if explicitly requested (disables caching)
@@ -295,21 +308,40 @@ if [[ "$ENABLE_CCACHE" == true ]]; then
echo -e "${GREEN}Using ccache for compiler caching${NC}"
fi
# Disable rofiles-fuse if requested (workaround for FUSE issues)
if [[ "$DISABLE_ROFILES_FUSE" == true ]]; then
BUILDER_ARGS+=(--disable-rofiles-fuse)
echo -e "${YELLOW}rofiles-fuse disabled${NC}"
fi
# Use a temp manifest with no-debuginfo if requested
MANIFEST="scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml"
if [[ "$NO_DEBUGINFO" == true ]]; then
MANIFEST="scripts/flatpak/io.github.orcaslicer.OrcaSlicer.no-debug.yml"
sed '0,/^finish-args:/s//build-options:\n no-debuginfo: true\n strip: true\nfinish-args:/' \
scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml > "$MANIFEST"
echo -e "${YELLOW}Debug info disabled (using temp manifest)${NC}"
fi
if ! flatpak-builder \
"${BUILDER_ARGS[@]}" \
"$BUILD_DIR/build-dir" \
scripts/flatpak/io.github.softfever.OrcaSlicer.yml; then
"$MANIFEST"; then
echo -e "${RED}Error: flatpak-builder failed${NC}"
echo -e "${YELLOW}Check the build log above for details${NC}"
rm -f "scripts/flatpak/io.github.orcaslicer.OrcaSlicer.no-debug.yml"
exit 1
fi
# Clean up temp manifest
rm -f "scripts/flatpak/io.github.orcaslicer.OrcaSlicer.no-debug.yml"
# Create bundle
echo -e "${YELLOW}Creating Flatpak bundle...${NC}"
if ! flatpak build-bundle \
"$BUILD_DIR/repo" \
"$BUNDLE_NAME" \
io.github.softfever.OrcaSlicer \
io.github.orcaslicer.OrcaSlicer \
--arch="$ARCH"; then
echo -e "${RED}Error: Failed to create Flatpak bundle${NC}"
exit 1
@@ -328,10 +360,10 @@ echo -e "${BLUE}To install the Flatpak:${NC}"
echo -e "flatpak install --user $BUNDLE_NAME"
echo ""
echo -e "${BLUE}To run OrcaSlicer:${NC}"
echo -e "flatpak run io.github.softfever.OrcaSlicer"
echo -e "flatpak run io.github.orcaslicer.OrcaSlicer"
echo ""
echo -e "${BLUE}To uninstall:${NC}"
echo -e "flatpak uninstall --user io.github.softfever.OrcaSlicer"
echo -e "flatpak uninstall --user io.github.orcaslicer.OrcaSlicer"
echo ""
if [[ "$FORCE_CLEAN" != true ]]; then
echo -e "${BLUE}Cache Management:${NC}"

View File

@@ -3,7 +3,7 @@
set -e
set -o pipefail
while getopts ":dpa:snt:xbc:1Th" opt; do
while getopts ":dpa:snt:xbc:1Tuh" opt; do
case "${opt}" in
d )
export BUILD_TARGET="deps"
@@ -40,10 +40,14 @@ while getopts ":dpa:snt:xbc:1Th" opt; do
T )
export BUILD_TESTS="1"
;;
u )
export BUILD_TARGET="universal"
;;
h ) echo "Usage: ./build_release_macos.sh [-d]"
echo " -d: Build deps only"
echo " -a: Set ARCHITECTURE (arm64 or x86_64 or universal)"
echo " -s: Build slicer only"
echo " -u: Build universal app only (requires existing arm64 and x86_64 app bundles)"
echo " -n: Nightly build"
echo " -t: Specify minimum version of the target platform, default is 11.3"
echo " -x: Use Ninja Multi-Config CMake generator, default is Xcode"
@@ -249,48 +253,54 @@ function build_slicer() {
done
}
function lipo_dir() {
local universal_dir="$1"
local x86_64_dir="$2"
# Find all Mach-O files in the universal (arm64-based) copy and lipo them
while IFS= read -r -d '' f; do
local rel="${f#"$universal_dir"/}"
local x86="$x86_64_dir/$rel"
if [ -f "$x86" ]; then
echo " lipo: $rel"
lipo -create "$f" "$x86" -output "$f.tmp"
mv "$f.tmp" "$f"
else
echo " warning: no x86_64 counterpart for $rel, keeping arm64 only"
fi
done < <(find "$universal_dir" -type f -print0 | while IFS= read -r -d '' candidate; do
if file "$candidate" | grep -q "Mach-O"; then
printf '%s\0' "$candidate"
fi
done)
}
function build_universal() {
echo "Building universal binary..."
PROJECT_BUILD_DIR="$PROJECT_DIR/build/$ARCH"
# Create universal binary
echo "Creating universal binary..."
# PROJECT_BUILD_DIR="$PROJECT_DIR/build_Universal"
ARM64_APP="$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer.app"
X86_64_APP="$PROJECT_DIR/build/x86_64/OrcaSlicer/OrcaSlicer.app"
mkdir -p "$PROJECT_BUILD_DIR/OrcaSlicer"
UNIVERSAL_APP="$PROJECT_BUILD_DIR/OrcaSlicer/OrcaSlicer.app"
rm -rf "$UNIVERSAL_APP"
cp -R "$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer.app" "$UNIVERSAL_APP"
# Get the binary path inside the .app bundle
BINARY_PATH="Contents/MacOS/OrcaSlicer"
# Create universal binary using lipo
lipo -create \
"$PROJECT_DIR/build/x86_64/OrcaSlicer/OrcaSlicer.app/$BINARY_PATH" \
"$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer.app/$BINARY_PATH" \
-output "$UNIVERSAL_APP/$BINARY_PATH"
echo "Universal binary created at $UNIVERSAL_APP"
cp -R "$ARM64_APP" "$UNIVERSAL_APP"
echo "Creating universal binaries for OrcaSlicer.app..."
lipo_dir "$UNIVERSAL_APP" "$X86_64_APP"
echo "Universal OrcaSlicer.app created at $UNIVERSAL_APP"
# Create universal binary for profile validator if it exists
if [ -f "$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer_profile_validator.app/Contents/MacOS/OrcaSlicer_profile_validator" ] && \
[ -f "$PROJECT_DIR/build/x86_64/OrcaSlicer/OrcaSlicer_profile_validator.app/Contents/MacOS/OrcaSlicer_profile_validator" ]; then
echo "Creating universal binary for OrcaSlicer_profile_validator..."
ARM64_VALIDATOR="$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer_profile_validator.app"
X86_64_VALIDATOR="$PROJECT_DIR/build/x86_64/OrcaSlicer/OrcaSlicer_profile_validator.app"
if [ -d "$ARM64_VALIDATOR" ] && [ -d "$X86_64_VALIDATOR" ]; then
echo "Creating universal binaries for OrcaSlicer_profile_validator.app..."
UNIVERSAL_VALIDATOR_APP="$PROJECT_BUILD_DIR/OrcaSlicer/OrcaSlicer_profile_validator.app"
rm -rf "$UNIVERSAL_VALIDATOR_APP"
cp -R "$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer_profile_validator.app" "$UNIVERSAL_VALIDATOR_APP"
# Get the binary path inside the profile validator .app bundle
VALIDATOR_BINARY_PATH="Contents/MacOS/OrcaSlicer_profile_validator"
# Create universal binary using lipo
lipo -create \
"$PROJECT_DIR/build/x86_64/OrcaSlicer/OrcaSlicer_profile_validator.app/$VALIDATOR_BINARY_PATH" \
"$PROJECT_DIR/build/arm64/OrcaSlicer/OrcaSlicer_profile_validator.app/$VALIDATOR_BINARY_PATH" \
-output "$UNIVERSAL_VALIDATOR_APP/$VALIDATOR_BINARY_PATH"
echo "Universal binary for OrcaSlicer_profile_validator created at $UNIVERSAL_VALIDATOR_APP"
cp -R "$ARM64_VALIDATOR" "$UNIVERSAL_VALIDATOR_APP"
lipo_dir "$UNIVERSAL_VALIDATOR_APP" "$X86_64_VALIDATOR"
echo "Universal OrcaSlicer_profile_validator.app created at $UNIVERSAL_VALIDATOR_APP"
fi
}
@@ -305,13 +315,16 @@ case "${BUILD_TARGET}" in
slicer)
build_slicer
;;
universal)
build_universal
;;
*)
echo "Unknown target: $BUILD_TARGET. Available targets: deps, slicer, all."
echo "Unknown target: $BUILD_TARGET. Available targets: deps, slicer, universal, all."
exit 1
;;
esac
if [ "$ARCH" = "universal" ] && [ "$BUILD_TARGET" != "deps" ]; then
if [ "$ARCH" = "universal" ] && { [ "$BUILD_TARGET" = "all" ] || [ "$BUILD_TARGET" = "slicer" ]; }; then
build_universal
fi

View File

@@ -1,8 +1,6 @@
set(_wx_toolkit "")
set(_wx_debug_postfix "")
set(_wx_shared -DwxBUILD_SHARED=OFF)
set(_wx_flatpak_patch "")
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
set(_gtk_ver 2)
@@ -14,7 +12,6 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
if (FLATPAK)
set(_wx_debug_postfix "d")
set(_wx_shared -DwxBUILD_SHARED=ON -DBUILD_SHARED_LIBS:BOOL=ON)
set(_wx_flatpak_patch PATCH_COMMAND ${PATCH_CMD} ${CMAKE_CURRENT_LIST_DIR}/0001-flatpak.patch)
endif ()
endif()
@@ -37,7 +34,6 @@ orcaslicer_add_cmake_project(
GIT_REPOSITORY "https://github.com/SoftFever/Orca-deps-wxWidgets"
GIT_SHALLOW ON
DEPENDS ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} ${JPEG_PKG}
${_wx_flatpak_patch}
CMAKE_ARGS
${_wx_opengl_override}
-DwxBUILD_PRECOMP=ON

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\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"
@@ -18,26 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1537,6 +1517,30 @@ msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Assemble"
msgstr ""
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr ""
@@ -1573,6 +1577,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr ""
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1596,10 +1648,10 @@ msgstr ""
msgid "Untitled"
msgstr ""
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1684,6 +1736,9 @@ msgstr ""
msgid "Choose one file (GCODE/3MF):"
msgstr ""
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr ""
@@ -1739,7 +1794,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -1965,6 +2020,9 @@ msgid ""
"No - Do not change these settings for me"
msgstr ""
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr ""
@@ -2074,9 +2132,6 @@ msgstr ""
msgid "Restore to meters"
msgstr ""
msgid "Assemble"
msgstr ""
msgid "Assemble the selected objects to an object with multiple parts"
msgstr ""
@@ -2565,6 +2620,10 @@ msgstr ""
msgid "Line Type"
msgstr ""
#, possible-c-format, possible-boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr ""
@@ -2682,7 +2741,7 @@ msgstr ""
msgid "Connecting..."
msgstr ""
msgid "Auto-refill"
msgid "Auto Refill"
msgstr ""
msgid "Load"
@@ -3053,6 +3112,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3361,9 +3452,6 @@ msgstr ""
msgid "Nozzle"
msgstr ""
msgid "Ext"
msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3424,9 +3512,6 @@ msgstr ""
msgid "Print with filaments mounted on the back of the chassis"
msgstr ""
msgid "Auto Refill"
msgstr ""
msgid "Left"
msgstr ""
@@ -3438,7 +3523,7 @@ msgid ""
"following order."
msgstr ""
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3558,8 +3643,8 @@ msgid "Calibration"
msgstr ""
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
msgid ""
@@ -3572,8 +3657,8 @@ msgid "Click here to see more info"
msgstr ""
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3719,9 +3804,6 @@ msgstr ""
msgid "Settings"
msgstr ""
msgid "Texture"
msgstr ""
msgid "Remove"
msgstr ""
@@ -3868,6 +3950,7 @@ msgid ""
"Reset to 0."
msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4473,6 +4556,9 @@ msgstr ""
msgid "Fan speed"
msgstr ""
msgid "°C"
msgstr ""
msgid "Time"
msgstr ""
@@ -4629,7 +4715,7 @@ msgstr ""
msgid "Fan Speed (%)"
msgstr ""
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr ""
msgid "Volumetric flow rate (mm³/s)"
@@ -4948,7 +5034,7 @@ msgstr ""
msgid "Size:"
msgstr ""
#, possible-boost-format
#, possible-c-format, possible-boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5019,7 +5105,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6265,6 +6351,9 @@ msgid ""
"to give a positive rating (4 or 5 stars)."
msgstr ""
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr ""
@@ -6275,6 +6364,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Network plug-in v%s"
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr ""
@@ -6643,7 +6740,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7161,7 +7258,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr ""
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
msgid ""
@@ -7696,7 +7794,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -7881,40 +7979,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr ""
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -7982,19 +8080,16 @@ msgstr ""
msgid "trace"
msgstr ""
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8213,7 +8308,10 @@ msgstr ""
msgid "Slicing Plate 1"
msgstr ""
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr ""
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8516,7 +8614,7 @@ msgstr ""
msgid "Textured PEI Plate"
msgstr ""
msgid "Cool Plate (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid "Click here if you can't connect to the printer"
@@ -8808,7 +8906,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -8899,8 +8997,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 ""
@@ -9098,9 +9196,6 @@ msgstr ""
msgid "Nozzle temperature when printing"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -9509,6 +9604,12 @@ msgstr ""
msgid "Select presets to compare"
msgstr ""
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -9908,6 +10009,12 @@ msgstr ""
msgid "Login"
msgstr ""
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr ""
@@ -10590,7 +10697,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -11790,7 +11897,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
msgid "Limited filtering"
@@ -12155,7 +12262,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)"
@@ -12800,8 +12907,8 @@ msgid "mm/s² or %"
msgstr ""
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
msgid ""
@@ -12905,10 +13012,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"
@@ -13317,9 +13424,9 @@ msgstr ""
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
msgid "Exclude objects"
@@ -13579,7 +13686,7 @@ msgstr ""
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
msgid "No ironing"
@@ -14435,8 +14542,8 @@ msgid "Role base wipe speed"
msgstr ""
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -14636,7 +14743,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
@@ -15136,8 +15243,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"
@@ -15354,6 +15461,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -15856,7 +15969,7 @@ msgid ""
"machines in the list."
msgstr ""
msgid "downward machines settings"
msgid "Downward machines settings"
msgstr ""
msgid "The machine settings list needs to do downward checking."
@@ -15887,8 +16000,8 @@ msgid "Debug level"
msgstr ""
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
msgid "Enable timelapse for print"
@@ -16474,10 +16587,6 @@ msgstr ""
msgid "create new preset failed."
msgstr ""
#, possible-c-format, possible-boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -17056,6 +17165,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -17090,6 +17216,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -17405,8 +17534,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 ""
@@ -17452,9 +17581,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Printable Space"
msgstr ""
@@ -17815,7 +17941,7 @@ msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -18631,6 +18757,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid "Precise wall\nDid you know that turning on precise wall can improve precision and layer consistency?"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -19,26 +19,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.5\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1587,6 +1567,30 @@ msgstr "Distància paral·lela:"
msgid "Flip by Face 2"
msgstr "Gira per la cara 2"
msgid "Assemble"
msgstr "Ensamblar"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Avís"
@@ -1629,6 +1633,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Textura"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1657,10 +1709,10 @@ msgstr "OrcaSlicer ha tingut una excepció no gestionada: %1%"
msgid "Untitled"
msgstr "Sense títol"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1757,6 +1809,9 @@ msgstr "Trieu el fitxer ZIP"
msgid "Choose one file (GCODE/3MF):"
msgstr "Trieu un fitxer ( GCODE/3MF ):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Alguns perfils s'han modificat."
@@ -1818,7 +1873,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -2056,6 +2111,9 @@ msgstr ""
"Sí: Canviar aquesta configuració automàticament\n"
"No - No canviar aquesta configuració"
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "Text"
@@ -2165,9 +2223,6 @@ msgstr "Convertir des de metres"
msgid "Restore to meters"
msgstr "Restaurar a metres"
msgid "Assemble"
msgstr "Ensamblar"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Ensamblar els objectes seleccionats a un objecte amb diverses peces"
@@ -2677,6 +2732,10 @@ msgstr "Impressió multicolor"
msgid "Line Type"
msgstr "Tipus de línia"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Més"
@@ -2796,8 +2855,8 @@ msgstr "Comproveu la connexió de xarxa de la impressora i l'Orca."
msgid "Connecting..."
msgstr "Connectant..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Recàrrega automàtica"
msgid "Load"
msgstr "Carregar"
@@ -3198,6 +3257,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3525,9 +3616,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Broquet( nozzle )"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3594,9 +3682,6 @@ msgstr "Imprimir amb filaments en ams"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Impressió amb filaments muntats a la part posterior del xassís"
msgid "Auto Refill"
msgstr "Recàrrega automàtica"
msgid "Left"
msgstr "Esquerra"
@@ -3610,7 +3695,7 @@ msgstr ""
"Quan s'esgoti el material actual, la impressora continuarà imprimint en "
"l'ordre següent."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3748,8 +3833,8 @@ msgid "Calibration"
msgstr "Calibratge"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"No s'ha pogut descarregar el connector. Comproveu la configuració del "
"tallafoc i el programari VPN, comproveu-ho i torneu-ho a provar."
@@ -3764,8 +3849,8 @@ msgid "Click here to see more info"
msgstr "feu clic aquí per veure més informació"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3877,8 +3962,8 @@ msgid ""
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
"La còpia del codi-G temporal ha finalitzat, però el codi exportat no s'ha "
"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a "
"%1%.tmp."
"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a %1%."
"tmp."
#, boost-format
msgid "G-code file exported to %1%"
@@ -3938,9 +4023,6 @@ msgstr "Carregar forma des de l'STL..."
msgid "Settings"
msgstr "Configuració"
msgid "Texture"
msgstr "Textura"
msgid "Remove"
msgstr "Eliminar"
@@ -4147,6 +4229,7 @@ msgstr ""
"seam_slope_start_height ha de ser més petit que layer_height.\n"
"Restablert a 0."
#, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4765,6 +4848,9 @@ msgstr ""
msgid "Fan speed"
msgstr "Velocitat del ventilador"
msgid "°C"
msgstr "°C"
msgid "Time"
msgstr "Temps"
@@ -4921,7 +5007,7 @@ msgstr "Velocitat Real (mm/s)"
msgid "Fan Speed (%)"
msgstr "Velocitat Ventilador ( % )"
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr "Temperatura ( °C )"
msgid "Volumetric flow rate (mm³/s)"
@@ -5240,7 +5326,7 @@ msgstr "Volum:"
msgid "Size:"
msgstr "Mida:"
#, fuzzy, boost-format
#, fuzzy, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5313,7 +5399,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6633,6 +6719,9 @@ msgstr ""
"d'impressió \n"
"per donar una valoració positiva( 4 o 5 estrelles )."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Estat"
@@ -6643,6 +6732,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "No tornis a mostrar"
@@ -7027,7 +7124,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7588,7 +7685,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Resoleu els errors de laminat i torneu a publicar."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"No s'ha detectat el Plug-in de Xarxa. Les funcions relacionades amb la Xarxa "
"no estan disponibles."
@@ -8172,7 +8270,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8375,40 +8473,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "Habilita el plugin de xarxa"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8487,19 +8585,16 @@ msgstr "depurar"
msgid "trace"
msgstr "traça"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8719,7 +8814,10 @@ msgstr "La publicació ha estat cancel·lada"
msgid "Slicing Plate 1"
msgstr "Laminant Base 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Empaquetant dades a 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -9038,8 +9136,8 @@ msgstr "Placa Llisa d'Alta Temperatura"
msgid "Textured PEI Plate"
msgstr "Base PEI amb Textura"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Feu clic aquí si no us podeu connectar a la impressora"
@@ -9367,7 +9465,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9486,8 +9584,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"
@@ -9708,9 +9806,6 @@ msgstr "Temperatura d'impressió"
msgid "Nozzle temperature when printing"
msgstr "Temperatura del broquet en imprimir"
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10170,6 +10265,12 @@ msgstr "Mostra tots els perfils ( inclosos els incompatibles )"
msgid "Select presets to compare"
msgstr "Seleccioneu els perfils a comparar"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr "Només es pot transferir al perfil actiu actual perquè s'ha modificat."
@@ -10604,6 +10705,12 @@ msgstr "Feu clic aquí per descarregar-lo."
msgid "Login"
msgstr "Iniciar sessió"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr ""
"El paquet de configuració s'ha canviat a la Guia de Configuració anterior"
@@ -11335,7 +11442,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -12874,9 +12981,8 @@ msgstr ""
"reducció de coixins a les superfícies superiors, així com una separació "
"reduïda de la capa de pont externa dels seus perímetres circumdants.\n"
"\n"
"En general, es recomana establir això com a mínim com a \"Només pont "
"extern\", tret que es detectin problemes específics amb el model en "
"rodanxes.\n"
"En general, es recomana establir això com a mínim com a \"Només pont extern"
"\", tret que es detectin problemes específics amb el model en rodanxes.\n"
"\n"
"Opcions:\n"
"1. Desactivat: no genera segones capes de pont. Aquest és el valor "
@@ -12932,7 +13038,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
"Aquesta opció pot ajudar a reduir el coixí a les superfícies superiors en "
"models molt inclinats o corbats.\n"
@@ -13460,7 +13566,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
"Afegiu conjunts de valors d'avanç de pressió (PA), les velocitats de cabal "
"volumètric i les acceleracions a les quals es van mesurar, separats per una "
@@ -14271,8 +14377,8 @@ msgid "mm/s² or %"
msgstr "mm/s o %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Acceleració del farciment poc dens. Si el valor s'expressa en percentatge "
"( per exemple, 100% ), es calcularà a partir de l'acceleració predeterminada."
@@ -14391,15 +14497,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"
@@ -14897,9 +15003,9 @@ msgstr "Etiquetar objectes"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Habilita això per afegir els comentaris al Codi-G, etiquetant moviments "
"d'impressió amb l'objecte al què pertanyen, cosa que és útil per al plugin "
@@ -15212,11 +15318,11 @@ msgstr "Tipus de planxat"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"El planxat consisteix a utilitzar un flux petit per imprimir a la mateixa "
"alçada de superfície de nou per fer la superfície plana més llisa. Aquest "
"ajustament controla quina capa s'està planxant"
"ajustament controla quina capa s'està planxant."
msgid "No ironing"
msgstr "Sense planxat"
@@ -16275,8 +16381,8 @@ msgid "Role base wipe speed"
msgstr "Velocitat de neteja basada en l'acció"
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -16542,7 +16648,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"Si se selecciona el mode suau o tradicional, es generarà un vídeo timelapse "
@@ -17147,8 +17253,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"
@@ -17453,6 +17559,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Rectangle"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -17586,9 +17698,8 @@ msgid ""
"0 to disable."
msgstr ""
"Temperatura del broquet quan l'eina no s'utilitza actualment en "
"configuracions multieina. Només s'utilitza quan la \"Prevenció de "
"supuració\" està activa a la configuració d'impressió. Establiu a 0 per "
"desactivar."
"configuracions multieina. Només s'utilitza quan la \"Prevenció de supuració"
"\" està activa a la configuració d'impressió. Establiu a 0 per desactivar."
msgid "X-Y hole compensation"
msgstr "Compensació de forat( contorn intern ) X-Y"
@@ -18067,8 +18178,8 @@ msgstr ""
"si està activat, comproveu si la màquina actual és compatible de manera "
"descendent amb les màquines de la llista"
msgid "downward machines settings"
msgstr ""
msgid "Downward machines settings"
msgstr "Configuració descendent de les màquines"
msgid "The machine settings list needs to do downward checking."
msgstr ""
@@ -18103,11 +18214,11 @@ msgid "Debug level"
msgstr "Nivell de depuració"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"Defineix el nivell de registre de depuració. 0:fatal, 1:error, 2:warning, "
"3:info, 4:debug, 5:tracejar\n"
"Defineix el nivell de registre de depuració. 0:fatal, 1:error, 2:warning, 3:"
"info, 4:debug, 5:tracejar\n"
msgid "Enable timelapse for print"
msgstr "Activa el timelapse per a la impressió"
@@ -18638,8 +18749,8 @@ msgstr "El fitxer subministrat no s'ha pogut llegir perquè està buit"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Format de fitxer desconegut. El fitxer d'entrada ha de tenir "
"extensió .stl, .obj, .amf( .xml )."
"Format de fitxer desconegut. El fitxer d'entrada ha de tenir extensió .stl, ."
"obj, .amf( .xml )."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
@@ -18761,10 +18872,6 @@ msgstr "El nom és el mateix que d'un altre perfil existent"
msgid "create new preset failed."
msgstr "s'ha produït un error en la creació d'un nou perfil."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19448,6 +19555,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -19482,6 +19606,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -19819,8 +19946,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 "
@@ -19869,9 +19996,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Rectangle"
msgid "Printable Space"
msgstr "Espai Imprimible"
@@ -20300,7 +20424,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -21161,8 +21285,8 @@ msgid ""
"Warning: The brim type is not set to \"painted\", the brim ears will not "
"take effect!"
msgstr ""
"Advertència: el tipus de Vora d'Adherència no està configurat com a "
"\"pintat\", les orelles de la Vora d'Adherència no tindran efecte!"
"Advertència: el tipus de Vora d'Adherència no està configurat com a \"pintat"
"\", les orelles de la Vora d'Adherència no tindran efecte!"
msgid "Set the brim type of this object to \"painted\""
msgstr ""
@@ -21232,6 +21356,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21632,9 +21877,6 @@ msgstr ""
#~ "No s'ha pogut instal·lar el connector. Comproveu si el programari "
#~ "antivirus l'ha bloquejat o suprimit."
#~ msgid "°C"
#~ msgstr "°C"
#~ msgid "travel"
#~ msgstr "recorregut"
@@ -21672,9 +21914,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Avançat"
#~ msgid "Packing data to 3MF"
#~ msgstr "Empaquetant dades a 3mf"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"
@@ -21954,8 +22193,8 @@ msgstr ""
#~ "No AMS filaments. Please select a printer in 'Device' page to load AMS "
#~ "info."
#~ msgstr ""
#~ "Sense filaments AMS. Seleccioneu una impressora a la pàgina "
#~ "\"Dispositiu\" per carregar informació AMS."
#~ "Sense filaments AMS. Seleccioneu una impressora a la pàgina \"Dispositiu"
#~ "\" per carregar informació AMS."
#~ msgid ""
#~ "Sync filaments with AMS will drop all current selected filament presets "
@@ -22629,9 +22868,6 @@ msgstr ""
#~ msgstr ""
#~ "carregar la configuració del filament Uptodate quan s'utilitza UptoDate"
#~ msgid "Downward machines settings"
#~ msgstr "configuració descendent de les màquines"
#~ msgid "Load filament IDs for each object"
#~ msgstr "Carregar els identificadors del filament per a cada objecte"
@@ -23308,10 +23544,10 @@ msgstr ""
#~ msgid "Test Storage Download:"
#~ msgstr "Prova de Descàrrega des de l'Emmagatzematge:"
#~ msgid "Test plugin download"
#~ msgid "Test plug-in download"
#~ msgstr "Prova de descàrrega de plugins"
#~ msgid "Test Plugin Download:"
#~ msgid "Test Plug-in Download:"
#~ msgstr "Prova de Descàrrega de Plugins:"
#~ msgid "Test Storage Upload"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-05-18 09:32-0300\n"
"Last-Translator: Alexandre Folle de Menezes\n"
"Language-Team: \n"
@@ -14,26 +14,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Poedit 3.6\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1533,6 +1513,30 @@ msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Assemble"
msgstr ""
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr ""
@@ -1571,6 +1575,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr ""
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1594,10 +1646,10 @@ msgstr ""
msgid "Untitled"
msgstr ""
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1682,6 +1734,9 @@ msgstr ""
msgid "Choose one file (GCODE/3MF):"
msgstr ""
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr ""
@@ -1739,7 +1794,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -1965,6 +2020,9 @@ msgid ""
"No - Do not change these settings for me"
msgstr ""
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr ""
@@ -2074,9 +2132,6 @@ msgstr "Convert from Meters"
msgid "Restore to meters"
msgstr "Restore to Meter"
msgid "Assemble"
msgstr ""
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Assemble the selected objects into an object with multiple parts"
@@ -2570,6 +2625,10 @@ msgstr ""
msgid "Line Type"
msgstr ""
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr ""
@@ -2687,7 +2746,7 @@ msgstr ""
msgid "Connecting..."
msgstr ""
msgid "Auto-refill"
msgid "Auto Refill"
msgstr ""
msgid "Load"
@@ -3066,6 +3125,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3376,9 +3467,6 @@ msgstr ""
msgid "Nozzle"
msgstr ""
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3443,9 +3531,6 @@ msgstr "Print with filament in AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Print with filament on external spool"
msgid "Auto Refill"
msgstr ""
msgid "Left"
msgstr ""
@@ -3457,7 +3542,7 @@ msgid ""
"following order."
msgstr ""
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3583,24 +3668,25 @@ msgid "Calibration"
msgstr ""
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
msgstr ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
msgid ""
"Failed to install the plug-in. The plug-in file may be in use. Please "
"restart OrcaSlicer and try again. Also check whether it is blocked or "
"deleted by anti-virus software."
msgstr ""
"Failed to install the plug-in. The plug-in file may be in use. Please "
"restart OrcaSlicer and try again. Also check whether it is blocked or has "
"been deleted by anti-virus software."
msgid "Click here to see more info"
msgstr ""
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3748,9 +3834,6 @@ msgstr ""
msgid "Settings"
msgstr ""
msgid "Texture"
msgstr ""
msgid "Remove"
msgstr ""
@@ -3924,6 +4007,7 @@ msgid ""
"Reset to 0."
msgstr ""
#, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4532,6 +4616,9 @@ msgstr ""
msgid "Fan speed"
msgstr ""
msgid "°C"
msgstr ""
msgid "Time"
msgstr ""
@@ -4688,7 +4775,7 @@ msgstr ""
msgid "Fan Speed (%)"
msgstr "Fan speed (%)"
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr ""
msgid "Volumetric flow rate (mm³/s)"
@@ -5007,7 +5094,7 @@ msgstr ""
msgid "Size:"
msgstr ""
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5078,7 +5165,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6333,6 +6420,9 @@ msgid ""
"to give a positive rating (4 or 5 stars)."
msgstr ""
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr ""
@@ -6343,6 +6433,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr ""
@@ -6451,7 +6549,7 @@ msgid "Undo integration was successful."
msgstr ""
msgid "New network plug-in available."
msgstr "New network plug-in available"
msgstr ""
msgid "Details"
msgstr ""
@@ -6713,7 +6811,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7214,7 +7312,7 @@ msgid "Please select a file"
msgstr ""
msgid "Do you want to replace it"
msgstr "Do you want to replace it?"
msgstr ""
msgid "Message"
msgstr ""
@@ -7248,7 +7346,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr ""
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
msgid ""
@@ -7795,7 +7894,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -7980,40 +8079,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr ""
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8087,19 +8186,16 @@ msgstr ""
msgid "trace"
msgstr ""
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8318,7 +8414,10 @@ msgstr ""
msgid "Slicing Plate 1"
msgstr ""
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr ""
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8626,7 +8725,7 @@ msgstr ""
msgid "Textured PEI Plate"
msgstr ""
msgid "Cool Plate (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid "Click here if you can't connect to the printer"
@@ -8921,7 +9020,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9017,8 +9116,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 ""
@@ -9222,9 +9321,6 @@ msgstr ""
msgid "Nozzle temperature when printing"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -9655,6 +9751,12 @@ msgstr ""
msgid "Select presets to compare"
msgstr ""
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10054,6 +10156,12 @@ msgstr ""
msgid "Login"
msgstr ""
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr ""
@@ -10746,7 +10854,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -12032,7 +12140,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
msgid "Limited filtering"
@@ -12410,7 +12518,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)"
@@ -13077,8 +13185,8 @@ msgid "mm/s² or %"
msgstr ""
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
msgid ""
@@ -13188,10 +13296,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"
@@ -13613,9 +13721,9 @@ msgstr ""
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
msgid "Exclude objects"
@@ -13882,7 +13990,7 @@ msgstr "Ironing type"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"Ironing uses a small flow to print at the same height of a surface to make "
"flat surfaces smoother. This setting controls which layers are being ironed."
@@ -14765,8 +14873,8 @@ msgid "Role base wipe speed"
msgstr ""
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -14974,7 +15082,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"If smooth or traditional mode is selected, a timelapse video will be "
@@ -15494,8 +15602,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"
@@ -15731,6 +15839,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -16256,7 +16370,7 @@ msgid ""
"machines in the list."
msgstr ""
msgid "downward machines settings"
msgid "Downward machines settings"
msgstr ""
msgid "The machine settings list needs to do downward checking."
@@ -16287,8 +16401,8 @@ msgid "Debug level"
msgstr ""
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
msgid "Enable timelapse for print"
@@ -16876,10 +16990,6 @@ msgstr ""
msgid "create new preset failed."
msgstr ""
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -17483,6 +17593,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -17517,6 +17644,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -17837,8 +17967,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 ""
@@ -17884,9 +18014,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Printable Space"
msgstr ""
@@ -18270,7 +18397,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -19088,6 +19215,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"

File diff suppressed because it is too large Load Diff

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: Guislain Cyril, Thomas Lété\n"
@@ -17,26 +17,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==0 || n==1) ? 0 : 1;\n"
"X-Generator: Poedit 3.6\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1603,6 +1583,30 @@ msgstr "Distance parallèle :"
msgid "Flip by Face 2"
msgstr "Retournement par la Face 2"
msgid "Assemble"
msgstr "Assembler"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Remarque"
@@ -1645,6 +1649,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Texture"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1673,10 +1725,10 @@ msgstr "Orca Slicer a reçu une exception non gérée : %1%"
msgid "Untitled"
msgstr "Sans titre"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1773,6 +1825,9 @@ msgstr "Choisissez un fichier ZIP"
msgid "Choose one file (GCODE/3MF):"
msgstr ""
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Certains préréglages sont modifiés."
@@ -1834,7 +1889,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -2072,6 +2127,9 @@ msgstr ""
"Oui - Modifier ces paramètres automatiquement\n"
"Non - Ne pas modifier ces paramètres pour moi"
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "Texte"
@@ -2182,9 +2240,6 @@ msgstr "Convertir en mètre"
msgid "Restore to meters"
msgstr "Restaurer au compteur"
msgid "Assemble"
msgstr "Assembler"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Assembler les objets sélectionnés à un objet en plusieurs parties"
@@ -2698,6 +2753,10 @@ msgstr "Impression multicolore"
msgid "Line Type"
msgstr "Type de ligne"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Plus"
@@ -2815,8 +2874,8 @@ msgstr "Vérifiez la connexion réseau entre l'imprimante et Studio."
msgid "Connecting..."
msgstr "Connexion…"
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Recharge Automatique"
msgid "Load"
msgstr "Charger"
@@ -3217,6 +3276,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3547,9 +3638,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Buse"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3617,9 +3705,6 @@ msgstr "Imprimer avec du filament de l'AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Impression avec du filament de la bobine externe"
msgid "Auto Refill"
msgstr "Recharge Automatique"
msgid "Left"
msgstr "Gauche"
@@ -3633,7 +3718,7 @@ msgstr ""
"Lorsque le filament actuel est épuisé, l'imprimante\n"
"continue d'imprimer dans l'ordre suivant."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3775,8 +3860,8 @@ msgid "Calibration"
msgstr "Calibration"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"Échec du téléchargement du plug-in. Veuillez vérifier les paramètres de "
"votre pare-feu et votre logiciel VPN puis réessayer."
@@ -3791,8 +3876,8 @@ msgid "Click here to see more info"
msgstr "cliquez ici pour voir plus d'informations"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3966,9 +4051,6 @@ msgstr "Charger une forme depuis un STL …"
msgid "Settings"
msgstr "Réglages"
msgid "Texture"
msgstr "Texture"
msgid "Remove"
msgstr "Retirer"
@@ -4167,6 +4249,7 @@ msgstr ""
"seam_slope_start_height doit être inférieur à la hauteur de couche.\n"
"Remise à 0."
#, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4788,6 +4871,9 @@ msgstr ""
msgid "Fan speed"
msgstr "Vitesse du ventilateur"
msgid "°C"
msgstr "°C"
msgid "Time"
msgstr "Durée"
@@ -4944,8 +5030,8 @@ msgstr "Vitesse réelle (mm/s)"
msgid "Fan Speed (%)"
msgstr "Vitesse du ventilateur (%)"
msgid "Temperature ()"
msgstr "Température ()"
msgid "Temperature (°C)"
msgstr "Température (°C)"
msgid "Volumetric flow rate (mm³/s)"
msgstr "Débit volumétrique (mm³/s)"
@@ -5263,7 +5349,7 @@ msgstr "Le volume:"
msgid "Size:"
msgstr "Taille:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5336,7 +5422,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6663,6 +6749,9 @@ msgstr ""
"Au moins un enregistrement dimpression réussi de ce profil\n"
"dimpression est requis pour donner une note positive (4 ou 5 étoiles)."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "État"
@@ -6673,6 +6762,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Ne plus afficher"
@@ -7050,7 +7147,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7571,7 +7668,7 @@ msgid "Please select a file"
msgstr "Veuillez sélectionner un fichier"
msgid "Do you want to replace it"
msgstr "Voulez-vous le remplacer ?"
msgstr "Voulez-vous le remplacer"
msgid "Message"
msgstr "Message"
@@ -7605,7 +7702,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Veuillez résoudre les erreurs de découpage et republier."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Le plug-in réseau n'est pas détecté. Les fonctionnalités liées au réseau ne "
"sont pas disponibles."
@@ -8203,7 +8301,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8409,40 +8507,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "Activer le plug-in réseau"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8510,19 +8608,16 @@ msgstr "déboguer"
msgid "trace"
msgstr "tracé"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8744,8 +8839,11 @@ msgstr "La publication a été annulée"
msgid "Slicing Plate 1"
msgstr "Découper Plaque 1"
msgid "Packing data to 3mf"
msgstr "Collecte des données 3mf"
msgid "Packing data to 3MF"
msgstr ""
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
msgstr "Ouvrir la page internet"
@@ -9069,8 +9167,8 @@ msgstr "Plaque lisse haute température"
msgid "Textured PEI Plate"
msgstr "Plaque PEI texturée"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Connexion impossible à limprimante"
@@ -9409,7 +9507,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9532,8 +9630,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 doutil, il est recommandé "
"dajouter une \"Tour dessuyage timelapse\".\n"
@@ -9755,9 +9853,6 @@ msgstr "Température d'impression"
msgid "Nozzle temperature when printing"
msgstr "Température de la buse lors de l'impression"
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10235,6 +10330,12 @@ msgstr "Afficher tous les préréglages (y compris incompatibles)"
msgid "Select presets to compare"
msgstr "Sélectionnez les préréglages à comparer"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10674,6 +10775,12 @@ msgstr "Cliquez ici pour le télécharger."
msgid "Login"
msgstr "Connexion"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr ""
"Le package de configuration est modifié dans le guide de configuration "
@@ -11411,7 +11518,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -13033,7 +13140,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
"Cette option peut aider à réduire le gonflement des surfaces supérieures "
"dans les modèles fortement inclinés ou courbés.\n"
@@ -13572,7 +13679,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
"Ajouter des séries de valeurs d'avance de pression (PA), les vitesses de "
"débit volumétrique et les accélérations auxquelles elles ont été mesurées, "
@@ -14390,8 +14497,8 @@ msgid "mm/s² or %"
msgstr "mm/s² ou %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Accélération du remplissage interne. Si la valeur est exprimée en "
"pourcentage (par exemple 100%), elle sera calculée en fonction de "
@@ -14513,10 +14620,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\" jusquau maximum à la couche "
@@ -15021,9 +15128,9 @@ msgstr "Label Objects"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Permet dajouter des commentaires dans le G-code sur les mouvements "
"dimpression de lobjet auquel ils appartiennent, ce qui est utile pour le "
@@ -15341,11 +15448,11 @@ msgstr "Type de lissage"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"Le lissage utilise un petit débit pour imprimer à nouveau sur la même "
"hauteur de surface pour rendre la surface plane plus lisse. Ce paramètre "
"contrôle quelle couche est repassée"
"contrôle quelle couche est repassée."
msgid "No ironing"
msgstr "Pas de lissage"
@@ -16413,8 +16520,8 @@ msgid "Role base wipe speed"
msgstr "Vitesse dessuyage basée sur la vitesse dextrusion"
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -16689,7 +16796,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"Si le mode fluide ou traditionnel est sélectionné, une vidéo en timelapse "
@@ -16838,8 +16945,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"
@@ -17299,8 +17406,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"
@@ -17606,6 +17713,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Rectangle"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -17840,8 +17953,8 @@ msgid ""
"Wipe tower is only compatible with relative mode. It is recommended on most "
"printers. Default is checked."
msgstr ""
"Lextrusion relative est recommandée lors de lutilisation de loption "
"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
"Lextrusion relative est recommandée lors de lutilisation de loption « "
"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
"non verrouillée (mode dextrusion absolu). La tour dessuyage nest "
"compatible quavec le mode relatif. Il est recommandé sur la plupart des "
"imprimantes. Loption par défaut est cochée"
@@ -18224,8 +18337,8 @@ msgstr ""
"si loption est activée, vérifier si la machine actuelle est compatible avec "
"les machines de la liste."
msgid "downward machines settings"
msgstr ""
msgid "Downward machines settings"
msgstr "Réglages des machines descendantes"
msgid "The machine settings list needs to do downward checking."
msgstr ""
@@ -18262,11 +18375,11 @@ msgid "Debug level"
msgstr "Niveau de débogage"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, "
"2 :avertissement, 3 :info, 4 :débogage, 5 :trace\n"
"Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, 2 :"
"avertissement, 3 :info, 4 :débogage, 5 :trace\n"
msgid "Enable timelapse for print"
msgstr "Activer le timelapse pour limpression"
@@ -18807,13 +18920,13 @@ msgstr "Le fichier fourni n'a pas pu être lu car il est vide"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Format de fichier inconnu : le fichier d'entrée doit porter "
"l'extension .stl, .obj ou .amf (.xml)."
"Format de fichier inconnu : le fichier d'entrée doit porter l'extension ."
"stl, .obj ou .amf (.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
"Format de fichier inconnu : le fichier d'entrée doit porter l'extension "
".3mf, .zip ou .amf."
"Format de fichier inconnu : le fichier d'entrée doit porter "
"l'extension .3mf, .zip ou .amf."
msgid "load_obj: failed to parse"
msgstr "load_obj : échec de l'analyse"
@@ -18931,10 +19044,6 @@ msgstr "Le nom est le même quun autre nom de préréglage existant"
msgid "create new preset failed."
msgstr "la création dun nouveau préréglage a échoué."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19627,6 +19736,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -19661,6 +19787,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -20005,8 +20134,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 "
@@ -20056,9 +20185,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Rectangle"
msgid "Printable Space"
msgstr "Espace imprimable"
@@ -20494,7 +20620,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -21434,6 +21560,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21831,6 +22078,9 @@ msgstr ""
"déformer, tels que lABS, une augmentation appropriée de la température du "
"plateau chauffant peut réduire la probabilité de déformation?"
#~ msgid "Packing data to 3mf"
#~ msgstr "Collecte des données 3mf"
#~ msgid "Line pattern of support."
#~ msgstr "Motif de ligne de support"
@@ -21841,9 +22091,6 @@ msgstr ""
#~ "Échec de l'installation du plug-in. Veuillez vérifier s'il est bloqué ou "
#~ "s'il a été supprimé par un logiciel anti-virus."
#~ msgid "°C"
#~ msgstr "°C"
#~ msgid "travel"
#~ msgstr "déplacement"
@@ -23002,9 +23249,6 @@ msgstr ""
#~ "charger les réglages du filament actualisés lors de lutilisation dun "
#~ "filament actualisé"
#~ msgid "Downward machines settings"
#~ msgstr "réglages des machines descendantes"
#~ msgid "Load filament IDs for each object"
#~ msgstr "Chargement des identifiants de filaments pour chaque objet"
@@ -23546,8 +23790,8 @@ msgstr ""
#~ "modèle. Réglez le « seuil dune 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 dune paroi » nest visible que si ce "
#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si loption "
#~ "« surfaces supérieures à une paroi » est activée."
#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si loption « "
#~ "surfaces supérieures à une paroi » est activée."
#, c-format, boost-format
#~ msgid ""
@@ -24329,10 +24573,10 @@ msgstr ""
#~ msgid "Test Storage Download:"
#~ msgstr "Test du téléchargement du stockage :"
#~ msgid "Test plugin download"
#~ msgid "Test plug-in download"
#~ msgstr "Test du téléchargement du plugin"
#~ msgid "Test Plugin Download:"
#~ msgid "Test Plug-in Download:"
#~ msgstr "Test du téléchargement du plugin :"
#~ msgid "Test Storage Upload"
@@ -24376,8 +24620,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)"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -11,26 +11,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Localazy (https://localazy.com)\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1541,6 +1521,30 @@ msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Assemble"
msgstr "Összeállítás"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Megjegyzés"
@@ -1581,6 +1585,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Textúra"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1604,10 +1656,10 @@ msgstr ""
msgid "Untitled"
msgstr "Névtelen"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1695,6 +1747,9 @@ msgstr ""
msgid "Choose one file (GCODE/3MF):"
msgstr ""
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Néhány beállítás megváltozott."
@@ -1755,7 +1810,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -1983,6 +2038,9 @@ msgid ""
"No - Do not change these settings for me"
msgstr ""
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr ""
@@ -2092,9 +2150,6 @@ msgstr "Átváltás méterről"
msgid "Restore to meters"
msgstr "Visszaállítás méterre"
msgid "Assemble"
msgstr "Összeállítás"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Összeállítja a kijelölt objektumot egy több részből álló objektummá"
@@ -2601,6 +2656,10 @@ msgstr "Többszínű nyomtatás"
msgid "Line Type"
msgstr "Vonaltípus"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Több"
@@ -2718,7 +2777,7 @@ msgstr ""
msgid "Connecting..."
msgstr "Csatlakozás..."
msgid "Auto-refill"
msgid "Auto Refill"
msgstr ""
msgid "Load"
@@ -3109,6 +3168,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3432,9 +3523,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Fúvóka"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3497,9 +3585,6 @@ msgstr "Nyomtatás az AMS-ben lévő filamentekkel"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Nyomtatás külső tartón lévő filamenttel"
msgid "Auto Refill"
msgstr ""
msgid "Left"
msgstr "Bal"
@@ -3513,7 +3598,7 @@ msgstr ""
"Amikor az aktuális filament elfogy, a nyomtató a következő sorrendben "
"folytatja a nyomtatást."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3647,8 +3732,8 @@ msgid "Calibration"
msgstr "Kalibrálás"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"Nem sikerült letölteni a bővítményt. Kérjük, ellenőrizd a tűzfal "
"beállításait és a VPN-szoftvert, majd próbálja meg újra."
@@ -3663,8 +3748,8 @@ msgid "Click here to see more info"
msgstr "kattints ide további információkért"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3830,9 +3915,6 @@ msgstr "Forma betöltése STL-ből..."
msgid "Settings"
msgstr "Beállítások"
msgid "Texture"
msgstr "Textúra"
msgid "Remove"
msgstr "Eltávolítás"
@@ -4020,6 +4102,7 @@ msgid ""
"Reset to 0."
msgstr ""
#, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4635,6 +4718,9 @@ msgstr ""
msgid "Fan speed"
msgstr "Ventilátor fordulatszám"
msgid "°C"
msgstr "°C"
msgid "Time"
msgstr "Idő"
@@ -4791,7 +4877,7 @@ msgstr "Tényleges sebesség (mm/s)"
msgid "Fan Speed (%)"
msgstr "Ventilátor fordulatszám (%)"
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr "Hőmérséklet (°C)"
msgid "Volumetric flow rate (mm³/s)"
@@ -5110,7 +5196,7 @@ msgstr "Térfogat:"
msgid "Size:"
msgstr "Méret:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5181,7 +5267,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6461,6 +6547,9 @@ msgstr ""
"At least one successful print record of this print profile is required \n"
"to give a positive rating (4 or 5 stars)."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Állapot"
@@ -6471,6 +6560,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Ne mutasd újra"
@@ -6844,7 +6941,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7357,7 +7454,7 @@ msgid "Please select a file"
msgstr "Kérjük, válassz egy fájlt"
msgid "Do you want to replace it"
msgstr "Do you want to replace it?"
msgstr "Cserélni szeretné"
msgid "Message"
msgstr "Üzenet"
@@ -7391,7 +7488,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Kérjük, orvosold a szeletelési hibákat, és próbáld meg újra."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Nem található a hálózati bővítmény. A hálózattal kapcsolatos szolgáltatások "
"nem érhetők el."
@@ -7947,7 +8045,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8138,40 +8236,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr ""
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8250,19 +8348,16 @@ msgstr "debug"
msgid "trace"
msgstr "követés"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8481,7 +8576,10 @@ msgstr "A közzététel törlésre került"
msgid "Slicing Plate 1"
msgstr "1. tálca szeletelése"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Adatok csomagolása 3mf-be"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8794,7 +8892,7 @@ msgstr ""
msgid "Textured PEI Plate"
msgstr ""
msgid "Cool Plate (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid "Click here if you can't connect to the printer"
@@ -9099,7 +9197,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9199,8 +9297,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 "
@@ -9418,9 +9516,6 @@ msgstr "Nyomtatási hőmérséklet"
msgid "Nozzle temperature when printing"
msgstr "Fúvóka hőmérséklete nyomtatáskor"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -9867,6 +9962,12 @@ msgstr "Minden beállítás megjelenítése (beleértve az inkompatibiliseket is
msgid "Select presets to compare"
msgstr ""
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10280,6 +10381,12 @@ msgstr "Kattints ide a letöltéshez."
msgid "Login"
msgstr "Bejelentkezés"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr "A konfigurációs csomag az előző konfigurációs útmutatóban módosult"
@@ -11007,7 +11114,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -12316,7 +12423,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
msgid "Limited filtering"
@@ -12702,7 +12809,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)"
@@ -13381,8 +13488,8 @@ msgid "mm/s² or %"
msgstr "mm/s² vagy %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Gyorsulás a ritkás kitöltéseknél. Ha az érték százalékban van megadva (pl. "
"100%), akkor az alapértelmezett gyorsulás alapján kerül kiszámításra."
@@ -13493,10 +13600,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"
@@ -13922,9 +14029,9 @@ msgstr "Objektumok címkézése"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
msgid "Exclude objects"
@@ -14192,7 +14299,7 @@ msgstr "Vasalás típusa"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"A vasalás kis anyagáramlás használatával kisimítja a sík felületeket. Ez a "
"beállítás szabályozza, hogy mely rétegeknél történik meg a vasalás."
@@ -15107,8 +15214,8 @@ msgid "Role base wipe speed"
msgstr ""
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -15328,7 +15435,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"Ha a sima vagy a hagyományos mód van kiválasztva, minden nyomtatásnál készül "
@@ -15884,8 +15991,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"
@@ -16123,6 +16230,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Négyzet"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -16679,7 +16792,7 @@ msgid ""
"machines in the list."
msgstr ""
msgid "downward machines settings"
msgid "Downward machines settings"
msgstr ""
msgid "The machine settings list needs to do downward checking."
@@ -16713,11 +16826,11 @@ msgid "Debug level"
msgstr "Hibakeresés szintje"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, "
"3:info, 4:debug, 5:trace\n"
"A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, 3:"
"info, 4:debug, 5:trace\n"
msgid "Enable timelapse for print"
msgstr ""
@@ -17309,10 +17422,6 @@ msgstr "A név megegyezik egy másik meglévő beállítás nevével"
msgid "create new preset failed."
msgstr "Új beállítás létrehozása sikertelen."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -17924,6 +18033,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -17958,6 +18084,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -18283,8 +18412,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 ""
@@ -18330,9 +18459,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Négyzet"
msgid "Printable Space"
msgstr "Nyomtatási terület"
@@ -18737,7 +18863,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -19573,6 +19699,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -19925,9 +20172,6 @@ msgstr ""
#~ "Nem sikerült telepíteni a bővítményt. Kérjük, ellenőrizd, hogy a "
#~ "vírusirtó szoftver nem blokkolta vagy törölte-e."
#~ msgid "°C"
#~ msgstr "°C"
#~ msgid "travel"
#~ msgstr "mozgás"
@@ -19965,9 +20209,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Haladó"
#~ msgid "Packing data to 3MF"
#~ msgstr "Adatok csomagolása 3mf-be"
#~ msgid "°"
#~ msgstr "°"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -14,26 +14,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Poedit 3.5\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1600,6 +1580,30 @@ msgstr "Distanza parallela:"
msgid "Flip by Face 2"
msgstr "Capovolgi da Faccia 2"
msgid "Assemble"
msgstr "Assembla"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Avvertenza"
@@ -1642,6 +1646,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "Basato su PrusaSlicer e BambuStudio"
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Trama"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1669,10 +1721,10 @@ msgstr "OrcaSlicer ha ricevuto un'eccezione non gestita: %1%"
msgid "Untitled"
msgstr "Senza titolo"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1768,6 +1820,9 @@ msgstr "Seleziona il file ZIP"
msgid "Choose one file (GCODE/3MF):"
msgstr "Scegli file (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Alcuni preset vengono modificati."
@@ -1829,7 +1884,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -2066,6 +2121,9 @@ msgstr ""
"Sì - Modificare automaticamente queste impostazioni\n"
"No - Non modificare queste impostazioni per me"
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "Testo"
@@ -2175,9 +2233,6 @@ msgstr "Converti da metri"
msgid "Restore to meters"
msgstr "Ripristina in metri"
msgid "Assemble"
msgstr "Assembla"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Assembla gli oggetti selezionati in un oggetto con più parti"
@@ -2692,6 +2747,10 @@ msgstr "Stampa multicolore"
msgid "Line Type"
msgstr "Tipo linea"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Altro"
@@ -2812,8 +2871,8 @@ msgstr "Controlla la connessione di rete della stampante e di OrcaSlicer."
msgid "Connecting..."
msgstr "Connessione..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Riempimento automatico"
msgid "Load"
msgstr "Carica"
@@ -3214,6 +3273,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3546,9 +3637,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Ugello"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3616,9 +3704,6 @@ msgstr "Stampa con filamento nell'AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Stampa filamento con bobina esterna"
msgid "Auto Refill"
msgstr "Riempimento automatico"
msgid "Left"
msgstr "Da sinistra"
@@ -3632,7 +3717,7 @@ msgstr ""
"Quando si esaurisce il materiale corrente, la stampante continuerà a "
"stampare nel seguente ordine."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3771,8 +3856,8 @@ msgid "Calibration"
msgstr "Calibrazione"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"Impossibile scaricare il modulo. Controlla le impostazioni del firewall e "
"VPN poi riprova."
@@ -3787,8 +3872,8 @@ msgid "Click here to see more info"
msgstr "clicca per ulteriori informazioni"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3964,9 +4049,6 @@ msgstr "Carica forma da STL..."
msgid "Settings"
msgstr "Impostazioni"
msgid "Texture"
msgstr "Trama"
msgid "Remove"
msgstr "Rimuovi"
@@ -4171,6 +4253,7 @@ msgstr ""
"seam_slope_start_height deve essere inferiore a layer_height.\n"
"È stato ripristinato a 0."
#, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4791,6 +4874,9 @@ msgstr ""
msgid "Fan speed"
msgstr "Velocità ventola"
msgid "°C"
msgstr "°C"
msgid "Time"
msgstr "Tempo"
@@ -4947,8 +5033,8 @@ msgstr "Velocità effettiva (mm/s)"
msgid "Fan Speed (%)"
msgstr "Velocità ventola (%)"
msgid "Temperature ()"
msgstr "Temperatura ()"
msgid "Temperature (°C)"
msgstr "Temperatura (°C)"
msgid "Volumetric flow rate (mm³/s)"
msgstr "Portata volumetrica (mm³/s)"
@@ -5266,7 +5352,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Dimensione:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5339,7 +5425,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6650,6 +6736,9 @@ msgstr ""
"riuscito \n"
"per dare una valutazione positiva (4 o 5 stelle)."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Stato"
@@ -6660,6 +6749,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Non mostrare più"
@@ -7041,7 +7138,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7602,7 +7699,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Risolvi gli errori di elaborazone e pubblica nuovamente."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Il modulo di rete non è stato rilevato. Le funzioni di rete non sono "
"disponibili."
@@ -8186,7 +8284,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8388,40 +8486,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "Abilita modulo di rete"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8495,19 +8593,16 @@ msgstr "debug"
msgid "trace"
msgstr "traccia"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8728,7 +8823,10 @@ msgstr "La pubblicazione è stata annullata"
msgid "Slicing Plate 1"
msgstr "Elaborazione Piatto 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Archiviazione dati su 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -9048,8 +9146,8 @@ msgstr "Piatto liscio ad alta temperatura"
msgid "Textured PEI Plate"
msgstr "Piatto PEI ruvido"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Piatto SuperTack a bassa temperatura"
msgid "Click here if you can't connect to the printer"
msgstr "Clicca qui se non puoi connetterti alla stampante"
@@ -9378,7 +9476,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9498,8 +9596,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 il gruppo testina, si consiglia di "
"aggiungere un \"Timelapse Torre di spurgo\"\n"
@@ -9721,9 +9819,6 @@ msgstr "Temperatura stampa"
msgid "Nozzle temperature when printing"
msgstr "Temperatura dell'ugello durante la stampa"
msgid "Cool Plate (SuperTack)"
msgstr "Piatto SuperTack a bassa temperatura"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10191,6 +10286,12 @@ msgstr "Mostra tutti i profili (compresi quelli non compatibili)"
msgid "Select presets to compare"
msgstr "Seleziona i profili da confrontare"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10634,6 +10735,12 @@ msgstr "Clicca qui per scaricarlo."
msgid "Login"
msgstr "Accedi"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr ""
"Il pacchetto di configurazione è stato modificato nella precedente Guida di "
@@ -11037,8 +11144,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 "
@@ -11370,7 +11477,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -12989,7 +13096,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
"Questa opzione può aiutare a ridurre le lacune o fori sulle superfici "
"superiori nei modelli molto inclinati o curvi.\n"
@@ -13012,7 +13119,7 @@ msgstr ""
"3. Nessun filtraggio: crea ponti interni su ogni potenziale sporgenza "
"interna. Questa opzione è utile per modelli di superficie superiore "
"fortemente inclinati; tuttavia, nella maggior parte dei casi, crea troppi "
"ponti non necessari"
"ponti non necessari."
msgid "Limited filtering"
msgstr "Filtraggio limitato"
@@ -13520,7 +13627,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
"Aggiungi i valori di anticipo di pressione (AP), portata volumetrica e "
"accelerazione secondo le prove effettuate, separati da una virgola. Digita "
@@ -13548,7 +13655,7 @@ msgstr ""
"stampi, più ampio è l'intervallo di valori AP accettabili. Se non è visibile "
"alcuna differenza, usa il valore AP dal test più veloce\n"
"3. Inserisci le triplette dei valori di anticipo di pressione, portata e "
"accelerazione nella casella di testo qui e salva il tuo profilo di filamento"
"accelerazione nella casella di testo qui e salva il tuo profilo di filamento."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)"
@@ -13902,9 +14009,9 @@ msgid ""
"this movement should be before the filament is retracted again."
msgstr ""
"Se impostato su un valore diverso da zero, il filamento viene spostato verso "
"l'ugello tra i singoli movimenti nei tubi di raffreddamento "
"(\"timbratura\"). Questa opzione configura la durata di questo movimento "
"prima che il filamento venga nuovamente retratto."
"l'ugello tra i singoli movimenti nei tubi di raffreddamento (\"timbratura"
"\"). Questa opzione configura la durata di questo movimento prima che il "
"filamento venga nuovamente retratto."
msgid "Speed of the first cooling move"
msgstr "Velocità del primo movimento di raffreddamento"
@@ -14334,8 +14441,8 @@ msgid "mm/s² or %"
msgstr "mm/s o %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Accelerazione del riempimento sparso. Se il valore è espresso in percentuale "
"(ad esempio 100%), verrà calcolato in base all'accelerazione predefinita."
@@ -14460,17 +14567,17 @@ msgstr "Velocità massima della ventola su strato"
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à in modo lineare da zero nello strato "
"\"close_fan_the_first_x_layers\" al massimo nello strato "
"\"full_fan_speed_layer\". Se inferiore a \"close_fan_the_first_x_layers\", "
"\"full_fan_speed_layer\" verrà ignorato. in tal caso la ventola funzionerà "
"alla massima velocità consentita nello strato "
"\"close_fan_the_first_x_layers\" + 1."
"alla massima velocità consentita nello strato \"close_fan_the_first_x_layers"
"\" + 1."
msgid "layer"
msgstr "strato"
@@ -14967,9 +15074,9 @@ msgstr "Etichetta oggetti"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Abilita questa opzione per aggiungere commenti nel G-Code, contrassegnando i "
"movimenti di stampa con l'oggetto a cui appartengono, il che è utile per il "
@@ -15287,11 +15394,11 @@ msgstr "Tipo di stiratura"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"La stiratura utilizza un flusso ridotto per stampare alla stessa altezza di "
"una superficie, per rendere le superfici piane più lisce. Questa "
"impostazione controlla quali strati vengono stirati"
"impostazione controlla quali strati vengono stirati."
msgid "No ironing"
msgstr "Non stirare"
@@ -16361,8 +16468,8 @@ msgid "Role base wipe speed"
msgstr "Velocità di spurgo basata su ruolo"
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -16636,7 +16743,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"Se si seleziona la modalità fluida o tradizionale, per ogni stampa verrà "
@@ -17247,8 +17354,8 @@ msgstr "Attiva 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"
@@ -17553,6 +17660,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Rettangolo"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -18168,8 +18281,8 @@ msgstr ""
"Se abilitato, controlla se la macchina corrente è compatibile con le "
"macchine presenti nell'elenco."
msgid "downward machines settings"
msgstr ""
msgid "Downward machines settings"
msgstr "Impostazioni macchine"
msgid "The machine settings list needs to do downward checking."
msgstr "L'elenco delle impostazioni delle macchine deve essere controllato."
@@ -18202,11 +18315,11 @@ msgid "Debug level"
msgstr "Livello di debug"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, "
"5:traccia\n"
"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, 5:"
"traccia\n"
msgid "Enable timelapse for print"
msgstr "Abilita timelapse per la stampa"
@@ -18749,13 +18862,13 @@ msgstr "Impossibile leggere il file fornito perché è vuoto"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Formato file sconosciuto: il file di input deve avere "
"un'estensione .stl, .obj o .amf(.xml)."
"Formato file sconosciuto: il file di input deve avere un'estensione .stl, ."
"obj o .amf(.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
"Formato file sconosciuto: il file di input deve avere un'estensione .3mf "
"o .zip.amf."
"Formato file sconosciuto: il file di input deve avere un'estensione .3mf o ."
"zip.amf."
msgid "load_obj: failed to parse"
msgstr "load_obj: impossibile analizzare"
@@ -18873,10 +18986,6 @@ msgstr "Il nome è lo stesso di un altro nome profilo esistente"
msgid "create new preset failed."
msgstr "creazione nuovo profilo non riuscita."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19571,6 +19680,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -19605,6 +19731,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -19944,12 +20073,12 @@ 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 i profili come \"Produttore Tipo Seriale @stampante "
"selezionata\".\n"
"Rinomineremo i profili come \"Produttore Tipo Seriale @stampante selezionata"
"\".\n"
"Per aggiungere il profilo per più stampanti, vai alla selezione della "
"stampante"
@@ -19997,9 +20126,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Rettangolo"
msgid "Printable Space"
msgstr "Spazio di stampa"
@@ -20424,7 +20550,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -21357,6 +21483,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21757,9 +22004,6 @@ msgstr ""
#~ "Impossibile installare il modulo. Verificare se è bloccato o se è stato "
#~ "eliminato dall'antivirus."
#~ msgid "°C"
#~ msgstr "°C"
#~ msgid "travel"
#~ msgstr "spostamento"
@@ -21800,9 +22044,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Avanzato"
#~ msgid "Packing data to 3MF"
#~ msgstr "Archiviazione dati su 3mf"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"
@@ -22772,9 +23013,6 @@ msgstr ""
#~ "Carica le impostazioni del filamento aggiornate quando si utilizza "
#~ "Aggiorna."
#~ msgid "Downward machines settings"
#~ msgstr "Impostazioni macchine"
#~ msgid "Load filament IDs for each object"
#~ msgstr "Carica gli ID dei filamenti per ogni oggetto"
@@ -23240,10 +23478,9 @@ msgstr ""
#~ "\n"
#~ "\n"
#~ "Per impostazione predefinita, i piccoli bridge interni vengono filtrati e "
#~ "il riempimento solido interno viene stampato direttamente sul "
#~ "riempimento.Questo metodo funziona bene nella maggior parte dei casi, "
#~ "velocizzando la stampa senza compromettere troppo la qualità della "
#~ "superficie superiore.\n"
#~ "il riempimento solido interno viene stampato direttamente sul riempimento."
#~ "Questo metodo funziona bene nella maggior parte dei casi, velocizzando la "
#~ "stampa senza compromettere troppo la qualità della superficie superiore.\n"
#~ "\n"
#~ "Tuttavia, in modelli fortemente inclinati o curvi, soprattutto se si "
#~ "utilizza una densità di riempimento troppo bassa, potrebbe comportare "
@@ -23457,13 +23694,12 @@ msgstr ""
#~ "nostro wiki.\n"
#~ "\n"
#~ "Di solito la calibrazione non è necessaria. Quando si avvia una stampa a "
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del "
#~ "flusso\" selezionata nel menu di avvio della stampa, la stampante seguirà "
#~ "il vecchio modo, calibrando il filamento prima della stampa; Quando si "
#~ "avvia una stampa multicolore/materiale, la stampante utilizzerà il "
#~ "parametro di compensazione predefinito per il filamento durante ogni "
#~ "cambio di filamento, che avrà un buon risultato nella maggior parte dei "
#~ "casi.\n"
#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del flusso"
#~ "\" selezionata nel menu di avvio della stampa, la stampante seguirà il "
#~ "vecchio modo, calibrando il filamento prima della stampa; Quando si avvia "
#~ "una stampa multicolore/materiale, la stampante utilizzerà il parametro di "
#~ "compensazione predefinito per il filamento durante ogni cambio di "
#~ "filamento, che avrà un buon risultato nella maggior parte dei casi.\n"
#~ "\n"
#~ "Si prega di notare che ci sono alcuni casi che renderanno il risultato "
#~ "della calibrazione non affidabile: utilizzo di una piastra di texture per "

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -14,26 +14,6 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.2.2\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1561,6 +1541,30 @@ msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Assemble"
msgstr "組立てる"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "通知"
@@ -1597,6 +1601,54 @@ msgstr "構成ファイル %1% がロードされましたが、一部の値が
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "テクスチャ"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1620,10 +1672,10 @@ msgstr ""
msgid "Untitled"
msgstr "名称未設定"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1711,6 +1763,9 @@ msgstr "ZIPファイルの選択"
msgid "Choose one file (GCODE/3MF):"
msgstr ""
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "プリセットが変更されました。"
@@ -1768,7 +1823,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -1996,6 +2051,9 @@ msgid ""
"No - Do not change these settings for me"
msgstr ""
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "テキスト"
@@ -2105,9 +2163,6 @@ msgstr "メートルから変換"
msgid "Restore to meters"
msgstr "メータル単位に復元"
msgid "Assemble"
msgstr "組立てる"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "選択したオブジェクトを一つオブジェクトに組み立てます(複数パーツ)"
@@ -2596,6 +2651,10 @@ msgstr "マルチカラー造形"
msgid "Line Type"
msgstr "種類"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "詳細"
@@ -2715,7 +2774,7 @@ msgstr "プリンターとOrcaのネットワーク接続を確認してくだ
msgid "Connecting..."
msgstr "接続中…"
msgid "Auto-refill"
msgid "Auto Refill"
msgstr ""
msgid "Load"
@@ -3096,6 +3155,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3409,9 +3500,6 @@ msgstr ""
msgid "Nozzle"
msgstr "ノズル"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3472,9 +3560,6 @@ msgstr "AMSのフィラメントで造形します"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "外部スプールホルダーのフィラメントで造形します"
msgid "Auto Refill"
msgstr ""
msgid "Left"
msgstr "左面"
@@ -3486,7 +3571,7 @@ msgid ""
"following order."
msgstr ""
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3610,8 +3695,8 @@ msgid "Calibration"
msgstr "キャリブレーション"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"プラグインをダウンロードできませんでした。ファイアウォールやVPN設定をご確認く"
"ださい。"
@@ -3626,8 +3711,8 @@ msgid "Click here to see more info"
msgstr "詳しくはこちら"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3792,9 +3877,6 @@ msgstr "STLからシェープデータを読込む"
msgid "Settings"
msgstr "設定"
msgid "Texture"
msgstr "テクスチャ"
msgid "Remove"
msgstr "削除"
@@ -3965,6 +4047,7 @@ msgid ""
"Reset to 0."
msgstr ""
#, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4575,6 +4658,9 @@ msgstr ""
msgid "Fan speed"
msgstr "回転速度"
msgid "°C"
msgstr "°C"
msgid "Time"
msgstr "時間"
@@ -4731,7 +4817,7 @@ msgstr "実速度 (mm/s)"
msgid "Fan Speed (%)"
msgstr "ファン回転速度 (%)"
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr "温度 (℃)"
msgid "Volumetric flow rate (mm³/s)"
@@ -5050,7 +5136,7 @@ msgstr "ボリューム"
msgid "Size:"
msgstr "サイズ:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5121,7 +5207,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6374,6 +6460,9 @@ msgid ""
"to give a positive rating (4 or 5 stars)."
msgstr ""
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "デバイス状態"
@@ -6384,6 +6473,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "次回から表示しない"
@@ -6752,7 +6849,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7287,7 +7384,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "スライシングエラーを解決して、もう一度公開していください"
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"ネットワーク プラグインが検出されません。ネットワーク関連の機能は利用できませ"
"ん。"
@@ -7838,7 +7936,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8027,40 +8125,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr ""
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8133,19 +8231,16 @@ msgstr "デバッグ"
msgid "trace"
msgstr "トレース"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8364,7 +8459,10 @@ msgstr "公開は取り消しました"
msgid "Slicing Plate 1"
msgstr "プレート1をスライス"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "データを構成中"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8670,7 +8768,7 @@ msgstr ""
msgid "Textured PEI Plate"
msgstr "PEIプレート"
msgid "Cool Plate (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid "Click here if you can't connect to the printer"
@@ -8965,7 +9063,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9061,8 +9159,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 ""
"ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」"
"を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム"
@@ -9271,9 +9369,6 @@ msgstr "造形温度"
msgid "Nozzle temperature when printing"
msgstr "ノズル温度"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -9697,6 +9792,12 @@ msgstr "全てのプリセットを表示"
msgid "Select presets to compare"
msgstr ""
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10109,6 +10210,12 @@ msgstr ""
msgid "Login"
msgstr "サインイン"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr "構成パッケージが前のコンフィグガイドに変更されました"
@@ -10806,7 +10913,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -12097,7 +12204,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
msgid "Limited filtering"
@@ -12473,7 +12580,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)"
@@ -13150,8 +13257,8 @@ msgid "mm/s² or %"
msgstr "mm/s² 或は %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
msgid ""
@@ -13256,10 +13363,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"
@@ -13674,9 +13781,9 @@ msgstr "オブジェクトにラベルを付ける"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"このオプションを有効にすると、Gコードのプリント移動コマンドに、どのオブジェク"
"トに属するものかがわかるようにラベルコメントが追加されます。これはOctoprintの"
@@ -13895,8 +14002,8 @@ msgid ""
"\"mmu_segmented_region_interlocking_depth\" is bigger than "
"\"mmu_segmented_region_max_width\". Zero disables this feature."
msgstr ""
"セグメント化された領域の連動深さ。mmu_segmented_region_max_width \"が0か、"
"\"mmu_segmented_region_interlocking_depth \"が "
"セグメント化された領域の連動深さ。mmu_segmented_region_max_width \"が0"
"か、\"mmu_segmented_region_interlocking_depth \"が "
"\"mmu_segmented_region_max_width \"より大きい場合は無視される。ゼロはこの機能"
"を無効にする。"
@@ -13959,7 +14066,7 @@ msgstr "アイロン面"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"アイロンでは、小さな流量で水平の表面をならします。ならす面を選択してくださ"
"い。"
@@ -14856,8 +14963,8 @@ msgid "Role base wipe speed"
msgstr ""
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -15062,7 +15169,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"有効にした場合、タイムラプスビデオを録画します。「スムーズ」では1層を造形した"
@@ -15597,8 +15704,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"
@@ -15829,6 +15936,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -16363,7 +16476,7 @@ msgid ""
"machines in the list."
msgstr ""
msgid "downward machines settings"
msgid "Downward machines settings"
msgstr ""
msgid "The machine settings list needs to do downward checking."
@@ -16396,11 +16509,11 @@ msgid "Debug level"
msgstr "デバッグ レベル"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"デバッグロギングレベルを設定します。0:fatal、1:error、2:warning、3:info、"
"4:debug、5:trace。\n"
"デバッグロギングレベルを設定します。0:fatal、1:error、2:warning、3:info、4:"
"debug、5:trace。\n"
msgid "Enable timelapse for print"
msgstr ""
@@ -17014,10 +17127,6 @@ msgstr ""
msgid "create new preset failed."
msgstr ""
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -17615,6 +17724,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -17649,6 +17775,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -17964,8 +18093,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 ""
@@ -18011,9 +18140,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Printable Space"
msgstr ""
@@ -18373,7 +18499,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -19194,6 +19320,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -19527,9 +19774,6 @@ msgstr ""
#~ "deleted by anti-virus software."
#~ msgstr "プラグインをインストールできませんでした。ご確認ください。"
#~ msgid "°C"
#~ msgstr "°C"
#~ msgid "travel"
#~ msgstr "移動"
@@ -19565,9 +19809,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "高度な設定"
#~ msgid "Packing data to 3MF"
#~ msgstr "データを構成中"
#~ msgid "°"
#~ msgstr "°"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
"Last-Translator: crwusiz <crwusiz@gmail.com>\n"
"Language-Team: \n"
@@ -18,26 +18,6 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.6\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1570,6 +1550,30 @@ msgstr "평행 거리:"
msgid "Flip by Face 2"
msgstr "면 2로 뒤집기"
msgid "Assemble"
msgstr "병합"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "공지사항"
@@ -1606,6 +1610,54 @@ msgstr "구성 파일 \"%1%\"가 로드되었지만 일부 값이 인식되지
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "텍스처"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1633,10 +1685,10 @@ msgstr "Orca Slicer에 처리되지 않은 예외가 발생했습니다: %1%"
msgid "Untitled"
msgstr "제목 없음"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1729,6 +1781,9 @@ msgstr "ZIP 파일 선택"
msgid "Choose one file (GCODE/3MF):"
msgstr "하나의 파일 선택 (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "일부 사전 설정이 수정 되었습니다."
@@ -1788,7 +1843,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -2024,6 +2079,9 @@ msgstr ""
"예 - 이 설정을 자동으로 변경합니다\n"
"아니요 - 이 설정을 변경하지 않음"
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "텍스트"
@@ -2133,9 +2191,6 @@ msgstr "미터에서 변환"
msgid "Restore to meters"
msgstr "미터로 복원"
msgid "Assemble"
msgstr "병합"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "선택한 객체를 여러 부품이 있는 객체로 조립"
@@ -2629,6 +2684,10 @@ msgstr "멀티컬러 출력"
msgid "Line Type"
msgstr "선 유형"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "더보기"
@@ -2746,8 +2805,8 @@ msgstr "프린터와 Orca Slicer의 네트워크 연결을 확인하세요."
msgid "Connecting..."
msgstr "연결 중..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "자동 리필"
msgid "Load"
msgstr "불러오기"
@@ -3136,6 +3195,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3459,9 +3550,6 @@ msgstr ""
msgid "Nozzle"
msgstr "노즐"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3525,9 +3613,6 @@ msgstr "AMS의 필라멘트로 출력"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "섀시 뒷면에 필라멘트를 장착하여 출력"
msgid "Auto Refill"
msgstr "자동 리필"
msgid "Left"
msgstr "왼쪽"
@@ -3539,7 +3624,7 @@ msgid ""
"following order."
msgstr "현재 재료가 소진되면 프린터는 다음 순서로 계속 출력합니다."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3673,8 +3758,8 @@ msgid "Calibration"
msgstr "교정"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"플러그인을 다운로드하지 못했습니다. 방화벽 설정 및 VPN 소프트웨어를 확인하고 "
"확인한 후 다시 시도하세요."
@@ -3689,8 +3774,8 @@ msgid "Click here to see more info"
msgstr "자세한 내용을 보려면 여기를 클릭하세요"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3853,9 +3938,6 @@ msgstr "STL에서 모양 불러오기..."
msgid "Settings"
msgstr "설정"
msgid "Texture"
msgstr "텍스처"
msgid "Remove"
msgstr "제거"
@@ -4045,6 +4127,7 @@ msgstr ""
"심_경사_시작_높이는 레이어_높이보다 작아야 합니다.\n"
"0으로 재설정합니다."
#, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4659,6 +4742,9 @@ msgstr ""
msgid "Fan speed"
msgstr "팬 속도"
msgid "°C"
msgstr "°C"
msgid "Time"
msgstr "시간"
@@ -4815,7 +4901,7 @@ msgstr "실제 속도 (mm/s)"
msgid "Fan Speed (%)"
msgstr "팬 속도 (%)"
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr "온도 (℃)"
msgid "Volumetric flow rate (mm³/s)"
@@ -5134,7 +5220,7 @@ msgstr "용량:"
msgid "Size:"
msgstr "크기:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5207,7 +5293,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6016,8 +6102,8 @@ msgid ""
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
"Slicer and export a new .gcode.3mf file."
msgstr ""
".gcode.3mf 파일에는 Gcode 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 "
"새 .gcode.3mf 파일을 내보내십시오."
".gcode.3mf 파일에는 Gcode 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 새 ."
"gcode.3mf 파일을 내보내십시오."
#, c-format, boost-format
msgid "File '%s' was lost! Please download it again."
@@ -6495,6 +6581,9 @@ msgstr ""
"긍정적인 평가(별4개 또는 5개)를 제공하려면\n"
"이 출력 사전 설정의 성공적인 출력 기록이 하나 이상 필요합니다."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "상태"
@@ -6505,6 +6594,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "다시 표시하지 않음"
@@ -6882,7 +6979,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7429,7 +7526,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "슬라이싱 오류를 해결하고 다시 시도하세요."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"네트워크 플러그인이 감지되지 않습니다. 네트워크 관련 기능을 사용할 수 없습니"
"다."
@@ -7994,7 +8092,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8189,40 +8287,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "네트워크 플러그인 사용"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8299,19 +8397,16 @@ msgstr "디버그"
msgid "trace"
msgstr "추적"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8530,7 +8625,10 @@ msgstr "게시가 취소되었습니다"
msgid "Slicing Plate 1"
msgstr "플레이트 1 슬라이싱"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "데이터를 3mf로 압축 중"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8844,8 +8942,8 @@ msgstr "부드러운 고온 플레이트"
msgid "Textured PEI Plate"
msgstr "텍스처 PEI 플레이트"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "쿨 플레이트(슈퍼택)"
msgid "Click here if you can't connect to the printer"
msgstr "프린터에 연결할 수 없는 경우 여기를 클릭하세요"
@@ -9154,7 +9252,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9269,8 +9367,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"
@@ -9480,9 +9578,6 @@ msgstr "출력 온도"
msgid "Nozzle temperature when printing"
msgstr "출력 시 노즐 온도"
msgid "Cool Plate (SuperTack)"
msgstr "쿨 플레이트(슈퍼택)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -9932,6 +10027,12 @@ msgstr "모든 사전 설정 표시(호환되지 않는 설정 포함)"
msgid "Select presets to compare"
msgstr "비교할 사전 설정 선택"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10360,6 +10461,12 @@ msgstr "다운로드하려면 여기를 클릭하세요."
msgid "Login"
msgstr "로그인"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr "이전 구성 가이드에서 구성 패키지가 변경되었습니다"
@@ -11070,7 +11177,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -11454,9 +11561,9 @@ msgid ""
msgstr ""
"Orca Slicer은 Gcode 파일을 프린터 호스트에 업로드할 수 있습니다. 이 필드에는 "
"프린터 호스트 인스턴스의 호스트 이름, IP 주소 또는 URL이 포함되어야 합니다. "
"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://"
"username:password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력"
"하여 액세스할 수 있습니다"
"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://username:"
"password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력하여 액세"
"스할 수 있습니다"
msgid "Device UI"
msgstr "장치 UI"
@@ -12549,7 +12656,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
"이 옵션을 사용하면 심하게 기울어지거나 구부러진 모델에서 상단 표면의 필링을 "
"줄일 수 있습니다.\n"
@@ -13030,7 +13137,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
"PA 값 세트, 측정된 압출 압출량 속도 및 가속도를 쉼표로 구분하여 추가합니다. "
"한 줄에 하나의 값 세트가 있습니다. 예를 들어\n"
@@ -13788,8 +13895,8 @@ msgid "mm/s² or %"
msgstr "mm/s² 또는 %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"드문 채우기 가속도. 값이 백분율 (예. 100%)로 표시되면 기본 가속도를 기준으로 "
"계산됩니다."
@@ -13903,10 +14010,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\"가 "
@@ -14384,9 +14491,9 @@ msgstr "객체 이름표"
# Wipe into this object;s infill/Wipe into this object
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"이 옵션을 선택하면 Gcode 출력시 이동에 설명을 추가할 수 있습니다. 이는 "
"Octoprint CancelObject 플러그인에 유용합니다.\n"
@@ -14686,7 +14793,7 @@ msgstr "다림질 유형"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"다림질은 평평한 표면을 더 부드럽게 만들기 위해 같은 높이의 표면에 소량의 압출"
"로 다시 출력하는 것입니다. 이 설정은 다림질 레이어를 제어합니다"
@@ -15686,8 +15793,8 @@ msgid "Role base wipe speed"
msgstr "역할 기반 노즐 청소 속도"
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -15936,7 +16043,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"유연 또는 기존 모드를 선택한 경우 각 출력에 대해 타임랩스 비디오가 생성됩니"
@@ -16504,8 +16611,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"
@@ -16782,6 +16889,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "직사각형"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -17364,8 +17477,8 @@ msgid ""
msgstr ""
"활성화된 경우 현재 컴퓨터가 목록에 있는 컴퓨터와 하위 호환되는지 확인합니다."
msgid "downward machines settings"
msgstr ""
msgid "Downward machines settings"
msgstr "하향 머신 설정"
msgid "The machine settings list needs to do downward checking."
msgstr "머신 설정 목록에서 아래쪽을 확인해야 합니다"
@@ -17397,8 +17510,8 @@ msgid "Debug level"
msgstr "디버그 수준"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"디버그 로깅 수준을 설정합니다. 0:치명적, 1:오류, 2:경고, 3:정보, 4:디버그, 5:"
"추적\n"
@@ -18029,10 +18142,6 @@ msgstr "이름이 기존의 다른 사전 설정 이름과 동일합니다"
msgid "create new preset failed."
msgstr "새 사전 설정을 생성하지 못했습니다."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -18686,6 +18795,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -18720,6 +18846,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -19049,8 +19178,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 ""
@@ -19096,9 +19225,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "직사각형"
msgid "Printable Space"
msgstr "출력 가능 공간"
@@ -19503,7 +19629,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -20396,6 +20522,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -20784,9 +21031,6 @@ msgstr ""
#~ "플러그인을 설치하지 못했습니다. 안티바이러스 소프트웨어에 의해 차단 또는 "
#~ "삭제되었는지 확인하세요."
#~ msgid "°C"
#~ msgstr "°C"
#~ msgid "travel"
#~ msgstr "이동"
@@ -20824,9 +21068,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "전문가 모드"
#~ msgid "Packing data to 3MF"
#~ msgstr "데이터를 3mf로 압축 중"
#~ msgid ""
#~ "Filament shrinkage will not be used because filament shrinkage for the "
#~ "used filaments differs significantly."
@@ -21809,9 +22050,6 @@ msgstr ""
#~ msgid "Load uptodate filament settings when using uptodate."
#~ msgstr "최신 필라멘트 설정 사용 시 최신 필라멘트 설정 로드"
#~ msgid "Downward machines settings"
#~ msgstr "하향 머신 설정"
#~ msgid "Load filament IDs for each object"
#~ msgstr "각 객체에 대한 필라멘트 ID 로드"
@@ -21840,8 +22078,8 @@ msgstr ""
#~ msgstr "mm/mm"
#~ 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"
@@ -22801,10 +23039,10 @@ msgstr ""
#~ msgid "Test Storage Download:"
#~ msgstr "테스트 저장소 다운로드:"
#~ msgid "Test plugin download"
#~ msgid "Test plug-in download"
#~ msgstr "테스트 플러그인 다운로드"
#~ msgid "Test Plugin Download:"
#~ msgid "Test Plug-in Download:"
#~ msgstr "테스트 플러그인 다운로드:"
#~ msgid "Test Storage Upload"
@@ -22868,8 +23106,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 prinetrs, Please go to printer selection"
#~ msgstr ""
#~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"

View File

@@ -1,4 +1,3 @@
src/libslic3r/PresetBundle.cpp
src/slic3r/GUI/DeviceCore/DevBed.cpp
src/slic3r/GUI/DeviceCore/DevBed.h
src/slic3r/GUI/DeviceCore/DevConfig.h
@@ -68,6 +67,7 @@ src/slic3r/GUI/Gizmos/GLGizmoText.hpp
src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp
src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp
src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp
src/slic3r/GUI/Gizmos/GLGizmoAssembly.cpp
src/slic3r/GUI/GUI.cpp
src/slic3r/GUI/GUI_App.cpp
src/slic3r/GUI/GUI_AuxiliaryList.cpp
@@ -81,6 +81,7 @@ src/slic3r/GUI/GUI_ObjectTable.hpp
src/slic3r/GUI/GUI_ObjectTableSettings.cpp
src/slic3r/GUI/GUI_ObjectTableSettings.hpp
src/slic3r/GUI/GUI_Preview.cpp
src/slic3r/GUI/2DBed.cpp
src/slic3r/GUI/HintNotification.cpp
src/slic3r/GUI/IMSlider.cpp
src/slic3r/GUI/Widgets/SideTools.cpp
@@ -96,6 +97,7 @@ src/slic3r/GUI/Jobs/RotoptimizeJob.cpp
src/slic3r/GUI/Jobs/BindJob.cpp
src/slic3r/GUI/Jobs/PrintJob.cpp
src/slic3r/GUI/Jobs/SendJob.cpp
src/slic3r/GUI/Jobs/EmbossJob.cpp
src/slic3r/GUI/ThermalPreconditioningDialog.cpp
src/slic3r/GUI/ThermalPreconditioningDialog.hpp
src/slic3r/GUI/Jobs/SLAImportJob.cpp
@@ -165,7 +167,6 @@ src/slic3r/GUI/Tab.hpp
src/slic3r/GUI/UnsavedChangesDialog.cpp
src/slic3r/GUI/Auxiliary.cpp
src/slic3r/GUI/UpdateDialogs.cpp
src/slic3r/GUI/UnsavedChangesDialog.cpp
src/slic3r/GUI/ObjColorDialog.cpp
src/slic3r/GUI/SyncAmsInfoDialog.cpp
src/slic3r/GUI/WipeTowerDialog.cpp
@@ -178,12 +179,10 @@ src/slic3r/GUI/KBShortcutsDialog.cpp
src/slic3r/GUI/ReleaseNote.cpp
src/slic3r/GUI/ReleaseNote.hpp
src/slic3r/GUI/UpgradePanel.cpp
src/slic3r/GUI/UnsavedChangesDialog.cpp
src/slic3r/Utils/FixModelByWin10.cpp
src/slic3r/Utils/PresetUpdater.cpp
src/slic3r/Utils/Http.cpp
src/slic3r/Utils/Process.cpp
src/slic3r/GUI/Jobs/PrintJob.cpp
src/libslic3r/GCode.cpp
src/libslic3r/GCode/ToolOrdering.cpp
src/libslic3r/ExtrusionEntity.cpp
@@ -237,7 +236,6 @@ src/slic3r/Utils/Obico.cpp
src/slic3r/Utils/SimplyPrint.cpp
src/slic3r/Utils/Flashforge.cpp
src/slic3r/GUI/Jobs/OAuthJob.cpp
src/slic3r/GUI/BackgroundSlicingProcess.cpp
src/slic3r/GUI/Gizmos/GLGizmoBrimEars.cpp
src/slic3r/GUI/PartSkipDialog.cpp
src/slic3r/GUI/PartSkipDialog.hpp
@@ -246,4 +244,8 @@ src/slic3r/GUI/SkipPartCanvas.hpp
src/slic3r/GUI/FilamentBitmapUtils.cpp
src/slic3r/GUI/FilamentBitmapUtils.hpp
src/slic3r/GUI/FilamentPickerDialog.cpp
src/slic3r/GUI/NetworkPluginDialog.cpp
src/slic3r/GUI/RammingChart.cpp
src/slic3r/GUI/StepMeshDialog.cpp
src/slic3r/GUI/FilamentPickerDialog.hpp
src/libslic3r/PresetBundle.cpp

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-10-25 23:01+0300\n"
"Last-Translator: Gintaras Kučinskas <sharanchius@gmail.com>\n"
"Language-Team: \n"
@@ -16,30 +16,10 @@ 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 || n%100>19) ? 0 : "
"n%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : n"
"%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n"
"X-Generator: Poedit 3.6\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1582,6 +1562,30 @@ msgstr "Lygiagretus atstumas:"
msgid "Flip by Face 2"
msgstr "Apversti pagal paviršių 2"
msgid "Assemble"
msgstr "Surinkti"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Įspėjimas"
@@ -1622,6 +1626,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "Remiantis „PrusaSlicer“ ir „BambuStudio“"
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Tekstūra"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1650,10 +1702,10 @@ msgstr "OrcaSlicer susidūrė su neapdorota klaida: %1%"
msgid "Untitled"
msgstr "Be pavadinimo"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1750,6 +1802,9 @@ msgstr "Pasirinkite ZIP failą"
msgid "Choose one file (GCODE/3MF):"
msgstr "Pasirinkite vieną failą (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Kai kurie nustatymai pakeisti."
@@ -1811,7 +1866,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -2048,6 +2103,9 @@ msgstr ""
"Taip - Pakeisti šiuos nustatymus automatiškai\n"
"Ne - Nekeisti šių nustatymų"
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "Teskstas"
@@ -2157,9 +2215,6 @@ msgstr "Konvertuoti iš metrų"
msgid "Restore to meters"
msgstr "Grąžinti į metrus"
msgid "Assemble"
msgstr "Surinkti"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Sujungti pasirinktus objektus į daugiadalį objektą"
@@ -2677,6 +2732,10 @@ msgstr "Spalvotas spausdinimas"
msgid "Line Type"
msgstr "Linijos tipas"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Daugiau"
@@ -2795,8 +2854,8 @@ msgstr "Prašome patikrinti spausdintuvo ir OrcaSlicer ryšį su tinklu."
msgid "Connecting..."
msgstr "Jungiamasi..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Automatinis papildymas"
msgid "Load"
msgstr "Įkelti"
@@ -3195,6 +3254,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3522,9 +3613,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Purkštukas"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3591,9 +3679,6 @@ msgstr "Spausdinti AMS gijomis"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Spausdinti gijomis, sumontuotomis ant dėžės"
msgid "Auto Refill"
msgstr "Automatinis papildymas"
msgid "Left"
msgstr "Kairė"
@@ -3606,7 +3691,7 @@ msgid ""
msgstr ""
"Pasibaigus esamai medžiagai, spausdintuvas toliau spausdins šia tvarka."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3740,8 +3825,8 @@ msgid "Calibration"
msgstr "Kalibravimas"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"Nepavyko atsisiųsti papildinio. Patikrinkite savo užkardos nustatymus ir VPN "
"programinę įrangą, ir bandykite dar kartą."
@@ -3756,8 +3841,8 @@ msgid "Click here to see more info"
msgstr "spustelėkite norėdami gauti daugiau informacijos"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3927,9 +4012,6 @@ msgstr "Įkelti formą iš STL..."
msgid "Settings"
msgstr "Nustatymai"
msgid "Texture"
msgstr "Tekstūra"
msgid "Remove"
msgstr "Pašalinti"
@@ -4132,7 +4214,7 @@ msgstr ""
"seam_slope_start_height turi būti mažesnis nei layer_height.\n"
"Atstatoma į 0."
#, fuzzy
#, fuzzy, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4768,6 +4850,9 @@ msgstr ""
msgid "Fan speed"
msgstr "Ventiliatoriaus greitis"
msgid "°C"
msgstr "°C"
msgid "Time"
msgstr "Laikas"
@@ -4924,8 +5009,8 @@ msgstr "Faktinis greitis (mm/s)"
msgid "Fan Speed (%)"
msgstr "Ventiliatoriaus greitis (%)"
msgid "Temperature ()"
msgstr "Temperatūra ()"
msgid "Temperature (°C)"
msgstr "Temperatūra (°C)"
msgid "Volumetric flow rate (mm³/s)"
msgstr "Tūrinis srautas (mm³/s)"
@@ -5246,7 +5331,7 @@ msgstr "Tūris:"
msgid "Size:"
msgstr "Dydis:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5319,7 +5404,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6632,6 +6717,9 @@ msgstr ""
"Norint palikti teigiamą įvertinimą (4 arba 5 žvaigždutės), būtinas \n"
"bent vienas sėkmingas spausdinimo rezultatas su šiuo spausdinimo profiliu."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Būsena"
@@ -6642,6 +6730,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Daugiau nerodyti"
@@ -7028,7 +7124,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7551,7 +7647,7 @@ msgid "Please select a file"
msgstr "Prašome pasirinkti failą"
msgid "Do you want to replace it"
msgstr "Ar norite jį pakeisti?"
msgstr "Ar norite jį pakeisti"
msgid "Message"
msgstr "Pranešimas"
@@ -7585,7 +7681,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Prašome sutvarkyti sluoksniavimo klaidas ir publikuoti dar kartą."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Neaptiktas tinklo įskiepis. Nebus pasiekiamos su tinklu susijusios galimybės."
@@ -8163,7 +8260,7 @@ msgstr "(Reikia paleisti iš naujo)"
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8366,40 +8463,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr "Tinklo įskiepis"
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "Įjungti tinklo papildinį"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8479,19 +8576,16 @@ msgstr "testavimas"
msgid "trace"
msgstr "sekimas"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8710,7 +8804,10 @@ msgstr "Publikavimas buvo atšauktas"
msgid "Slicing Plate 1"
msgstr "Sluoksniuojama plokštė 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Duomenys pakuojami į 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -9032,8 +9129,8 @@ msgstr "Lygi aukštos temperatūros plokštė"
msgid "Textured PEI Plate"
msgstr "Tekstūruota PEI plokštė"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Šalta plokštė (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Jei negalite prijungti spausdintuvo, spauskite čia"
@@ -9362,7 +9459,7 @@ msgstr ""
"bokšto dydis gali padidėti. Ar vis tiek norite įjungti?"
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9486,8 +9583,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 ""
"Įrašant pakadrinį vaizdo įrašą be spausdinimo galvutės judesių, "
"rekomenduojama naudoti „Pakadrinio valymo bokštą“.\n"
@@ -9717,9 +9814,6 @@ msgstr "Spausdinimo temperatūra"
msgid "Nozzle temperature when printing"
msgstr "Purkštuko temperatūra spausdinant"
msgid "Cool Plate (SuperTack)"
msgstr "Šalta plokštė (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10187,6 +10281,12 @@ msgstr "Rodyti visus išankstinius nustatymus (įskaitant nesuderinamus)"
msgid "Select presets to compare"
msgstr "Pasirinkite išankstinius nustatymus, kuriuos norite palyginti"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10620,6 +10720,12 @@ msgstr "Spustelėkite čia, jei norite jį atsisiųsti."
msgid "Login"
msgstr "Prisijungti"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr "Konfigūracijos paketas pakeistas ankstesniame Config Guide"
@@ -11023,8 +11129,8 @@ msgid ""
msgstr ""
"Įterptinės programinės įrangos versija yra nenormali. Prieš spausdinant "
"reikia pataisyti ir atnaujinti. Ar norite atnaujinti dabar? Taip pat galite "
"atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami "
"\"Orca\"."
"atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami \"Orca"
"\"."
msgid "Extension Board"
msgstr "Išplėtimo plokštė"
@@ -11338,7 +11444,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -11413,8 +11519,8 @@ msgid ""
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
"RepRapFirmware and Repetier G-code flavors."
msgstr ""
"Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/"
"Sprinter\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose."
"Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/Sprinter"
"\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose."
msgid "The prime tower is not supported in \"By object\" print."
msgstr "Pirminis bokštas nepalaikomas spausdinant \"Pagal objektą\"."
@@ -12934,7 +13040,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
"Ši parinktis gali padėti sumažinti viršutinių paviršių, esančių smarkiai "
"nuožulniuose ar išlenktuose modeliuose, iškilimą.\n"
@@ -12957,7 +13063,7 @@ msgstr ""
"3. Be filtravimo - sukuria vidinius tiltus kiekvienoje potencialioje "
"vidinėje iškyšoje. Ši parinktis naudinga stipriai nuožulnių viršutinių "
"paviršių modeliams, tačiau daugeliu atvejų ji sukuria per daug nereikalingų "
"tiltų"
"tiltų."
msgid "Limited filtering"
msgstr "Ribotas filtravimas"
@@ -13444,7 +13550,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
"Pridėkite išankstinio slėgio (IS) verčių rinkinius, tūrinius srauto greičius "
"ir pagreičius, kuriems esant jie buvo išmatuoti, atskirti kableliu. Vienoje "
@@ -13472,7 +13578,7 @@ msgstr ""
"Jei jokio skirtumo nematyti, naudokite IS vertę, gautą atliekant greitesnį "
"bandymą.\n"
"3. Čia esančiame teksto laukelyje įveskite IS verčių, srauto ir pagreičio "
"reikšmes ir išsaugokite gijos profilį"
"reikšmes ir išsaugokite gijos profilį."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Įjungti prisitaikantį išankstinį slėgį iškyšoms (beta versija)"
@@ -14251,8 +14357,8 @@ msgid "mm/s² or %"
msgstr "mm/s² arba %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Retų užpildų pagreitis. Jei reikšmė išreikšta procentais (pvz., 100 %), ji "
"bus apskaičiuota pagal numatytąjį pagreitį."
@@ -14372,10 +14478,10 @@ msgstr "Visas ventiliatoriaus greitis sluoksnyje"
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 ""
"Ventiliatoriaus greitis bus didinamas tiesiškai nuo nulio sluoksnyje "
"\"close_fan_the_first_x_layers\" iki maksimalaus sluoksnyje "
@@ -14897,9 +15003,9 @@ msgstr "Objektų žymėjimas"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Įgalinkite šią funkciją, jei norite pridėti komentarų prie G-kodo žymėjimo "
"spausdinimo judesių su objektu, kuriam jie priklauso. Tai naudinga "
@@ -15239,11 +15345,11 @@ msgstr "Lyginimo tipas"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"Lyginant naudojamas nedidelis srautas, kuris spausdina tame pačiame "
"paviršiaus aukštyje, kad plokšti paviršiai būtų lygesni. Šis nustatymas "
"kontroliuoja, kurie sluoksniai lyginami"
"kontroliuoja, kurie sluoksniai lyginami."
msgid "No ironing"
msgstr "Nėra lyginimo"
@@ -16296,8 +16402,8 @@ msgid "Role base wipe speed"
msgstr "Vaidmens pagrindo nuvalymo greitis"
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -16566,7 +16672,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"Jei pasirinktas lygus arba tradicinis režimas, kiekvienam spaudiniui bus "
@@ -17170,8 +17276,8 @@ msgstr "Suaktyvinti temperatūros reguliavimą"
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"
@@ -17488,6 +17594,12 @@ msgstr ""
"3. Briauna: bokšto sienai pridedamos keturios briaunos, padedančios "
"padidinti stabilumą."
msgid "Rectangle"
msgstr "Stačiakampis"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr "Papildomas briaunų ilgis"
@@ -18099,8 +18211,8 @@ msgstr ""
"Jei įjungta, patikrinkite, ar dabartinė mašina yra suderinama su sąraše "
"esančiomis mašinomis."
msgid "downward machines settings"
msgstr "tolimesnių mašinų nustatymas"
msgid "Downward machines settings"
msgstr "Tolimesnių mašinų nustatymas"
msgid "The machine settings list needs to do downward checking."
msgstr "Mašinos nustatymų sąraše reikia atlikti žemyn einantį tikrinimą."
@@ -18133,8 +18245,8 @@ msgid "Debug level"
msgstr "Derinimo lygis"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"Nustato derinimo žurnalizavimo lygį. 0: mirtinas, 1: klaida, 2: įspėjimas, "
"3: informacija, 4: derinimas, 5: sekimas\n"
@@ -18665,13 +18777,13 @@ msgstr "Pateikto failo nepavyko perskaityti, nes jis tuščias"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Nežinomas failo formatas. Įvesties failo plėtinys turi "
"būti .stl, .obj, .amf(.xml)."
"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .stl, .obj, ."
"amf(.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf "
"arba .zip.amf."
"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf arba .zip."
"amf."
msgid "load_obj: failed to parse"
msgstr "load_obj: nepavyko apdoroti"
@@ -18787,10 +18899,6 @@ msgstr "Pavadinimas sutampa su kito nustatymo pavadinimu"
msgid "create new preset failed."
msgstr "sukurti naują profilį nepavyko."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19476,6 +19584,23 @@ msgstr "Greitasis bokštas"
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -19514,6 +19639,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr "Įvesties formavimas slopinimo bandymas"
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -19849,8 +19977,8 @@ msgstr ""
"Ar norite jį perrašyti?"
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 ""
"Būtų galima pervadinti iš anksto nustatytus nustatymus į \"Pardavėjo tipo "
@@ -19899,9 +20027,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Stačiakampis"
msgid "Printable Space"
msgstr "Spausdintina erdvė"
@@ -20332,7 +20457,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -20679,9 +20804,9 @@ msgid ""
"quality but much longer print time."
msgstr ""
"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis "
"mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra "
"\"Gyroid\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė "
"spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas."
"mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra \"Gyroid"
"\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė spausdinimo "
"kokybė, tačiau daug ilgesnis spausdinimo laikas."
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
@@ -21267,6 +21392,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21665,9 +21911,6 @@ msgstr ""
#~ "Nepavyko įdiegti papildinio. Patikrinkite, ar jo neblokuoja arba "
#~ "neištrina antivirusinė programinė įranga."
#~ msgid "°C"
#~ msgstr "°C"
#~ msgid "travel"
#~ msgstr "judėjimas"
@@ -21711,18 +21954,16 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Detaliau"
#~ msgid "Use legacy network plugin"
#~ msgid "Use legacy network plug-in"
#~ msgstr "Naudoti senąjį tinklo įskiepį"
#~ msgid ""
#~ "Disable to use latest network plugin that supports new BambuLab firmwares."
#~ "Disable to use latest network plug-in that supports new BambuLab "
#~ "firmwares."
#~ msgstr ""
#~ "Išjunkite, kad galėtumėte naudoti naujausią tinklo įskiepį, kuris palaiko "
#~ "naujas „BambuLab“ programinės įrangos versijas."
#~ msgid "Packing data to 3MF"
#~ msgstr "Duomenys pakuojami į 3mf"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"
@@ -22916,9 +23157,6 @@ msgstr ""
#~ msgid "Load uptodate filament settings when using uptodate."
#~ msgstr "įkelti naujausius gijų nustatymus, kai naudojate \"naujausius“"
#~ msgid "Downward machines settings"
#~ msgstr "mašinų nustatymai žemyn"
#~ msgid "Load custom G-code from json"
#~ msgstr "Įkelti pasirinktinį G-kodą iš json"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -14,26 +14,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Poedit 3.4.4\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1557,6 +1537,30 @@ msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Assemble"
msgstr "Monteren"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Let op"
@@ -1597,6 +1601,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Textuur"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1624,10 +1676,10 @@ msgstr "OrcaSlicer kreeg een onbehandelde uitzondering: %1%"
msgid "Untitled"
msgstr "Naamloos"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1718,6 +1770,9 @@ msgstr "Kies ZIP bestand"
msgid "Choose one file (GCODE/3MF):"
msgstr "Kies één bestand (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Sommige voorinstellingen zijn aangepast."
@@ -1777,7 +1832,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -2006,6 +2061,9 @@ msgid ""
"No - Do not change these settings for me"
msgstr ""
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr ""
@@ -2115,9 +2173,6 @@ msgstr "Omzetten vanuit meter"
msgid "Restore to meters"
msgstr "Terugzetten naar meter"
msgid "Assemble"
msgstr "Monteren"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr ""
"Monteer de geselecteerde objecten tot een object bestaande uit meerdere delen"
@@ -2632,6 +2687,10 @@ msgstr "Print met meerdere kleuren"
msgid "Line Type"
msgstr "Lijn type"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Meer"
@@ -2749,7 +2808,7 @@ msgstr ""
msgid "Connecting..."
msgstr "Verbinden..."
msgid "Auto-refill"
msgid "Auto Refill"
msgstr ""
msgid "Load"
@@ -3138,6 +3197,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3463,9 +3554,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Mondstuk"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3528,9 +3616,6 @@ msgstr "Printen met filament in AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Print met filament op een externe spoel"
msgid "Auto Refill"
msgstr ""
msgid "Left"
msgstr "Links"
@@ -3544,7 +3629,7 @@ msgstr ""
"Als het huidige materiaal op is, gaat de printer verder met afdrukken in de "
"volgende volgorde."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3678,8 +3763,8 @@ msgid "Calibration"
msgstr "Kalibratie"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"Het downloaden van de plug-in is mislukt. Controleer je firewall-"
"instellingen en VPN-software en probeer het opnieuw."
@@ -3694,8 +3779,8 @@ msgid "Click here to see more info"
msgstr "klik hier voor meer informatie"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3865,9 +3950,6 @@ msgstr "Vorm laden vanuit het STL. bestand..."
msgid "Settings"
msgstr "Instellingen"
msgid "Texture"
msgstr "Textuur"
msgid "Remove"
msgstr "Verwijderen"
@@ -4063,6 +4145,7 @@ msgid ""
"Reset to 0."
msgstr ""
#, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4676,6 +4759,9 @@ msgstr ""
msgid "Fan speed"
msgstr "Ventilator snelheid"
msgid "°C"
msgstr "°C"
msgid "Time"
msgstr "Tijd"
@@ -4832,8 +4918,8 @@ msgstr "Werkelijke snelheid (mm/s)"
msgid "Fan Speed (%)"
msgstr "Ventilator snelheid (%)"
msgid "Temperature ()"
msgstr "Temperatuur ()"
msgid "Temperature (°C)"
msgstr "Temperatuur (°C)"
msgid "Volumetric flow rate (mm³/s)"
msgstr "Volumestroom (mm³/s)"
@@ -5151,7 +5237,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Maat:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5222,7 +5308,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6503,6 +6589,9 @@ msgstr ""
"At least one successful print record of this print profile is required \n"
"to give a positive rating (4 or 5 stars)."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Status"
@@ -6513,6 +6602,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Niet nogmaals tonen"
@@ -6897,7 +6994,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7421,7 +7518,7 @@ msgid "Please select a file"
msgstr "Selecteer een bestand"
msgid "Do you want to replace it"
msgstr "Wilt u deze vervangen?"
msgstr "Wilt u deze vervangen"
msgid "Message"
msgstr "Bericht"
@@ -7455,7 +7552,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Los aub de slicing fouten op en publiceer opnieuw."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Netwerk plug-in is niet gedetecteerd. Netwerkgerelateerde functies zijn niet "
"beschikbaar."
@@ -8026,7 +8124,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8227,40 +8325,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "Netwerkplug-in inschakelen"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8339,19 +8437,16 @@ msgstr "debug"
msgid "trace"
msgstr "trace"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8573,7 +8668,10 @@ msgstr "Het publiceren is geannuleerd"
msgid "Slicing Plate 1"
msgstr "Slicing printbed 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "De data wordt opgeslagen in een 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8889,7 +8987,7 @@ msgstr ""
msgid "Textured PEI Plate"
msgstr "Getextureerde PEI-plaat"
msgid "Cool Plate (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid "Click here if you can't connect to the printer"
@@ -9199,7 +9297,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9313,8 +9411,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"
@@ -9534,9 +9632,6 @@ msgstr "Print temperatuur"
msgid "Nozzle temperature when printing"
msgstr "Mondstuk temperatuur tijdens printen"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -9991,6 +10086,12 @@ msgstr "Toon alle presets (inclusief incompatibele)"
msgid "Select presets to compare"
msgstr ""
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10407,6 +10508,12 @@ msgstr "Klik hier om het te downloaden."
msgid "Login"
msgstr "Inloggen"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr "Het configuratiebestand is aangepast in de vorige Config Guide"
@@ -11134,7 +11241,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -12466,7 +12573,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
msgid "Limited filtering"
@@ -12855,7 +12962,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)"
@@ -13536,8 +13643,8 @@ msgid "mm/s² or %"
msgstr "mm/s² of %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Versnelling van de schaarse invulling. Als de waarde wordt uitgedrukt als "
"een percentage (bijvoorbeeld 100%), wordt deze berekend op basis van de "
@@ -13652,10 +13759,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"
@@ -14083,9 +14190,9 @@ msgstr "Label objecten"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Schakel dit in om opmerkingen in de G-code toe te voegen voor bewegingen die "
"behoren tot een object. Dit is handig voor de OctoPrint CancelObject-plugin. "
@@ -14355,7 +14462,7 @@ msgstr "Strijk type"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"Strijken gebruikt een lage flow om op dezelfde hoogte van een oppervlak te "
"printen om platte oppervlakken gladder te maken. Deze instelling bepaalt op "
@@ -15289,8 +15396,8 @@ msgid "Role base wipe speed"
msgstr ""
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -15509,7 +15616,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"Als de vloeiende of traditionele modus is geselecteerd, wordt voor elke "
@@ -16070,8 +16177,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"
@@ -16313,6 +16420,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Rechthoek"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -16530,11 +16643,10 @@ msgid ""
"Wipe tower is only compatible with relative mode. It is recommended on most "
"printers. Default is checked."
msgstr ""
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie "
"\"label_objects\". Sommige extruders werken beter als deze optie niet is "
"aangevinkt (absolute extrusiemodus). Wipe tower is alleen compatibel met "
"relatieve modus. Het wordt aanbevolen op de meeste printers. Standaard is "
"aangevinkt"
"Relatieve extrusie wordt aanbevolen bij gebruik van de optie \"label_objects"
"\". Sommige extruders werken beter als deze optie niet is aangevinkt "
"(absolute extrusiemodus). Wipe tower is alleen compatibel met relatieve "
"modus. Het wordt aanbevolen op de meeste printers. Standaard is aangevinkt"
msgid ""
"Classic wall generator produces walls with constant extrusion width and for "
@@ -16888,7 +17000,7 @@ msgid ""
"machines in the list."
msgstr ""
msgid "downward machines settings"
msgid "Downward machines settings"
msgstr ""
msgid "The machine settings list needs to do downward checking."
@@ -16922,8 +17034,8 @@ msgid "Debug level"
msgstr "Debuggen level"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
msgid "Enable timelapse for print"
@@ -17519,10 +17631,6 @@ msgstr "De naam is hetzelfde als een andere bestaande presetnaam"
msgid "create new preset failed."
msgstr "nieuwe voorinstelling maken mislukt."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -18146,6 +18254,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -18180,6 +18305,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -18508,8 +18636,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 ""
@@ -18555,9 +18683,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Rechthoek"
msgid "Printable Space"
msgstr "Printbare ruimte"
@@ -18972,7 +19097,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -19817,6 +19942,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -20214,9 +20460,6 @@ msgstr ""
#~ "De installatie van de plug-in is mislukt. Controleer of deze is "
#~ "geblokkeerd of verwijderd door anti-virussoftware."
#~ msgid "°C"
#~ msgstr "°C"
#~ msgid "travel"
#~ msgstr "verplaatsen"
@@ -20254,9 +20497,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Geavanceerd"
#~ msgid "Packing data to 3MF"
#~ msgstr "De data wordt opgeslagen in een 3mf"
#~ msgid "°"
#~ msgstr "°"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n"
"Language-Team: \n"
@@ -16,26 +16,6 @@ msgstr ""
"First-Translator: Krzysztof Morga <tlumaczeniebs@gmail.com>\n"
"X-Generator: Poedit 3.6\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1583,6 +1563,30 @@ msgstr "Odległość między równoległymi krawędziami:"
msgid "Flip by Face 2"
msgstr "Obróć względem 2 powierzchni"
msgid "Assemble"
msgstr "Złożenie"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Uwaga"
@@ -1623,6 +1627,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Tekstura"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1650,10 +1702,10 @@ msgstr "OrcaSlicer napotkał nieobsługiwany wyjątek: %1%"
msgid "Untitled"
msgstr "Bez tytułu"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1749,6 +1801,9 @@ msgstr "Wybierz plik ZIP"
msgid "Choose one file (GCODE/3MF):"
msgstr "Wybierz jeden plik (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Niektóre ustawienia zostały zmodyfikowane."
@@ -1809,7 +1864,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -2045,6 +2100,9 @@ msgstr ""
"Tak - Zmień te ustawienia automatycznie\n"
"Nie - Nie zmieniaj tych ustawień"
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "Tekst"
@@ -2154,9 +2212,6 @@ msgstr "Konwertuj z metra"
msgid "Restore to meters"
msgstr "Przywróć do metra"
msgid "Assemble"
msgstr "Złożenie"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Zmontuj wybrane obiekty w obiekt wieloczęściowy"
@@ -2670,6 +2725,10 @@ msgstr "Druk wielobarwny"
msgid "Line Type"
msgstr "Rodzaj linii"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Więcej"
@@ -2788,8 +2847,8 @@ msgstr "Proszę sprawdzić połączenie sieciowe drukarki i Orca."
msgid "Connecting..."
msgstr "Łączenie..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Auto. uzupełnienie"
msgid "Load"
msgstr "Ładuj"
@@ -3188,6 +3247,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr "Dodaj wytłoczony obiekt tekstowy"
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr "Zmiana atrybutów wytłoczenia"
msgid "Add Emboss text Volume"
msgstr "Dodaj wytłoczoną objętość tekstową"
msgid "Font doesn't have any shape for given text."
msgstr "Czcionka nie ma żadnego kształtu dla danego tekstu."
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3517,9 +3608,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Dysza"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3589,9 +3677,6 @@ msgid "Print with filaments mounted on the back of the chassis"
msgstr ""
"Drukowanie przy użyciu materiałów zamontowanych na tylnej części obudowy"
msgid "Auto Refill"
msgstr "Auto. uzupełnienie"
msgid "Left"
msgstr "Lewo"
@@ -3605,7 +3690,7 @@ msgstr ""
"Gdy obecny filament się skończy, drukarka będzie kontynuować druk w "
"następującej kolejności."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3744,8 +3829,8 @@ msgid "Calibration"
msgstr "Kalibracja"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"Nie udało się pobrać wtyczki. Sprawdź ustawienia zapory ogniowej i "
"oprogramowania VPN, sprawdź i spróbuj ponownie."
@@ -3760,8 +3845,8 @@ msgid "Click here to see more info"
msgstr "Kliknij tutaj, aby zobaczyć więcej informacji"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3932,9 +4017,6 @@ msgstr "Wczytaj kształt z pliku STL..."
msgid "Settings"
msgstr "Ustawienia"
msgid "Texture"
msgstr "Tekstura"
msgid "Remove"
msgstr "Usuń"
@@ -4138,6 +4220,7 @@ msgstr ""
"seam_slope_start_height musi być mniejsza niż wysokość warstwy.\n"
"Zresetuj do wartości 0"
#, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4754,6 +4837,9 @@ msgstr ""
msgid "Fan speed"
msgstr "Prędkość wentylatora"
msgid "°C"
msgstr "°C"
msgid "Time"
msgstr "Czas"
@@ -4910,8 +4996,8 @@ msgstr "Rzeczywista prędkość (mm/s)"
msgid "Fan Speed (%)"
msgstr "Prędkość wentylatora (%)"
msgid "Temperature ()"
msgstr "Temperatura ()"
msgid "Temperature (°C)"
msgstr "Temperatura (°C)"
msgid "Volumetric flow rate (mm³/s)"
msgstr "Natężenie przepływu (mm³/s)"
@@ -5229,7 +5315,7 @@ msgstr "Objętość:"
msgid "Size:"
msgstr "Rozmiar:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5302,7 +5388,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6621,6 +6707,9 @@ msgstr ""
"Aby wystawić pozytywną ocenę (4 lub 5 gwiazdek), wymagana \n"
"jest co najmniej jedna udana rejestracja tego profilu druku."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Status"
@@ -6631,6 +6720,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Nie pokazuj ponownie"
@@ -7017,7 +7114,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7574,7 +7671,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Rozwiąż błędy w cięciu i opublikuj ponownie."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Wtyczka sieciowa nie jest wykrywana. Funkcje związane z siecią są "
"niedostępne."
@@ -8155,7 +8253,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8352,40 +8450,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "Włączenie wtyczki sieciowej"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8454,19 +8552,16 @@ msgstr "debugowanie"
msgid "trace"
msgstr "śledzenie"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8685,7 +8780,10 @@ msgstr "Publikacja została anulowana"
msgid "Slicing Plate 1"
msgstr "Krojenie płyty 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Pakowanie danych do 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -9003,8 +9101,8 @@ msgstr "Smooth High Temp Plate"
msgid "Textured PEI Plate"
msgstr "Textured PEI Plate"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Kliknij tutaj, jeśli nie możesz połączyć się z drukarką"
@@ -9324,7 +9422,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9442,8 +9540,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 bez głowicy drukującej zaleca się dodanie "
"„Timelapse - Wieża czyszcząca” \n"
@@ -9667,9 +9765,6 @@ msgstr "Temperatura druku"
msgid "Nozzle temperature when printing"
msgstr "Temperatura dyszy podczas druku"
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10129,6 +10224,12 @@ msgstr "Pokaż wszystkie profile (łącznie z niekompatybilnymi)"
msgid "Select presets to compare"
msgstr "Wybierz profile do porównania"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10565,6 +10666,12 @@ msgstr "Kliknij tutaj, aby pobrać."
msgid "Login"
msgstr "Logowanie"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr ""
"Pakiet konfiguracyjny został zmieniony w poprzednim Przewodniku konfiguracji"
@@ -11287,7 +11394,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -11706,8 +11813,8 @@ msgstr ""
"Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno "
"zawierać nazwę hosta, adres IP lub URL hosta drukarki. Host drukowania za "
"HAProxy z włączoną autoryzacją podstawową można uzyskać, wpisując nazwę "
"użytkownika i hasło w URL w następującym formacie: https://"
"username:password@your-octopi-address/"
"użytkownika i hasło w URL w następującym formacie: https://username:"
"password@your-octopi-address/"
msgid "Device UI"
msgstr "UI urządzenia"
@@ -12881,7 +12988,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
"Ta opcja może pomóc zmniejszyć efekt wybrzuszenia na górnych powierzchniach "
"w mocno nachylonych lub zakrzywionych modelach.\n"
@@ -13400,7 +13507,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
"0.033.96.1000\n"
"0.029.7.91.300\n"
@@ -14200,8 +14307,8 @@ msgid "mm/s² or %"
msgstr "mm/s² lub %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w "
"procentach (np. 100%), będzie obliczana na podstawie domyślnego "
@@ -14324,10 +14431,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 "
@@ -14824,9 +14931,9 @@ msgstr "Etykietuj obiekty"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Włącz to, aby dodać komentarze do pliku G-Code, oznaczające ruchy druku, do "
"jakiego obiektu należą. Jest to przydatne dla wtyczki Octoprint "
@@ -15138,11 +15245,11 @@ msgstr "Rodzaj prasowania"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"Prasowanie polega na używaniu małego przepływu, aby ponownie wydrukować na "
"tej samej wysokości powierzchnię, w celu uzyskania bardziej gładkiej "
"powierzchni. Ta opcja kontroluje, który poziom jest prasowany"
"powierzchni. Ta opcja kontroluje, który poziom jest prasowany."
msgid "No ironing"
msgstr "Bez prasowania"
@@ -16196,8 +16303,8 @@ msgid "Role base wipe speed"
msgstr "Prędkość wycierania dyszy w oparciu o rolę ekstruzji"
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -16468,7 +16575,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"Jeśli wybrany jest tryb „Tradycyjny”, dla każdego wydruku będzie tworzony "
@@ -17067,8 +17174,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"
@@ -17364,6 +17471,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Prostokąt"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -17976,8 +18089,8 @@ msgstr ""
"Jeśli włączone, sprawdza, czy bieżąca maszyna jest wstecznie kompatybilna z "
"maszynami z listy."
msgid "downward machines settings"
msgstr ""
msgid "Downward machines settings"
msgstr "Ustawienia wstecznej kompatybilności maszyn"
msgid "The machine settings list needs to do downward checking."
msgstr ""
@@ -18009,11 +18122,11 @@ msgid "Debug level"
msgstr "Poziom debugowania"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, "
"4:debug, 5:trace\n"
"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, 4:"
"debug, 5:trace\n"
msgid "Enable timelapse for print"
msgstr "Włącz timelapse dla druku"
@@ -18546,13 +18659,13 @@ msgstr "Dostarczony plik nie mógł być odczytany, ponieważ jest pusty"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Nieznany format pliku. Plik wejściowy musi mieć "
"rozszerzenie .stl, .obj, .amf(.xml)."
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .stl, .obj, ."
"amf(.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf "
"lub .zip.amf."
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf lub .zip."
"amf."
msgid "load_obj: failed to parse"
msgstr "load_obj: nie udało się przetworzyć"
@@ -18669,10 +18782,6 @@ msgstr "Nazwa jest taka sama jak nazwa innego istniejącego ustwienia"
msgid "create new preset failed."
msgstr "utworzenie nowego profilu nie powiodło się."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19345,6 +19454,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -19379,6 +19505,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -19712,8 +19841,8 @@ msgstr ""
"Czy zastąpić go?"
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, "
@@ -19762,9 +19891,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Prostokąt"
msgid "Printable Space"
msgstr "Przestrzeń do druku"
@@ -20188,7 +20314,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -21111,6 +21237,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr "BRAK WYCISKANIA"
msgid "Volumetric speed"
msgstr "Prędkości Przepływu"
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21508,9 +21755,6 @@ msgstr ""
#~ "Nie udało się zainstalować wtyczki. Sprawdź, czy nie jest zablokowana lub "
#~ "usunięta przez oprogramowanie antywirusowe."
#~ msgid "°C"
#~ msgstr "°C"
#~ msgid "travel"
#~ msgstr "przemieszczenie"
@@ -21548,9 +21792,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Zaawansowane"
#~ msgid "Packing data to 3MF"
#~ msgstr "Pakowanie danych do 3mf"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"
@@ -22496,9 +22737,6 @@ msgstr ""
#~ "Wczytaj najnowsze ustawienia filamentu podczas korzystania z aktualnej "
#~ "wersji."
#~ msgid "Downward machines settings"
#~ msgstr "ustawienia wstecznej kompatybilności maszyn"
#~ msgid "Load filament IDs for each object"
#~ msgstr "Wczytaj identyfikatory filamentu dla każdego obiektu"
@@ -23074,8 +23312,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 "
@@ -23634,10 +23872,10 @@ msgstr ""
#~ msgid "Test Storage Download:"
#~ msgstr "Test pamięci dla pobierania:"
#~ msgid "Test plugin download"
#~ msgid "Test plug-in download"
#~ msgstr "Test pobierania pluginów"
#~ msgid "Test Plugin Download:"
#~ msgid "Test Plug-in Download:"
#~ msgstr "Test pobierania Pluginów:"
#~ msgid "Test Storage Upload"
@@ -24066,12 +24304,6 @@ msgstr ""
#~ msgid "Click to continue (Alt + Right Arrow)"
#~ msgstr "Kliknij, aby kontynuować (Alt + Strzałka w prawo)"
#~ msgid "NO RAMMING AT ALL"
#~ msgstr "BRAK WYCISKANIA"
#~ msgid "Volumetric speed"
#~ msgstr "Prędkości Przepływu"
#~ msgid "Move over surface"
#~ msgstr "Ruch po powierzchni"
@@ -24135,18 +24367,6 @@ msgstr ""
#~ msgid "The maximum temperature cannot exceed"
#~ msgstr "Maksymalna temperatura nie może przekroczyć"
#~ msgid "Add Emboss text object"
#~ msgstr "Dodaj wytłoczony obiekt tekstowy"
#~ msgid "Emboss attribute change"
#~ msgstr "Zmiana atrybutów wytłoczenia"
#~ msgid "Add Emboss text Volume"
#~ msgstr "Dodaj wytłoczoną objętość tekstową"
#~ msgid "Font doesn't have any shape for given text."
#~ msgstr "Czcionka nie ma żadnego kształtu dla danego tekstu."
#~ msgid "An unexpected error occurred"
#~ msgstr "Wystąpił nieoczekiwany błąd"
@@ -24383,8 +24603,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 "

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -11,26 +11,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Localazy (https://localazy.com)\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1540,6 +1520,30 @@ msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Assemble"
msgstr "Montera"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Iakttag"
@@ -1577,6 +1581,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Textur"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1600,14 +1652,14 @@ msgstr ""
msgid "Untitled"
msgstr "Ej namngiven"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
msgstr "Nedladdning av Bambu Network Plug-in"
msgstr "Nedladdning av Bambu Network Plugin"
msgid "Login information expired. Please login again."
msgstr "Inloggningsinformationen har löpt ut. Logga in igen."
@@ -1690,6 +1742,9 @@ msgstr ""
msgid "Choose one file (GCODE/3MF):"
msgstr ""
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Några inställningar har ändrats."
@@ -1750,7 +1805,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -1978,6 +2033,9 @@ msgid ""
"No - Do not change these settings for me"
msgstr ""
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr ""
@@ -2088,9 +2146,6 @@ msgstr "Konvertera ifrån meter"
msgid "Restore to meters"
msgstr "Återställ till meter"
msgid "Assemble"
msgstr "Montera"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Montera de valda objekten till ett objekt med multipla delar"
@@ -2600,6 +2655,10 @@ msgstr "Multifärgs Utskrift"
msgid "Line Type"
msgstr "Linje typ"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Mer"
@@ -2717,7 +2776,7 @@ msgstr "Kontrollera nätverksanslutningen för skrivaren och Studio."
msgid "Connecting..."
msgstr "Sammankopplar..."
msgid "Auto-refill"
msgid "Auto Refill"
msgstr ""
msgid "Load"
@@ -3115,6 +3174,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3441,9 +3532,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Nozzel"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3506,9 +3594,6 @@ msgstr "Skriv ut med filament i AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Skriv ut med filament på en extern spole"
msgid "Auto Refill"
msgstr ""
msgid "Left"
msgstr "Vänster"
@@ -3522,7 +3607,7 @@ msgstr ""
"När det aktuella materialet tar slut, fortsätter printern att skriva ut "
"material i följande ordning."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3655,8 +3740,8 @@ msgid "Calibration"
msgstr "Kalibrering"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"Det gick inte att ladda ned plugin-programmet. Kontrollera dina "
"brandväggsinställningar och vpn-programvara och försök igen."
@@ -3671,8 +3756,8 @@ msgid "Click here to see more info"
msgstr "Klicka här för att se mer information"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3828,9 +3913,6 @@ msgstr "Ladda form ifrån STL..."
msgid "Settings"
msgstr "Inställningar"
msgid "Texture"
msgstr "Textur"
msgid "Remove"
msgstr "Ta bort"
@@ -4017,6 +4099,7 @@ msgid ""
"Reset to 0."
msgstr ""
#, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4629,6 +4712,9 @@ msgstr ""
msgid "Fan speed"
msgstr "Fläkt hastighet"
msgid "°C"
msgstr "° C"
msgid "Time"
msgstr "Tid"
@@ -4785,7 +4871,7 @@ msgstr "Faktisk hastighet (mm/s)"
msgid "Fan Speed (%)"
msgstr "Fläkt hastighet (%)"
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr "Temperatur (°C)"
msgid "Volumetric flow rate (mm³/s)"
@@ -5104,7 +5190,7 @@ msgstr "Volym:"
msgid "Size:"
msgstr "Storlek:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5175,7 +5261,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6151,10 +6237,10 @@ msgid "Name is invalid;"
msgstr "Namnet är ogiltligt;"
msgid "illegal characters:"
msgstr "Ogiltliga tecken:"
msgstr "ogiltliga tecken:"
msgid "illegal suffix:"
msgstr "Ogiltlig ändelse:"
msgstr "ogiltlig ändelse:"
msgid "The name is not allowed to be empty."
msgstr "Namn fältet får inte vara tomt."
@@ -6452,6 +6538,9 @@ msgstr ""
"At least one successful print record of this print profile is required \n"
"to give a positive rating (4 or 5 stars)."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Status"
@@ -6462,6 +6551,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Visa inte igen"
@@ -6835,7 +6932,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7351,7 +7448,7 @@ msgid "Please select a file"
msgstr "Välj en fil"
msgid "Do you want to replace it"
msgstr "Do you want to replace it?"
msgstr "Vill du byta ut den"
msgid "Message"
msgstr "Meddelande"
@@ -7385,7 +7482,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Lös berednings felen och publicera igen."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Nätverks plugin programmet detekteras inte. Nätverksrelaterade funktioner är "
"inte tillgängliga."
@@ -7944,7 +8042,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8136,40 +8234,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr ""
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8239,19 +8337,16 @@ msgstr "felsök"
msgid "trace"
msgstr "spåra"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8470,7 +8565,10 @@ msgstr "Publiceringen avbröts"
msgid "Slicing Plate 1"
msgstr "Beredningsplatta 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Packar data till 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8788,7 +8886,7 @@ msgstr ""
msgid "Textured PEI Plate"
msgstr "Texturerad PEI-platta"
msgid "Cool Plate (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid "Click here if you can't connect to the printer"
@@ -9109,7 +9207,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9212,8 +9310,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"
@@ -9426,9 +9524,6 @@ msgstr "Utskrifts temperatur"
msgid "Nozzle temperature when printing"
msgstr "Nozzel temperatur vid utskrift"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -9875,6 +9970,12 @@ msgstr "Visa alla inställningar (inklusive inkompatibla)"
msgid "Select presets to compare"
msgstr "Välj förinställningar att jämföra"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10146,8 +10247,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 ""
"You selected external and AMS filament at the same time in an extruder, you "
@@ -10278,6 +10379,12 @@ msgstr "Klicka här för att ladda ner den."
msgid "Login"
msgstr "Logga in"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr "Konfigurations paketet är ändrat i föregående Kofigurations Guide"
@@ -10986,7 +11093,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -12124,9 +12231,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"
@@ -12281,7 +12388,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
msgid "Limited filtering"
@@ -12666,7 +12773,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)"
@@ -13332,8 +13439,8 @@ msgid "mm/s² or %"
msgstr "mm/s² eller %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Acceleration av gles utfyllnad. Om värdet uttrycks som en procentsats (t.ex. "
"100%) kommer det att beräknas baserat på standard accelerationen."
@@ -13444,10 +13551,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"
@@ -13874,9 +13981,9 @@ msgstr ""
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
msgid "Exclude objects"
@@ -14139,11 +14246,11 @@ msgstr "Stryknings typ"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"Strykning använder ett litet flöde för att skriva ut på samma höjd av en yta "
"för att göra plana ytor jämnare. Inställningen kontrollerar vilket lager som "
"ska strykas"
"ska strykas."
msgid "No ironing"
msgstr "Ingen strykning"
@@ -15036,8 +15143,8 @@ msgid "Role base wipe speed"
msgstr ""
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -15249,7 +15356,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"Om Smooth eller Traditionellt läge väljs genereras en timelapse-video för "
@@ -15793,8 +15900,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"
@@ -16031,6 +16138,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Rektangel"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -16589,7 +16702,7 @@ msgid ""
"machines in the list."
msgstr ""
msgid "downward machines settings"
msgid "Downward machines settings"
msgstr ""
msgid "The machine settings list needs to do downward checking."
@@ -16620,11 +16733,11 @@ msgid "Debug level"
msgstr "Felsökningsnivå"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, "
"5:spåra\n"
"Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, 5:"
"spåra\n"
msgid "Enable timelapse for print"
msgstr ""
@@ -17227,10 +17340,6 @@ msgstr "Namnet är detsamma som ett annat befintligt förinställt namn"
msgid "create new preset failed."
msgstr "skapande av ny inställning misslyckades."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -17842,6 +17951,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -17876,6 +18002,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -18202,8 +18331,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 ""
@@ -18249,9 +18378,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Rektangel"
msgid "Printable Space"
msgstr "Utskriftsbar yta"
@@ -18657,7 +18783,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -19492,6 +19618,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -19844,9 +20091,6 @@ msgstr ""
#~ "Det gick inte att installera plugin-programmet. Kontrollera om den är "
#~ "blockerad eller har raderats av antivirusprogram."
#~ msgid "°C"
#~ msgstr "° C"
#~ msgid "travel"
#~ msgstr "flytta"
@@ -19883,9 +20127,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Avancerat"
#~ msgid "Packing data to 3MF"
#~ msgstr "Packar data till 3mf"
#~ msgid "°"
#~ msgstr "°"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-09-30 09:12+0300\n"
"Last-Translator: GlauTech\n"
"Language-Team: \n"
@@ -14,26 +14,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Poedit 3.7\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1581,6 +1561,30 @@ msgstr "Paralel mesafe:"
msgid "Flip by Face 2"
msgstr "Yüzey 2ye Göre Çevir"
msgid "Assemble"
msgstr "Birleştir"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Bildirim"
@@ -1618,6 +1622,54 @@ msgstr "\"%1%\" yapılandırma dosyası yüklendi ancak bazı değerler tanınam
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "PrusaSlicer ve BambuStudio'ya dayanmaktadır"
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Doku"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1645,10 +1697,10 @@ msgstr "OrcaSlicer'da işlenmeyen bir istisna oluştu: %1%"
msgid "Untitled"
msgstr "İsimsiz"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1743,6 +1795,9 @@ msgstr "ZIP dosyasını seçin"
msgid "Choose one file (GCODE/3MF):"
msgstr "Bir dosya seçin (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Bazı ön ayarlar değiştirildi."
@@ -1803,7 +1858,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -2039,6 +2094,9 @@ msgstr ""
"Evet - Bu ayarları otomatik olarak değiştir\n"
"Hayır - Bu ayarları benim için değiştirme"
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "Metin"
@@ -2148,9 +2206,6 @@ msgstr "Metreden dönüştür"
msgid "Restore to meters"
msgstr "Metreye geri çevir"
msgid "Assemble"
msgstr "Birleştir"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Seçilen nesneleri birden çok parçalı bir nesneyle birleştirin"
@@ -2651,6 +2706,10 @@ msgstr "Çok Renkli Baskı"
msgid "Line Type"
msgstr "Çizgi Tipi"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Daha"
@@ -2769,8 +2828,8 @@ msgstr "Lütfen yazıcının ve Studio'nun ağ bağlantısını kontrol edin."
msgid "Connecting..."
msgstr "Bağlanıyor..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Otomatik Doldurma"
msgid "Load"
msgstr "Yükle"
@@ -3168,6 +3227,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3497,9 +3588,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Nozul"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3566,9 +3654,6 @@ msgstr "AMS içerisindeki filamentlerle yazdırma"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Kasanın arkasına monte edilmiş filamentler ile yazdırma"
msgid "Auto Refill"
msgstr "Otomatik Doldurma"
msgid "Left"
msgstr "Sol"
@@ -3582,7 +3667,7 @@ msgstr ""
"Mevcut malzeme bittiğinde yazıcı aşağıdaki sırayla yazdırmaya devam "
"edecektir."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3718,8 +3803,8 @@ msgid "Calibration"
msgstr "Kalibrasyon"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"Eklenti indirilemedi. Lütfen güvenlik duvarı ayarlarınızı ve vpn "
"yazılımınızı kontrol edin, kontrol edip yeniden deneyin."
@@ -3734,8 +3819,8 @@ msgid "Click here to see more info"
msgstr "daha fazla bilgi görmek için burayı tıklayın"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3902,9 +3987,6 @@ msgstr "Şekli STL'den yükle..."
msgid "Settings"
msgstr "Ayarlar"
msgid "Texture"
msgstr "Doku"
msgid "Remove"
msgstr "Kaldır"
@@ -4103,7 +4185,7 @@ msgstr ""
"gerekir.\n"
"0 a sıfırla."
#, fuzzy
#, fuzzy, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4730,6 +4812,9 @@ msgstr "mm³/s"
msgid "Fan speed"
msgstr "Fan hızı"
msgid "°C"
msgstr "°C"
msgid "Time"
msgstr "Zaman"
@@ -4886,7 +4971,7 @@ msgstr "Gerçek Hız (mm/s)"
msgid "Fan Speed (%)"
msgstr "Fan hızı (%)"
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr "Sıcaklık (°C)"
msgid "Volumetric flow rate (mm³/s)"
@@ -5209,7 +5294,7 @@ msgstr "Hacim:"
msgid "Size:"
msgstr "Boyut:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5282,7 +5367,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6593,6 +6678,9 @@ msgstr ""
"Bu baskı profiline olumlu bir puan vermek için (4 veya 5 yıldız) en az bir "
"başarılı baskı kaydı gereklidir."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Durum"
@@ -6603,6 +6691,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Bir daha gösterme"
@@ -6989,7 +7085,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7553,7 +7649,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Lütfen dilimleme hatalarını giderip tekrar yayınlayın."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr "Ağ Eklentisi algılanmadı. Ağla ilgili özellikler kullanılamıyor."
msgid ""
@@ -8127,7 +8224,7 @@ msgstr "(Yeniden başlatma gerektirir)"
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8327,40 +8424,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr "Ağ eklentisi"
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "Ağ eklentisini etkinleştir"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8440,19 +8537,16 @@ msgstr "hata ayıklama"
msgid "trace"
msgstr "iz"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8671,7 +8765,10 @@ msgstr "Yayınlama iptal edildi"
msgid "Slicing Plate 1"
msgstr "Dilimleme Plakası 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Verileri 3mf'ye paketle"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8988,8 +9085,8 @@ msgstr "Smooth High Temp Plate"
msgid "Textured PEI Plate"
msgstr "Textured PEI Plate"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Yazıcıya bağlanamıyorsanız burayı tıklayın"
@@ -9312,7 +9409,7 @@ msgstr ""
"etkinleştirmek istiyor musunuz?"
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9437,8 +9534,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"
@@ -9656,9 +9753,6 @@ msgstr "Yazdırma Sıcaklığı"
msgid "Nozzle temperature when printing"
msgstr "Yazdırma sırasında nozul sıcaklığı"
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10117,6 +10211,12 @@ msgstr "Tüm ön ayarları göster (uyumsuz olanlar dahil)"
msgid "Select presets to compare"
msgstr "Karşılaştırılacak ön ayarları seçin"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10549,6 +10649,12 @@ msgstr "İndirmek için buraya tıklayın."
msgid "Login"
msgstr "Giriş yap"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr "Yapılandırma paketi önceki Yapılandırma Kılavuzu'nda değiştirildi"
@@ -11266,7 +11372,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -11274,8 +11380,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 "
@@ -12843,7 +12949,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
"Bu seçenek, aşırı eğimli veya kavisli modellerde üst yüzeylerdeki "
"yastıklamayı azaltmaya yardımcı olabilir.\n"
@@ -12863,7 +12969,7 @@ msgstr ""
"gereksiz köprülerden kaçınır. Bu, çoğu zor modelde işe yarar.\n"
"3. Filtreleme yok - her potansiyel dahili çıkıntıda iç köprüler oluşturur. "
"Bu seçenek aşırı eğimli üst yüzey modelleri için kullanışlıdır; ancak çoğu "
"durumda çok fazla gereksiz köprü oluşturur"
"durumda çok fazla gereksiz köprü oluşturur."
msgid "Limited filtering"
msgstr "Sınırlı filtreli"
@@ -13348,7 +13454,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
"Basınç ilerlemesi (basınç) değerlerinin setlerini, hacimsel akış hızlarını "
"ve ölçüldükleri ivmeleri virgülle ayırarak ekleyin. Satır başına bir değer "
@@ -13375,7 +13481,7 @@ msgstr ""
"kabul edilebilir PA değerleri aralığı o kadar geniş olur. Hiçbir fark "
"görünmüyorsa, daha hızlı olan testteki PA değerini kullanın.\n"
"3. Buradaki metin kutusuna PA değerleri, Akış ve Hızlanma üçlüsünü girin ve "
"filament profilinizi kaydedin"
"filament profilinizi kaydedin."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)"
@@ -14152,8 +14258,8 @@ msgid "mm/s² or %"
msgstr "mm/s² veya %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Seyrek dolgunun hızlandırılması. Değer yüzde olarak ifade edilirse (örn. "
"%100), varsayılan ivmeye göre hesaplanacaktır."
@@ -14271,17 +14377,16 @@ 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"
@@ -14793,9 +14898,9 @@ msgstr "Nesneleri etiketle"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"G-Code etiketleme yazdırma hareketlerine ait oldukları nesneyle ilgili "
"yorumlar eklemek için bunu etkinleştirin; bu, Octoprint CancelObject "
@@ -15137,11 +15242,11 @@ msgstr "Ütüleme tipi"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"Ütüleme, düz yüzeyi daha pürüzsüz hale getirmek için aynı yükseklikteki "
"yüzeye tekrar baskı yapmak için küçük akış kullanmaktır. Bu ayar hangi "
"katmanın ütüleneceğini kontrol eder"
"katmanın ütüleneceğini kontrol eder."
msgid "No ironing"
msgstr "Ütüleme yok"
@@ -16197,8 +16302,8 @@ msgid "Role base wipe speed"
msgstr "Otomatik temizleme hızı"
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -16463,7 +16568,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"Düzgün veya geleneksel mod seçilirse her baskı için bir hızlandırılmış video "
@@ -17065,8 +17170,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"
@@ -17378,6 +17483,12 @@ msgstr ""
"fileto bulunan bir koni.\n"
"3. Kaburga: Kule duvarına gelişmiş denge için dört kaburga ekler."
msgid "Rectangle"
msgstr "Dikdörtgen"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr "Ekstra rib uzunluğu"
@@ -17997,7 +18108,7 @@ msgstr ""
"Etkinleştirilirse mevcut makinenin listedeki makinelerle uyumlu olup "
"olmadığını kontrol edin."
msgid "downward machines settings"
msgid "Downward machines settings"
msgstr "Aşağı doğru makine ayarları"
msgid "The machine settings list needs to do downward checking."
@@ -18031,8 +18142,8 @@ msgid "Debug level"
msgstr "Hata ayıklama düzeyi"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"Hata ayıklama günlüğü düzeyini ayarlar. 0:önemli, 1:hata, 2:uyarı, 3:bilgi, "
"4:hata ayıklama, 5:izleme\n"
@@ -18701,10 +18812,6 @@ msgstr "Ad, mevcut başka bir ön ayar adıyla aynı"
msgid "create new preset failed."
msgstr "yeni ön ayar oluşturma başarısız oldu."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19387,6 +19494,23 @@ msgstr "Hız Kulesi"
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -19425,6 +19549,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr "Input shaping damp testi"
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -19755,8 +19882,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 "
@@ -19805,9 +19932,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Dikdörtgen"
msgid "Printable Space"
msgstr "Yazdırılabilir Alan"
@@ -20226,7 +20350,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -21172,6 +21296,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21570,9 +21815,6 @@ msgstr ""
#~ "Eklenti yüklenemedi. Lütfen anti-virüs yazılımı tarafından engellenip "
#~ "engellenmediğini veya silinip silinmediğini kontrol edin."
#~ msgid "°C"
#~ msgstr "°C"
#~ msgid "travel"
#~ msgstr "seyahat"
@@ -21616,18 +21858,16 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Gelişmiş"
#~ msgid "Use legacy network plugin"
#~ msgid "Use legacy network plug-in"
#~ msgstr "Eski ağ eklentisini kullan"
#~ msgid ""
#~ "Disable to use latest network plugin that supports new BambuLab firmwares."
#~ "Disable to use latest network plug-in that supports new BambuLab "
#~ "firmwares."
#~ msgstr ""
#~ "Yeni BambuLab yazılımlarını destekleyen en son ağ eklentisini kullanmayı "
#~ "devre dışı bırakın."
#~ msgid "Packing data to 3MF"
#~ msgstr "Verileri 3mf'ye paketle"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"
@@ -22668,9 +22908,6 @@ msgstr ""
#~ msgid "Load uptodate filament settings when using uptodate."
#~ msgstr "güncellemeyi kullanırken güncelleme filament ayarlarını yükle"
#~ msgid "Downward machines settings"
#~ msgstr "Düşüşteki makinelerin ayarları"
#~ msgid "Load filament IDs for each object"
#~ msgstr "Her nesne için filaman kimliklerini yükleyin"
@@ -23831,10 +24068,10 @@ msgstr ""
#~ msgid "Test Storage Download:"
#~ msgstr "Test Depolama İndirme:"
#~ msgid "Test plugin download"
#~ msgid "Test plug-in download"
#~ msgstr "Test eklentisi indirme"
#~ msgid "Test Plugin Download:"
#~ msgid "Test Plug-in Download:"
#~ msgstr "Test Eklentisini İndirin:"
#~ msgid "Test Storage Upload"

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: orcaslicerua\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-03-07 09:30+0200\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
@@ -20,26 +20,6 @@ msgstr ""
"X-Crowdin-File-ID: 13\n"
"X-Generator: Poedit 3.5\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1589,6 +1569,30 @@ msgstr "Паралельна відстань:"
msgid "Flip by Face 2"
msgstr "Перевернути за Гранню 2"
msgid "Assemble"
msgstr "Об'єднати у збірку"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Повідомлення"
@@ -1627,6 +1631,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Текстура"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1654,10 +1706,10 @@ msgstr "Невідома помилка OrcaSlicer : %1%"
msgid "Untitled"
msgstr "Без назви"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
@@ -1751,6 +1803,9 @@ msgstr "Виберіть ZIP файл"
msgid "Choose one file (GCODE/3MF):"
msgstr "Виберіть один файл (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Деякі налаштування змінено."
@@ -1810,7 +1865,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -2047,6 +2102,9 @@ msgstr ""
"Так - змінювати ці налаштування автоматично\n"
"Ні - Не змінювати ці налаштування для мене"
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "Текст"
@@ -2156,9 +2214,6 @@ msgstr "Перетворити з метричної"
msgid "Restore to meters"
msgstr "Відновити в метричну"
msgid "Assemble"
msgstr "Об'єднати у збірку"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Зібрати вибрані об'єкти в об'єкт з кількома частинами"
@@ -2676,6 +2731,10 @@ msgstr "Багатоколірний друк"
msgid "Line Type"
msgstr "Тип лінії"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Більше"
@@ -2793,8 +2852,8 @@ msgstr "Перевірте мережеве з'єднання принтера
msgid "Connecting..."
msgstr "Підключення..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Автоматична заміна"
msgid "Load"
msgstr "Завантажити"
@@ -3195,6 +3254,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3285,8 +3376,8 @@ msgid ""
"This software uses open source components whose copyright and other "
"proprietary rights belong to their respective owners"
msgstr ""
"Це програмне забезпечення використовує компоненти з відкритим вихідним "
"кодом,авторські права та інші\n"
"Це програмне забезпечення використовує компоненти з відкритим вихідним кодом,"
"авторські права та інші\n"
"права власності належать їх відповідним власникам"
#, c-format, boost-format
@@ -3521,9 +3612,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Сопло"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3591,9 +3679,6 @@ msgstr "Друк філаментами в ams"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Друк із нитками, встановленими на задній частині корпусу"
msgid "Auto Refill"
msgstr "Автоматична заміна"
msgid "Left"
msgstr "Ліво"
@@ -3607,7 +3692,7 @@ msgstr ""
"Коли поточний матеріал закінчується, принтер буде продовжувати друк у "
"наступному порядку."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3745,8 +3830,8 @@ msgid "Calibration"
msgstr "Калібрування"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"Не вдалося завантажити плагін. Будь ласка, перевірте налаштування "
"брандмауера та vpn\n"
@@ -3762,8 +3847,8 @@ msgid "Click here to see more info"
msgstr "натисніть тут, щоб побачити більше інформації"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3932,9 +4017,6 @@ msgstr "Завантажити форму з STL..."
msgid "Settings"
msgstr "Налаштування"
msgid "Texture"
msgstr "Текстура"
msgid "Remove"
msgstr "Видалити"
@@ -4137,6 +4219,7 @@ msgstr ""
"seam_slope_start_height має бути менше висоти шару.\n"
"Значення скинуто на 0."
#, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4754,6 +4837,9 @@ msgstr "мм³/с"
msgid "Fan speed"
msgstr "Швидкість вентилятора"
msgid "°C"
msgstr ""
msgid "Time"
msgstr "Час"
@@ -4910,7 +4996,7 @@ msgstr "Фактична швидкість (мм/с)"
msgid "Fan Speed (%)"
msgstr "Швидкість Вентилятора (%)"
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr "Температура (°С)"
msgid "Volumetric flow rate (mm³/s)"
@@ -5229,7 +5315,7 @@ msgstr "Об'єм:"
msgid "Size:"
msgstr "Розмір:"
#, fuzzy, boost-format
#, fuzzy, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5302,7 +5388,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6632,6 +6718,9 @@ msgstr ""
"Для того щоб поставити позитивний рейтинг (4 або 5 зірок), потрібно \n"
"мати принаймні один успішний запис про друк з цим профілем друку."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Статус"
@@ -6642,6 +6731,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Більше не показувати"
@@ -7037,7 +7134,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7592,7 +7689,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Виправте помилки нарізки та опублікуйте знову."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Мережевий плагін не виявлено. Функції, пов'язані з мережею, недоступні."
@@ -8168,7 +8266,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8368,40 +8466,40 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "Увімкнути мережевий плагін"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8481,19 +8579,16 @@ msgstr "налагодження"
msgid "trace"
msgstr "слід"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8713,7 +8808,10 @@ msgstr "Публікація скасована"
msgid "Slicing Plate 1"
msgstr "Пластина для нарізки 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Упаковка даних у 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -9029,8 +9127,8 @@ msgstr "Гладка Високотемпературна Пластина"
msgid "Textured PEI Plate"
msgstr "Текстурована PEI пластина"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Холодна пластина (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Клацніть тут, якщо ви не можете підключитися до принтера"
@@ -9354,7 +9452,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9471,8 +9569,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"При записі таймлапсу без інструментальної головки рекомендується додати "
"“Timelapse Wipe Tower” \n"
@@ -9694,9 +9792,6 @@ msgstr "Температура друку"
msgid "Nozzle temperature when printing"
msgstr "Температура сопла під час друку"
msgid "Cool Plate (SuperTack)"
msgstr "Холодна пластина (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10163,6 +10258,12 @@ msgstr "Показувати всі профілі (включаючи несу
msgid "Select presets to compare"
msgstr "Виберіть профілі для порівняння"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10595,6 +10696,12 @@ msgstr "Натисніть тут, щоб завантажити його."
msgid "Login"
msgstr "Логін"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr "Пакет конфігурації змінено в попередньому посібнику конфігурації"
@@ -11313,7 +11420,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -12882,7 +12989,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
"Ця опція може допомогти зменшити утворення ефект зморщування верхнього шару "
"на верхніх поверхнях у моделях із сильним нахилом або вигнутими формами.\n"
@@ -13402,7 +13509,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
"Додайте набори значень корекції тиску (PA), об'ємних швидкостей подачі та "
"прискорень, при яких вони були виміряні, розділені комами. Один набір "
@@ -14131,8 +14238,8 @@ msgstr ""
"знайдено, лінія заповнення з'єднується з сегментом периметра лише з одного "
"боку, і довжина взятого сегменту периметра обмежена цим параметром, але не "
"більше anchor_length_max.\n"
"Встановіть цей параметр рівним нулю, щоб вимкнути периметри "
"прив'язки.пов'язані з однією лінією заповнення."
"Встановіть цей параметр рівним нулю, щоб вимкнути периметри прив'язки."
"пов'язані з однією лінією заповнення."
msgid "0 (no open anchors)"
msgstr "0 (немає відкритих прив'язок)"
@@ -14199,8 +14306,8 @@ msgid "mm/s² or %"
msgstr "мм/с² або %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Прискорення заповнення. Якщо значення виражено у відсотках (наприклад, "
"100%), воно буде розраховане на основі прискорення за умовчанням."
@@ -14319,10 +14426,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» до максимуму на рівні "
@@ -14822,9 +14929,9 @@ msgstr "Маркувати об'єкти"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Увімкніть цей параметр, щоб додати коментарі до друку друку мітки G-Code із "
"зазначенням об'єкта, якому вони належать, що корисно для модуля Octoprint "
@@ -15139,11 +15246,11 @@ msgstr "Тип розгладжування"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"При розглажуванні використовується невеликий потік для повторного друку на "
"тій самійвисота поверхні, щоб зробити плоску поверхню більш гладкою. Цей "
"параметр визначає, який шар гладити"
"параметр визначає, який шар гладити."
msgid "No ironing"
msgstr "Немає Розгладжування"
@@ -16184,8 +16291,8 @@ msgid "Role base wipe speed"
msgstr "Швидкість протирання залежно від типу"
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -16201,8 +16308,8 @@ msgid ""
"To minimize the visibility of the seam in a closed loop extrusion, a small "
"inward movement is executed before the extruder leaves the loop."
msgstr ""
"Щоб звести до мінімуму видимість шва при екструзії із замкнутим "
"контуром,Невеликий рух усередину виконується до виходу екструдера з контуру."
"Щоб звести до мінімуму видимість шва при екструзії із замкнутим контуром,"
"Невеликий рух усередину виконується до виходу екструдера з контуру."
msgid "Wipe before external loop"
msgstr "Протирати перед зовнішнім контуром"
@@ -16447,7 +16554,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"Якщо вибрано плавний або традиційний режим, для кожного друку буде "
@@ -16680,8 +16787,8 @@ msgid ""
"Only create support for critical regions including sharp tail, cantilever, "
"etc."
msgstr ""
"Створювати підтримку тільки для критичних областей, включаючи гострий "
"хвіст,консоль і т.д."
"Створювати підтримку тільки для критичних областей, включаючи гострий хвіст,"
"консоль і т.д."
msgid "Ignore small overhangs"
msgstr ""
@@ -17040,8 +17147,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"
@@ -17219,9 +17326,9 @@ msgstr ""
"Залежно від тривалості операції витирання, швидкості та тривалості "
"втягування екструдера/нитки, може знадобитися рух накату для нитки.\n"
"\n"
"Якщо встановити значення у параметрі \"Кількість втягування перед "
"витиранням\" нижче, надлишкове втягування буде виконано перед витиранням, "
"інакше воно буде виконано після нього."
"Якщо встановити значення у параметрі \"Кількість втягування перед витиранням"
"\" нижче, надлишкове втягування буде виконано перед витиранням, інакше воно "
"буде виконано після нього."
msgid ""
"The wiping tower can be used to clean up the residue on the nozzle and "
@@ -17338,6 +17445,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Прямокутник"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -17932,7 +18045,7 @@ msgid ""
"machines in the list."
msgstr ""
msgid "downward machines settings"
msgid "Downward machines settings"
msgstr ""
msgid "The machine settings list needs to do downward checking."
@@ -17965,8 +18078,8 @@ msgid "Debug level"
msgstr "Рівень налагодження"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"Встановлює рівень реєстрації налагодження. 0: непереборний, 1: помилка, 2: "
"попередження, 3: інформація, 4: налагодження, 5: трасування\n"
@@ -18496,13 +18609,13 @@ msgstr "Наданий файл не вдалося прочитати, оскі
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj "
"або .amf (.xml)."
"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj або ."
"amf (.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf "
"або .zip.amf."
"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf або .zip."
"amf."
msgid "load_obj: failed to parse"
msgstr "помилка завантаження файлу OBJ: не вдалося розпізнати формат"
@@ -18620,10 +18733,6 @@ msgstr "Назва така сама, як інша існуюча назва н
msgid "create new preset failed."
msgstr "не вдалося створити новий передвстановлений параметр."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19300,6 +19409,23 @@ msgstr ""
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -19334,6 +19460,9 @@ msgstr ""
msgid "Input shaping Damp test"
msgstr ""
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -19669,8 +19798,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 ""
"Ми б перейменували попередні налаштування на «Вибраний вами серійний "
@@ -19720,9 +19849,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Прямокутник"
msgid "Printable Space"
msgstr "Простір для друку"
@@ -20154,7 +20280,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -21073,6 +21199,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21508,9 +21755,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Профі"
#~ msgid "Packing data to 3MF"
#~ msgstr "Упаковка даних у 3mf"
#~ msgid ""
#~ "Filament shrinkage will not be used because filament shrinkage for the "
#~ "used filaments differs significantly."

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-10-02 17:43+0700\n"
"Last-Translator: \n"
"Language-Team: hainguyen.ts13@gmail.com\n"
@@ -14,26 +14,6 @@ msgstr ""
"X-Generator: Poedit 3.7\n"
"X-Poedit-Basepath: .\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1564,6 +1544,30 @@ msgstr "Khoảng cách song song:"
msgid "Flip by Face 2"
msgstr "Lật theo mặt 2"
msgid "Assemble"
msgstr "Lắp ráp"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Thông báo"
@@ -1601,6 +1605,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "Dựa trên PrusaSlicer và BambuStudio"
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Kết cấu"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1628,14 +1680,14 @@ msgstr "OrcaSlicer gặp ngoại lệ không xử lý được: %1%"
msgid "Untitled"
msgstr "Không tiêu đề"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr ""
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr ""
msgid "Downloading Bambu Network Plug-in"
msgstr "Đang tải Bambu Network Plug-in"
msgstr "Đang tải Bambu Network Plugin"
msgid "Login information expired. Please login again."
msgstr "Thông tin đăng nhập đã hết hạn. Vui lòng đăng nhập lại."
@@ -1724,6 +1776,9 @@ msgstr "Chọn file ZIP"
msgid "Choose one file (GCODE/3MF):"
msgstr "Chọn một file (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Một số preset đã được sửa đổi."
@@ -1783,7 +1838,7 @@ msgid ""
"access, enabling full functionality with OrcaSlicer."
msgstr ""
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr ""
msgid "Privacy Policy Update"
@@ -2018,6 +2073,9 @@ msgstr ""
"Yes - Thay đổi các cài đặt này tự động\n"
"No - Không thay đổi các cài đặt này cho tôi"
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "Chữ"
@@ -2127,9 +2185,6 @@ msgstr "Chuyển đổi từ mét"
msgid "Restore to meters"
msgstr "Khôi phục về mét"
msgid "Assemble"
msgstr "Lắp ráp"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Lắp ráp các vật thể đã chọn thành vật thể có nhiều phần"
@@ -2626,6 +2681,10 @@ msgstr "In nhiều màu"
msgid "Line Type"
msgstr "Loại đường"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Thêm"
@@ -2743,8 +2802,8 @@ msgstr "Vui lòng kiểm tra kết nối mạng của máy in và Orca."
msgid "Connecting..."
msgstr "Đang kết nối..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Tự động cấp lại"
msgid "Load"
msgstr "Nạp"
@@ -3133,6 +3192,38 @@ msgid ""
"Storage before sending to printer."
msgstr ""
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3457,9 +3548,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Đầu phun"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3526,9 +3614,6 @@ msgstr "In với filament trong AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "In với filament gắn ở mặt sau khung"
msgid "Auto Refill"
msgstr "Tự động cấp lại"
msgid "Left"
msgstr "Trái"
@@ -3540,7 +3625,7 @@ msgid ""
"following order."
msgstr "Khi vật liệu hiện tại hết, máy in sẽ tiếp tục in theo thứ tự sau."
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr ""
msgid "Group"
@@ -3674,8 +3759,8 @@ msgid "Calibration"
msgstr "Hiệu chỉnh"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr ""
"Tải plug-in thất bại. Vui lòng kiểm tra cài đặt firewall và phần mềm vpn , "
"kiểm tra và thử lại."
@@ -3690,8 +3775,8 @@ msgid "Click here to see more info"
msgstr "nhấn vào đây để xem thêm thông tin"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3857,9 +3942,6 @@ msgstr "Tải hình dạng từ STL..."
msgid "Settings"
msgstr "Cài đặt"
msgid "Texture"
msgstr "Kết cấu"
msgid "Remove"
msgstr "Xóa"
@@ -4056,7 +4138,7 @@ msgstr ""
"seam_slope_start_height cần nhỏ hơn layer_height.\n"
"Đặt lại về 0."
#, fuzzy
#, fuzzy, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4681,6 +4763,9 @@ msgstr ""
msgid "Fan speed"
msgstr "Tốc độ quạt"
msgid "°C"
msgstr ""
msgid "Time"
msgstr "Thời gian"
@@ -4837,7 +4922,7 @@ msgstr "Tốc độ thực tế (mm/s)"
msgid "Fan Speed (%)"
msgstr "Tốc độ quạt (%)"
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr "Nhiệt độ (°C)"
msgid "Volumetric flow rate (mm³/s)"
@@ -5159,7 +5244,7 @@ msgstr "Thể tích:"
msgid "Size:"
msgstr "Kích thước:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5232,7 +5317,7 @@ msgstr ""
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr ""
msgid "Click Wiki for help."
@@ -6523,6 +6608,9 @@ msgstr ""
"Cần ít nhất một bản ghi in thành công của cấu hình in này \n"
"để đưa ra đánh giá tích cực (4 hoặc 5 sao)."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Trạng thái"
@@ -6533,6 +6621,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Không hiển thị lại"
@@ -6913,7 +7009,7 @@ msgstr ""
msgid "Unavailable while heating maintenance function is on."
msgstr ""
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr ""
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7467,7 +7563,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Vui lòng giải quyết các lỗi slice và xuất bản lại."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Không phát hiện plug-in mạng. Các tính năng liên quan đến mạng không khả "
"dụng."
@@ -8038,7 +8135,7 @@ msgstr ""
msgid "filaments"
msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Features"
@@ -8236,40 +8333,40 @@ msgstr "Sợi và Màu sắc"
msgid "Color only"
msgstr "Chỉ màu"
msgid "Network plugin"
msgid "Network plug-in"
msgstr ""
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "Bật plugin mạng"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr ""
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
@@ -8338,19 +8435,16 @@ msgstr "gỡ lỗi"
msgid "trace"
msgstr "theo dõi"
msgid "Network Plugin"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
@@ -8569,7 +8663,10 @@ msgstr "Xuất bản đã bị hủy"
msgid "Slicing Plate 1"
msgstr "Đang slice bản 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Đang đóng gói dữ liệu vào 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8882,8 +8979,8 @@ msgstr "Bản Smooth nhiệt độ cao"
msgid "Textured PEI Plate"
msgstr "Bản Textured PEI"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Bản Cool (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Nhấp vào đây nếu bạn không thể kết nối với máy in"
@@ -9197,7 +9294,7 @@ msgstr ""
"tower tăng lên. Bạn vẫn muốn bật?"
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
@@ -9317,8 +9414,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 ""
"Khi ghi timelapse không có đầu công cụ, khuyến nghị thêm \"Timelapse Wipe "
"Tower\" \n"
@@ -9532,9 +9629,6 @@ msgstr "Nhiệt độ in"
msgid "Nozzle temperature when printing"
msgstr "Nhiệt độ đầu phun khi in"
msgid "Cool Plate (SuperTack)"
msgstr "Bản Cool (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -9989,6 +10083,12 @@ msgstr "Hiển thị tất cả preset (bao gồm cả không tương thích)"
msgid "Select presets to compare"
msgstr "Chọn preset để so sánh"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr ""
@@ -10419,6 +10519,12 @@ msgstr "Nhấp vào đây để tải xuống."
msgid "Login"
msgstr "Đăng nhập"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr "Gói cấu hình đã được thay đổi trong hướng dẫn cấu hình trước"
@@ -11127,7 +11233,7 @@ msgid ""
msgstr ""
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr ""
@@ -11534,8 +11640,8 @@ msgstr ""
"Orca Slicer có thể tải file G-code lên máy chủ máy in. Trường này nên chứa "
"tên máy chủ, địa chỉ IP hoặc URL của phiên bản máy chủ máy in. Máy chủ in "
"đằng sau HAProxy với xác thực cơ bản được bật có thể được truy cập bằng cách "
"đặt tên người dùng và mật khẩu vào URL theo định dạng sau: https://"
"username:password@your-octopi-address/"
"đặt tên người dùng và mật khẩu vào URL theo định dạng sau: https://username:"
"password@your-octopi-address/"
msgid "Device UI"
msgstr "Giao diện thiết bị"
@@ -12666,7 +12772,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
"Tùy chọn này có thể giúp giảm hiện tượng gối trên bề mặt trên trong model "
"nghiêng mạnh hoặc cong.\n"
@@ -12685,7 +12791,7 @@ msgstr ""
"cầu không cần thiết. Điều này hoạt động tốt cho hầu hết model khó\n"
"3. Không lọc - tạo cầu bên trong trên mọi phần nhô bên trong tiềm năng. Tùy "
"chọn này hữu ích cho model bề mặt trên nghiêng mạnh; tuy nhiên, trong hầu "
"hết trường hợp, nó tạo quá nhiều cầu không cần thiết"
"hết trường hợp, nó tạo quá nhiều cầu không cần thiết."
msgid "Limited filtering"
msgstr "Lọc giới hạn"
@@ -13161,7 +13267,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
"Thêm bộ giá trị áp suất nâng cao (PA), tốc độ lưu lượng thể tích và gia tốc "
"chúng được đo, ngăn cách bằng dấu phẩy. Một bộ giá trị trên mỗi dòng. Ví dụ\n"
@@ -13186,7 +13292,7 @@ msgstr ""
"càng lớn. Nếu không thấy sự khác biệt, hãy sử dụng giá trị PA từ kiểm tra "
"nhanh hơn\n"
"3. Nhập bộ ba giá trị PA, Lưu lượng và Gia tốc vào hộp văn bản ở đây và lưu "
"hồ sơ filament của bạn"
"hồ sơ filament của bạn."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Bật áp suất nâng cao thích ứng cho phần nhô (beta)"
@@ -13945,8 +14051,8 @@ msgid "mm/s² or %"
msgstr "mm/s² hoặc %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Gia tốc của infill thưa. Nếu giá trị được biểu thị dưới dạng phần trăm (ví "
"dụ 100%), nó sẽ được tính dựa trên gia tốc mặc định."
@@ -14064,14 +14170,14 @@ msgstr "Tốc độ quạt đầy tại lớp"
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 ""
"Tốc độ quạt sẽ được tăng tuyến tính từ không tại lớp "
"\"close_fan_the_first_x_layers\" đến tối đa tại lớp "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" sẽ bị bỏ qua nếu thấp hơn "
"\"close_fan_the_first_x_layers\" đến tối đa tại lớp \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" sẽ bị bỏ qua nếu thấp hơn "
"\"close_fan_the_first_x_layers\", trong trường hợp đó quạt sẽ chạy ở tốc độ "
"tối đa được phép tại lớp \"close_fan_the_first_x_layers\" + 1."
@@ -14574,9 +14680,9 @@ msgstr "Gắn nhãn đối tượng"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Bật điều này để thêm chú thích vào G-code gắn nhãn chuyển động in với đối "
"tượng nào chúng thuộc về, hữu ích cho plugin CancelObject Octoprint. Cài đặt "
@@ -14904,10 +15010,10 @@ msgstr "Loại ủi"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"Ủi là sử dụng lưu lượng nhỏ để in lại trên cùng chiều cao của bề mặt để làm "
"cho bề mặt phẳng mịn hơn. Cài đặt này điều khiển lớp nào được ủi"
"cho bề mặt phẳng mịn hơn. Cài đặt này điều khiển lớp nào được ủi."
msgid "No ironing"
msgstr "Không ủi"
@@ -15930,8 +16036,8 @@ msgid "Role base wipe speed"
msgstr "Tốc độ lau dựa trên vai trò"
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -16193,7 +16299,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"Nếu chế độ mịn hoặc truyền thống được chọn, video timelapse sẽ được tạo cho "
@@ -16781,8 +16887,8 @@ msgstr "Kích hoạt điều khiển nhiệt độ"
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"
@@ -17080,6 +17186,12 @@ msgstr ""
"2. Nón: Một nón có bo tròn ở dưới để giúp ổn định wipe tower.\n"
"3. Gân: Thêm bốn gân vào thành tower để tăng cường độ ổn định."
msgid "Rectangle"
msgstr "Hình chữ nhật"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr "Độ dài gân bổ sung"
@@ -17681,8 +17793,8 @@ msgstr ""
"Nếu được bật, kiểm tra máy hiện tại có tương thích ngược với các máy trong "
"danh sách hay không."
msgid "downward machines settings"
msgstr "cài đặt máy tương thích ngược"
msgid "Downward machines settings"
msgstr "Cài đặt máy tương thích ngược"
msgid "The machine settings list needs to do downward checking."
msgstr "Danh sách cài đặt máy cần thực hiện kiểm tra tương thích ngược."
@@ -17714,11 +17826,11 @@ msgid "Debug level"
msgstr "Mức gỡ lỗi"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"Đặt mức ghi log gỡ lỗi. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Đặt mức ghi log gỡ lỗi. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgid "Enable timelapse for print"
msgstr "Bật timelapse cho in"
@@ -18247,13 +18359,13 @@ msgstr "File được cung cấp không thể đọc được vì nó trống"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Định dạng file không xác định. File đầu vào phải có phần mở "
"rộng .stl, .obj, .amf(.xml)."
"Định dạng file không xác định. File đầu vào phải có phần mở rộng .stl, ."
"obj, .amf(.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
"Định dạng file không xác định. File đầu vào phải có phần mở rộng .3mf "
"hoặc .zip.amf."
"Định dạng file không xác định. File đầu vào phải có phần mở rộng .3mf hoặc ."
"zip.amf."
msgid "load_obj: failed to parse"
msgstr "load_obj: phân tích thất bại"
@@ -18370,10 +18482,6 @@ msgstr "Tên giống với tên cài đặt sẵn khác hiện có"
msgid "create new preset failed."
msgstr "tạo cài đặt sẵn mới thất bại."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19047,6 +19155,23 @@ msgstr "Tháp nhanh"
msgid "Input shaper type"
msgstr ""
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr ""
@@ -19083,6 +19208,9 @@ msgstr "Vui lòng nhập hệ số giảm chấn hợp lệ (0 < Hệ số giả
msgid "Input shaping Damp test"
msgstr "Kiểm tra giảm chấn input shaping"
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr ""
@@ -19416,8 +19544,8 @@ msgstr ""
"Bạn có muốn viết lại nó không?"
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 ""
"Chúng tôi sẽ đổi tên cài đặt sẵn thành \"Nhà cung cấp Loại Serial @máy in "
@@ -19466,9 +19594,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Hình chữ nhật"
msgid "Printable Space"
msgstr "Không gian có thể in"
@@ -19882,7 +20007,7 @@ msgstr ""
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
@@ -20805,6 +20930,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21243,12 +21489,10 @@ msgstr ""
#~ msgstr "Nâng cao"
#~ msgid ""
#~ "Disable to use latest network plugin that supports new BambuLab firmwares."
#~ "Disable to use latest network plug-in that supports new BambuLab "
#~ "firmwares."
#~ msgstr "Tắt để sử dụng plugin mạng mới nhất hỗ trợ firmware BambuLab mới."
#~ msgid "Packing data to 3MF"
#~ msgstr "Đang đóng gói dữ liệu vào 3mf"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Slic3rPE\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-06 04:49+0800\n"
"PO-Revision-Date: 2026-02-28 00:59\n"
"Last-Translator: Handle <mail@bysb.net>\n"
"Language-Team: \n"
@@ -17,26 +17,6 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: OrcaSlicer Translation Helper\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr "此耗材可能于当前设备设置不兼容,将使用通用耗材预设。"
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr "此耗材型号未知,将使用先前的耗材预设。"
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr "此耗材型号未知,将使用通用耗材预设。"
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr "此耗材可能与当前设备设置不兼容,将使用随机耗材预设。"
msgid "The filament model is unknown. A random filament preset will be used."
msgstr "此耗材可能于当前设备设置不兼容,将使用随机耗材预设。"
msgid "right"
msgstr "右"
@@ -79,7 +59,7 @@ msgstr "泛光PLA的粗糙表面可能会加速AMS的磨损尤其是AMS Lite
msgid ""
"CF/GF filaments are hard and brittle, it's easy to break or get stuck in "
"AMS, please use with caution."
msgstr "CF/GF耗材丝又硬又脆在AMS中很容易断裂或卡住请谨慎使用。"
msgstr "CF/GF耗材丝又硬又脆在AMS中很容易断裂或卡住请谨慎使用。"
msgid "PPS-CF is brittle and could break in bended PTFE tube above Toolhead."
msgstr "PPS-CF材质较脆用在工具头上方的弯曲PTFE管中可能会断裂。"
@@ -514,7 +494,7 @@ msgid "Cut position"
msgstr "切割位置"
msgid "Build Volume"
msgstr "零件体积"
msgstr "打印体积"
msgid "Part"
msgstr "零件"
@@ -700,7 +680,7 @@ msgid "Delete connector"
msgstr "删除连接器"
msgid "Mesh name"
msgstr "Mesh名"
msgstr "网格名称"
msgid "Detail level"
msgstr "细节等级"
@@ -1552,6 +1532,30 @@ msgstr "平行距离:"
msgid "Flip by Face 2"
msgstr "通过面2翻转"
msgid "Assemble"
msgstr "组合"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "通知"
@@ -1563,7 +1567,7 @@ msgid "%1% was replaced with %2%"
msgstr "%1%已被%2%替换"
msgid "The configuration may be generated by a newer version of OrcaSlicer."
msgstr "此配置可能由新版本的逆戟鲸生成"
msgstr "此配置可能由新版本的逆戟鲸切片器生成"
msgid "Some values have been replaced. Please check them:"
msgstr "部分数值已被替换,请检查:"
@@ -1588,6 +1592,54 @@ msgstr "配置文件“%1%”已被加载,但部分数值未被识别。"
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "基于PrusaSlicer和BambuStudio"
msgid "STEP files"
msgstr "STEP 文件"
msgid "STL files"
msgstr "STL 文件"
msgid "OBJ files"
msgstr "OBJ 文件"
msgid "AMF files"
msgstr "AMF 文件"
msgid "3MF files"
msgstr "3MF 文件"
msgid "Gcode 3MF files"
msgstr "Gcode 3MF 文件"
msgid "G-code files"
msgstr "G-code 文件"
msgid "Supported files"
msgstr "支持的文件"
msgid "ZIP files"
msgstr "ZIP 文件"
msgid "Project files"
msgstr "项目文件"
msgid "Known files"
msgstr "已知文件"
msgid "INI files"
msgstr "INI 文件"
msgid "SVG files"
msgstr "SVG 文件"
msgid "Texture"
msgstr "纹理"
msgid "Masked SLA files"
msgstr "Masked SLA 文件"
msgid "Draco files"
msgstr "Draco 文件"
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1615,10 +1667,10 @@ msgstr "OrcaSlicer 捕捉到一个未处理的异常:%1%"
msgid "Untitled"
msgstr "未命名"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr "正在重新加载网络插件..."
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr "正在下载网络插件"
msgid "Downloading Bambu Network Plug-in"
@@ -1666,7 +1718,7 @@ msgid "Click to download new version in default browser: %s"
msgstr "在默认浏览器中点击下载最新版本: %s"
msgid "The Orca Slicer needs an upgrade"
msgstr "逆戟鲸需要进行升级"
msgstr "逆戟鲸切片器需要进行升级"
msgid "This is the newest version."
msgstr "已经是最新版本。"
@@ -1708,6 +1760,9 @@ msgstr "选择ZIP文件"
msgid "Choose one file (GCODE/3MF):"
msgstr "选择一个文件GCODE/3MF"
msgid "Ext"
msgstr "分机"
msgid "Some presets are modified."
msgstr "预设已被修改。"
@@ -1773,7 +1828,7 @@ msgstr ""
"\n"
"开发者模式允许打印机仅通过局域网访问工作,从而实现与 OrcaSlicer 的完整功能。"
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr "网络插件限制"
msgid "Privacy Policy Update"
@@ -2006,6 +2061,9 @@ msgstr ""
"是 - 自动调整这些设置\n"
"否 - 不用为我调整这些设置"
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "文字浮雕"
@@ -2115,9 +2173,6 @@ msgstr "从米转换"
msgid "Restore to meters"
msgstr "恢复到米"
msgid "Assemble"
msgstr "组合"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "组合所选对象为一个多零件对象"
@@ -2604,6 +2659,10 @@ msgstr "多色打印"
msgid "Line Type"
msgstr "走线类型"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "详情"
@@ -2721,8 +2780,8 @@ msgstr "请检查打印机和工作室的网络连接"
msgid "Connecting..."
msgstr "连接中..."
msgid "Auto-refill"
msgstr "自动补"
msgid "Auto Refill"
msgstr "自动补"
msgid "Load"
msgstr "进料"
@@ -3102,6 +3161,38 @@ msgid ""
"Storage before sending to printer."
msgstr "打印机存储器为只读模式,请将其替换为正常的存储器后再向打印机发送内容。"
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr "用于第一层优化的热预处理"
@@ -3424,9 +3515,6 @@ msgstr "右喷嘴"
msgid "Nozzle"
msgstr "喷嘴"
msgid "Ext"
msgstr "分机"
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3493,9 +3581,6 @@ msgstr "采用AMS里的材料打印"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "采用挂载在机箱背部的材料打印"
msgid "Auto Refill"
msgstr "自动补给"
msgid "Left"
msgstr "左"
@@ -3507,7 +3592,7 @@ msgid ""
"following order."
msgstr "当前材料耗尽时,打印机将按照以下顺序继续打印。"
msgid "Identical filament: same brand, type and color"
msgid "Identical filament: same brand, type and color."
msgstr "相同耗材:同品牌、同型号、同色。"
msgid "Group"
@@ -3639,8 +3724,8 @@ msgid "Calibration"
msgstr "校准"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr "插件下载失败。请检查您的防火墙设置和vpn软件,检查后重试。"
msgid ""
@@ -3655,8 +3740,8 @@ msgid "Click here to see more info"
msgstr "点击这里查看更多信息"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr "网络插件已安装但无法加载。请重新启动应用程序。"
msgid "Restart Required"
@@ -3815,9 +3900,6 @@ msgstr "从STL文件加载形状..."
msgid "Settings"
msgstr "设置"
msgid "Texture"
msgstr "纹理"
msgid "Remove"
msgstr "移除"
@@ -4000,6 +4082,7 @@ msgstr ""
"seam_slope_start_height需要小于layer_height。\n"
"重置为0。"
#, fuzzy
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4627,6 +4710,9 @@ msgstr "毫米立方/秒"
msgid "Fan speed"
msgstr "风扇速度"
msgid "°C"
msgstr ""
msgid "Time"
msgstr "时间"
@@ -4783,7 +4869,7 @@ msgstr "实际速度(毫米/秒)"
msgid "Fan Speed (%)"
msgstr "风扇速度(%"
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr "温度(℃)"
msgid "Volumetric flow rate (mm³/s)"
@@ -5180,7 +5266,7 @@ msgstr "Prime 塔位置超出了打印板边界,并重新定位到最近的有
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr "部分冲洗量设置为 0。多色打印可能会导致模型混色。请重新调整冲水设置。"
msgid "Click Wiki for help."
@@ -6453,6 +6539,9 @@ msgstr ""
"此打印配置文件至少需要一个成功的打印记录 \n"
"才能给出好评4星或5星。"
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "设备状态"
@@ -6463,6 +6552,14 @@ msgstr "更新"
msgid "Assistant(HMS)"
msgstr "助理HMS"
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "不再显示"
@@ -6828,7 +6925,7 @@ msgstr "清爽"
msgid "Unavailable while heating maintenance function is on."
msgstr "加热维护功能开启时不可用。"
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr "怠速加热保护"
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7201,7 +7298,7 @@ msgid ""
" Do you want to scale to millimeters?"
msgstr ""
"文件 %s 中对象的尺寸似乎是以米或者英寸为单位定义的。\n"
"逆戟鲸的内部单位为毫米。是否要转换成毫米?"
"逆戟鲸切片器的内部单位为毫米。是否要转换成毫米?"
msgid "Object too small"
msgstr "对象尺寸过小"
@@ -7368,7 +7465,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "请解决切片错误后再重新发布。"
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr "未检测到网络插件。网络相关功能不可用。"
msgid ""
@@ -7669,7 +7767,8 @@ msgid ""
"\"Fix Model\" feature is currently only on Windows. Please repair the model "
"on Orca Slicer(windows) or CAD softwares."
msgstr ""
"\"修复模型\"功能目前仅适用于Windows。请在逆戟鲸(windows)或CAD软件上修复模型。"
"\"修复模型\"功能目前仅适用于Windows。请在逆戟鲸切片器(windows)或CAD软件上修复"
"模型。"
#, c-format, boost-format
msgid ""
@@ -7923,7 +8022,7 @@ msgstr "(需要重启)"
msgid "filaments"
msgstr "耗材丝"
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "根据选定的耗材丝数量优化耗材区域最大高度"
msgid "Features"
@@ -7941,7 +8040,7 @@ msgid "Pop up to select filament grouping mode"
msgstr "弹出选择耗材丝分组模式"
msgid "Quality level for Draco export"
msgstr "Draco 出口的质量水平"
msgstr "Draco 导出的模型质量"
msgid "bits"
msgstr "位"
@@ -8117,33 +8216,33 @@ msgstr "耗材丝及颜色"
msgid "Color only"
msgstr "仅颜色"
msgid "Network plugin"
msgid "Network plug-in"
msgstr "网络插件"
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "启用网络插件"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr "网络插件版本"
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr "选择要使用的网络插件版本"
msgid "(Latest)"
msgstr "(最新的)"
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr "网络插件切换成功。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr "无法加载网络插件。请重新启动应用程序。"
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
@@ -8152,11 +8251,11 @@ msgstr ""
"您已选择网络插件版本 %s。 您想立即下载并安装此版本吗? 注意:安装后应用程序可"
"能需要重新启动。"
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr "下载网络插件"
msgid "Associate files to OrcaSlicer"
msgstr "逆戟鲸文件关联"
msgstr "逆戟鲸切片器文件关联"
msgid "Associate 3MF files to OrcaSlicer"
msgstr "将 3MF 文件关联到 OrcaSlicer"
@@ -8222,19 +8321,16 @@ msgstr "调试"
msgid "trace"
msgstr "跟踪"
msgid "Network Plugin"
msgstr "网络插件"
msgid "Reload"
msgstr "重新加载"
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr "重新加载网络插件而不重新启动应用程序"
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr "网络插件已成功重新加载。"
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "无法重新加载网络插件。请重新启动应用程序。"
msgid "Reload Failed"
@@ -8453,8 +8549,11 @@ msgstr "发布已取消"
msgid "Slicing Plate 1"
msgstr "正在切片盘 1"
msgid "Packing data to 3mf"
msgstr "将数据打包至 3MF"
msgid "Packing data to 3MF"
msgstr ""
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
msgstr "跳转到网页"
@@ -8780,8 +8879,8 @@ msgstr "光滑高温打印热床"
msgid "Textured PEI Plate"
msgstr "纹理PEI热床"
msgid "Cool Plate (Supertack)"
msgstr "冷却板Supertack"
msgid "Cool Plate (SuperTack)"
msgstr "低温打印板(超强粘附"
msgid "Click here if you can't connect to the printer"
msgstr "如果无法连接到打印机,请单击此处"
@@ -9087,7 +9186,7 @@ msgid ""
msgstr "同时启用精确Z高度和擦拭塔可能会导致擦拭塔尺寸增大。您仍然要启用吗"
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
"结块检测需要 Prime 塔。没有主塔的模型可能存在缺陷。您仍要启用结块检测吗?"
@@ -9411,9 +9510,6 @@ msgstr "打印温度"
msgid "Nozzle temperature when printing"
msgstr "打印时的喷嘴温度"
msgid "Cool Plate (SuperTack)"
msgstr "低温打印板(超强粘附)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -9849,6 +9945,12 @@ msgstr "显示所有预设(包括不兼容的)"
msgid "Select presets to compare"
msgstr "选择要比较的预设"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr "只能传输到当前活动的配置文件,因为它已被修改。"
@@ -10276,6 +10378,12 @@ msgstr "点此下载"
msgid "Login"
msgstr "登录"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr "参数配置包在之前的配置向导中发生了变更"
@@ -10971,7 +11079,7 @@ msgid ""
msgstr "启用“按对象”序列时,不支持结块检测。"
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr "结块检测需要 Prime 塔;否则,模型可能存在缺陷。"
@@ -12372,7 +12480,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
"此选项可以帮助减少严重倾斜或弯曲模型顶面的枕化效应。\n"
"默认情况下,小的内部桥接被过滤掉,内部实心填充直接打印在稀疏填充上。这在大多"
@@ -12815,7 +12923,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
"添加压力提前 (PA) 值组、测量时的体积流速和加速度,并用逗号分隔。每行一组值。"
"例如\n"
@@ -14140,9 +14248,9 @@ msgstr "标注模型"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"启用此选项将在G-code中添加注释标记打印移动属于哪个对象这对Octoprint "
"CancelObject插件非常有用。此设置与单挤出机多材料设置和擦拭到对象/擦拭到填充不"
@@ -14446,7 +14554,7 @@ msgstr "熨烫类型"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"熨烫指的是使用小流量在表面的同高度打印,进而是的平面更加光滑。这个设置用于设"
"置哪些层进行熨烫。"
@@ -15624,7 +15732,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"如果启用平滑模式或者传统模式,将在每次打印时生成延时摄影视频。打印完每层后,"
@@ -16455,6 +16563,12 @@ msgstr ""
"2. 圆锥:底部有圆角的圆锥,有助于稳定擦拭塔。\n"
"3. 加强筋:在塔壁上增加四个加强筋以提高稳定性。"
msgid "Rectangle"
msgstr "矩形"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr "额外加强筋长度"
@@ -17018,7 +17132,7 @@ msgid ""
"machines in the list."
msgstr "如果启用,检查当前的机器是否向下兼容列表中的机器。"
msgid "downward machines settings"
msgid "Downward machines settings"
msgstr "向下兼容机器设置"
msgid "The machine settings list needs to do downward checking."
@@ -17662,10 +17776,6 @@ msgstr "该名称与另一个现有预设名称相同。"
msgid "create new preset failed."
msgstr "创建新预设失败"
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr "未找到所选预设:%s。"
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr "找不到参数:%s。"
@@ -18316,6 +18426,23 @@ msgstr "快速塔"
msgid "Input shaper type"
msgstr "输入整形器类型"
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr "频率(开始/结束):"
@@ -18354,6 +18481,9 @@ msgstr "请输入有效的阻尼因子0 < 阻尼/ζ因子 <= 1"
msgid "Input shaping Damp test"
msgstr "输入整形的阻尼测试"
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr "频率:"
@@ -18561,7 +18691,7 @@ msgid "Export Log"
msgstr "输出日志"
msgid "OrcaSlicer Version:"
msgstr "OrcaSlicer逆戟鲸版本:"
msgstr "逆戟鲸切片器版本:"
msgid "System Version:"
msgstr "系统版本:"
@@ -18733,9 +18863,6 @@ msgstr "输入自定义喷嘴直径"
msgid "Can't find my nozzle diameter"
msgstr "未找到我的喷嘴直径"
msgid "Rectangle"
msgstr "矩形"
msgid "Printable Space"
msgstr "可打印形状"
@@ -19127,7 +19254,7 @@ msgstr "挤出机数量与所选择进行校准的打印机不匹配。"
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr "%s 挤出机的喷嘴直径为 0.2 mm不支持自动流体动力学校准。"
@@ -20038,6 +20165,127 @@ msgstr "官方耗材"
msgid "More Colors"
msgstr "更多颜色"
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr "此耗材可能于当前设备设置不兼容,将使用通用耗材预设。"
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr "此耗材型号未知,将使用先前的耗材预设。"
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr "此耗材型号未知,将使用通用耗材预设。"
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr "此耗材可能与当前设备设置不兼容,将使用随机耗材预设。"
msgid "The filament model is unknown. A random filament preset will be used."
msgstr "此耗材可能于当前设备设置不兼容,将使用随机耗材预设。"
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -20392,3 +20640,19 @@ msgid ""
msgstr ""
"避免翘曲\n"
"您知道吗打印ABS这类易翘曲材料时适当提高热床温度可以降低翘曲的概率。"
#~ msgid "Auto-refill"
#~ msgstr "自动补充"
#~ msgid "Network Plug-in"
#~ msgstr "网络插件"
#~ msgid "Packing data to 3mf"
#~ msgstr "将数据打包至 3MF"
#~ msgid "Cool Plate (Supertack)"
#~ msgstr "冷却板Supertack"
#, c-format, boost-format
#~ msgid "The selected preset: %s is not found."
#~ msgstr "未找到所选预设:%s。"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-01 01:03+0800\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-11-28 13:48-0600\n"
"Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n"
"Language-Team: \n"
@@ -20,26 +20,6 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.8\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr "線材可能與目前的列印設備設定不相容,將使用一般線材預設。"
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr "線材型號未知,將繼續使用先前的線材預設。"
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr "線材型號未知,將使用一般線材預設。"
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr "線材可能與目前的列印設備設定不相容,將使用隨機線材預設。"
msgid "The filament model is unknown. A random filament preset will be used."
msgstr "線材型號未知,將使用隨機線材預設。"
msgid "right"
msgstr "右"
@@ -1555,6 +1535,30 @@ msgstr "平行距離:"
msgid "Flip by Face 2"
msgstr "通過面 2 翻轉"
msgid "Assemble"
msgstr "組合"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "通知"
@@ -1591,6 +1595,54 @@ msgstr "設定檔「%1%」 已被載入,但部分數值無法識別。"
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "基於 PrusaSlicer 與 BambuStudio 開發"
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "紋理"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1618,10 +1670,10 @@ msgstr "Orca Slicer 遭遇到一個未處理的例外:%1%"
msgid "Untitled"
msgstr "未命名"
msgid "Reloading network plugin..."
msgid "Reloading network plug-in..."
msgstr "正在重新載入網路外掛程式..."
msgid "Downloading Network Plugin"
msgid "Downloading Network Plug-in"
msgstr "正在下載網路外掛程式"
msgid "Downloading Bambu Network Plug-in"
@@ -1713,6 +1765,9 @@ msgstr "選擇 ZIP 檔"
msgid "Choose one file (GCODE/3MF):"
msgstr "選擇一個檔案GCODE/3MF"
msgid "Ext"
msgstr "擠出機"
msgid "Some presets are modified."
msgstr "部分預設已被修改。"
@@ -1778,7 +1833,7 @@ msgstr ""
"\n"
"開發者模式允許列印設備僅透過區域網路存取運作,以實現 OrcaSlicer 的完整功能。"
msgid "Network Plugin Restriction"
msgid "Network Plug-in Restriction"
msgstr "網路外掛程式限制"
msgid "Privacy Policy Update"
@@ -2013,6 +2068,9 @@ msgstr ""
"是 - 自動更改這些設定\n"
"否 - 不為我更改這些設定"
msgid "Suggestion"
msgstr ""
msgid "Text"
msgstr "文字"
@@ -2122,9 +2180,6 @@ msgstr "從公尺轉換"
msgid "Restore to meters"
msgstr "恢復到公尺"
msgid "Assemble"
msgstr "組合"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "組合所選物件為一個多零件物件"
@@ -2617,6 +2672,10 @@ msgstr "多色列印"
msgid "Line Type"
msgstr "走線類型"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "詳情"
@@ -2734,8 +2793,8 @@ msgstr "請檢查列印設備與 Orca Slicer 的網路連接。"
msgid "Connecting..."
msgstr "連接中..."
msgid "Auto-refill"
msgstr "自動補"
msgid "Auto Refill"
msgstr "自動補"
msgid "Load"
msgstr "匯入"
@@ -3120,6 +3179,38 @@ msgid ""
"Storage before sending to printer."
msgstr "列印設備中的儲存空間為唯讀。請在傳送到列印設備前更換為正常的儲存空間。"
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
msgstr ""
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgid "Bad input data for UseSurfaceJob."
msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgid "Add Emboss text Volume"
msgstr ""
msgid "Font doesn't have any shape for given text."
msgstr ""
msgid "There is no valid surface for text projection."
msgstr ""
msgid "Thermal Preconditioning for first layer optimization"
msgstr "首層優化的熱預調節"
@@ -3451,9 +3542,6 @@ msgstr "右噴嘴"
msgid "Nozzle"
msgstr "噴嘴"
msgid "Ext"
msgstr "擠出機"
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3522,9 +3610,6 @@ msgstr "使用 AMS 裡的線材列印"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "使用掛在機箱背部的線材列印"
msgid "Auto Refill"
msgstr "自動補充"
msgid "Left"
msgstr "左面"
@@ -3536,8 +3621,8 @@ msgid ""
"following order."
msgstr "當目前線材用完時,列印設備將按照以下順序繼續列印。"
msgid "Identical filament: same brand, type and color"
msgstr "相同線材:相同品牌、類型和顏色"
msgid "Identical filament: same brand, type and color."
msgstr "相同線材:相同品牌、類型和顏色"
msgid "Group"
msgstr "組"
@@ -3669,8 +3754,8 @@ msgid "Calibration"
msgstr "校正"
msgid ""
"Failed to download the plug-in. Please check your firewall settings and vpn "
"software, check and retry."
"Failed to download the plug-in. Please check your firewall settings and VPN "
"software and retry."
msgstr "外掛程式下載失敗。請檢查您的防火牆設定和 VPN 軟體,檢查後重試。"
msgid ""
@@ -3685,8 +3770,8 @@ msgid "Click here to see more info"
msgstr "點擊這裡查看更多資訊"
msgid ""
"The network plugin was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr "網路外掛程式已安裝但無法載入。請重新啟動應用程式。"
msgid "Restart Required"
@@ -3854,9 +3939,6 @@ msgstr "從 STL 檔案載入形狀..."
msgid "Settings"
msgstr "設定"
msgid "Texture"
msgstr "紋理"
msgid "Remove"
msgstr "移除"
@@ -4068,6 +4150,7 @@ msgstr ""
"重設為 0。seam_slope_start_height 必須小於 layer_height。\n"
"重設為 0。"
#, fuzzy, c-format, boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -4696,6 +4779,9 @@ msgstr "mm³/s"
msgid "Fan speed"
msgstr "風扇速度"
msgid "°C"
msgstr ""
msgid "Time"
msgstr "時間"
@@ -4852,7 +4938,7 @@ msgstr "實際速度mm/s"
msgid "Fan Speed (%)"
msgstr "風扇速度(%"
msgid "Temperature ()"
msgid "Temperature (°C)"
msgstr "溫度(℃)"
msgid "Volumetric flow rate (mm³/s)"
@@ -5176,7 +5262,7 @@ msgstr "體積:"
msgid "Size:"
msgstr "尺寸:"
#, boost-format
#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5249,7 +5335,7 @@ msgstr "換料塔位置超出列印板邊界,已重新定位到最近的有效
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
"mixing in models. Please redjust flushing settings."
"mixing in models. Please readjust flushing settings."
msgstr "部分沖洗體積設為 0。多色列印可能導致模型出現混色。請重新調整沖洗設定。"
msgid "Click Wiki for help."
@@ -6064,9 +6150,9 @@ msgid ""
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
"Slicer and export a new .gcode.3mf file."
msgstr ""
".gcode.3mf 檔案不包含 G-code 資料。請使用 OrcaSlicer 切片並匯出新"
"的 .gcode.3mf 檔案。.gcode.3mf 檔案中不包含 G-code 資料。請使用 Orca Slicer "
"進行切片並匯出新的 .gcode.3mf 檔案。"
".gcode.3mf 檔案不包含 G-code 資料。請使用 OrcaSlicer 切片並匯出新的 ."
"gcode.3mf 檔案。.gcode.3mf 檔案中不包含 G-code 資料。請使用 Orca Slicer 進行"
"切片並匯出新的 .gcode.3mf 檔案。"
#, c-format, boost-format
msgid "File '%s' was lost! Please download it again."
@@ -6536,6 +6622,9 @@ msgstr ""
"若要給予正面評價4 或 5 星),\n"
"必須至少有一個此列印設定檔的成功列印記錄。"
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "設備狀態"
@@ -6546,6 +6635,14 @@ msgstr "更新"
msgid "Assistant(HMS)"
msgstr "助手HMS"
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "不再顯示"
@@ -6913,7 +7010,7 @@ msgstr "重新整理中"
msgid "Unavailable while heating maintenance function is on."
msgstr "加熱維護功能啟用時無法使用。"
msgid "Idel Heating Protection"
msgid "Idle Heating Protection"
msgstr "閒置加熱保護"
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
@@ -7454,7 +7551,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "請解決切片錯誤後再重新發布。"
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr "未偵測到網路外掛程式。網路相關功能不可用。"
msgid ""
@@ -8014,7 +8112,7 @@ msgstr "(需要重啟程式)"
msgid "filaments"
msgstr "線材"
msgid "Optimizes filament area maximum height by chosen filament count"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "根據選擇的線材數量優化線材區域最大高度"
msgid "Features"
@@ -8208,33 +8306,33 @@ msgstr "線材與顏色"
msgid "Color only"
msgstr "僅顏色"
msgid "Network plugin"
msgid "Network plug-in"
msgstr "網路外掛程式"
msgid "Enable network plugin"
msgid "Enable network plug-in"
msgstr "啟用網路外掛程式"
msgid "Network plugin version"
msgid "Network plug-in version"
msgstr "網路外掛程式版本"
msgid "Select the network plugin version to use"
msgid "Select the network plug-in version to use"
msgstr "選擇要使用的網路外掛程式版本"
msgid "(Latest)"
msgstr "(最新版)"
msgid "Network plugin switched successfully."
msgid "Network plug-in switched successfully."
msgstr "網路外掛程式切換成功。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plugin. Please restart the application."
msgid "Failed to load network plug-in. Please restart the application."
msgstr "無法載入網路外掛程式。請重新啟動應用程式。"
#, c-format, boost-format
msgid ""
"You've selected network plugin version %s.\n"
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
@@ -8246,7 +8344,7 @@ msgstr ""
"\n"
"注意:安裝後應用程式可能需要重新啟動。"
msgid "Download Network Plugin"
msgid "Download Network Plug-in"
msgstr "下載網路外掛程式"
msgid "Associate files to OrcaSlicer"
@@ -8316,19 +8414,16 @@ msgstr "除錯"
msgid "trace"
msgstr "跟蹤"
msgid "Network Plugin"
msgstr "網路外掛程式"
msgid "Reload"
msgstr "重新載入"
msgid "Reload the network plugin without restarting the application"
msgid "Reload the network plug-in without restarting the application"
msgstr "重新載入網路外掛程式而無需重新啟動應用程式"
msgid "Network plugin reloaded successfully."
msgid "Network plug-in reloaded successfully."
msgstr "網路外掛程式重新載入成功。"
msgid "Failed to reload network plugin. Please restart the application."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "無法重新載入網路外掛程式。請重新啟動應用程式。"
msgid "Reload Failed"
@@ -8547,8 +8642,11 @@ msgstr "發布已取消"
msgid "Slicing Plate 1"
msgstr "正在切片列印板 1"
msgid "Packing data to 3mf"
msgstr "正在將資料打包至 3mf"
msgid "Packing data to 3MF"
msgstr ""
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
msgstr "跳至網頁"
@@ -8876,8 +8974,8 @@ msgstr "高溫平滑列印板"
msgid "Textured PEI Plate"
msgstr "紋理 PEI 列印板"
msgid "Cool Plate (Supertack)"
msgstr "低溫列印板(超強黏性版)"
msgid "Cool Plate (SuperTack)"
msgstr "低溫增穩列印板"
msgid "Click here if you can't connect to the printer"
msgstr "如果無法連接到列印設備,請按一下此處"
@@ -9188,7 +9286,7 @@ msgid ""
msgstr "同時啟用精確 Z 軸高度與換料塔功能,可能會讓換料塔變大。是否仍要啟用?"
msgid ""
"Prime tower is required for clumping detection. There may be flaws on the "
"A prime tower is required for clumping detection. There may be flaws on the "
"model without prime tower. Do you still want to enable clumping detection?"
msgstr ""
"堵塞偵測需要換料塔。若沒有換料塔,列印物件上可能會有瑕疵。您是否仍要啟用堵塞"
@@ -9306,8 +9404,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"
"可以通過右鍵點擊構建板的空白位置,選擇『新增標準模型』->『縮時錄影換料塔』來"
@@ -9513,9 +9611,6 @@ msgstr "列印溫度"
msgid "Nozzle temperature when printing"
msgstr "列印時的噴嘴溫度"
msgid "Cool Plate (SuperTack)"
msgstr "低溫增穩列印板"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -9954,6 +10049,12 @@ msgstr "顯示所有預設(包括不相容的)"
msgid "Select presets to compare"
msgstr "選擇要比較的預設"
msgid "Left Preset Value"
msgstr ""
msgid "Right Preset Value"
msgstr ""
msgid ""
"You can only transfer to current active profile because it has been modified."
msgstr "因為目前的設定檔已被修改,您只能轉移到目前啟用的設定檔。"
@@ -10383,6 +10484,12 @@ msgstr "點擊下載。"
msgid "Login"
msgstr "登入"
msgid "[Action Required] "
msgstr ""
msgid "[Action Required]"
msgstr ""
msgid "The configuration package is changed in previous Config Guide"
msgstr "設定檔在之前的設定引導過程中已改變"
@@ -11077,7 +11184,7 @@ msgid ""
msgstr "啟用“按物件”序列時,不支援結塊檢測。"
msgid ""
"Prime tower is required for clumping detection; otherwise, there may be "
"A prime tower is required for clumping detection; otherwise, there may be "
"flaws on the model."
msgstr "結塊檢測需要 Prime 塔;否則,模型可能存在缺陷。"
@@ -12495,7 +12602,7 @@ msgid ""
"models\n"
"3. No filtering - creates internal bridges on every potential internal "
"overhang. This option is useful for heavily slanted top surface models; "
"however, in most cases, it creates too many unnecessary bridges"
"however, in most cases, it creates too many unnecessary bridges."
msgstr ""
"此選項可幫助降低在高度傾斜或曲面模型上的頂部表面起皺問題。\n"
"預設情況下,小型內部橋接會被過濾掉,內部實心填充會直接列印在稀疏填充上。這種"
@@ -12938,7 +13045,7 @@ msgid ""
"less acceleration you print, the larger the range of acceptable PA values. "
"If no difference is visible, use the PA value from the faster test\n"
"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
"here and save your filament profile"
"here and save your filament profile."
msgstr ""
"新增壓力補償 (PA) 值、體積流速和加速度的資料集,使用逗號分隔。每行一組資料。"
"例如:\n"
@@ -13669,8 +13776,8 @@ msgid "mm/s² or %"
msgstr "mm/s² 或 %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"稀疏填充的加速度。如果該值表示為百分比(例如 100%),則將根據預設加速度進行計"
"算。"
@@ -13778,10 +13885,10 @@ msgstr "滿速風扇在"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"風扇速度會從第「close_fan_the_first_x_layers」層開始從零速以線性方式逐漸增"
"加直到第「full_fan_speed_layer」層達到最大速度。如果"
@@ -14258,9 +14365,9 @@ msgstr "標註物件"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plugin. This settings is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"啟用此選項可將註解新增至 G-code 中,標記列印移動及其所屬物件,這對於 "
"Octoprint CancelObject 外掛程式非常有用。此設定與單擠出機多色設定和擦除到物"
@@ -14571,7 +14678,7 @@ msgstr "熨燙類型"
msgid ""
"Ironing is using small flow to print on same height of surface again to make "
"flat surface more smooth. This setting controls which layer being ironed"
"flat surface more smooth. This setting controls which layer being ironed."
msgstr ""
"熨燙是指使用小流量在表面相同高度再次列印,以使平面更加光滑。此設定控制哪些層"
"進行熨燙"
@@ -15521,8 +15628,8 @@ msgid "Role base wipe speed"
msgstr "自動擦拭速度"
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -15758,7 +15865,7 @@ msgid ""
"timelapse video when printing completes. If smooth mode is selected, the "
"toolhead will move to the excess chute after each layer is printed and then "
"take a snapshot. Since the melt filament may leak from the nozzle during the "
"process of taking a snapshot, prime tower is required for smooth mode to "
"process of taking a snapshot, a prime tower is required for smooth mode to "
"wipe nozzle."
msgstr ""
"選擇平滑模式或傳統模式時,列印過程將產生縮時影片。每列印一層,相機會拍攝一張"
@@ -16323,8 +16430,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"
@@ -16593,6 +16700,12 @@ msgstr ""
"2. 圓錐:底部帶圓角的圓錐形,有助於穩定換料塔。\n"
"3. 肋條:為換料塔牆體添加四條肋條以增強穩定性"
msgid "Rectangle"
msgstr "矩形"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr "額外肋條長度"
@@ -17155,7 +17268,7 @@ msgid ""
"machines in the list."
msgstr "若啟用,則檢查目前列印設備是否與列表中的列印設備向下相容"
msgid "downward machines settings"
msgid "Downward machines settings"
msgstr "向下相容列印設備設定"
msgid "The machine settings list needs to do downward checking."
@@ -17188,8 +17301,8 @@ msgid "Debug level"
msgstr "除錯模式等級"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
msgstr ""
"設定除錯日誌級別。0致命錯誤1錯誤2警告3資訊4除錯5追蹤\n"
@@ -17801,10 +17914,6 @@ msgstr "該名稱與另一個現有預設值名稱相同"
msgid "create new preset failed."
msgstr "新增預設失敗。"
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr "找不到所選的預設:%s"
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr "找不到參數:%s"
@@ -18457,6 +18566,23 @@ msgstr "快速塔"
msgid "Input shaper type"
msgstr "輸入整形器類型"
msgid ""
"Please ensure the selected type is compatible with your firmware version."
msgstr ""
msgid ""
"Marlin version => 2.1.2\n"
"Fixed-Time motion not yet implemented."
msgstr ""
msgid "Klipper version => 0.9.0"
msgstr ""
msgid ""
"RepRap firmware version => 3.4.0\n"
"Check your firmware documentation for supported shaper types."
msgstr ""
msgid "Frequency (Start / End): "
msgstr "頻率(開始/結束):"
@@ -18495,6 +18621,9 @@ msgstr "請輸入有效的阻尼因子0 < 阻尼/ζ因子 <= 1"
msgid "Input shaping Damp test"
msgstr "輸入整形阻尼測試"
msgid "Check firmware compatibility."
msgstr ""
msgid "Frequency: "
msgstr "頻率:"
@@ -18824,8 +18953,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"
@@ -18873,9 +19002,6 @@ msgstr "輸入自訂噴嘴直徑"
msgid "Can't find my nozzle diameter"
msgstr "找不到我的噴嘴直徑"
msgid "Rectangle"
msgstr "矩形"
msgid "Printable Space"
msgstr "可列印空間"
@@ -19268,7 +19394,7 @@ msgstr "列印設備擠出機的數量與選擇進行校正的列印設備的數
#, c-format, boost-format
msgid ""
"The nozzle diameter of %sextruder is 0.2mm which does not support automatic "
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr "%s 擠出機的噴嘴直徑為 0.2mm,不支援自動流動動力學校正。"
@@ -20180,6 +20306,127 @@ msgstr "官方線材"
msgid "More Colors"
msgstr "更多顏色"
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr "線材可能與目前的列印設備設定不相容,將使用一般線材預設。"
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr "線材型號未知,將繼續使用先前的線材預設。"
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr "線材型號未知,將使用一般線材預設。"
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr "線材可能與目前的列印設備設定不相容,將使用隨機線材預設。"
msgid "The filament model is unknown. A random filament preset will be used."
msgstr "線材型號未知,將使用隨機線材預設。"
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -20543,3 +20790,19 @@ msgstr ""
"避免翹曲\n"
"您知道嗎?當列印容易翹曲的材料(如 ABS適當提高熱床溫度\n"
"可以降低翹曲的機率。"
#~ msgid "Auto-refill"
#~ msgstr "自動補料"
#~ msgid "Network Plug-in"
#~ msgstr "網路外掛程式"
#~ msgid "Packing data to 3mf"
#~ msgstr "正在將資料打包至 3mf"
#~ msgid "Cool Plate (Supertack)"
#~ msgstr "低溫列印板(超強黏性版)"
#, c-format, boost-format
#~ msgid "The selected preset: %s is not found."
#~ msgstr "找不到所選的預設:%s"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 25 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@@ -0,0 +1,32 @@
{
"type": "filament",
"filament_id": "GFB99",
"setting_id": "GFSA04",
"name": "Bambu ABS@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"box_temperature_range_high": ["45"],
"chamber_temperature": ["0"],
"close_fan_the_first_x_layers": ["3"],
"during_print_exhaust_fan_speed": ["0"],
"fan_max_speed": ["80"],
"fan_min_speed": ["20"],
"filament_adhesiveness_category": ["200"],
"filament_density": ["1.05"],
"filament_flow_ratio": ["0.95"],
"filament_type": ["ABS"],
"filament_vendor": ["Bambu Lab"],
"nozzle_temperature_initial_layer": ["250"],
"nozzle_temperature_range_high": ["280"],
"nozzle_temperature_range_low": ["240"],
"nozzle_temperature": ["260"],
"overhang_fan_speed": ["80"],
"overhang_fan_threshold": ["25%"],
"pressure_advance": ["0.035"],
"slow_down_layer_time": ["4"],
"temperature_vitrification": ["100"],
"hot_plate_temp_initial_layer" : ["90"],
"hot_plate_temp" : ["90"],
"compatible_printers": []
}

View File

@@ -0,0 +1,12 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Bambu ABS @Qidi Q2C 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@Q2C-Series",
"chamber_temperature": ["0"],
"filament_max_volumetric_speed": ["2"],
"pressure_advance": ["0.03"],
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Bambu ABS @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@Q2C-Series",
"pressure_advance": ["0.03"],
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Bambu ABS @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@Q2C-Series",
"nozzle_temperature": ["250"],
"pressure_advance": ["0.014"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,12 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Bambu ABS @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu ABS@Q2C-Series",
"nozzle_temperature": ["250"],
"pressure_advance": ["0.011"],
"slow_down_min_speed": ["10"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,33 @@
{
"type": "filament",
"filament_id": "GFG99",
"setting_id": "GFSG99",
"name": "Bambu PETG@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"box_temperature_range_high": ["45"],
"close_fan_the_first_x_layers": ["3"],
"fan_cooling_layer_time": ["30"],
"fan_max_speed": ["40"],
"fan_min_speed": ["10"],
"filament_adhesiveness_category": ["300"],
"filament_flow_ratio": ["0.95"],
"filament_max_volumetric_speed": ["13"],
"filament_type": ["PETG"],
"filament_vendor": ["Bambu Lab"],
"nozzle_temperature_initial_layer": ["240"],
"nozzle_temperature_range_high": ["270"],
"nozzle_temperature_range_low": ["220"],
"nozzle_temperature": ["250"],
"overhang_fan_speed": ["90"],
"overhang_fan_threshold": ["10%"],
"pressure_advance": ["0.056"],
"slow_down_layer_time": ["8"],
"supertack_plate_temp_initial_layer": ["70"],
"supertack_plate_temp": ["70"],
"temperature_vitrification": ["70"],
"hot_plate_temp_initial_layer" : ["80"],
"hot_plate_temp" : ["80"],
"compatible_printers": []
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "Bambu PETG @Qidi Q2C 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@Q2C-Series",
"filament_max_volumetric_speed": ["1"],
"pressure_advance": ["0.056"],
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "Bambu PETG @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@Q2C-Series",
"pressure_advance": ["0.056"],
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "Bambu PETG @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@Q2C-Series",
"pressure_advance": ["0.04"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "Bambu PETG @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PETG@Q2C-Series",
"pressure_advance": ["0.04"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFL99",
"setting_id": "GFSL99",
"name": "Bambu PLA@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"filament_adhesiveness_category": ["100"],
"filament_type": ["PLA"],
"filament_vendor": ["Bambu Lab"],
"additional_cooling_fan_speed": ["100"],
"nozzle_temperature_range_high": ["240"],
"nozzle_temperature_range_low": ["190"],
"nozzle_temperature_initial_layer": ["210"],
"nozzle_temperature": ["210"],
"overhang_fan_threshold": ["50%"],
"supertack_plate_temp_initial_layer": ["45"],
"supertack_plate_temp": ["45"],
"temperature_vitrification": ["45"],
"compatible_printers": []
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Bambu PLA @Qidi Q2C 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@Q2C-Series",
"filament_max_volumetric_speed": ["2"],
"pressure_advance": ["0.034"],
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Bambu PLA @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@Q2C-Series",
"pressure_advance": ["0.034"],
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Bambu PLA @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@Q2C-Series",
"pressure_advance": ["0.016"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Bambu PLA @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Bambu PLA@Q2C-Series",
"pressure_advance": ["0.008"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,33 @@
{
"type": "filament",
"filament_id": "QD_2_0_11",
"setting_id": "GFSA04",
"name": "Generic ABS@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"box_temperature_range_high": ["45"],
"close_fan_the_first_x_layers": ["3"],
"during_print_exhaust_fan_speed": ["0"],
"fan_cooling_layer_time": ["30"],
"fan_max_speed": ["80"],
"fan_min_speed": ["10"],
"filament_adhesiveness_category": ["200"],
"filament_density": ["1.04"],
"filament_flow_ratio": ["0.95"],
"filament_max_volumetric_speed": ["17"],
"filament_type": ["ABS"],
"filament_vendor": ["Generic"],
"nozzle_temperature_initial_layer": ["250"],
"nozzle_temperature_range_high": ["280"],
"nozzle_temperature_range_low": ["240"],
"nozzle_temperature": ["250"],
"overhang_fan_speed": ["80"],
"overhang_fan_threshold": ["25%"],
"pressure_advance": ["0.021"],
"slow_down_layer_time": ["4"],
"temperature_vitrification": ["100"],
"hot_plate_temp_initial_layer" : ["90"],
"hot_plate_temp" : ["90"],
"compatible_printers": []
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Generic ABS @Qidi Q2C 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@Q2C-Series",
"filament_max_volumetric_speed": ["2"],
"pressure_advance": ["0.03"],
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Generic ABS @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@Q2C-Series",
"pressure_advance": ["0.03"],
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Generic ABS @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@Q2C-Series",
"filament_max_volumetric_speed": ["24.5"],
"pressure_advance": ["0.014"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Generic ABS @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic ABS@Q2C-Series",
"filament_max_volumetric_speed": ["24.5"],
"pressure_advance": ["0.011"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,32 @@
{
"type": "filament",
"filament_id": "GFB99",
"setting_id": "GFSA04",
"name": "Generic PC@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"box_temperature_range_high": ["65"],
"close_fan_the_first_x_layers": ["3"],
"during_print_exhaust_fan_speed": ["0"],
"fan_cooling_layer_time": ["30"],
"fan_max_speed": ["60"],
"fan_min_speed": ["10"],
"filament_adhesiveness_category": ["500"],
"filament_density": ["1.04"],
"filament_max_volumetric_speed": ["10"],
"filament_type": ["PC"],
"filament_vendor": ["Generic"],
"nozzle_temperature_initial_layer": ["270"],
"nozzle_temperature_range_high": ["290"],
"nozzle_temperature_range_low": ["260"],
"nozzle_temperature": ["280"],
"overhang_fan_speed": ["60"],
"overhang_fan_threshold": ["25%"],
"pressure_advance": ["0.021"],
"slow_down_layer_time": ["2"],
"temperature_vitrification": ["100"],
"hot_plate_temp_initial_layer" : ["110"],
"hot_plate_temp" : ["110"],
"compatible_printers": []
}

View File

@@ -0,0 +1,12 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Generic PC @Qidi Q2C 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@Q2C-Series",
"filament_flow_ratio": ["0.94"],
"filament_max_volumetric_speed": ["1"],
"pressure_advance": ["0.04"],
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
}

View File

@@ -0,0 +1,12 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Generic PC @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@Q2C-Series",
"filament_flow_ratio": ["0.95"],
"filament_max_volumetric_speed": ["10"],
"pressure_advance": ["0.04"],
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,12 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Generic PC @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@Q2C-Series",
"filament_flow_ratio": ["0.95"],
"filament_max_volumetric_speed": ["10"],
"pressure_advance": ["0.03"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,12 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "Generic PC @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PC@Q2C-Series",
"filament_flow_ratio": ["0.95"],
"filament_max_volumetric_speed": ["10"],
"pressure_advance": ["0.008"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,34 @@
{
"type": "filament",
"filament_id": "QD_2_0_41",
"setting_id": "GFSG99",
"name": "Generic PETG@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"box_temperature_range_high": ["45"],
"close_fan_the_first_x_layers": ["3"],
"fan_cooling_layer_time": ["30"],
"fan_max_speed": ["90"],
"fan_min_speed": ["40"],
"filament_adhesiveness_category": ["300"],
"filament_density": ["1.27"],
"filament_flow_ratio": ["0.95"],
"filament_max_volumetric_speed": ["12"],
"filament_type": ["PETG"],
"filament_vendor": ["Generic"],
"nozzle_temperature_initial_layer": ["245"],
"nozzle_temperature_range_high": ["270"],
"nozzle_temperature_range_low": ["220"],
"nozzle_temperature": ["250"],
"overhang_fan_speed": ["90"],
"overhang_fan_threshold": ["10%"],
"pressure_advance": ["0.056"],
"slow_down_layer_time": ["12"],
"supertack_plate_temp_initial_layer": ["70"],
"supertack_plate_temp": ["70"],
"temperature_vitrification": ["70"],
"hot_plate_temp_initial_layer" : ["80"],
"hot_plate_temp" : ["80"],
"compatible_printers": []
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "Generic PETG @Qidi Q2C 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@Q2C-Series",
"filament_max_volumetric_speed": ["1"],
"pressure_advance": ["0.056"],
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "Generic PETG @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@Q2C-Series",
"pressure_advance": ["0.056"],
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "Generic PETG @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@Q2C-Series",
"pressure_advance": ["0.04"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "Generic PETG @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PETG@Q2C-Series",
"pressure_advance": ["0.04"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,26 @@
{
"type": "filament",
"filament_id": "QD_2_0_1",
"setting_id": "GFSL99",
"name": "Generic PLA@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"additional_cooling_fan_speed": ["100"],
"cool_plate_temp_initial_layer": ["45"],
"cool_plate_temp": ["45"],
"filament_adhesiveness_category": ["100"],
"filament_density": ["1.2"],
"filament_max_volumetric_speed": ["14"],
"filament_type": ["PLA"],
"filament_vendor": ["Generic"],
"nozzle_temperature_initial_layer": ["220"],
"nozzle_temperature_range_high": ["240"],
"nozzle_temperature_range_low": ["190"],
"nozzle_temperature": ["220"],
"overhang_fan_threshold": ["50%"],
"supertack_plate_temp_initial_layer": ["45"],
"supertack_plate_temp": ["45"],
"temperature_vitrification": ["45"],
"compatible_printers": []
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Generic PLA @Qidi Q2C 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA@Q2C-Series",
"filament_max_volumetric_speed": ["2"],
"pressure_advance": ["0.034"],
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Generic PLA @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA@Q2C-Series",
"pressure_advance": ["0.034"],
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Generic PLA @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA@Q2C-Series",
"pressure_advance": ["0.016"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Generic PLA @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA@Q2C-Series",
"pressure_advance": ["0.008"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,28 @@
{
"type": "filament",
"filament_id": "QD_2_0_4",
"setting_id": "GFSL99_01",
"name": "Generic PLA Silk@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"additional_cooling_fan_speed": ["100"],
"filament_adhesiveness_category": ["100"],
"filament_density": ["1.2"],
"filament_max_volumetric_speed": ["7.5"],
"filament_retraction_length": ["0.5"],
"filament_type": ["PLA"],
"filament_vendor": ["Generic"],
"nozzle_temperature_initial_layer": ["220"],
"nozzle_temperature_range_high": ["240"],
"nozzle_temperature_range_low": ["190"],
"nozzle_temperature": ["220"],
"overhang_fan_threshold": ["50%"],
"pressure_advance": ["0.032"],
"supertack_plate_temp_initial_layer": ["35"],
"supertack_plate_temp": ["35"],
"temperature_vitrification": ["45"],
"hot_plate_temp_initial_layer" : ["55"],
"hot_plate_temp" : ["55"],
"compatible_printers": []
}

View File

@@ -0,0 +1,9 @@
{
"type": "filament",
"setting_id": "GFSL99_01",
"name": "Generic PLA Silk @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA Silk@Q2C-Series",
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99_01",
"name": "Generic PLA Silk @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA Silk@Q2C-Series",
"pressure_advance": ["0.014"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,24 @@
{
"type": "filament",
"filament_id": "GFL99",
"setting_id": "GFSL99",
"name": "Generic PLA+@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"additional_cooling_fan_speed": ["100"],
"filament_adhesiveness_category": ["100"],
"filament_density": ["1.2"],
"filament_max_volumetric_speed": ["12"],
"filament_type": ["PLA"],
"filament_vendor": ["Generic"],
"nozzle_temperature_initial_layer": ["230"],
"nozzle_temperature_range_high": ["240"],
"nozzle_temperature_range_low": ["190"],
"nozzle_temperature": ["230"],
"overhang_fan_threshold": ["50%"],
"supertack_plate_temp_initial_layer": ["45"],
"supertack_plate_temp": ["45"],
"temperature_vitrification": ["45"],
"compatible_printers": []
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Generic PLA+ @Qidi Q2C 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA+@Q2C-Series",
"filament_max_volumetric_speed": ["2"],
"pressure_advance": ["0.034"],
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Generic PLA+ @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA+@Q2C-Series",
"pressure_advance": ["0.034"],
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Generic PLA+ @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA+@Q2C-Series",
"pressure_advance": ["0.016"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "Generic PLA+ @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic PLA+@Q2C-Series",
"pressure_advance": ["0.008"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,24 @@
{
"type": "filament",
"filament_id": "QD_2_0_50",
"setting_id": "GFSR99",
"name": "Generic TPU 95A@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"filament_adhesiveness_category": ["600"],
"filament_density": ["1.21"],
"filament_flow_ratio": ["1"],
"filament_max_volumetric_speed": ["4"],
"filament_type": ["TPU"],
"filament_vendor": ["Generic"],
"nozzle_temperature_initial_layer": ["230"],
"nozzle_temperature_range_high": ["250"],
"nozzle_temperature_range_low": ["200"],
"nozzle_temperature": ["230"],
"pressure_advance": ["0.1"],
"temperature_vitrification": ["30"],
"hot_plate_temp_initial_layer" : ["35"],
"hot_plate_temp" : ["35"],
"compatible_printers": []
}

View File

@@ -0,0 +1,9 @@
{
"type": "filament",
"setting_id": "GFSR99",
"name": "Generic TPU 95A @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic TPU 95A@Q2C-Series",
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,9 @@
{
"type": "filament",
"setting_id": "GFSR99",
"name": "Generic TPU 95A @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic TPU 95A@Q2C-Series",
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSR99",
"name": "Generic TPU 95A @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "Generic TPU 95A@Q2C-Series",
"nozzle_temperature": ["220"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,31 @@
{
"type": "filament",
"filament_id": "GFB99",
"setting_id": "GFSA04",
"name": "HATCHBOX ABS@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"box_temperature_range_high": ["45"],
"close_fan_the_first_x_layers": ["3"],
"during_print_exhaust_fan_speed": ["0"],
"fan_max_speed": ["80"],
"fan_min_speed": ["20"],
"filament_adhesiveness_category": ["200"],
"filament_density": ["1.05"],
"filament_flow_ratio": ["0.95"],
"filament_type": ["ABS"],
"filament_vendor": ["HATCHBOX"],
"nozzle_temperature_initial_layer": ["250"],
"nozzle_temperature_range_high": ["280"],
"nozzle_temperature_range_low": ["240"],
"nozzle_temperature": ["260"],
"overhang_fan_speed": ["80"],
"overhang_fan_threshold": ["25%"],
"pressure_advance": ["0.035"],
"slow_down_layer_time": ["4"],
"temperature_vitrification": ["100"],
"hot_plate_temp_initial_layer" : ["90"],
"hot_plate_temp" : ["90"],
"compatible_printers": []
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "HATCHBOX ABS @Qidi Q2C 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX ABS@Q2C-Series",
"filament_max_volumetric_speed": ["2"],
"pressure_advance": ["0.03"],
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "HATCHBOX ABS @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX ABS@Q2C-Series",
"pressure_advance": ["0.03"],
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "HATCHBOX ABS @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX ABS@Q2C-Series",
"nozzle_temperature": ["250"],
"pressure_advance": ["0.014"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,12 @@
{
"type": "filament",
"setting_id": "GFSA04",
"name": "HATCHBOX ABS @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX ABS@Q2C-Series",
"nozzle_temperature": ["250"],
"pressure_advance": ["0.011"],
"slow_down_min_speed": ["10"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,33 @@
{
"type": "filament",
"filament_id": "GFG99",
"setting_id": "GFSG99",
"name": "HATCHBOX PETG@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"box_temperature_range_high": ["45"],
"close_fan_the_first_x_layers": ["3"],
"fan_cooling_layer_time": ["30"],
"fan_max_speed": ["40"],
"fan_min_speed": ["10"],
"filament_adhesiveness_category": ["300"],
"filament_flow_ratio": ["0.95"],
"filament_max_volumetric_speed": ["13"],
"filament_type": ["PETG"],
"filament_vendor": ["HATCHBOX"],
"nozzle_temperature_initial_layer": ["240"],
"nozzle_temperature_range_high": ["270"],
"nozzle_temperature_range_low": ["220"],
"nozzle_temperature": ["250"],
"overhang_fan_speed": ["90"],
"overhang_fan_threshold": ["10%"],
"pressure_advance": ["0.056"],
"slow_down_layer_time": ["8"],
"supertack_plate_temp_initial_layer": ["70"],
"supertack_plate_temp": ["70"],
"temperature_vitrification": ["70"],
"hot_plate_temp_initial_layer" : ["80"],
"hot_plate_temp" : ["80"],
"compatible_printers": []
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "HATCHBOX PETG @Qidi Q2C 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PETG@Q2C-Series",
"filament_max_volumetric_speed": ["1"],
"pressure_advance": ["0.056"],
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "HATCHBOX PETG @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PETG@Q2C-Series",
"pressure_advance": ["0.056"],
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "HATCHBOX PETG @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PETG@Q2C-Series",
"pressure_advance": ["0.04"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSG99",
"name": "HATCHBOX PETG @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PETG@Q2C-Series",
"pressure_advance": ["0.04"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,22 @@
{
"type": "filament",
"filament_id": "GFL99",
"setting_id": "GFSL99",
"name": "HATCHBOX PLA@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"filament_adhesiveness_category": ["100"],
"filament_type": ["PLA"],
"filament_vendor": ["HATCHBOX"],
"additional_cooling_fan_speed": ["100"],
"nozzle_temperature_range_high": ["240"],
"nozzle_temperature_range_low": ["190"],
"nozzle_temperature_initial_layer": ["210"],
"nozzle_temperature": ["210"],
"overhang_fan_threshold": ["50%"],
"supertack_plate_temp_initial_layer": ["45"],
"supertack_plate_temp": ["45"],
"temperature_vitrification": ["45"],
"compatible_printers": []
}

View File

@@ -0,0 +1,11 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "HATCHBOX PLA @Qidi Q2C 0.2 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PLA@Q2C-Series",
"filament_max_volumetric_speed": ["2"],
"pressure_advance": ["0.034"],
"compatible_printers": ["Qidi Q2C 0.2 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "HATCHBOX PLA @Qidi Q2C 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PLA@Q2C-Series",
"pressure_advance": ["0.034"],
"compatible_printers": ["Qidi Q2C 0.4 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "HATCHBOX PLA @Qidi Q2C 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PLA@Q2C-Series",
"pressure_advance": ["0.016"],
"compatible_printers": ["Qidi Q2C 0.6 nozzle"]
}

View File

@@ -0,0 +1,10 @@
{
"type": "filament",
"setting_id": "GFSL99",
"name": "HATCHBOX PLA @Qidi Q2C 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "HATCHBOX PLA@Q2C-Series",
"pressure_advance": ["0.008"],
"compatible_printers": ["Qidi Q2C 0.8 nozzle"]
}

View File

@@ -0,0 +1,32 @@
{
"type": "filament",
"filament_id": "GFB99",
"setting_id": "GFSA04",
"name": "Overture ABS@Q2C-Series",
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_q_common",
"box_temperature_range_high": ["45"],
"close_fan_the_first_x_layers": ["3"],
"during_print_exhaust_fan_speed": ["0"],
"fan_max_speed": ["80"],
"fan_min_speed": ["20"],
"filament_adhesiveness_category": ["200"],
"filament_density": ["1.12"],
"filament_flow_ratio": ["0.96"],
"filament_max_volumetric_speed": ["17"],
"filament_type": ["ABS"],
"filament_vendor": ["Overture"],
"nozzle_temperature_initial_layer": ["250"],
"nozzle_temperature_range_high": ["280"],
"nozzle_temperature_range_low": ["240"],
"nozzle_temperature": ["255"],
"overhang_fan_speed": ["80"],
"overhang_fan_threshold": ["25%"],
"pressure_advance": ["0.033"],
"slow_down_layer_time": ["6"],
"temperature_vitrification": ["100"],
"hot_plate_temp_initial_layer" : ["90"],
"hot_plate_temp" : ["90"],
"compatible_printers": []
}

Some files were not shown because too many files have changed in this diff Show More