Merge remote-tracking branch 'origin/main' into feature/protobuf_config_and_dynamic_ui

Reconcile main's config changes with the protobuf codegen:
- New settings ported to proto schema (already present) and verified in
  generated PrintConfigDef/Preset_options/TabLayout + PrintConfig.hpp:
  small_support_perimeter_speed, small_support_perimeter_threshold,
  top_layer_direction, bottom_layer_direction, hole_to_polyhole_max_edges
- Ported main's label/tooltip updates for adaptive_pressure_advance_overhangs
  and adaptive_pressure_advance_bridges into filament.proto (were dropped in
  the conflict resolution) and regenerated.
- Kept main's non-generated logic (Preset.cpp nullable filament override
  force-emit).

Codegen validated (python tools/run_codegen.py --validate-only): PASSED.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ExPikaPaka
2026-07-08 10:31:10 +02:00
244 changed files with 110208 additions and 14226 deletions

View File

@@ -41,7 +41,7 @@ jobs:
curl -L -o OrcaSlicer_profile_validator https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/OrcaSlicer_profile_validator_Linux_Ubuntu2404_nightly curl -L -o OrcaSlicer_profile_validator https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/OrcaSlicer_profile_validator_Linux_Ubuntu2404_nightly
chmod +x ./OrcaSlicer_profile_validator chmod +x ./OrcaSlicer_profile_validator
# validate profiles # Validate all system profiles.
- name: validate system profiles - name: validate system profiles
id: validate_system id: validate_system
continue-on-error: true continue-on-error: true
@@ -57,20 +57,6 @@ jobs:
set +e set +e
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 -v BBL -f 2>&1 | tee ${{ runner.temp }}/validate_filament_subtypes.log ./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 -v BBL -f 2>&1 | tee ${{ runner.temp }}/validate_filament_subtypes.log
exit ${PIPESTATUS[0]} exit ${PIPESTATUS[0]}
# Flag inherits/compatible_printers/compatible_prints references that point at a deleted or
# renamed preset. Opt-in per vendor for now (via -r); enabled for BBL and Qidi until other
# vendors' profiles are cleaned up. Runs before the custom-preset injection below.
- name: validate preset references for BBL and Qidi profiles
id: validate_preset_references
continue-on-error: true
run: |
set +e
rc=0
for v in BBL Qidi; do
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 -v "$v" -r 2>&1 | tee -a ${{ runner.temp }}/validate_preset_references.log
[ ${PIPESTATUS[0]} -ne 0 ] && rc=1
done
exit $rc
- name: validate custom presets - name: validate custom presets
id: validate_custom id: validate_custom
@@ -180,7 +166,7 @@ jobs:
echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt
- name: Prepare comment artifact - name: Prepare comment artifact
if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_preset_references.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
run: | run: |
{ {
# Marker matched by check_profiles_comment.yml to delete prior comments. # Marker matched by check_profiles_comment.yml to delete prior comments.
@@ -215,15 +201,6 @@ jobs:
echo "" echo ""
fi fi
if [ "${{ steps.validate_preset_references.outcome }}" = "failure" ]; then
echo "### BBL/Qidi Preset Reference Validation Failed"
echo ""
echo '```'
head -c 30000 ${{ runner.temp }}/validate_preset_references.log || echo "No output captured"
echo '```'
echo ""
fi
if [ "${{ steps.validate_custom.outcome }}" = "failure" ]; then if [ "${{ steps.validate_custom.outcome }}" = "failure" ]; then
echo "### Custom Preset Validation Failed" echo "### Custom Preset Validation Failed"
echo "" echo ""
@@ -246,7 +223,7 @@ jobs:
retention-days: 1 retention-days: 1
- name: Fail if any check failed - name: Fail if any check failed
if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_preset_references.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
run: | run: |
echo "One or more profile checks failed. See above for details." echo "One or more profile checks failed. See above for details."
exit 1 exit 1

View File

@@ -710,7 +710,7 @@ endif ()
set(L10N_DIR "${SLIC3R_RESOURCES_DIR}/i18n") set(L10N_DIR "${SLIC3R_RESOURCES_DIR}/i18n")
set(BBL_L18N_DIR "${CMAKE_CURRENT_SOURCE_DIR}/localization/i18n") set(BBL_L18N_DIR "${CMAKE_CURRENT_SOURCE_DIR}/localization/i18n")
add_custom_target(gettext_make_pot add_custom_target(gettext_make_pot
COMMAND xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost COMMAND xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_CTX:1,2c --keyword=_CTX_utf8:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost
-f "${BBL_L18N_DIR}/list.txt" -f "${BBL_L18N_DIR}/list.txt"
-o "${BBL_L18N_DIR}/OrcaSlicer.pot" -o "${BBL_L18N_DIR}/OrcaSlicer.pot"
COMMAND hintsToPot ${SLIC3R_RESOURCES_DIR} ${BBL_L18N_DIR} COMMAND hintsToPot ${SLIC3R_RESOURCES_DIR} ${BBL_L18N_DIR}

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -334,6 +334,7 @@ msgstr ""
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "" msgstr ""
msgctxt "inches"
msgid "in" msgid "in"
msgstr "" msgstr ""
@@ -388,27 +389,30 @@ msgstr ""
msgid "Reset rotation" msgid "Reset rotation"
msgstr "" msgstr ""
msgid "Object coordinates" msgid "World"
msgstr "" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "" msgstr ""
msgid "Translate(Relative)" msgid "Part"
msgstr ""
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr "" msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "" msgstr ""
msgid "Rotate (absolute)"
msgstr ""
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "" msgstr ""
msgid "Part coordinates"
msgstr ""
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "" msgstr ""
@@ -512,12 +516,6 @@ msgstr ""
msgid "Spacing" msgid "Spacing"
msgstr "" msgstr ""
msgid "Part"
msgstr ""
msgid "Object"
msgstr ""
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1820,23 +1818,30 @@ msgstr ""
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "" msgstr ""
msgid "Cloud sync conflict:"
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1845,6 +1850,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1912,7 +1923,8 @@ msgstr ""
msgid "Sync user presets" msgid "Sync user presets"
msgstr "" msgstr ""
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, possible-c-format, possible-boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, possible-c-format, possible-boost-format #, possible-c-format, possible-boost-format
@@ -2122,6 +2134,9 @@ msgstr ""
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "" msgstr ""
@@ -5004,6 +5019,9 @@ msgstr ""
msgid "Outline" msgid "Outline"
msgstr "" msgstr ""
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7518,6 +7536,45 @@ msgstr ""
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "" msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate" msgid "Associate"
msgstr "" msgstr ""
@@ -7572,12 +7629,6 @@ msgstr ""
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "" msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -7608,6 +7659,12 @@ msgstr ""
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "" msgstr ""
msgid "Auto backup"
msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr ""
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "" msgstr ""
@@ -7626,10 +7683,51 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "" msgstr ""
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "" msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash." msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr ""
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr "" msgstr ""
msgid "Preset" msgid "Preset"
@@ -7662,6 +7760,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "" msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "" msgstr ""
@@ -7674,18 +7778,6 @@ msgstr ""
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "" msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr ""
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour" msgid "Behaviour"
msgstr "" msgstr ""
@@ -7910,18 +8002,6 @@ msgstr ""
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "" msgstr ""
msgid "Update built-in presets automatically."
msgstr ""
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "" msgstr ""
@@ -7934,6 +8014,15 @@ msgstr ""
msgid "Color only" msgid "Color only"
msgstr "" msgstr ""
msgid "Update built-in presets automatically."
msgstr ""
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -7946,30 +8035,6 @@ msgstr ""
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "" msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "" msgstr ""
@@ -8012,7 +8077,16 @@ msgstr ""
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "" msgstr ""
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8020,12 +8094,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "" msgstr ""
@@ -8052,24 +8120,6 @@ msgstr ""
msgid "trace" msgid "trace"
msgstr "" msgstr ""
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug" msgid "Debug"
msgstr "" msgstr ""
@@ -8085,24 +8135,6 @@ msgstr ""
msgid "Preferences sync" msgid "Preferences sync"
msgstr "" msgstr ""
msgid "View control settings"
msgstr ""
msgid "Rotate view"
msgstr ""
msgid "Pan view"
msgstr ""
msgid "Zoom view"
msgstr ""
msgid "Other"
msgstr ""
msgid "Reverse scroll direction while zooming"
msgstr ""
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "" msgstr ""
@@ -11717,6 +11749,18 @@ msgstr ""
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "" msgstr ""
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "" msgstr ""
@@ -11869,21 +11913,25 @@ msgid ""
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile." "3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
msgstr "" msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr ""
msgid "Pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
@@ -12240,6 +12288,22 @@ msgstr ""
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "" msgstr ""
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "" msgstr ""
@@ -12442,6 +12506,17 @@ msgstr ""
msgid "layer" msgid "layer"
msgstr "" msgstr ""
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "" msgstr ""
@@ -14188,6 +14263,9 @@ msgstr ""
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "" msgstr ""
msgid "Other"
msgstr ""
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "" msgstr ""
@@ -14792,6 +14870,14 @@ msgstr ""
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "" msgstr ""
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "" msgstr ""
@@ -17018,6 +17104,132 @@ msgstr ""
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "" msgstr ""
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, possible-c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -17100,6 +17312,19 @@ msgstr ""
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "" msgstr ""
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "" msgstr ""
@@ -17841,6 +18066,12 @@ msgstr ""
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "" msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: 2025-03-15 10:55+0100\n" "PO-Revision-Date: 2025-03-15 10:55+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -341,8 +341,9 @@ msgstr "Gizmo-Escalar"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "Error: Tanqueu primer tots els menús de la barra d'eines" msgstr "Error: Tanqueu primer tots els menús de la barra d'eines"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "polç" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -402,27 +403,30 @@ msgstr "Restableix la Posició"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "Reinicialitza la rotació" msgstr "Reinicialitza la rotació"
msgid "Object coordinates" msgid "World"
msgstr "Coordenades de l'objecte" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Coordenades cartesianes" msgstr "Objecte"
msgid "Translate(Relative)" msgid "Part"
msgstr "Trasllada (relatiu)" msgstr "Peça"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Restableix la rotació actual al valor d'quan s'ha obert l'eina de rotació." msgstr "Restableix la rotació actual al valor d'quan s'ha obert l'eina de rotació."
msgid "Rotate (absolute)"
msgstr "Gira (absolut)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "Restableix la rotació actual a zeros reals." msgstr "Restableix la rotació actual a zeros reals."
msgid "Part coordinates"
msgstr "Coordenades de la part"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Mida" msgstr "Mida"
@@ -526,12 +530,6 @@ msgstr ""
msgid "Spacing" msgid "Spacing"
msgstr "Espaiat" msgstr "Espaiat"
msgid "Part"
msgstr "Peça"
msgid "Object"
msgstr "Objecte"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1879,23 +1877,30 @@ msgstr "Obrir Projecte"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "La versió de l'Orca Slicer és massa antiga i s'ha d'actualitzar a la versió més recent abans que es pugui utilitzar amb normalitat" msgstr "La versió de l'Orca Slicer és massa antiga i s'ha d'actualitzar a la versió més recent abans que es pugui utilitzar amb normalitat"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1904,6 +1909,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1978,7 +1989,8 @@ msgstr "El nombre de perfils d'usuari emmagatzemats a memòria cau al núvol ha
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Sincronitzar perfils d'usuari" msgstr "Sincronitzar perfils d'usuari"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2200,6 +2212,9 @@ msgstr "Cub d'Orca"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Prova de tolerància d'Orca" msgstr "Prova de tolerància d'Orca"
@@ -5266,6 +5281,9 @@ msgstr "Voladissos"
msgid "Outline" msgid "Outline"
msgstr "Contorn" msgstr "Contorn"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7903,6 +7921,50 @@ msgstr "Trieu la carpeta per als elements descarregats"
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "Triar el Directori de Descàrrega" msgstr "Triar el Directori de Descàrrega"
msgid "(Latest)"
msgstr "(Última)"
msgid "Network plug-in switched successfully."
msgstr "Connector de xarxa canviat correctament."
msgid "Success"
msgstr "Èxit"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "No s'ha pogut carregar el connector de xarxa. Reinicieu l'aplicació."
#, c-format, boost-format
msgid ""
"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 ""
"Heu seleccionat la versió %s del connector de xarxa.\n"
"\n"
"Voleu descarregar i instal·lar aquesta versió ara?\n"
"\n"
"Nota: pot ser necessari reiniciar l'aplicació després de la instal·lació."
msgid "Download Network Plug-in"
msgstr "Descarrega el connector de xarxa"
msgid "Reload the network plug-in without restarting the application"
msgstr "Recarrega el connector de xarxa sense reiniciar l'aplicació"
msgid "Network plug-in reloaded successfully."
msgstr "Connector de xarxa recarregat correctament."
msgid "Reload"
msgstr "Recarrega"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "No s'ha pogut recarregar el connector de xarxa. Reinicieu l'aplicació."
msgid "Reload Failed"
msgstr "La recàrrega ha fallat"
msgid "Associate" msgid "Associate"
msgstr "Associar" msgstr "Associar"
@@ -7958,12 +8020,6 @@ msgstr "Mostrar pantalla de presentació"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Mostra la pantalla de presentació durant l'inici." msgstr "Mostra la pantalla de presentació durant l'inici."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -7994,6 +8050,13 @@ msgstr "Carregar comportament"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "S'ha de carregar la configuració de la impressora/filament/procés en obrir un .3mf?" msgstr "S'ha de carregar la configuració de la impressora/filament/procés en obrir un .3mf?"
msgid "Auto backup"
msgstr "Còpia de seguretat automàtica"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Feu còpies de seguretat del vostre projecte periòdicament per restaurar en cas de fallida ocasional."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "Nombre màxim de fitxers recents" msgstr "Nombre màxim de fitxers recents"
@@ -8012,12 +8075,55 @@ msgstr "Mostra opcions en importar fitxers STEP"
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Si s'activa, apareixerà un diàleg de configuració de paràmetres durant la importació de fitxers STEP." msgstr "Si s'activa, apareixerà un diàleg de configuració de paràmetres durant la importació de fitxers STEP."
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "Còpia de seguretat automàtica" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "Feu còpies de seguretat del vostre projecte periòdicament per restaurar en cas de fallida ocasional." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Nivell de qualitat per a l'exportació Draco"
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Controla la profunditat de bits de quantització utilitzada en comprimir la malla a format Draco.\n"
"0 = compressió sense pèrdua (la geometria es preserva a plena precisió). Els valors amb pèrdua vàlids van de 8 a 30.\n"
"Valors més baixos produeixen fitxers més petits però perden més detall geomètric; valors més alts preserven més detall a costa de fitxers més grans."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Perfil" msgstr "Perfil"
@@ -8049,6 +8155,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Optimitza l'alçada màxima de l'àrea de filaments segons el nombre de filaments triat." msgstr "Optimitza l'alçada màxima de l'àrea de filaments segons el nombre de filaments triat."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "Funcionalitats" msgstr "Funcionalitats"
@@ -8061,21 +8173,6 @@ msgstr "Amb aquesta opció habilitada, podeu enviar una tasca a diversos disposi
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "Finestra emergent per seleccionar el mode d'agrupació de filaments" msgstr "Finestra emergent per seleccionar el mode d'agrupació de filaments"
msgid "Quality level for Draco export"
msgstr "Nivell de qualitat per a l'exportació Draco"
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Controla la profunditat de bits de quantització utilitzada en comprimir la malla a format Draco.\n"
"0 = compressió sense pèrdua (la geometria es preserva a plena precisió). Els valors amb pèrdua vàlids van de 8 a 30.\n"
"Valors més baixos produeixen fitxers més petits però perden més detall geomètric; valors més alts preserven més detall a costa de fitxers més grans."
msgid "Behaviour" msgid "Behaviour"
msgstr "Comportament" msgstr "Comportament"
@@ -8303,19 +8400,6 @@ msgstr "Comprovar només si hi ha actualitzacions estables"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Sincronització automàtica dels perfils de l'usuari ( Impressora/Filament/Processament )" msgstr "Sincronització automàtica dels perfils de l'usuari ( Impressora/Filament/Processament )"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Actualitzar els perfils de fàbrica automàticament."
msgid "Use encrypted file for token storage"
msgstr "Utilitza fitxer xifrat per a l'emmagatzematge de tokens"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Emmagatzema els tokens d'autenticació en un fitxer xifrat en lloc del clauer del sistema. (Requereix reinici)"
msgid "Filament Sync Options"
msgstr "Opcions de sincronització de filament"
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "Mode de sincronització de filament" msgstr "Mode de sincronització de filament"
@@ -8328,6 +8412,16 @@ msgstr "Filament i color"
msgid "Color only" msgid "Color only"
msgstr "Només color" msgstr "Només color"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Actualitzar els perfils de fàbrica automàticament."
msgid "Use encrypted file for token storage"
msgstr "Utilitza fitxer xifrat per a l'emmagatzematge de tokens"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Emmagatzema els tokens d'autenticació en un fitxer xifrat en lloc del clauer del sistema. (Requereix reinici)"
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8340,35 +8434,6 @@ msgstr "Versió del connector de xarxa"
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "Seleccioneu la versió del connector de xarxa a utilitzar" msgstr "Seleccioneu la versió del connector de xarxa a utilitzar"
msgid "(Latest)"
msgstr "(Última)"
msgid "Network plug-in switched successfully."
msgstr "Connector de xarxa canviat correctament."
msgid "Success"
msgstr "Èxit"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "No s'ha pogut carregar el connector de xarxa. Reinicieu l'aplicació."
#, c-format, boost-format
msgid ""
"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 ""
"Heu seleccionat la versió %s del connector de xarxa.\n"
"\n"
"Voleu descarregar i instal·lar aquesta versió ara?\n"
"\n"
"Nota: pot ser necessari reiniciar l'aplicació després de la instal·lació."
msgid "Download Network Plug-in"
msgstr "Descarrega el connector de xarxa"
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Associar fitxers a OrcaSlicer" msgstr "Associar fitxers a OrcaSlicer"
@@ -8417,7 +8482,16 @@ msgstr "Desenvolupador"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "Omet la comprovació de la llista negra AMS" msgstr "Omet la comprovació de la llista negra AMS"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8425,12 +8499,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "Permet emmagatzematge anormal" msgstr "Permet emmagatzematge anormal"
@@ -8459,24 +8527,6 @@ msgstr "depurar"
msgid "trace" msgid "trace"
msgstr "traça" msgstr "traça"
msgid "Network plug-in"
msgstr "Connector de xarxa"
msgid "Reload"
msgstr "Recarrega"
msgid "Reload the network plug-in without restarting the application"
msgstr "Recarrega el connector de xarxa sense reiniciar l'aplicació"
msgid "Network plug-in reloaded successfully."
msgstr "Connector de xarxa recarregat correctament."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "No s'ha pogut recarregar el connector de xarxa. Reinicieu l'aplicació."
msgid "Reload Failed"
msgstr "La recàrrega ha fallat"
msgid "Debug" msgid "Debug"
msgstr "Depuració" msgstr "Depuració"
@@ -8492,25 +8542,6 @@ msgstr "Sincronització de perfil"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Sincronització de preferències" msgstr "Sincronització de preferències"
msgid "View control settings"
msgstr "Veure la configuració del control"
msgid "Rotate view"
msgstr "Rotar la vista"
msgid "Pan view"
msgstr "Vista Panoràmica"
msgid "Zoom view"
msgstr "Vista amb Zoom"
msgid "Other"
msgstr "Altre"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "La roda del ratolí s'inverteix quan es fa zoom"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "Habilitar SSL ( MQTT )" msgstr "Habilitar SSL ( MQTT )"
@@ -12416,6 +12447,18 @@ msgstr "Llindar de perímetres petits"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Això estableix el llindar per a la longitud perimetral petita. El llindar predeterminat és de 0mm" msgstr "Això estableix el llindar per a la longitud perimetral petita. El llindar predeterminat és de 0mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "Ordre d'impressió de perímetres" msgstr "Ordre d'impressió de perímetres"
@@ -12601,25 +12644,26 @@ msgstr ""
"2. Anoteu el valor de PA òptim per a cada velocitat i acceleració del cabal volumètric. Podeu trobar el número de flux seleccionant el flux al desplegable de l'esquema de colors i moveu el control lliscant horitzontal per sobre de les línies del patró PA. El número ha de ser visible a la part inferior de la pàgina. El valor de PA ideal hauria de ser decreixent com més gran sigui el cabal volumètric. Si no és així, confirmeu que la vostra extrusora funciona correctament. Com més lent i amb menys acceleració imprimiu, més gran serà el rang de valors de PA acceptables. Si no hi ha cap diferència visible, utilitzeu el valor PA de la prova més ràpida.\n" "2. Anoteu el valor de PA òptim per a cada velocitat i acceleració del cabal volumètric. Podeu trobar el número de flux seleccionant el flux al desplegable de l'esquema de colors i moveu el control lliscant horitzontal per sobre de les línies del patró PA. El número ha de ser visible a la part inferior de la pàgina. El valor de PA ideal hauria de ser decreixent com més gran sigui el cabal volumètric. Si no és així, confirmeu que la vostra extrusora funciona correctament. Com més lent i amb menys acceleració imprimiu, més gran serà el rang de valors de PA acceptables. Si no hi ha cap diferència visible, utilitzeu el valor PA de la prova més ràpida.\n"
"3. Introduïu els triplets dels valors de PA, flux i acceleracions al quadre de text aquí i deseu el vostre perfil de filament." "3. Introduïu els triplets dels valors de PA, flux i acceleracions al quadre de text aquí i deseu el vostre perfil de filament."
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "Habilita l'avanç de pressió adaptativa per als voladissos (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
msgid "Pressure advance for bridges" msgid ""
msgstr "Avanç de pressió per als ponts" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"Valor d'avanç de pressió per als ponts. Establiu a 0 per desactivar.\n"
"\n"
" Un valor de PA més baix quan s'imprimeixen ponts ajuda a reduir l'aparició d'una lleugera extrusió immediatament després dels ponts. Això és causat per la caiguda de pressió al broquet quan s'imprimeix a l'aire i un PA més baix ajuda a contrarestar-ho."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Amplada de línia predeterminada si altres amplades de línia estan definides com a 0. Si s'expressa en %, es calcularà sobre el diàmetre del broquet." msgstr "Amplada de línia predeterminada si altres amplades de línia estan definides com a 0. Si s'expressa en %, es calcularà sobre el diàmetre del broquet."
@@ -13003,6 +13047,22 @@ msgstr "Direcció de farciment sòlid"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Angle per al patró de farciment sòlid, que controla l'inici o la direcció principal de la línia" msgstr "Angle per al patró de farciment sòlid, que controla l'inici o la direcció principal de la línia"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Densitat de farciment poc dens" msgstr "Densitat de farciment poc dens"
@@ -13216,6 +13276,17 @@ msgstr "La velocitat del ventilador augmentarà linealment de zero a la capa \"c
msgid "layer" msgid "layer"
msgstr "capa" msgstr "capa"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Velocitat del ventilador a la interfície de suport" msgstr "Velocitat del ventilador a la interfície de suport"
@@ -15104,6 +15175,9 @@ msgstr "Les esquerdes de menys de dues vegades el radi de tancament de buits s'o
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Mode de laminat" msgstr "Mode de laminat"
msgid "Other"
msgstr "Altre"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Utilitzeu \"Parell-imparell\" per als models d'avió 3DLabPrint. Utilitzeu \"Tancar forats\" per tancar tots els forats del model." msgstr "Utilitzeu \"Parell-imparell\" per als models d'avió 3DLabPrint. Utilitzeu \"Tancar forats\" per tancar tots els forats del model."
@@ -15786,6 +15860,14 @@ msgstr "Gir del poliforat"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "Rotar el poliforat a cada capa." msgstr "Rotar el poliforat a cada capa."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "Mida Miniatures al Codi-G" msgstr "Mida Miniatures al Codi-G"
@@ -18182,6 +18264,132 @@ msgstr "Iniciar Sessió/Provar"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "No s'ha pogut connectar a les impressores connectades mitjançant l'amfitrió( host ) d'impressió especificat." msgstr "No s'ha pogut connectar a les impressores connectades mitjançant l'amfitrió( host ) d'impressió especificat."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -18264,6 +18472,19 @@ msgstr "La connexió amb MKS funciona correctament."
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "No s'ha pogut connectar amb MKS" msgstr "No s'ha pogut connectar amb MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "La connexió amb OctoPrint funciona correctament." msgstr "La connexió amb OctoPrint funciona correctament."
@@ -19015,6 +19236,12 @@ msgstr "Nombre de cares triangulars"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "Calculant, espereu..." msgstr "Calculant, espereu..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -19420,6 +19647,61 @@ msgstr ""
"Evitar la deformació( warping )\n" "Evitar la deformació( warping )\n"
"Sabíeu que quan imprimiu materials propensos a deformar-se, com ara l'ABS, augmentar adequadament la temperatura del llit pot reduir la probabilitat de deformació?" "Sabíeu que quan imprimiu materials propensos a deformar-se, com ara l'ABS, augmentar adequadament la temperatura del llit pot reduir la probabilitat de deformació?"
#~ msgid "in"
#~ msgstr "polç"
#~ msgid "Object coordinates"
#~ msgstr "Coordenades de l'objecte"
#~ msgid "World coordinates"
#~ msgstr "Coordenades cartesianes"
#~ msgid "Translate(Relative)"
#~ msgstr "Trasllada (relatiu)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Gira (absolut)"
#~ msgid "Part coordinates"
#~ msgstr "Coordenades de la part"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Habilita l'avanç de pressió adaptativa per als voladissos (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Avanç de pressió per als ponts"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Valor d'avanç de pressió per als ponts. Establiu a 0 per desactivar.\n"
#~ "\n"
#~ " Un valor de PA més baix quan s'imprimeixen ponts ajuda a reduir l'aparició d'una lleugera extrusió immediatament després dels ponts. Això és causat per la caiguda de pressió al broquet quan s'imprimeix a l'aire i un PA més baix ajuda a contrarestar-ho."
#~ msgid "Filament Sync Options"
#~ msgstr "Opcions de sincronització de filament"
#~ msgid "Network plug-in"
#~ msgstr "Connector de xarxa"
#~ msgid "View control settings"
#~ msgstr "Veure la configuració del control"
#~ msgid "Rotate view"
#~ msgstr "Rotar la vista"
#~ msgid "Pan view"
#~ msgstr "Vista Panoràmica"
#~ msgid "Zoom view"
#~ msgstr "Vista amb Zoom"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "La roda del ratolí s'inverteix quan es fa zoom"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "Esquerra: %s" #~ msgstr "Esquerra: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: Jakub Hencl\n" "Last-Translator: Jakub Hencl\n"
"Language-Team: \n" "Language-Team: \n"
@@ -336,8 +336,9 @@ msgstr "Gizmo-Měřítko"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "Nejprve prosím zavřete všechna menu nástrojové lišty" msgstr "Nejprve prosím zavřete všechna menu nástrojové lišty"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "v" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -397,27 +398,30 @@ msgstr "Obnovit pozici"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "Resetovat rotaci" msgstr "Resetovat rotaci"
msgid "Object coordinates" msgid "World"
msgstr "Souřadnice objektu" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Světové souřadnice" msgstr "Objekt"
msgid "Translate(Relative)" msgid "Part"
msgstr "Přesunout (relativně)" msgstr "Díl"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Obnovit aktuální rotaci na hodnotu při otevření nástroje pro rotaci." msgstr "Obnovit aktuální rotaci na hodnotu při otevření nástroje pro rotaci."
msgid "Rotate (absolute)"
msgstr "Otočit (absolutně)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "Obnovit aktuální rotaci na skutečné nuly." msgstr "Obnovit aktuální rotaci na skutečné nuly."
msgid "Part coordinates"
msgstr "Souřadnice části"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Velikost" msgstr "Velikost"
@@ -521,12 +525,6 @@ msgstr "Mezera"
msgid "Spacing" msgid "Spacing"
msgstr "Rozestup" msgstr "Rozestup"
msgid "Part"
msgstr "Díl"
msgid "Object"
msgstr "Objekt"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1871,23 +1869,30 @@ msgstr "Otevřít projekt"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Verze Orca Slicer je příliš stará a je nutné ji aktualizovat na nejnovější verzi, aby ji bylo možné používat." msgstr "Verze Orca Slicer je příliš stará a je nutné ji aktualizovat na nejnovější verzi, aby ji bylo možné používat."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1896,6 +1901,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1976,8 +1987,9 @@ msgstr "Počet uživatelských předvoleb uložených v cloudu překročil povol
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Synchronizovat uživatelské předvolby" msgstr "Synchronizovat uživatelské předvolby"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgstr "Obsah předvolby je příliš velký pro synchronizaci do cloudu (přesahuje 1 MB). Zmenšete velikost předvolby odstraněním vlastních nastavení nebo ji používejte pouze lokálně." msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "%s updated from %s to %s" msgid "%s updated from %s to %s"
@@ -2197,6 +2209,9 @@ msgstr ""
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "" msgstr ""
@@ -5263,6 +5278,9 @@ msgstr "Převisy"
msgid "Outline" msgid "Outline"
msgstr "Obrys" msgstr "Obrys"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7900,6 +7918,50 @@ msgstr "Vyberte složku pro stažené položky"
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "Vyberte adresář pro stažení" msgstr "Vyberte adresář pro stažení"
msgid "(Latest)"
msgstr "(Nejnovější)"
msgid "Network plug-in switched successfully."
msgstr "Síťový plugin byl úspěšně přepnut."
msgid "Success"
msgstr "Úspěch"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Nepodařilo se načíst síťový plugin. Restartujte prosím aplikaci."
#, c-format, boost-format
msgid ""
"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 ""
"Vybrali jste verzi síťového pluginu %s.\n"
"\n"
"Chcete tuto verzi nyní stáhnout a nainstalovat?\n"
"\n"
"Poznámka: Po instalaci může být nutné restartovat aplikaci."
msgid "Download Network Plug-in"
msgstr "Stáhnout síťový plugin"
msgid "Reload the network plug-in without restarting the application"
msgstr "Znovu načíst síťový plugin bez restartu aplikace"
msgid "Network plug-in reloaded successfully."
msgstr "Síťový plugin byl úspěšně znovu načten."
msgid "Reload"
msgstr "Znovu načíst"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Nepodařilo se znovu načíst síťový plugin. Restartujte prosím aplikaci."
msgid "Reload Failed"
msgstr "Znovunačtení selhalo"
msgid "Associate" msgid "Associate"
msgstr "Přiřadit" msgstr "Přiřadit"
@@ -7955,12 +8017,6 @@ msgstr "Zobrazit úvodní obrazovku"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Zobrazit úvodní obrazovku při spuštění." msgstr "Zobrazit úvodní obrazovku při spuštění."
msgid "Show shared profiles notification"
msgstr "Zobrazit upozornění na sdílené profily"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Při změně vybrané tiskárny zobrazit upozornění s odkazem na sdílené profily."
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "Používat tlačítka okna na levé straně" msgstr "Používat tlačítka okna na levé straně"
@@ -7991,6 +8047,13 @@ msgstr "Chování při načítání"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Mají se při otevření souboru 3MF načíst nastavení tiskárny/filamentu/procesu?" msgstr "Mají se při otevření souboru 3MF načíst nastavení tiskárny/filamentu/procesu?"
msgid "Auto backup"
msgstr "Automatické zálohování"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Pravidelně zálohujte svůj projekt pro možnost obnovení po případném pádu."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "Maximální počet nedávných souborů" msgstr "Maximální počet nedávných souborů"
@@ -8009,12 +8072,55 @@ msgstr "Zobrazit možnosti při importu souboru STEP"
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Pokud je povoleno, během importu souboru STEP se zobrazí dialog nastavení parametrů." msgstr "Pokud je povoleno, během importu souboru STEP se zobrazí dialog nastavení parametrů."
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "Automatické zálohování" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "Pravidelně zálohujte svůj projekt pro možnost obnovení po případném pádu." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Úroveň kvality pro export Draco"
msgid "bits"
msgstr "bitů"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Určuje bitovou hloubku kvantizace použitou při kompresi mesh do formátu Draco.\n"
"0 = bezztrátová komprese (geometrie je zachována v plné přesnosti). Platné ztrátové hodnoty jsou v rozsahu 8 až 30.\n"
"Nižší hodnoty vytvářejí menší soubory, ale ztrácí více geometrických detailů; vyšší hodnoty zachovávají více detailů za cenu větších souborů."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Předvolba" msgstr "Předvolba"
@@ -8046,6 +8152,12 @@ msgstr "filamenty"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Optimalizuje maximální výšku oblasti filamentů podle zvoleného počtu filamentů." msgstr "Optimalizuje maximální výšku oblasti filamentů podle zvoleného počtu filamentů."
msgid "Show shared profiles notification"
msgstr "Zobrazit upozornění na sdílené profily"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Při změně vybrané tiskárny zobrazit upozornění s odkazem na sdílené profily."
msgid "Features" msgid "Features"
msgstr "Funkce" msgstr "Funkce"
@@ -8058,21 +8170,6 @@ msgstr "Pokud je tato volba povolena, můžete odeslat úlohu na více zařízen
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "Zobrazit dialog pro výběr režimu seskupení filamentů" msgstr "Zobrazit dialog pro výběr režimu seskupení filamentů"
msgid "Quality level for Draco export"
msgstr "Úroveň kvality pro export Draco"
msgid "bits"
msgstr "bitů"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Určuje bitovou hloubku kvantizace použitou při kompresi mesh do formátu Draco.\n"
"0 = bezztrátová komprese (geometrie je zachována v plné přesnosti). Platné ztrátové hodnoty jsou v rozsahu 8 až 30.\n"
"Nižší hodnoty vytvářejí menší soubory, ale ztrácí více geometrických detailů; vyšší hodnoty zachovávají více detailů za cenu větších souborů."
msgid "Behaviour" msgid "Behaviour"
msgstr "Chování" msgstr "Chování"
@@ -8300,19 +8397,6 @@ msgstr "Kontrolovat pouze stabilní aktualizace"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Automatická synchronizace uživatelských předvoleb (tiskárna/filament/proces)" msgstr "Automatická synchronizace uživatelských předvoleb (tiskárna/filament/proces)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Automaticky aktualizovat vestavěné předvolby."
msgid "Use encrypted file for token storage"
msgstr "Použít šifrovaný soubor pro ukládání tokenů"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Ukládat autentizační tokeny do šifrovaného souboru místo systémového úložiště klíčů. (Vyžaduje restart)"
msgid "Filament Sync Options"
msgstr "Možnosti synchronizace filamentů"
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "Režim synchronizace filamentů" msgstr "Režim synchronizace filamentů"
@@ -8325,6 +8409,16 @@ msgstr "Filament a barva"
msgid "Color only" msgid "Color only"
msgstr "Pouze barva" msgstr "Pouze barva"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Automaticky aktualizovat vestavěné předvolby."
msgid "Use encrypted file for token storage"
msgstr "Použít šifrovaný soubor pro ukládání tokenů"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Ukládat autentizační tokeny do šifrovaného souboru místo systémového úložiště klíčů. (Vyžaduje restart)"
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8337,35 +8431,6 @@ msgstr "Verze síťového pluginu"
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "Vyberte verzi síťového pluginu" msgstr "Vyberte verzi síťového pluginu"
msgid "(Latest)"
msgstr "(Nejnovější)"
msgid "Network plug-in switched successfully."
msgstr "Síťový plugin byl úspěšně přepnut."
msgid "Success"
msgstr "Úspěch"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Nepodařilo se načíst síťový plugin. Restartujte prosím aplikaci."
#, c-format, boost-format
msgid ""
"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 ""
"Vybrali jste verzi síťového pluginu %s.\n"
"\n"
"Chcete tuto verzi nyní stáhnout a nainstalovat?\n"
"\n"
"Poznámka: Po instalaci může být nutné restartovat aplikaci."
msgid "Download Network Plug-in"
msgstr "Stáhnout síťový plugin"
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Přiřadit soubory k OrcaSliceru" msgstr "Přiřadit soubory k OrcaSliceru"
@@ -8411,7 +8476,16 @@ msgstr "Vývojář"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "Přeskočit kontrolu blacklistu AMS" msgstr "Přeskočit kontrolu blacklistu AMS"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8419,12 +8493,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "Povolit neobvyklé úložiště" msgstr "Povolit neobvyklé úložiště"
@@ -8453,24 +8521,6 @@ msgstr "ladění"
msgid "trace" msgid "trace"
msgstr "trasování" msgstr "trasování"
msgid "Network plug-in"
msgstr "Síťový plugin"
msgid "Reload"
msgstr "Znovu načíst"
msgid "Reload the network plug-in without restarting the application"
msgstr "Znovu načíst síťový plugin bez restartu aplikace"
msgid "Network plug-in reloaded successfully."
msgstr "Síťový plugin byl úspěšně znovu načten."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Nepodařilo se znovu načíst síťový plugin. Restartujte prosím aplikaci."
msgid "Reload Failed"
msgstr "Znovunačtení selhalo"
msgid "Debug" msgid "Debug"
msgstr "Ladění" msgstr "Ladění"
@@ -8486,25 +8536,6 @@ msgstr "Synchronizace předvoleb"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Synchronizace předvoleb" msgstr "Synchronizace předvoleb"
msgid "View control settings"
msgstr "Zobrazit nastavení ovládání"
msgid "Rotate view"
msgstr "Otočit pohled"
msgid "Pan view"
msgstr "Posouvat pohled"
msgid "Zoom view"
msgstr "Přiblížení zobrazení"
msgid "Other"
msgstr "Ostatní"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Kolečko myši se při přiblížení otáčí opačně"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "Povolit SSL (MQTT)" msgstr "Povolit SSL (MQTT)"
@@ -12420,6 +12451,18 @@ msgstr "Práh malých obvodů"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Tímto se nastavuje práh délky malého obvodu. Výchozí práh je 0 mm." msgstr "Tímto se nastavuje práh délky malého obvodu. Výchozí práh je 0 mm."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "Pořadí tisku stěn" msgstr "Pořadí tisku stěn"
@@ -12608,25 +12651,26 @@ msgstr ""
"2. Poznamenejte si optimální hodnotu PA pro každou objemovou rychlost průtoku a zrychlení. Hodnotu průtoku zjistíte výběrem „Flow“ v rozbalovací nabídce barevného schématu a posunutím vodorovného posuvníku nad čárami PA vzoru. Číslo by mělo být viditelné dole na stránce. Ideální hodnota PA by měla s rostoucím objemovým průtokem klesat. Pokud tomu tak není, ověřte, že extruder funguje správně. Čím pomaleji a s menším zrychlením tisknete, tím větší je rozsah přijatelných hodnot PA. Pokud není vidět žádný rozdíl, použijte hodnotu PA z rychlejšího testu.\n" "2. Poznamenejte si optimální hodnotu PA pro každou objemovou rychlost průtoku a zrychlení. Hodnotu průtoku zjistíte výběrem „Flow“ v rozbalovací nabídce barevného schématu a posunutím vodorovného posuvníku nad čárami PA vzoru. Číslo by mělo být viditelné dole na stránce. Ideální hodnota PA by měla s rostoucím objemovým průtokem klesat. Pokud tomu tak není, ověřte, že extruder funguje správně. Čím pomaleji a s menším zrychlením tisknete, tím větší je rozsah přijatelných hodnot PA. Pokud není vidět žádný rozdíl, použijte hodnotu PA z rychlejšího testu.\n"
"3. Zadejte trojice hodnot PA, průtoku a zrychlení do textového pole zde a uložte profil filamentu." "3. Zadejte trojice hodnot PA, průtoku a zrychlení do textového pole zde a uložte profil filamentu."
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "Povolit adaptivní pressure advance pro převisy (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
msgid "Pressure advance for bridges" msgid ""
msgstr "Pressure advance pro mosty" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"Hodnota Pressure advance pro mosty. Nastavte na 0 pro vypnutí.\n"
"\n"
"Nižší hodnota PA při tisku mostů pomáhá omezit výskyt mírné podextruze ihned po mostech. To je způsobeno poklesem tlaku v trysce při tisku do vzduchu a nižší PA tomu pomáhá předcházet."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Výchozí šířka čáry, pokud jsou ostatní šířky čáry nastaveny na 0. Pokud je zadáno v %, bude vypočteno vůči průměru trysky." msgstr "Výchozí šířka čáry, pokud jsou ostatní šířky čáry nastaveny na 0. Pokud je zadáno v %, bude vypočteno vůči průměru trysky."
@@ -13009,6 +13053,22 @@ msgstr "Směr plného vyplnění"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Úhel pro vzor plného výplně, který určuje počáteční nebo hlavní směr čáry." msgstr "Úhel pro vzor plného výplně, který určuje počáteční nebo hlavní směr čáry."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Hustota řídké výplně" msgstr "Hustota řídké výplně"
@@ -13224,6 +13284,17 @@ msgstr "Rychlost ventilátoru bude lineárně zvyšována od nuly na vrstvě \"z
msgid "layer" msgid "layer"
msgstr "vrstva" msgstr "vrstva"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Rychlost ventilátoru rozhraní podpory" msgstr "Rychlost ventilátoru rozhraní podpory"
@@ -15153,6 +15224,9 @@ msgstr "Trhliny menší než 2x poloměr uzavření mezery jsou při řezání t
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Režim slicingu" msgstr "Režim slicingu"
msgid "Other"
msgstr "Ostatní"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Použijte \"Sudý-lichý\" pro modely letadel 3DLabPrint. Použijte \"Zavřít díry\" pro uzavření všech otvorů v modelu." msgstr "Použijte \"Sudý-lichý\" pro modely letadel 3DLabPrint. Použijte \"Zavřít díry\" pro uzavření všech otvorů v modelu."
@@ -15827,6 +15901,14 @@ msgstr "Zkroucení polyotvoru"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "Otočit polyotvor každou vrstvu." msgstr "Otočit polyotvor každou vrstvu."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "Náhledy G-code" msgstr "Náhledy G-code"
@@ -18217,6 +18299,132 @@ msgstr "Přihlášení/Test"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "Připojení k tiskárnám připojeným přes hostitele tisku se nezdařilo." msgstr "Připojení k tiskárnám připojeným přes hostitele tisku se nezdařilo."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -18299,6 +18507,19 @@ msgstr "Připojení k MKS funguje správně."
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "Nepodařilo se připojit k MKS" msgstr "Nepodařilo se připojit k MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "Připojení k OctoPrint funguje správně." msgstr "Připojení k OctoPrint funguje správně."
@@ -19049,6 +19270,12 @@ msgstr ""
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "" msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -19454,6 +19681,64 @@ msgstr ""
"Zamezte kroucení\n" "Zamezte kroucení\n"
"Víte, že při tisku materiálů náchylných ke kroucení, jako je ABS, může vhodné zvýšení teploty vyhřívané desky snížit pravděpodobnost kroucení?" "Víte, že při tisku materiálů náchylných ke kroucení, jako je ABS, může vhodné zvýšení teploty vyhřívané desky snížit pravděpodobnost kroucení?"
#~ msgid "in"
#~ msgstr "v"
#~ msgid "Object coordinates"
#~ msgstr "Souřadnice objektu"
#~ msgid "World coordinates"
#~ msgstr "Světové souřadnice"
#~ msgid "Translate(Relative)"
#~ msgstr "Přesunout (relativně)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Otočit (absolutně)"
#~ msgid "Part coordinates"
#~ msgstr "Souřadnice části"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "Obsah předvolby je příliš velký pro synchronizaci do cloudu (přesahuje 1 MB). Zmenšete velikost předvolby odstraněním vlastních nastavení nebo ji používejte pouze lokálně."
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Povolit adaptivní pressure advance pro převisy (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Pressure advance pro mosty"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Hodnota Pressure advance pro mosty. Nastavte na 0 pro vypnutí.\n"
#~ "\n"
#~ "Nižší hodnota PA při tisku mostů pomáhá omezit výskyt mírné podextruze ihned po mostech. To je způsobeno poklesem tlaku v trysce při tisku do vzduchu a nižší PA tomu pomáhá předcházet."
#~ msgid "Filament Sync Options"
#~ msgstr "Možnosti synchronizace filamentů"
#~ msgid "Network plug-in"
#~ msgstr "Síťový plugin"
#~ msgid "View control settings"
#~ msgstr "Zobrazit nastavení ovládání"
#~ msgid "Rotate view"
#~ msgstr "Otočit pohled"
#~ msgid "Pan view"
#~ msgstr "Posouvat pohled"
#~ msgid "Zoom view"
#~ msgstr "Přiblížení zobrazení"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Kolečko myši se při přiblížení otáčí opačně"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "Vlevo: %s" #~ msgstr "Vlevo: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n" "Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -336,8 +336,9 @@ msgstr "Gizmo-Skalieren"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "Fehler: Bitte schließen sie zuerst alle Werkzeugleistenmenüs" msgstr "Fehler: Bitte schließen sie zuerst alle Werkzeugleistenmenüs"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "in" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -397,27 +398,30 @@ msgstr "Position zurücksetzen"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "Rotation zurücksetzen" msgstr "Rotation zurücksetzen"
msgid "Object coordinates" msgid "World"
msgstr "Objektkoordinaten" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Weltkoordinaten" msgstr "Objekt"
msgid "Translate(Relative)" msgid "Part"
msgstr "Verschieben (relativ)" msgstr "Teil"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Setze die aktuelle Rotation auf den Wert zurück, als das Rotationswerkzeug geöffnet wurde." msgstr "Setze die aktuelle Rotation auf den Wert zurück, als das Rotationswerkzeug geöffnet wurde."
msgid "Rotate (absolute)"
msgstr "Rotation (absolut)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "Setze die aktuelle Rotation auf die realen Nullen zurück." msgstr "Setze die aktuelle Rotation auf die realen Nullen zurück."
msgid "Part coordinates"
msgstr "Teile Koordinaten"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Größe" msgstr "Größe"
@@ -521,12 +525,6 @@ msgstr "Spalt"
msgid "Spacing" msgid "Spacing"
msgstr "Abstand" msgstr "Abstand"
msgid "Part"
msgstr "Teil"
msgid "Object"
msgstr "Objekt"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1875,33 +1873,32 @@ msgstr "Projekt öffnen"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Die Version von Orca Slicer ist veraltet und muss auf die neueste Version aktualisiert werden, bevor sie normal verwendet werden kann" msgstr "Die Version von Orca Slicer ist veraltet und muss auf die neueste Version aktualisiert werden, bevor sie normal verwendet werden kann"
msgid "" msgid "Cloud sync conflict:"
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" msgstr ""
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr "" msgstr ""
"Cloud-Synchronisationskonflikt: Dieses Profil hat eine neuere Version in OrcaCloud.\n"
"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"Cloud-Synchronisationskonflikt: Ein Profil mit diesem Namen existiert bereits in OrcaCloud.\n"
"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"Cloud-Synchronisationskonflikt: Ein Profil mit demselben Namen wurde zuvor aus der Cloud gelöscht.\n"
"Delete löscht Ihr lokales Profil. Force Push überschreibt es mit Ihrem lokalen Profil."
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"Cloud-Synchronisationskonflikt: Es gab einen unerwarteten oder nicht identifizierten Profilkonflikt.\n"
"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
msgid "" msgid ""
"Force push will overwrite the cloud copy with your local preset changes.\n" "Force push will overwrite the cloud copy with your local preset changes.\n"
@@ -1910,6 +1907,12 @@ msgstr ""
"Force Push überschreibt die Cloud-Kopie mit Ihren lokalen Profiländerungen.\n" "Force Push überschreibt die Cloud-Kopie mit Ihren lokalen Profiländerungen.\n"
"Möchten Sie fortfahren?" "Möchten Sie fortfahren?"
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "Cloud-Synchronisationskonflikt lösen" msgstr "Cloud-Synchronisationskonflikt lösen"
@@ -1989,7 +1992,8 @@ msgstr "Die Anzahl der im Cloud-Cache gespeicherten Benutzerprofile hat das Limi
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Benutzerprofile synchronisieren" msgstr "Benutzerprofile synchronisieren"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2210,6 +2214,9 @@ msgstr "Orca Würfel"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "OrcaSliced Kombination" msgstr "OrcaSliced Kombination"
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Orca Toleranz Test" msgstr "Orca Toleranz Test"
@@ -5275,6 +5282,9 @@ msgstr "Überhänge"
msgid "Outline" msgid "Outline"
msgstr "Umriss" msgstr "Umriss"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "Realistische Ansicht" msgstr "Realistische Ansicht"
@@ -7915,6 +7925,50 @@ msgstr "Wählen Sie den Ordner für heruntergeladene Elemente"
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "Wählen Sie das Download-Verzeichnis" msgstr "Wählen Sie das Download-Verzeichnis"
msgid "(Latest)"
msgstr "(Neueste)"
msgid "Network plug-in switched successfully."
msgstr "Netzwerk-Plugin erfolgreich gewechselt."
msgid "Success"
msgstr "Erfolgreich"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 ""
"Sie haben die Netzwerk-Plugin-Version %s ausgewählt.\n"
"\n"
"Möchten Sie diese Version jetzt herunterladen und installieren?\n"
"\n"
"Hinweis: Die Anwendung muss möglicherweise nach der Installation neu gestartet werden."
msgid "Download Network Plug-in"
msgstr "Netzwerk-Plugin herunterladen"
msgid "Reload the network plug-in without restarting the application"
msgstr "Das Netzwerk-Plugin neu laden, ohne die Anwendung neu zu starten"
msgid "Network plug-in reloaded successfully."
msgstr "Netzwerk-Plugin erfolgreich neu geladen."
msgid "Reload"
msgstr "Neu laden"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Netzwerk-Plugin konnte nicht neu geladen werden. Bitte starten Sie die Anwendung neu."
msgid "Reload Failed"
msgstr "Neuladen fehlgeschlagen"
msgid "Associate" msgid "Associate"
msgstr "Zuordnen" msgstr "Zuordnen"
@@ -7970,12 +8024,6 @@ msgstr "Splash-Screen anzeigen"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Zeige den Splash-Screen beim Start." msgstr "Zeige den Splash-Screen beim Start."
msgid "Show shared profiles notification"
msgstr "Benachrichtigung für geteilte Profile anzeigen"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Zeigen Sie eine Benachrichtigung mit einem Link zum Durchsuchen von geteilten Profilen an, wenn der ausgewählte Drucker geändert wird."
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "Windows Taste auf der linken Seite verwenden" msgstr "Windows Taste auf der linken Seite verwenden"
@@ -8006,6 +8054,13 @@ msgstr "Ladeverhalten"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "sollen Drucker/Filament/Prozess Einstellungen geladen werden beim Öffnen einer .3mf?" msgstr "sollen Drucker/Filament/Prozess Einstellungen geladen werden beim Öffnen einer .3mf?"
msgid "Auto backup"
msgstr "Automatische Datensicherung"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Erstellen Sie regelmäßig Sicherungskopien Ihres Projekts,um es im Falle eines Absturzes wiederherstellen zu können."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "Maximum zuletzt verwendeter Dateien" msgstr "Maximum zuletzt verwendeter Dateien"
@@ -8024,12 +8079,55 @@ msgstr "Optionen beim Importieren von STEP-Dateien anzeigen"
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Wenn aktiviert, wird während des Imports von STEP-Dateien ein Dialogfeld " msgstr "Wenn aktiviert, wird während des Imports von STEP-Dateien ein Dialogfeld "
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "Automatische Datensicherung" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "Erstellen Sie regelmäßig Sicherungskopien Ihres Projekts,um es im Falle eines Absturzes wiederherstellen zu können." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Qualitätsstufe für den Draco-Export"
msgid "bits"
msgstr "Bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Kontrolliert die Quantisierungs-Bittiefe, die bei der Komprimierung des Netzes in das Draco-Format verwendet wird.\n"
"0 = verlustfreie Kompression (Geometrie wird mit voller Präzision beibehalten). Gültige verlustbehaftete Werte liegen zwischen 8 und 30.\n"
"Niedrigere Werte erzeugen kleinere Dateien, verlieren jedoch mehr geometrische Details; höhere Werte bewahren mehr Details auf Kosten größerer Dateien."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Profil" msgstr "Profil"
@@ -8061,6 +8159,12 @@ msgstr "Filamente"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Optimiert die maximale Höhe des Filamentbereichs anhand der gewählten Filamentanzahl." msgstr "Optimiert die maximale Höhe des Filamentbereichs anhand der gewählten Filamentanzahl."
msgid "Show shared profiles notification"
msgstr "Benachrichtigung für geteilte Profile anzeigen"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Zeigen Sie eine Benachrichtigung mit einem Link zum Durchsuchen von geteilten Profilen an, wenn der ausgewählte Drucker geändert wird."
msgid "Features" msgid "Features"
msgstr "Funktionen" msgstr "Funktionen"
@@ -8073,21 +8177,6 @@ msgstr "Wenn diese Option aktiviert ist, können Sie eine Aufgabe gleichzeitig a
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "Popup zum Auswählen des Filament-Gruppierungsmodus" msgstr "Popup zum Auswählen des Filament-Gruppierungsmodus"
msgid "Quality level for Draco export"
msgstr "Qualitätsstufe für den Draco-Export"
msgid "bits"
msgstr "Bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Kontrolliert die Quantisierungs-Bittiefe, die bei der Komprimierung des Netzes in das Draco-Format verwendet wird.\n"
"0 = verlustfreie Kompression (Geometrie wird mit voller Präzision beibehalten). Gültige verlustbehaftete Werte liegen zwischen 8 und 30.\n"
"Niedrigere Werte erzeugen kleinere Dateien, verlieren jedoch mehr geometrische Details; höhere Werte bewahren mehr Details auf Kosten größerer Dateien."
msgid "Behaviour" msgid "Behaviour"
msgstr "Verhalten" msgstr "Verhalten"
@@ -8332,19 +8421,6 @@ msgstr "Nur nach stabilen Updates suchen"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Benutzerprofile automatisch synchronisieren (Drucker/Filament/Prozess)" msgstr "Benutzerprofile automatisch synchronisieren (Drucker/Filament/Prozess)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Aktualisiere integrierte Profile automatisch."
msgid "Use encrypted file for token storage"
msgstr "Verschlüsselte Datei für die Token-Speicherung verwenden"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Speichern Sie Authentifizierungstoken in einer verschlüsselten Datei anstelle des System-Schlüsselbunds. (Erfordert Neustart)"
msgid "Filament Sync Options"
msgstr "Filament-Synchronisierungsoptionen"
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "Filament-Synchronisierungsmodus" msgstr "Filament-Synchronisierungsmodus"
@@ -8357,6 +8433,16 @@ msgstr "Filament und Farbe"
msgid "Color only" msgid "Color only"
msgstr "Nur Farbe" msgstr "Nur Farbe"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Aktualisiere integrierte Profile automatisch."
msgid "Use encrypted file for token storage"
msgstr "Verschlüsselte Datei für die Token-Speicherung verwenden"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Speichern Sie Authentifizierungstoken in einer verschlüsselten Datei anstelle des System-Schlüsselbunds. (Erfordert Neustart)"
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "Bambu Netzwerk-Plugin" msgstr "Bambu Netzwerk-Plugin"
@@ -8369,35 +8455,6 @@ msgstr "Netzwerk-Plugin-Version"
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "Wählen Sie die zu verwendende Version des Netzwerk-Plugins aus" msgstr "Wählen Sie die zu verwendende Version des Netzwerk-Plugins aus"
msgid "(Latest)"
msgstr "(Neueste)"
msgid "Network plug-in switched successfully."
msgstr "Netzwerk-Plugin erfolgreich gewechselt."
msgid "Success"
msgstr "Erfolgreich"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 ""
"Sie haben die Netzwerk-Plugin-Version %s ausgewählt.\n"
"\n"
"Möchten Sie diese Version jetzt herunterladen und installieren?\n"
"\n"
"Hinweis: Die Anwendung muss möglicherweise nach der Installation neu gestartet werden."
msgid "Download Network Plug-in"
msgstr "Netzwerk-Plugin herunterladen"
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Dateien mit OrcaSlicer verknüpfen" msgstr "Dateien mit OrcaSlicer verknüpfen"
@@ -8446,8 +8503,17 @@ msgstr "Entwickler"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "Überspringen der AMS Blacklist-Prüfung" msgstr "Überspringen der AMS Blacklist-Prüfung"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr "(Experimentell) Behalte bemalte Funktionen nach Mesh-Änderung bei" msgstr "Nicht unterstützte Profile anzeigen"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Zeigt inkompatible/nicht unterstützte Profile in den Dropdown-Listen für Drucker und Filament an. Diese Profile können nicht ausgewählt werden."
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid "" msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
@@ -8456,12 +8522,6 @@ msgstr ""
"Versuchen Sie, bemalte Funktionen (Farbe/Naht/Stütze/unscharf usw.) nach Änderung des Objekt-Meshs (z. B. schneiden/neu laden von der Festplatte/vereinfachen/reparieren usw.) beizubehalten\n" "Versuchen Sie, bemalte Funktionen (Farbe/Naht/Stütze/unscharf usw.) nach Änderung des Objekt-Meshs (z. B. schneiden/neu laden von der Festplatte/vereinfachen/reparieren usw.) beizubehalten\n"
"Sehr experimentell! Langsam und kann Artefakte erzeugen." "Sehr experimentell! Langsam und kann Artefakte erzeugen."
msgid "Show unsupported presets"
msgstr "Nicht unterstützte Profile anzeigen"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Zeigt inkompatible/nicht unterstützte Profile in den Dropdown-Listen für Drucker und Filament an. Diese Profile können nicht ausgewählt werden."
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "Fehlerhaften Speicher zulassen" msgstr "Fehlerhaften Speicher zulassen"
@@ -8490,24 +8550,6 @@ msgstr "Fehlersuche"
msgid "trace" msgid "trace"
msgstr "Spurensuche" msgstr "Spurensuche"
msgid "Network plug-in"
msgstr "Netzwerk-Plugin"
msgid "Reload"
msgstr "Neu laden"
msgid "Reload the network plug-in without restarting the application"
msgstr "Das Netzwerk-Plugin neu laden, ohne die Anwendung neu zu starten"
msgid "Network plug-in reloaded successfully."
msgstr "Netzwerk-Plugin erfolgreich neu geladen."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Netzwerk-Plugin konnte nicht neu geladen werden. Bitte starten Sie die Anwendung neu."
msgid "Reload Failed"
msgstr "Neuladen fehlgeschlagen"
msgid "Debug" msgid "Debug"
msgstr "Fehlersuche" msgstr "Fehlersuche"
@@ -8523,25 +8565,6 @@ msgstr "Profil Synchronisation"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Synchronisierung der Einstellungen" msgstr "Synchronisierung der Einstellungen"
msgid "View control settings"
msgstr "Ansicht-Steuerungseinstellungen"
msgid "Rotate view"
msgstr "Drehen der Ansicht"
msgid "Pan view"
msgstr "Pan-Ansicht"
msgid "Zoom view"
msgstr "Ansicht zoomen"
msgid "Other"
msgstr "Sonstiges"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Scrollrichtung beim Zoomen umkehren"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "SSL aktivieren (MQTT)" msgstr "SSL aktivieren (MQTT)"
@@ -12534,6 +12557,18 @@ msgstr "Schwelle für kleine Strukturen"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Dies legt die Schwelle für eine kleine Umfangslänge fest. Der Standardwert für die Schwelle beträgt 0 mm." msgstr "Dies legt die Schwelle für eine kleine Umfangslänge fest. Der Standardwert für die Schwelle beträgt 0 mm."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "Anordnung der Wände" msgstr "Anordnung der Wände"
@@ -12722,27 +12757,26 @@ msgstr ""
"2. Notieren Sie den optimalen PA-Wert für jede Volumenfließgeschwindigkeit und Beschleunigung. Sie können die Fließzahl auswählen, indem Sie Fluss ausdem Farbschema-Dropdown auswählen und den horizontalen Schieberegler über den PA-Musterlinien bewegen. Die Zahl sollte am unteren Rand der Seite sichtbar sein. Der ideale PA-Wert sollte abnehmen, je höher die Volumenfließgeschwin-digkeit ist. Wenn dies nicht der Fall ist, bestätigen Sie, dass Ihr Extruder korrekt funktioniert. Je langsamer und mit weniger Beschleunigung Sie drucken, desto größer ist der Bereich der akzeptablen PA-Werte. Wenn kein Unterschied sichtbar ist, verwenden Sie den PA-Wert aus dem schnelleren Test.\n" "2. Notieren Sie den optimalen PA-Wert für jede Volumenfließgeschwindigkeit und Beschleunigung. Sie können die Fließzahl auswählen, indem Sie Fluss ausdem Farbschema-Dropdown auswählen und den horizontalen Schieberegler über den PA-Musterlinien bewegen. Die Zahl sollte am unteren Rand der Seite sichtbar sein. Der ideale PA-Wert sollte abnehmen, je höher die Volumenfließgeschwin-digkeit ist. Wenn dies nicht der Fall ist, bestätigen Sie, dass Ihr Extruder korrekt funktioniert. Je langsamer und mit weniger Beschleunigung Sie drucken, desto größer ist der Bereich der akzeptablen PA-Werte. Wenn kein Unterschied sichtbar ist, verwenden Sie den PA-Wert aus dem schnelleren Test.\n"
"3. Geben Sie die Triplets von PA-Werten, Fluss und Beschleunigungen im Textfeld hier ein und speichern Sie Ihr Filamentprofil." "3. Geben Sie die Triplets von PA-Werten, Fluss und Beschleunigungen im Textfeld hier ein und speichern Sie Ihr Filamentprofil."
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "Adaptives PA für Überhänge aktivieren (experimentell)" msgstr ""
msgid "" msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." "\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr "" msgstr ""
"Aktivieren Sie adaptives PA auch für Überhänge sowie bei Flussänderungen innerhalb desselben Features. Dies ist eine experimentelle Option, da sie bei ungenau eingestelltem PA-Profil zu Uniformitätsproblemen auf den äußeren Oberflächen vor und nach Überhängen führen kann.\n"
"Nicht kompatibel mit Prusa-Druckern, da diese pausieren, um PA-Änderungen zu verarbeiten, was zu Verzögerungen und Defekten führt."
msgid "Pressure advance for bridges" msgid "Static pressure advance for bridges"
msgstr "Pressure Advance für Brücken" msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"Pressure Advance-Wert für Brücken. Auf 0 setzen, um zu deaktivieren.\n"
"\n"
"Ein niedrigerer PA-Wert beim Drucken von Brücken hilft, das Auftreten einer leichten Unterextrusion unmittelbar nach Brücken zu reduzieren. Dies wird durch den Druckabfall in der Düse beim Drucken in der Luft verursacht, und ein niedrigerer PA hilft, dem entgegenzuwirken."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Standardmäßige Linienbreite, wenn andere Linienbreiten auf 0 gesetzt sind. Wenn als Prozentsatz angegeben, wird sie in Bezug auf den Düsendurchmesser berechnet." msgstr "Standardmäßige Linienbreite, wenn andere Linienbreiten auf 0 gesetzt sind. Wenn als Prozentsatz angegeben, wird sie in Bezug auf den Düsendurchmesser berechnet."
@@ -13123,6 +13157,22 @@ msgstr "Richtung des massiven Füllmusters"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Winkel des massiven Füllmusters, der die Start- oder Hauptrichtung der Linie steuert." msgstr "Winkel des massiven Füllmusters, der die Start- oder Hauptrichtung der Linie steuert."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Fülldichte" msgstr "Fülldichte"
@@ -13341,6 +13391,17 @@ msgstr "Die Lüftergeschwindigkeit wird linear von Null bei der Schicht\"close_f
msgid "layer" msgid "layer"
msgstr "Schicht" msgstr "Schicht"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Stützstruktur-Schnittstelle" msgstr "Stützstruktur-Schnittstelle"
@@ -15282,6 +15343,9 @@ msgstr "Risse, die kleiner als das 2-fache des Lückenschlussradius sind, werden
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Slicing-Modus" msgstr "Slicing-Modus"
msgid "Other"
msgstr "Sonstiges"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Verwenden Sie \"Gerade-ungerade\" für 3DLabPrint-Flugzeugmodelle. Verwenden Sie \"Löcher schließen\", um alle Löcher im Modell zu schließen." msgstr "Verwenden Sie \"Gerade-ungerade\" für 3DLabPrint-Flugzeugmodelle. Verwenden Sie \"Löcher schließen\", um alle Löcher im Modell zu schließen."
@@ -15964,6 +16028,14 @@ msgstr "Polyhole verdrehen"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "Polyhole in jeder Schicht drehen." msgstr "Polyhole in jeder Schicht drehen."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "G-Code Vorschaubilder" msgstr "G-Code Vorschaubilder"
@@ -18363,6 +18435,132 @@ msgstr "Anmelden/Testen"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "Die Verbindung zu den über den Druck-Host verbundenen Druckern ist fehlgeschlagen." msgstr "Die Verbindung zu den über den Druck-Host verbundenen Druckern ist fehlgeschlagen."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "3DPrinterOS Cloud-Upload-Optionen" msgstr "3DPrinterOS Cloud-Upload-Optionen"
@@ -18445,6 +18643,19 @@ msgstr "Verbindung zu MKS funktioniert korrekt."
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "Konnte keine Verbindung zu MKS herstellen" msgstr "Konnte keine Verbindung zu MKS herstellen"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "Verbindung zu OctoPrint funktioniert korrekt." msgstr "Verbindung zu OctoPrint funktioniert korrekt."
@@ -19195,6 +19406,12 @@ msgstr "Anzahl der dreieckigen Facetten"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "Berechnung läuft, bitte warten..." msgstr "Berechnung läuft, bitte warten..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "Preset-Bündel" msgstr "Preset-Bündel"
@@ -19605,6 +19822,99 @@ msgstr ""
"Verwerfungen vermeiden\n" "Verwerfungen vermeiden\n"
"Wussten Sie, dass beim Drucken von Materialien, die zu Verwerfungen neigen, wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die Wahrscheinlichkeit von Verwerfungen verringert werden kann?" "Wussten Sie, dass beim Drucken von Materialien, die zu Verwerfungen neigen, wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die Wahrscheinlichkeit von Verwerfungen verringert werden kann?"
#~ msgid "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Objektkoordinaten"
#~ msgid "World coordinates"
#~ msgstr "Weltkoordinaten"
#~ msgid "Translate(Relative)"
#~ msgstr "Verschieben (relativ)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Rotation (absolut)"
#~ msgid "Part coordinates"
#~ msgstr "Teile Koordinaten"
#~ msgid ""
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "Cloud-Synchronisationskonflikt: Dieses Profil hat eine neuere Version in OrcaCloud.\n"
#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
#~ msgid ""
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "Cloud-Synchronisationskonflikt: Ein Profil mit diesem Namen existiert bereits in OrcaCloud.\n"
#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
#~ msgid ""
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "Cloud-Synchronisationskonflikt: Ein Profil mit demselben Namen wurde zuvor aus der Cloud gelöscht.\n"
#~ "Delete löscht Ihr lokales Profil. Force Push überschreibt es mit Ihrem lokalen Profil."
#~ msgid ""
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "Cloud-Synchronisationskonflikt: Es gab einen unerwarteten oder nicht identifizierten Profilkonflikt.\n"
#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Adaptives PA für Überhänge aktivieren (experimentell)"
#~ msgid ""
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
#~ msgstr ""
#~ "Aktivieren Sie adaptives PA auch für Überhänge sowie bei Flussänderungen innerhalb desselben Features. Dies ist eine experimentelle Option, da sie bei ungenau eingestelltem PA-Profil zu Uniformitätsproblemen auf den äußeren Oberflächen vor und nach Überhängen führen kann.\n"
#~ "Nicht kompatibel mit Prusa-Druckern, da diese pausieren, um PA-Änderungen zu verarbeiten, was zu Verzögerungen und Defekten führt."
#~ msgid "Pressure advance for bridges"
#~ msgstr "Pressure Advance für Brücken"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Pressure Advance-Wert für Brücken. Auf 0 setzen, um zu deaktivieren.\n"
#~ "\n"
#~ "Ein niedrigerer PA-Wert beim Drucken von Brücken hilft, das Auftreten einer leichten Unterextrusion unmittelbar nach Brücken zu reduzieren. Dies wird durch den Druckabfall in der Düse beim Drucken in der Luft verursacht, und ein niedrigerer PA hilft, dem entgegenzuwirken."
#~ msgid "Filament Sync Options"
#~ msgstr "Filament-Synchronisierungsoptionen"
#~ msgid "(Experimental) Keep painted feature after mesh change"
#~ msgstr "(Experimentell) Behalte bemalte Funktionen nach Mesh-Änderung bei"
#~ msgid "Network plug-in"
#~ msgstr "Netzwerk-Plugin"
#~ msgid "View control settings"
#~ msgstr "Ansicht-Steuerungseinstellungen"
#~ msgid "Rotate view"
#~ msgstr "Drehen der Ansicht"
#~ msgid "Pan view"
#~ msgstr "Pan-Ansicht"
#~ msgid "Zoom view"
#~ msgstr "Ansicht zoomen"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Scrollrichtung beim Zoomen umkehren"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "Links: %s" #~ msgstr "Links: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: 2026-06-17 15:44-0300\n" "PO-Revision-Date: 2026-06-17 15:44-0300\n"
"Last-Translator: Alexandre Folle de Menezes\n" "Last-Translator: Alexandre Folle de Menezes\n"
"Language-Team: \n" "Language-Team: \n"
@@ -330,6 +330,7 @@ msgstr ""
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "" msgstr ""
msgctxt "inches"
msgid "in" msgid "in"
msgstr "" msgstr ""
@@ -384,27 +385,30 @@ msgstr ""
msgid "Reset rotation" msgid "Reset rotation"
msgstr "" msgstr ""
msgid "Object coordinates" msgid "World"
msgstr "" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "" msgstr ""
msgid "Translate(Relative)" msgid "Part"
msgstr ""
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr "" msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "" msgstr ""
msgid "Rotate (absolute)"
msgstr ""
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "" msgstr ""
msgid "Part coordinates"
msgstr ""
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "" msgstr ""
@@ -508,12 +512,6 @@ msgstr ""
msgid "Spacing" msgid "Spacing"
msgstr "" msgstr ""
msgid "Part"
msgstr ""
msgid "Object"
msgstr ""
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1816,23 +1814,30 @@ msgstr ""
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "" msgstr ""
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1841,6 +1846,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1908,7 +1919,8 @@ msgstr ""
msgid "Sync user presets" msgid "Sync user presets"
msgstr "" msgstr ""
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2118,6 +2130,9 @@ msgstr ""
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "" msgstr ""
@@ -5000,6 +5015,9 @@ msgstr ""
msgid "Outline" msgid "Outline"
msgstr "" msgstr ""
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7514,6 +7532,45 @@ msgstr ""
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "" msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate" msgid "Associate"
msgstr "" msgstr ""
@@ -7568,12 +7625,6 @@ msgstr ""
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "" msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -7604,6 +7655,12 @@ msgstr ""
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "" msgstr ""
msgid "Auto backup"
msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr ""
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "" msgstr ""
@@ -7622,10 +7679,51 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "" msgstr ""
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "" msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash." msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr ""
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr "" msgstr ""
msgid "Preset" msgid "Preset"
@@ -7658,6 +7756,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "" msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "" msgstr ""
@@ -7670,18 +7774,6 @@ msgstr ""
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "" msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr ""
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour" msgid "Behaviour"
msgstr "" msgstr ""
@@ -7906,18 +7998,6 @@ msgstr ""
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "" msgstr ""
msgid "Update built-in presets automatically."
msgstr ""
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "" msgstr ""
@@ -7930,6 +8010,15 @@ msgstr ""
msgid "Color only" msgid "Color only"
msgstr "" msgstr ""
msgid "Update built-in presets automatically."
msgstr ""
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -7942,30 +8031,6 @@ msgstr ""
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "" msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "" msgstr ""
@@ -8008,7 +8073,16 @@ msgstr ""
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "" msgstr ""
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8016,12 +8090,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "" msgstr ""
@@ -8048,24 +8116,6 @@ msgstr ""
msgid "trace" msgid "trace"
msgstr "" msgstr ""
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug" msgid "Debug"
msgstr "" msgstr ""
@@ -8081,24 +8131,6 @@ msgstr ""
msgid "Preferences sync" msgid "Preferences sync"
msgstr "" msgstr ""
msgid "View control settings"
msgstr ""
msgid "Rotate view"
msgstr ""
msgid "Pan view"
msgstr ""
msgid "Zoom view"
msgstr ""
msgid "Other"
msgstr ""
msgid "Reverse scroll direction while zooming"
msgstr ""
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "" msgstr ""
@@ -11713,6 +11745,18 @@ msgstr ""
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "" msgstr ""
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "" msgstr ""
@@ -11865,21 +11909,25 @@ msgid ""
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile." "3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
msgstr "" msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr ""
msgid "Pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
@@ -12236,6 +12284,22 @@ msgstr ""
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "" msgstr ""
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "" msgstr ""
@@ -12438,6 +12502,17 @@ msgstr ""
msgid "layer" msgid "layer"
msgstr "" msgstr ""
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "" msgstr ""
@@ -14184,6 +14259,9 @@ msgstr ""
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "" msgstr ""
msgid "Other"
msgstr ""
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "" msgstr ""
@@ -14788,6 +14866,14 @@ msgstr ""
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "" msgstr ""
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "" msgstr ""
@@ -17014,6 +17100,132 @@ msgstr ""
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "" msgstr ""
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -17096,6 +17308,19 @@ msgstr ""
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "" msgstr ""
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "" msgstr ""
@@ -17837,6 +18062,12 @@ msgstr ""
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "" msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""

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 "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"Language: hu\n" "Language: hu\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -333,8 +333,9 @@ msgstr "Gizmo-Átméretezés"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "Hiba: Kérlek, először zárd be az összes eszköztár menüt" msgstr "Hiba: Kérlek, először zárd be az összes eszköztár menüt"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "in" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -394,27 +395,30 @@ msgstr "Pozíció visszaállítása"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "Forgatás visszaállítása" msgstr "Forgatás visszaállítása"
msgid "Object coordinates" msgid "World"
msgstr "Objektum koordináták" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Világkoordináták" msgstr "Objektum"
msgid "Translate(Relative)" msgid "Part"
msgstr "Eltolás (relatív)" msgstr "Tárgy"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Az aktuális forgatás visszaállítása a forgatás eszköz megnyitásakor érvényes értékre." msgstr "Az aktuális forgatás visszaállítása a forgatás eszköz megnyitásakor érvényes értékre."
msgid "Rotate (absolute)"
msgstr "Forgatás (abszolút)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "Az aktuális forgatás visszaállítása valódi nullára." msgstr "Az aktuális forgatás visszaállítása valódi nullára."
msgid "Part coordinates"
msgstr "Alkatrész koordináták"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Méret" msgstr "Méret"
@@ -518,12 +522,6 @@ msgstr "Rés"
msgid "Spacing" msgid "Spacing"
msgstr "Térköz" msgstr "Térköz"
msgid "Part"
msgstr "Tárgy"
msgid "Object"
msgstr "Objektum"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1867,23 +1865,30 @@ msgstr "Projekt megnyitása"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "A Orca Slicer ezen verziója túl régi és a legfrissebb verzióra kell frissíteni, mielőtt rendesen használható lenne" msgstr "A Orca Slicer ezen verziója túl régi és a legfrissebb verzióra kell frissíteni, mielőtt rendesen használható lenne"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1892,6 +1897,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1971,8 +1982,9 @@ msgstr "A felhőben tárolt felhasználói beállítások száma elérte a limit
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Felhasználói beállítások szinkronizálása" msgstr "Felhasználói beállítások szinkronizálása"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgstr "Az beállítás tartalom túl nagy a cloud-al való szinkronizáláshoz (több mint 1 MB). Csökkentsd a beállítás méretet az egyéni konfigurációk eltávolításával, vagy használd csak helyileg." msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "%s updated from %s to %s" msgid "%s updated from %s to %s"
@@ -2193,6 +2205,9 @@ msgstr "Orca kocka"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Orca tolerancia teszt" msgstr "Orca tolerancia teszt"
@@ -5257,6 +5272,9 @@ msgstr "Túlnyúlások"
msgid "Outline" msgid "Outline"
msgstr "Körvonal" msgstr "Körvonal"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7886,6 +7904,50 @@ msgstr "Mappa kiválasztása a letöltött elemekhez"
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "Válassz letöltési mappát" msgstr "Válassz letöltési mappát"
msgid "(Latest)"
msgstr "(Legfrissebb)"
msgid "Network plug-in switched successfully."
msgstr "A hálózati bővítmény sikeresen átváltva."
msgid "Success"
msgstr "Sikeres"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "A hálózati bővítmény betöltése sikertelen. Indítsd újra az alkalmazást."
#, c-format, boost-format
msgid ""
"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 ""
"A(z) %s hálózati bővítmény verziót választottad.\n"
"\n"
"Szeretnéd most letölteni és telepíteni ezt a verziót?\n"
"\n"
"Megjegyzés: telepítés után szükséges lehet az alkalmazás újraindítása."
msgid "Download Network Plug-in"
msgstr "Hálózati bővítmény letöltése"
msgid "Reload the network plug-in without restarting the application"
msgstr "Hálózati bővítmény újratöltése az alkalmazás újraindítása nélkül"
msgid "Network plug-in reloaded successfully."
msgstr "A hálózati bővítmény újratöltése sikerült."
msgid "Reload"
msgstr "Újratöltés"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "A hálózati bővítmény újratöltése nem sikerült. Kérlek, indítsd újra az alkalmazást."
msgid "Reload Failed"
msgstr "Sikertelen újratöltés"
msgid "Associate" msgid "Associate"
msgstr "Társítás" msgstr "Társítás"
@@ -7941,12 +8003,6 @@ msgstr "Splash screen meglenítése"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Indításkor nyitókép megjelenítése." msgstr "Indításkor nyitókép megjelenítése."
msgid "Show shared profiles notification"
msgstr "Megosztott profilok értesítésének megjelenítése"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Értesítés megjelenítése hivatkozással a megosztott profilok böngészéséhez, ha a kiválasztott nyomtató megváltozik."
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "Használd a bal oldalon lévő ablakgombokat" msgstr "Használd a bal oldalon lévő ablakgombokat"
@@ -7977,6 +8033,13 @@ msgstr "Betöltési viselkedés"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Betöltődjenek-e a nyomtató/filament/folyamat beállítások 3MF fájl megnyitásakor?" msgstr "Betöltődjenek-e a nyomtató/filament/folyamat beállítások 3MF fájl megnyitásakor?"
msgid "Auto backup"
msgstr "Automatikus biztonsági mentés"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "A projekt időszakos mentése az esetleges összeomlás utáni helyreállításhoz."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "Legutóbbi fájlok maximális száma" msgstr "Legutóbbi fájlok maximális száma"
@@ -7995,12 +8058,55 @@ msgstr "Beállítások megjelenítése STEP fájl importálásakor"
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Ha engedélyezve van, STEP fájl importálásakor paraméterbeállítási párbeszédablak jelenik meg." msgstr "Ha engedélyezve van, STEP fájl importálásakor paraméterbeállítási párbeszédablak jelenik meg."
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "Automatikus biztonsági mentés" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "A projekt időszakos mentése az esetleges összeomlás utáni helyreállításhoz." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Minőségi szint Draco exporthoz"
msgid "bits"
msgstr "bit"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"A Draco formátumú hálótömörítéskor használt kvantálási bitmélységet szabályozza.\n"
"0 = veszteségmentes tömörítés (a geometria teljes pontossággal megmarad). Az érvényes veszteséges értékek 8 és 30 között vannak.\n"
"Az alacsonyabb értékek kisebb fájlokat eredményeznek, de több geometriai részlet vész el; a magasabb értékek több részletet őriznek meg nagyobb fájlméret árán."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Beállítás" msgstr "Beállítás"
@@ -8032,6 +8138,12 @@ msgstr "filamentek"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "A filamentterület maximális magasságát optimalizálja a kiválasztott filamentek száma alapján." msgstr "A filamentterület maximális magasságát optimalizálja a kiválasztott filamentek száma alapján."
msgid "Show shared profiles notification"
msgstr "Megosztott profilok értesítésének megjelenítése"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Értesítés megjelenítése hivatkozással a megosztott profilok böngészéséhez, ha a kiválasztott nyomtató megváltozik."
msgid "Features" msgid "Features"
msgstr "Funkciók" msgstr "Funkciók"
@@ -8044,21 +8156,6 @@ msgstr "Ezzel az opcióval egyszerre több eszközre küldhetsz feladatot és t
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "Felugró ablak a filamentcsoportosítási mód kiválasztásához" msgstr "Felugró ablak a filamentcsoportosítási mód kiválasztásához"
msgid "Quality level for Draco export"
msgstr "Minőségi szint Draco exporthoz"
msgid "bits"
msgstr "bit"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"A Draco formátumú hálótömörítéskor használt kvantálási bitmélységet szabályozza.\n"
"0 = veszteségmentes tömörítés (a geometria teljes pontossággal megmarad). Az érvényes veszteséges értékek 8 és 30 között vannak.\n"
"Az alacsonyabb értékek kisebb fájlokat eredményeznek, de több geometriai részlet vész el; a magasabb értékek több részletet őriznek meg nagyobb fájlméret árán."
msgid "Behaviour" msgid "Behaviour"
msgstr "Viselkedés" msgstr "Viselkedés"
@@ -8298,19 +8395,6 @@ msgstr "Csak stabil frissítések keresése"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Felhasználói beállítások automatikus szinkronizálása (Nyomtató/Filament/Folyamat)" msgstr "Felhasználói beállítások automatikus szinkronizálása (Nyomtató/Filament/Folyamat)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Beépített beállítások automatikus frissítése."
msgid "Use encrypted file for token storage"
msgstr "Titkosított fájl használata token tároláshoz"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Hitelesítési tokenek tárolása titkosított fájlban a rendszerkulcstartó helyett. (Újraindítást igényel)"
msgid "Filament Sync Options"
msgstr "Filament szinkronizálási opciók"
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "Filament szinkronizálási mód" msgstr "Filament szinkronizálási mód"
@@ -8323,6 +8407,16 @@ msgstr "Filament és szín"
msgid "Color only" msgid "Color only"
msgstr "Csak szín" msgstr "Csak szín"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Beépített beállítások automatikus frissítése."
msgid "Use encrypted file for token storage"
msgstr "Titkosított fájl használata token tároláshoz"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Hitelesítési tokenek tárolása titkosított fájlban a rendszerkulcstartó helyett. (Újraindítást igényel)"
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8335,35 +8429,6 @@ msgstr "Hálózati bővítmény verzió"
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "A használandó hálózati bővítmény verzió kiválasztása" msgstr "A használandó hálózati bővítmény verzió kiválasztása"
msgid "(Latest)"
msgstr "(Legfrissebb)"
msgid "Network plug-in switched successfully."
msgstr "A hálózati bővítmény sikeresen átváltva."
msgid "Success"
msgstr "Sikeres"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "A hálózati bővítmény betöltése sikertelen. Indítsd újra az alkalmazást."
#, c-format, boost-format
msgid ""
"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 ""
"A(z) %s hálózati bővítmény verziót választottad.\n"
"\n"
"Szeretnéd most letölteni és telepíteni ezt a verziót?\n"
"\n"
"Megjegyzés: telepítés után szükséges lehet az alkalmazás újraindítása."
msgid "Download Network Plug-in"
msgstr "Hálózati bővítmény letöltése"
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Fájlok társítása a OrcaSlicerhoz" msgstr "Fájlok társítása a OrcaSlicerhoz"
@@ -8412,8 +8477,17 @@ msgstr "Fejlesztő"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "AMS tiltólista ellenőrzés kihagyása" msgstr "AMS tiltólista ellenőrzés kihagyása"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr "(Kísérleti) A festett jellemző megtartása hálócsere után" msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid "" msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
@@ -8422,12 +8496,6 @@ msgstr ""
"Megpróbálja tartani a festett jellemzőket (szín/varrat/támasz/fuzzy stb.) az objektumháló megváltoztatása után (például kivágás/újratöltés lemezről/egyszerűsítés/javítás stb.)\n" "Megpróbálja tartani a festett jellemzőket (szín/varrat/támasz/fuzzy stb.) az objektumháló megváltoztatása után (például kivágás/újratöltés lemezről/egyszerűsítés/javítás stb.)\n"
"Kísérletei szint! Lassú és hibákat hozhat létre." "Kísérletei szint! Lassú és hibákat hozhat létre."
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "Rendellenes tároló engedélyezése" msgstr "Rendellenes tároló engedélyezése"
@@ -8456,24 +8524,6 @@ msgstr ""
msgid "trace" msgid "trace"
msgstr "követés" msgstr "követés"
msgid "Network plug-in"
msgstr "Hálózati bővítmény"
msgid "Reload"
msgstr "Újratöltés"
msgid "Reload the network plug-in without restarting the application"
msgstr "Hálózati bővítmény újratöltése az alkalmazás újraindítása nélkül"
msgid "Network plug-in reloaded successfully."
msgstr "A hálózati bővítmény újratöltése sikerült."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "A hálózati bővítmény újratöltése nem sikerült. Kérlek, indítsd újra az alkalmazást."
msgid "Reload Failed"
msgstr "Sikertelen újratöltés"
msgid "Debug" msgid "Debug"
msgstr "Hibakeresés" msgstr "Hibakeresés"
@@ -8489,25 +8539,6 @@ msgstr "Beállítások szinkronizálása"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Beállítások szinkronizálása" msgstr "Beállítások szinkronizálása"
msgid "View control settings"
msgstr "Vezérlési beállítások megtekintése"
msgid "Rotate view"
msgstr "Nézet elforgatása"
msgid "Pan view"
msgstr "Pásztázó nézet"
msgid "Zoom view"
msgstr "Nagyítás nézet"
msgid "Other"
msgstr "Egyéb"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Görgetési irány megfordítása nagyítás közben"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "SSL engedélyezése (MQTT)" msgstr "SSL engedélyezése (MQTT)"
@@ -12437,6 +12468,18 @@ msgstr "Kis kerületek küszöbértéke"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "A kis peremek hosszának küszöbértékét határozza meg. Az alapértelmezett érték 0 mm" msgstr "A kis peremek hosszának küszöbértékét határozza meg. Az alapértelmezett érték 0 mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "Falak nyomtatási sorrendje" msgstr "Falak nyomtatási sorrendje"
@@ -12625,25 +12668,26 @@ msgstr ""
"2. Jegyezd fel az optimális PA értéket minden volumetrikus áramlási sebességhez és gyorsuláshoz. Az áramlási számot úgy találhatod meg, hogy a színséma legördülő menüben az áramlást választod, majd a vízszintes csúszkát a PA mintavonalak fölé mozgatod. A számnak az oldal alján kell megjelenjen. Az ideális PA értéknek csökkennie kell a volumetrikus áramlás növekedésével. Ha nem így van, ellenőrizd, hogy az extrudered megfelelően működik-e. Minél lassabban és kisebb gyorsulással nyomtatsz, annál nagyobb az elfogadható PA értékek tartománya. Ha nincs látható különbség, használd a gyorsabb tesztből származó PA értéket\n" "2. Jegyezd fel az optimális PA értéket minden volumetrikus áramlási sebességhez és gyorsuláshoz. Az áramlási számot úgy találhatod meg, hogy a színséma legördülő menüben az áramlást választod, majd a vízszintes csúszkát a PA mintavonalak fölé mozgatod. A számnak az oldal alján kell megjelenjen. Az ideális PA értéknek csökkennie kell a volumetrikus áramlás növekedésével. Ha nem így van, ellenőrizd, hogy az extrudered megfelelően működik-e. Minél lassabban és kisebb gyorsulással nyomtatsz, annál nagyobb az elfogadható PA értékek tartománya. Ha nincs látható különbség, használd a gyorsabb tesztből származó PA értéket\n"
"3. Add meg a PA értékek, az áramlás és a gyorsulás hármasait az itt található szövegmezőben, majd mentsd el a filamentprofilt." "3. Add meg a PA értékek, az áramlás és a gyorsulás hármasait az itt található szövegmezőben, majd mentsd el a filamentprofilt."
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "Adaptív nyomáselőtolás engedélyezése túlnyúlásokhoz (béta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
msgid "Pressure advance for bridges" msgid ""
msgstr "Nyomáselőtolás hidakhoz" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"Nyomáselőtolási érték hidakhoz. A kikapcsoláshoz állítsd 0-ra.\n"
"\n"
"Hidak nyomtatásakor az alacsonyabb PA érték segít csökkenteni a hidak után közvetlenül jelentkező enyhe alulextrudálás megjelenését. Ezt az okozza, hogy a levegőbe nyomtatás során nyomásesés lép fel a fúvókában, amit az alacsonyabb PA részben ellensúlyoz."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Alapértelmezett vonalszélesség, ha a többi vonalszélesség 0-ra van állítva. Ha százalékban van megadva, a fúvókaátmérő alapján lesz kiszámítva." msgstr "Alapértelmezett vonalszélesség, ha a többi vonalszélesség 0-ra van állítva. Ha százalékban van megadva, a fúvókaátmérő alapján lesz kiszámítva."
@@ -13026,6 +13070,22 @@ msgstr "Tömör kitöltés iránya"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "A tömör kitöltési minta szöge, amely a vonalak kezdő- vagy fő irányát szabályozza." msgstr "A tömör kitöltési minta szöge, amely a vonalak kezdő- vagy fő irányát szabályozza."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Kitöltés sűrűsége" msgstr "Kitöltés sűrűsége"
@@ -13242,6 +13302,17 @@ msgstr "A ventilátor fordulatszáma lineárisan nő nulláról a \"close_fan_th
msgid "layer" msgid "layer"
msgstr "réteg" msgstr "réteg"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Támasz érintkező felület ventilátorsebessége" msgstr "Támasz érintkező felület ventilátorsebessége"
@@ -15182,6 +15253,9 @@ msgstr "A háromszögháló szeletelés során a szeletelési hézag lezárási
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Szeletelési mód" msgstr "Szeletelési mód"
msgid "Other"
msgstr "Egyéb"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Használd a \"Páros-páratlan\" opciót a 3DLabPrint repülőgépmodellekhez. Használd a \"Hézagok lezárása\" lehetőséget a modell összes házagának lezárásához." msgstr "Használd a \"Páros-páratlan\" opciót a 3DLabPrint repülőgépmodellekhez. Használd a \"Hézagok lezárása\" lehetőséget a modell összes házagának lezárásához."
@@ -15865,6 +15939,14 @@ msgstr "Sokszögelt lyuk elforgatása"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "A sokszögelt lyuk forgatása rétegenként." msgstr "A sokszögelt lyuk forgatása rétegenként."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "G-kód miniatűrök" msgstr "G-kód miniatűrök"
@@ -18245,6 +18327,132 @@ msgstr "Bejelentkezés/Teszt"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "A nyomtatóállomáson keresztül csatlakoztatott nyomtatókhoz való csatlakozás sikertelen." msgstr "A nyomtatóállomáson keresztül csatlakoztatott nyomtatókhoz való csatlakozás sikertelen."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -18327,6 +18535,19 @@ msgstr "Az MKS kapcsolata megfelelően működik."
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "Nem sikerült csatlakozni az MKS-hez" msgstr "Nem sikerült csatlakozni az MKS-hez"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "Az OctoPrint kapcsolata megfelelően működik." msgstr "Az OctoPrint kapcsolata megfelelően működik."
@@ -19077,6 +19298,12 @@ msgstr "Háromszögfelületek száma"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "Számítás folyamatban, kérlek várj..." msgstr "Számítás folyamatban, kérlek várj..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -19485,6 +19712,67 @@ msgstr ""
"Kunkorodás elkerülése\n" "Kunkorodás elkerülése\n"
"Tudtad, hogy a kunkorodásra hajlamos anyagok (például ABS) nyomtatásakor a tárgyasztal hőmérsékletének növelése csökkentheti a kunkorodás valószínűségét?" "Tudtad, hogy a kunkorodásra hajlamos anyagok (például ABS) nyomtatásakor a tárgyasztal hőmérsékletének növelése csökkentheti a kunkorodás valószínűségét?"
#~ msgid "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Objektum koordináták"
#~ msgid "World coordinates"
#~ msgstr "Világkoordináták"
#~ msgid "Translate(Relative)"
#~ msgstr "Eltolás (relatív)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Forgatás (abszolút)"
#~ msgid "Part coordinates"
#~ msgstr "Alkatrész koordináták"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "Az beállítás tartalom túl nagy a cloud-al való szinkronizáláshoz (több mint 1 MB). Csökkentsd a beállítás méretet az egyéni konfigurációk eltávolításával, vagy használd csak helyileg."
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Adaptív nyomáselőtolás engedélyezése túlnyúlásokhoz (béta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Nyomáselőtolás hidakhoz"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Nyomáselőtolási érték hidakhoz. A kikapcsoláshoz állítsd 0-ra.\n"
#~ "\n"
#~ "Hidak nyomtatásakor az alacsonyabb PA érték segít csökkenteni a hidak után közvetlenül jelentkező enyhe alulextrudálás megjelenését. Ezt az okozza, hogy a levegőbe nyomtatás során nyomásesés lép fel a fúvókában, amit az alacsonyabb PA részben ellensúlyoz."
#~ msgid "Filament Sync Options"
#~ msgstr "Filament szinkronizálási opciók"
#~ msgid "(Experimental) Keep painted feature after mesh change"
#~ msgstr "(Kísérleti) A festett jellemző megtartása hálócsere után"
#~ msgid "Network plug-in"
#~ msgstr "Hálózati bővítmény"
#~ msgid "View control settings"
#~ msgstr "Vezérlési beállítások megtekintése"
#~ msgid "Rotate view"
#~ msgstr "Nézet elforgatása"
#~ msgid "Pan view"
#~ msgstr "Pásztázó nézet"
#~ msgid "Zoom view"
#~ msgstr "Nagyítás nézet"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Görgetési irány megfordítása nagyítás közben"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "Bal: %s" #~ msgstr "Bal: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -336,8 +336,9 @@ msgstr "Strumento di ridimensionamento"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "Errore: chiudi prima tutti i menu della barra degli strumenti" msgstr "Errore: chiudi prima tutti i menu della barra degli strumenti"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "in" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -397,27 +398,30 @@ msgstr "Ripristina posizione"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "Reimposta rotazione" msgstr "Reimposta rotazione"
msgid "Object coordinates" msgid "World"
msgstr "Coordinate oggetto" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Coordinate reali" msgstr "Oggetto"
msgid "Translate(Relative)" msgid "Part"
msgstr "Trasla (relativo)" msgstr "Parte"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Reimposta la rotazione corrente al valore di apertura dello strumento." msgstr "Reimposta la rotazione corrente al valore di apertura dello strumento."
msgid "Rotate (absolute)"
msgstr "Ruota (assoluto)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "Reimposta la rotazione corrente a zero reale." msgstr "Reimposta la rotazione corrente a zero reale."
msgid "Part coordinates"
msgstr "Coordinate della parte"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Dimensioni" msgstr "Dimensioni"
@@ -521,12 +525,6 @@ msgstr ""
msgid "Spacing" msgid "Spacing"
msgstr "Spaziatura" msgstr "Spaziatura"
msgid "Part"
msgstr "Parte"
msgid "Object"
msgstr "Oggetto"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1869,23 +1867,30 @@ msgstr "Apri progetto"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "La versione di OrcaSlicer è obsoleta. Devi aggiornarla all'ultima versione prima di poter utilizzare normalmente il programma." msgstr "La versione di OrcaSlicer è obsoleta. Devi aggiornarla all'ultima versione prima di poter utilizzare normalmente il programma."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1894,6 +1899,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1973,8 +1984,9 @@ msgstr "Il numero di profili utente memorizzati nel cloud ha superato il limite
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Sincronizza profili utente" msgstr "Sincronizza profili utente"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgstr "Il contenuto del profilo è troppo grande per essere sincronizzato con il cloud (supera 1 MB). Si prega di ridurre le dimensioni del profilo rimuovendo le configurazioni personalizzate oppure utilizzarlo solo in locale." msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "%s updated from %s to %s" msgid "%s updated from %s to %s"
@@ -2195,6 +2207,9 @@ msgstr "Cubo di Orca"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Test di tolleranza di OrcaSlicer" msgstr "Test di tolleranza di OrcaSlicer"
@@ -5258,6 +5273,9 @@ msgstr "Sporgenze"
msgid "Outline" msgid "Outline"
msgstr "Contorno" msgstr "Contorno"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7893,6 +7911,50 @@ msgstr "Scegli la cartella per gli elementi scaricati"
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "Scegliere la directory di download" msgstr "Scegliere la directory di download"
msgid "(Latest)"
msgstr "(Ultima)"
msgid "Network plug-in switched successfully."
msgstr "Modulo di rete cambiato con successo."
msgid "Success"
msgstr "Successo"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Impossibile caricare il modulo di rete. Riavviare l'applicazione."
#, c-format, boost-format
msgid ""
"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 ""
"Hai selezionato la versione %s del modulo di rete.\n"
"\n"
"Vuoi scaricare e installare questa versione ora?\n"
"\n"
"Nota: potrebbe essere necessario riavviare l'applicazione dopo l'installazione."
msgid "Download Network Plug-in"
msgstr "Scarica modulo di rete"
msgid "Reload the network plug-in without restarting the application"
msgstr "Ricarica il modulo di rete senza riavviare l'applicazione"
msgid "Network plug-in reloaded successfully."
msgstr "Modulo di rete ricaricato con successo."
msgid "Reload"
msgstr "Ricarica"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Impossibile ricaricare il modulo di rete. Riavviare l'applicazione."
msgid "Reload Failed"
msgstr "Ricaricamento fallito"
msgid "Associate" msgid "Associate"
msgstr "Associa" msgstr "Associa"
@@ -7948,12 +8010,6 @@ msgstr "Mostra schermata iniziale"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Mostra la schermata iniziale durante l'avvio." msgstr "Mostra la schermata iniziale durante l'avvio."
msgid "Show shared profiles notification"
msgstr "Mostra notifica profili condivisi"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Quando si cambia la stampante selezionata, viene visualizzata una notifica con un collegamento per esplorare i profili condivisi."
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "Utilizza i pulsanti della finestra sul lato sinistro" msgstr "Utilizza i pulsanti della finestra sul lato sinistro"
@@ -7984,6 +8040,13 @@ msgstr "Comportamento di caricamento"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Quando si apre un file 3MF, è necessario caricare le impostazioni della stampante/filamento/processo?" msgstr "Quando si apre un file 3MF, è necessario caricare le impostazioni della stampante/filamento/processo?"
msgid "Auto backup"
msgstr "Backup automatico"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Esegui periodicamente una copia di sicurezza del tuo progetto per facilitarne il ripristino dopo un arresto anomalo."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "Numero massimo file recenti" msgstr "Numero massimo file recenti"
@@ -8002,12 +8065,55 @@ msgstr "Mostra opzioni durante l'importazione di file STEP"
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Se abilitato, una finestra di dialogo per le impostazioni dei parametri apparirà durante l'importazione di file STEP." msgstr "Se abilitato, una finestra di dialogo per le impostazioni dei parametri apparirà durante l'importazione di file STEP."
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "Backup automatico" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "Esegui periodicamente una copia di sicurezza del tuo progetto per facilitarne il ripristino dopo un arresto anomalo." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Livello di qualità per l'esportazione Draco"
msgid "bits"
msgstr "bit"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Controlla la profondità di bit della quantizzazione utilizzata durante la compressione della mesh in formato Draco.\n"
"0 = compressione senza perdita (la geometria viene preservata a piena precisione). I valori con perdita validi vanno da 8 a 30.\n"
"Valori più bassi producono file più piccoli ma perdono più dettagli geometrici; valori più alti preservano più dettagli a costo di file più grandi."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Profilo" msgstr "Profilo"
@@ -8039,6 +8145,12 @@ msgstr "filamenti"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Ottimizza l'altezza massima dell'area filamenti in base al numero di filamenti selezionato." msgstr "Ottimizza l'altezza massima dell'area filamenti in base al numero di filamenti selezionato."
msgid "Show shared profiles notification"
msgstr "Mostra notifica profili condivisi"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Quando si cambia la stampante selezionata, viene visualizzata una notifica con un collegamento per esplorare i profili condivisi."
msgid "Features" msgid "Features"
msgstr "Funzionalità" msgstr "Funzionalità"
@@ -8051,21 +8163,6 @@ msgstr "Abilitando questa opzione, puoi inviare un'attività a più dispositivi
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "Popup per selezionare la modalità di raggruppamento filamenti" msgstr "Popup per selezionare la modalità di raggruppamento filamenti"
msgid "Quality level for Draco export"
msgstr "Livello di qualità per l'esportazione Draco"
msgid "bits"
msgstr "bit"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Controlla la profondità di bit della quantizzazione utilizzata durante la compressione della mesh in formato Draco.\n"
"0 = compressione senza perdita (la geometria viene preservata a piena precisione). I valori con perdita validi vanno da 8 a 30.\n"
"Valori più bassi producono file più piccoli ma perdono più dettagli geometrici; valori più alti preservano più dettagli a costo di file più grandi."
msgid "Behaviour" msgid "Behaviour"
msgstr "Comportamento" msgstr "Comportamento"
@@ -8293,19 +8390,6 @@ msgstr "Verifica solo la disponibilità di aggiornamenti stabili"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Sincronizzazione automatica profili utente (stampante/filamento/processo)" msgstr "Sincronizzazione automatica profili utente (stampante/filamento/processo)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Aggiorna automaticamente i profili."
msgid "Use encrypted file for token storage"
msgstr "Usa file crittografato per l'archiviazione dei token"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Archivia i token di autenticazione in un file crittografato invece del portachiavi di sistema. (Richiede riavvio)"
msgid "Filament Sync Options"
msgstr "Opzioni sincronizzazione filamento"
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "Modalità sincronizzazione filamento" msgstr "Modalità sincronizzazione filamento"
@@ -8318,6 +8402,16 @@ msgstr "Filamento e colore"
msgid "Color only" msgid "Color only"
msgstr "Solo colore" msgstr "Solo colore"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Aggiorna automaticamente i profili."
msgid "Use encrypted file for token storage"
msgstr "Usa file crittografato per l'archiviazione dei token"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Archivia i token di autenticazione in un file crittografato invece del portachiavi di sistema. (Richiede riavvio)"
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8330,35 +8424,6 @@ msgstr "Versione modulo di rete"
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "Seleziona la versione del modulo di rete da utilizzare" msgstr "Seleziona la versione del modulo di rete da utilizzare"
msgid "(Latest)"
msgstr "(Ultima)"
msgid "Network plug-in switched successfully."
msgstr "Modulo di rete cambiato con successo."
msgid "Success"
msgstr "Successo"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Impossibile caricare il modulo di rete. Riavviare l'applicazione."
#, c-format, boost-format
msgid ""
"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 ""
"Hai selezionato la versione %s del modulo di rete.\n"
"\n"
"Vuoi scaricare e installare questa versione ora?\n"
"\n"
"Nota: potrebbe essere necessario riavviare l'applicazione dopo l'installazione."
msgid "Download Network Plug-in"
msgstr "Scarica modulo di rete"
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Associa i file ad OrcaSlicer" msgstr "Associa i file ad OrcaSlicer"
@@ -8404,7 +8469,16 @@ msgstr "Sviluppatore"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "Salta il controllo della lista nera dell'AMS" msgstr "Salta il controllo della lista nera dell'AMS"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8412,12 +8486,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "Consenti memoria anomala" msgstr "Consenti memoria anomala"
@@ -8446,24 +8514,6 @@ msgstr ""
msgid "trace" msgid "trace"
msgstr "traccia" msgstr "traccia"
msgid "Network plug-in"
msgstr "Modulo di rete"
msgid "Reload"
msgstr "Ricarica"
msgid "Reload the network plug-in without restarting the application"
msgstr "Ricarica il modulo di rete senza riavviare l'applicazione"
msgid "Network plug-in reloaded successfully."
msgstr "Modulo di rete ricaricato con successo."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Impossibile ricaricare il modulo di rete. Riavviare l'applicazione."
msgid "Reload Failed"
msgstr "Ricaricamento fallito"
msgid "Debug" msgid "Debug"
msgstr "" msgstr ""
@@ -8479,25 +8529,6 @@ msgstr "Sincronizzazione profili"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Sincronizzazione preferenze" msgstr "Sincronizzazione preferenze"
msgid "View control settings"
msgstr "Visualizza impostazioni di controllo"
msgid "Rotate view"
msgstr "Ruota vista"
msgid "Pan view"
msgstr "Vista panoramica"
msgid "Zoom view"
msgstr "Ingrandimento vista"
msgid "Other"
msgstr "Altro"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Lo zoom tramitie rotellina del mouse è invertito"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "Abilita SSL (MQTT)" msgstr "Abilita SSL (MQTT)"
@@ -12420,6 +12451,18 @@ msgstr "Soglia perimetri piccoli"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Imposta la soglia per la lunghezza dei perimetri piccoli. La soglia predefinita è 0 mm." msgstr "Imposta la soglia per la lunghezza dei perimetri piccoli. La soglia predefinita è 0 mm."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "Ordine stampa pareti" msgstr "Ordine stampa pareti"
@@ -12608,25 +12651,26 @@ msgstr ""
"2. Prendi nota del valore AP ottimale per ogni portata volumetrica e accelerazione. Puoi trovare il numero relativo alla portata volumetrica dal menu a discesa dello schema di colori e spostando il cursore orizzontale sulle linee del modello AP. Il numero dovrebbe essere visibile nella parte inferiore della pagina. Il valore AP ideale dovrebbe decrescere all'aumentare della portata volumetrica. In caso contrario, verifica che l'estrusore funzioni correttamente. Più lentamente e con meno accelerazione stampi, più ampio è l'intervallo di valori AP accettabili. Se non è visibile alcuna differenza, usa il valore AP dal test più veloce\n" "2. Prendi nota del valore AP ottimale per ogni portata volumetrica e accelerazione. Puoi trovare il numero relativo alla portata volumetrica dal menu a discesa dello schema di colori e spostando il cursore orizzontale sulle linee del modello AP. Il numero dovrebbe essere visibile nella parte inferiore della pagina. Il valore AP ideale dovrebbe decrescere all'aumentare della portata volumetrica. In caso contrario, verifica che l'estrusore funzioni correttamente. Più lentamente e con meno accelerazione 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." "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."
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
msgid "Pressure advance for bridges" msgid ""
msgstr "Anticipo di pressione per ponti" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"Valore di anticipo di pressione per i ponti. Impostare su 0 per disabilitare.\n"
"\n"
"Un valore AP più basso durante la stampa di ponti aiuta a ridurre la comparsa di una leggera sottoestrusione subito dopo l'estrusione dei ponti. Ciò è causato dalla caduta di pressione nell'ugello durante la stampa in aria e un anticipo di pressione più basso aiuta a contrastarla."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Larghezza di linea predefinita se le altre larghezze di linea sono impostate su 0. Se espresso come una %, verrà calcolato sul diametro del ugello." msgstr "Larghezza di linea predefinita se le altre larghezze di linea sono impostate su 0. Se espresso come una %, verrà calcolato sul diametro del ugello."
@@ -13009,6 +13053,22 @@ msgstr "Direzione riempimento solido"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Angolo per il motivo del riempimento solido, che controlla l'inizio o la direzione principale delle linee." msgstr "Angolo per il motivo del riempimento solido, che controlla l'inizio o la direzione principale delle linee."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Densità riempimento sparso" msgstr "Densità riempimento sparso"
@@ -13224,6 +13284,17 @@ msgstr "La velocità della ventola aumenterà in modo lineare da zero nello stra
msgid "layer" msgid "layer"
msgstr "strato" msgstr "strato"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Velocità ventola interfaccia di supporto" msgstr "Velocità ventola interfaccia di supporto"
@@ -15152,6 +15223,9 @@ msgstr "Le fessure più piccole di 2 volte il raggio di chiusura degli spazi vuo
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Modalità elaborazione" msgstr "Modalità elaborazione"
msgid "Other"
msgstr "Altro"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Usa \"Pari-dispari\" per modelli di aeroplano 3DLabPrint. Utilizza \"Chiudi fori\" per chiudere tutti i fori del modello." msgstr "Usa \"Pari-dispari\" per modelli di aeroplano 3DLabPrint. Utilizza \"Chiudi fori\" per chiudere tutti i fori del modello."
@@ -15832,6 +15906,14 @@ msgstr "Torsione poliforo"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "Ruota il poliforo in ogni strato." msgstr "Ruota il poliforo in ogni strato."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "Miniature G-code" msgstr "Miniature G-code"
@@ -18227,6 +18309,132 @@ msgstr "Accesso/Test"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "Connessione alle stampanti collegate tramite l'host di stampa non riuscita." msgstr "Connessione alle stampanti collegate tramite l'host di stampa non riuscita."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -18309,6 +18517,19 @@ msgstr "La connessione a MKS funziona correttamente."
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "Impossibile connettersi a MKS" msgstr "Impossibile connettersi a MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "La connessione con OctoPrint funziona correttamente." msgstr "La connessione con OctoPrint funziona correttamente."
@@ -19060,6 +19281,12 @@ msgstr "Numero di facce triangolari"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "Calcolo in corso, attendere..." msgstr "Calcolo in corso, attendere..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -19465,6 +19692,64 @@ msgstr ""
"Evita le deformazioni\n" "Evita le deformazioni\n"
"Sapevi che quando si stampano materiali soggetti a deformazioni come l'ABS, aumentare in modo appropriato la temperatura del piano riscaldato può ridurre la probabilità di deformazione?" "Sapevi che quando si stampano materiali soggetti a deformazioni come l'ABS, aumentare in modo appropriato la temperatura del piano riscaldato può ridurre la probabilità di deformazione?"
#~ msgid "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Coordinate oggetto"
#~ msgid "World coordinates"
#~ msgstr "Coordinate reali"
#~ msgid "Translate(Relative)"
#~ msgstr "Trasla (relativo)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Ruota (assoluto)"
#~ msgid "Part coordinates"
#~ msgstr "Coordinate della parte"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "Il contenuto del profilo è troppo grande per essere sincronizzato con il cloud (supera 1 MB). Si prega di ridurre le dimensioni del profilo rimuovendo le configurazioni personalizzate oppure utilizzarlo solo in locale."
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Anticipo di pressione per ponti"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Valore di anticipo di pressione per i ponti. Impostare su 0 per disabilitare.\n"
#~ "\n"
#~ "Un valore AP più basso durante la stampa di ponti aiuta a ridurre la comparsa di una leggera sottoestrusione subito dopo l'estrusione dei ponti. Ciò è causato dalla caduta di pressione nell'ugello durante la stampa in aria e un anticipo di pressione più basso aiuta a contrastarla."
#~ msgid "Filament Sync Options"
#~ msgstr "Opzioni sincronizzazione filamento"
#~ msgid "Network plug-in"
#~ msgstr "Modulo di rete"
#~ msgid "View control settings"
#~ msgstr "Visualizza impostazioni di controllo"
#~ msgid "Rotate view"
#~ msgstr "Ruota vista"
#~ msgid "Pan view"
#~ msgstr "Vista panoramica"
#~ msgid "Zoom view"
#~ msgstr "Ingrandimento vista"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Lo zoom tramitie rotellina del mouse è invertito"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "Sinistra: %s" #~ msgstr "Sinistra: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -336,8 +336,9 @@ msgstr "ギズモ-縮尺"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "エラー: ツールバーを閉じてください" msgstr "エラー: ツールバーを閉じてください"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -397,27 +398,30 @@ msgstr "位置をリセット"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "回転をリセット" msgstr "回転をリセット"
msgid "Object coordinates" msgid "World"
msgstr "オブジェクト座標" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "空間座標" msgstr "OBJ"
msgid "Translate(Relative)" msgid "Part"
msgstr "移動(相対)" msgstr "パーツ"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "回転ツールを開いた時の値にリセットします。" msgstr "回転ツールを開いた時の値にリセットします。"
msgid "Rotate (absolute)"
msgstr "回転(絶対)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "現在の回転を0にリセットします。" msgstr "現在の回転を0にリセットします。"
msgid "Part coordinates"
msgstr "パーツ座標"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "サイズ" msgstr "サイズ"
@@ -521,12 +525,6 @@ msgstr "ギャップ"
msgid "Spacing" msgid "Spacing"
msgstr "間隔" msgstr "間隔"
msgid "Part"
msgstr "パーツ"
msgid "Object"
msgstr "OBJ"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1868,23 +1866,30 @@ msgstr "プロジェクトを開く"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "現在のOrca Slicerはバージョンが古いため使用できません、アップデートしてください。" msgstr "現在のOrca Slicerはバージョンが古いため使用できません、アップデートしてください。"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1893,6 +1898,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1967,7 +1978,8 @@ msgstr "クラウドにキャッシュされたユーザープリセット数が
msgid "Sync user presets" msgid "Sync user presets"
msgstr "ユーザープリセットを同期" msgstr "ユーザープリセットを同期"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2189,6 +2201,9 @@ msgstr ""
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Orca公差テスト" msgstr "Orca公差テスト"
@@ -5231,6 +5246,9 @@ msgstr "オーバーハング"
msgid "Outline" msgid "Outline"
msgstr "アウトライン" msgstr "アウトライン"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7851,6 +7869,50 @@ msgstr "ダウンロードアイテムのフォルダを選択"
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "ダウンロードフォルドを選択" msgstr "ダウンロードフォルドを選択"
msgid "(Latest)"
msgstr "(最新)"
msgid "Network plug-in switched successfully."
msgstr "ネットワークプラグインの切り替えに成功しました。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "ネットワークプラグインの読み込みに失敗しました。アプリケーションを再起動してください。"
#, c-format, boost-format
msgid ""
"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 ""
"ネットワークプラグインバージョン%sを選択しました。\n"
"\n"
"このバージョンをダウンロードしてインストールしますか?\n"
"\n"
"注意: インストール後にアプリケーションの再起動が必要な場合があります。"
msgid "Download Network Plug-in"
msgstr "ネットワークプラグインをダウンロード"
msgid "Reload the network plug-in without restarting the application"
msgstr "アプリケーションを再起動せずにネットワークプラグインを再読み込みします"
msgid "Network plug-in reloaded successfully."
msgstr "ネットワークプラグインの再読み込みに成功しました。"
msgid "Reload"
msgstr "再読み込み"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "ネットワークプラグインの再読み込みに失敗しました。アプリケーションを再起動してください。"
msgid "Reload Failed"
msgstr "再読み込み失敗"
msgid "Associate" msgid "Associate"
msgstr "関連付け" msgstr "関連付け"
@@ -7906,12 +7968,6 @@ msgstr "スプラッシュ画面を表示する"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "起動時にスプラッシュスクリーンを表示します。" msgstr "起動時にスプラッシュスクリーンを表示します。"
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -7942,6 +7998,13 @@ msgstr "ロード動作"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "3MFファイルを開く時にプリンター/フィラメント/プロセス設定をロードしますか?" msgstr "3MFファイルを開く時にプリンター/フィラメント/プロセス設定をロードしますか?"
msgid "Auto backup"
msgstr "自動バックアップ"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "定期的にプロジェクトをバックアップして、クラッシュからの復元に備えます。"
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "最大最近のファイル数" msgstr "最大最近のファイル数"
@@ -7960,12 +8023,55 @@ msgstr "STEPファイルインポート時にオプションを表示"
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "有効にすると、STEPファイルインポート時にパラメータ設定ダイアログが表示されます。" msgstr "有効にすると、STEPファイルインポート時にパラメータ設定ダイアログが表示されます。"
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "自動バックアップ" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "定期的にプロジェクトをバックアップして、クラッシュからの復元に備えます。" "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Dracoエクスポートの品質レベル"
msgid "bits"
msgstr "ビット"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"メッシュをDraco形式に圧縮する際の量子化ビット深度を制御します。\n"
"0 = 可逆圧縮ジオメトリは完全な精度で保持されます。有効な非可逆値の範囲は8〜30です。\n"
"低い値はファイルサイズが小さくなりますがジオメトリの詳細が失われます。高い値はファイルサイズが大きくなりますがより多くの詳細が保持されます。"
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "プリセット" msgstr "プリセット"
@@ -7997,6 +8103,12 @@ msgstr "フィラメント"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "選択したフィラメント数に応じてフィラメントエリアの最大高さを最適化します。" msgstr "選択したフィラメント数に応じてフィラメントエリアの最大高さを最適化します。"
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "機能" msgstr "機能"
@@ -8009,21 +8121,6 @@ msgstr "このオプションを有効にすると、複数のデバイスに同
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "フィラメントグルーピングモード選択のポップアップ" msgstr "フィラメントグルーピングモード選択のポップアップ"
msgid "Quality level for Draco export"
msgstr "Dracoエクスポートの品質レベル"
msgid "bits"
msgstr "ビット"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"メッシュをDraco形式に圧縮する際の量子化ビット深度を制御します。\n"
"0 = 可逆圧縮ジオメトリは完全な精度で保持されます。有効な非可逆値の範囲は8〜30です。\n"
"低い値はファイルサイズが小さくなりますがジオメトリの詳細が失われます。高い値はファイルサイズが大きくなりますがより多くの詳細が保持されます。"
msgid "Behaviour" msgid "Behaviour"
msgstr "動作" msgstr "動作"
@@ -8251,19 +8348,6 @@ msgstr "安定版アップデートのみ確認"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "ユーザープリセットの自動同期 (プリンター/フィラメント/プロセス)" msgstr "ユーザープリセットの自動同期 (プリンター/フィラメント/プロセス)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "組み込みプリセットを自動更新します。"
msgid "Use encrypted file for token storage"
msgstr "トークン保存に暗号化ファイルを使用"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "認証トークンをシステムキーチェーンの代わりに暗号化ファイルに保存します。(再起動が必要)"
msgid "Filament Sync Options"
msgstr "フィラメント同期オプション"
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "フィラメント同期モード" msgstr "フィラメント同期モード"
@@ -8276,6 +8360,16 @@ msgstr "フィラメントと色"
msgid "Color only" msgid "Color only"
msgstr "色のみ" msgstr "色のみ"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "組み込みプリセットを自動更新します。"
msgid "Use encrypted file for token storage"
msgstr "トークン保存に暗号化ファイルを使用"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "認証トークンをシステムキーチェーンの代わりに暗号化ファイルに保存します。(再起動が必要)"
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8288,35 +8382,6 @@ msgstr "ネットワークプラグインのバージョン"
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "使用するネットワークプラグインのバージョンを選択" msgstr "使用するネットワークプラグインのバージョンを選択"
msgid "(Latest)"
msgstr "(最新)"
msgid "Network plug-in switched successfully."
msgstr "ネットワークプラグインの切り替えに成功しました。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "ネットワークプラグインの読み込みに失敗しました。アプリケーションを再起動してください。"
#, c-format, boost-format
msgid ""
"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 ""
"ネットワークプラグインバージョン%sを選択しました。\n"
"\n"
"このバージョンをダウンロードしてインストールしますか?\n"
"\n"
"注意: インストール後にアプリケーションの再起動が必要な場合があります。"
msgid "Download Network Plug-in"
msgstr "ネットワークプラグインをダウンロード"
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "ファイルをOrca Slicerに関連付ける" msgstr "ファイルをOrca Slicerに関連付ける"
@@ -8365,7 +8430,16 @@ msgstr "開発者"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "AMSブラックリストチェックをスキップ" msgstr "AMSブラックリストチェックをスキップ"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8373,12 +8447,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "異常なストレージを許可" msgstr "異常なストレージを許可"
@@ -8407,24 +8475,6 @@ msgstr "デバッグ"
msgid "trace" msgid "trace"
msgstr "トレース" msgstr "トレース"
msgid "Network plug-in"
msgstr "ネットワークプラグイン"
msgid "Reload"
msgstr "再読み込み"
msgid "Reload the network plug-in without restarting the application"
msgstr "アプリケーションを再起動せずにネットワークプラグインを再読み込みします"
msgid "Network plug-in reloaded successfully."
msgstr "ネットワークプラグインの再読み込みに成功しました。"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "ネットワークプラグインの再読み込みに失敗しました。アプリケーションを再起動してください。"
msgid "Reload Failed"
msgstr "再読み込み失敗"
msgid "Debug" msgid "Debug"
msgstr "デバッグ" msgstr "デバッグ"
@@ -8440,25 +8490,6 @@ msgstr "プリセット同期"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "設定を同期" msgstr "設定を同期"
msgid "View control settings"
msgstr "表示設定"
msgid "Rotate view"
msgstr "回転"
msgid "Pan view"
msgstr "移動"
msgid "Zoom view"
msgstr "ズーム"
msgid "Other"
msgstr "その他"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "ズーム中にスクロール方向を反転させる"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "SSL(MQTT)を有効にする" msgstr "SSL(MQTT)を有効にする"
@@ -12223,6 +12254,18 @@ msgstr "小さな外周のしきい値"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "" msgstr ""
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "壁の印刷順序" msgstr "壁の印刷順序"
@@ -12378,21 +12421,25 @@ msgid ""
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile." "3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
msgstr "" msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr ""
msgid "Pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
@@ -12767,6 +12814,22 @@ msgstr ""
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "" msgstr ""
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "充填密度" msgstr "充填密度"
@@ -12980,6 +13043,17 @@ msgstr ""
msgid "layer" msgid "layer"
msgstr "" msgstr ""
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "" msgstr ""
@@ -14779,6 +14853,9 @@ msgstr ""
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "スライシングモード" msgstr "スライシングモード"
msgid "Other"
msgstr "その他"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "" msgstr ""
@@ -15418,6 +15495,14 @@ msgstr ""
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "" msgstr ""
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "Gコードのサムネイル" msgstr "Gコードのサムネイル"
@@ -17715,6 +17800,132 @@ msgstr "ログイン/テスト"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "印刷ホスト経由のプリンターへの接続に失敗しました。" msgstr "印刷ホスト経由のプリンターへの接続に失敗しました。"
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -17797,6 +18008,19 @@ msgstr "MKSへの接続は正常に動作しています。"
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "MKSに接続できませんでした" msgstr "MKSに接続できませんでした"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "OctoPrintへの接続は正常に動作しています。" msgstr "OctoPrintへの接続は正常に動作しています。"
@@ -18548,6 +18772,12 @@ msgstr "三角面の数"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "計算中、お待ちください..." msgstr "計算中、お待ちください..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -18930,6 +19160,46 @@ msgstr ""
"反りを避ける\n" "反りを避ける\n"
"ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げることで、反りが発生する確率を下げることができることをご存知ですか" "ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げることで、反りが発生する確率を下げることができることをご存知ですか"
#~ msgid "in"
#~ msgstr "に"
#~ msgid "Object coordinates"
#~ msgstr "オブジェクト座標"
#~ msgid "World coordinates"
#~ msgstr "空間座標"
#~ msgid "Translate(Relative)"
#~ msgstr "移動(相対)"
#~ msgid "Rotate (absolute)"
#~ msgstr "回転(絶対)"
#~ msgid "Part coordinates"
#~ msgstr "パーツ座標"
#~ msgid "Filament Sync Options"
#~ msgstr "フィラメント同期オプション"
#~ msgid "Network plug-in"
#~ msgstr "ネットワークプラグイン"
#~ msgid "View control settings"
#~ msgstr "表示設定"
#~ msgid "Rotate view"
#~ msgstr "回転"
#~ msgid "Pan view"
#~ msgstr "移動"
#~ msgid "Zoom view"
#~ msgstr "ズーム"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "ズーム中にスクロール方向を反転させる"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "左: %s" #~ msgstr "左: %s"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: 2025-06-02 17:12+0900\n" "PO-Revision-Date: 2025-06-02 17:12+0900\n"
"Last-Translator: crwusiz <crwusiz@gmail.com>\n" "Last-Translator: crwusiz <crwusiz@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -340,8 +340,9 @@ msgstr "변형도구 - 배율"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "오류: 먼저 모든 도구 모음 메뉴를 닫으십시오." msgstr "오류: 먼저 모든 도구 모음 메뉴를 닫으십시오."
msgctxt "inches"
msgid "in" msgid "in"
msgstr "인치" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -401,27 +402,30 @@ msgstr "위치 초기화"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "회전 재설정" msgstr "회전 재설정"
msgid "Object coordinates" msgid "World"
msgstr "객체 좌표" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "영역 좌표" msgstr "객체"
msgid "Translate(Relative)" msgid "Part"
msgstr "이동(상대)" msgstr "부품"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "회전 도구를 열었을 때의 값으로 현재 회전을 초기화합니다." msgstr "회전 도구를 열었을 때의 값으로 현재 회전을 초기화합니다."
msgid "Rotate (absolute)"
msgstr "회전 (절대)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "현재 회전을 0으로 초기화합니다." msgstr "현재 회전을 0으로 초기화합니다."
msgid "Part coordinates"
msgstr "파트 좌표"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "크기" msgstr "크기"
@@ -525,12 +529,6 @@ msgstr "간격"
msgid "Spacing" msgid "Spacing"
msgstr "간격" msgstr "간격"
msgid "Part"
msgstr "부품"
msgid "Object"
msgstr "객체"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1874,23 +1872,30 @@ msgstr "프로젝트 열기"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Orca Slicer의 버전이 너무 낮아 최신 버전으로 업데이트해야 정상적으로 사용 가능합니다" msgstr "Orca Slicer의 버전이 너무 낮아 최신 버전으로 업데이트해야 정상적으로 사용 가능합니다"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1899,6 +1904,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1973,7 +1984,8 @@ msgstr "클라우드에 캐시된 사용자 사전 설정 수가 상한을 초
msgid "Sync user presets" msgid "Sync user presets"
msgstr "사용자 사전 설정 동기화" msgstr "사용자 사전 설정 동기화"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2196,6 +2208,9 @@ msgstr "Orca 큐브"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Orca 공차 테스트" msgstr "Orca 공차 테스트"
@@ -5257,6 +5272,9 @@ msgstr "오버행"
msgid "Outline" msgid "Outline"
msgstr "외곽선" msgstr "외곽선"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7883,6 +7901,45 @@ msgstr ""
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "다운로드 폴더 선택" msgstr "다운로드 폴더 선택"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate" msgid "Associate"
msgstr "링크" msgstr "링크"
@@ -7938,12 +7995,6 @@ msgstr "시작 화면 표시"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "시작 화면을 표시합니다." msgstr "시작 화면을 표시합니다."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -7974,6 +8025,13 @@ msgstr "행동 로드"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr ".3mf를 열 때 프린터/필라멘트/프로세스 설정이 로드되어야 합니까?" msgstr ".3mf를 열 때 프린터/필라멘트/프로세스 설정이 로드되어야 합니까?"
msgid "Auto backup"
msgstr "자동 백업"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "간헐적인 충돌로부터 복원하기 위해 주기적으로 프로젝트를 백업하세요."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "" msgstr ""
@@ -7992,12 +8050,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "" msgstr ""
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "자동 백업" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "간헐적인 충돌로부터 복원하기 위해 주기적으로 프로젝트를 백업하세요." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "사전 설정" msgstr "사전 설정"
@@ -8029,6 +8127,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "" msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "" msgstr ""
@@ -8041,18 +8145,6 @@ msgstr "활성화하면 여러 장치에 동시에 작업을 보내고 여러
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "필라멘트 그룹화 모드를 선택하기 위한 팝업" msgstr "필라멘트 그룹화 모드를 선택하기 위한 팝업"
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour" msgid "Behaviour"
msgstr "" msgstr ""
@@ -8280,19 +8372,6 @@ msgstr "안정적인 업데이트만 확인"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "사용자 사전 설정 자동 동기화(프린터/필라멘트/프로세스)" msgstr "사용자 사전 설정 자동 동기화(프린터/필라멘트/프로세스)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "기본 제공 사전 설정을 자동으로 업데이트합니다."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "" msgstr ""
@@ -8305,6 +8384,16 @@ msgstr ""
msgid "Color only" msgid "Color only"
msgstr "" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "기본 제공 사전 설정을 자동으로 업데이트합니다."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8317,30 +8406,6 @@ msgstr ""
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "" msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "파일을 OrcaSlicer에 연결" msgstr "파일을 OrcaSlicer에 연결"
@@ -8389,7 +8454,16 @@ msgstr ""
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "AMS 블랙리스트 확인 건너뛰기" msgstr "AMS 블랙리스트 확인 건너뛰기"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8397,12 +8471,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "" msgstr ""
@@ -8429,24 +8497,6 @@ msgstr "디버그"
msgid "trace" msgid "trace"
msgstr "추적" msgstr "추적"
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug" msgid "Debug"
msgstr "" msgstr ""
@@ -8462,25 +8512,6 @@ msgstr "사전 설정 동기화"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "기본 설정 동기화" msgstr "기본 설정 동기화"
msgid "View control settings"
msgstr "시점 컨트롤 설정"
msgid "Rotate view"
msgstr "시점 회전"
msgid "Pan view"
msgstr "시점 이동"
msgid "Zoom view"
msgstr "시점 확대/축소"
msgid "Other"
msgstr "기타"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "확대/축소 시 마우스 휠이 반전됩니다"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "SSL(MQTT) 활성화" msgstr "SSL(MQTT) 활성화"
@@ -12346,6 +12377,18 @@ msgstr "작은 둘레 임계값"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "작은 둘레 길이에 대한 임계값을 설정합니다. 기본 임계값은 0mm입니다" msgstr "작은 둘레 길이에 대한 임계값을 설정합니다. 기본 임계값은 0mm입니다"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "벽 출력 순서" msgstr "벽 출력 순서"
@@ -12530,25 +12573,26 @@ msgstr ""
"2. 각 압출 유속 및 가속도에 대한 최적의 PA 값을 기록해 두십시오. 색상 구성표 드롭다운에서 흐름을 선택하고 PA 패턴 라인 위로 수평 슬라이더를 이동하여 흐름 번호를 찾을 수 있습니다. 페이지 하단에 번호가 표시되어야 합니다. 이상적인 PA 값은 압출 압출량이 높을수록 감소해야 합니다. 그렇지 않은 경우 압출기가 올바르게 작동하는지 확인하십시오. 출력 속도가 느리고 가속도가 낮을수록 허용되는 PA 값의 범위는 더 커집니다. 차이가 보이지 않으면 더 빠른 테스트의 PA 값을 사용하십시오.\n" "2. 각 압출 유속 및 가속도에 대한 최적의 PA 값을 기록해 두십시오. 색상 구성표 드롭다운에서 흐름을 선택하고 PA 패턴 라인 위로 수평 슬라이더를 이동하여 흐름 번호를 찾을 수 있습니다. 페이지 하단에 번호가 표시되어야 합니다. 이상적인 PA 값은 압출 압출량이 높을수록 감소해야 합니다. 그렇지 않은 경우 압출기가 올바르게 작동하는지 확인하십시오. 출력 속도가 느리고 가속도가 낮을수록 허용되는 PA 값의 범위는 더 커집니다. 차이가 보이지 않으면 더 빠른 테스트의 PA 값을 사용하십시오.\n"
"3. 여기 텍스트 상자에 PA 값, 흐름 및 가속도의 세 가지 값을 입력하고 필라멘트 프로필을 저장하세요." "3. 여기 텍스트 상자에 PA 값, 흐름 및 가속도의 세 가지 값을 입력하고 필라멘트 프로필을 저장하세요."
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "오버행에 대한 적응형 PA 활성화(베타)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
msgid "Pressure advance for bridges" msgid ""
msgstr "브릿지를 위한 PA" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"브릿지의 PA 값입니다. 비활성화하려면 0으로 설정합니다.\n"
"\n"
" 브릿지를 프린팅할 때 PA 값이 낮으면 브릿지 직후에 약간의 언더 압출이 나타나는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 출력할 때 노즐의 압력 강하로 인해 발생하며 PA가 낮을수록 이를 방지하는 데 도움이 됩니다."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "다른 선 너비가 0으로 설정된 경우 기본 선 너비입니다. %로 입력 시 노즐 직경에 대한 비율로 계산됩니다." msgstr "다른 선 너비가 0으로 설정된 경우 기본 선 너비입니다. %로 입력 시 노즐 직경에 대한 비율로 계산됩니다."
@@ -12924,6 +12968,22 @@ msgstr "꽉찬 채우기 방향"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "선의 시작 또는 기본 방향을 제어하는 솔리드 채우기 패턴의 각도" msgstr "선의 시작 또는 기본 방향을 제어하는 솔리드 채우기 패턴의 각도"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "드문 채우기 밀도" msgstr "드문 채우기 밀도"
@@ -13137,6 +13197,17 @@ msgstr "팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_sp
msgid "layer" msgid "layer"
msgstr "레이어" msgstr "레이어"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "서포트 접점 팬 속도" msgstr "서포트 접점 팬 속도"
@@ -15020,6 +15091,9 @@ msgstr "간격 폐쇄 반경의 2배보다 작은 균열은 삼각형 메시 슬
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "슬라이싱 모드" msgstr "슬라이싱 모드"
msgid "Other"
msgstr "기타"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "3DLabPrint 비행기 모델에는 \"짝수-홀수\"를 사용하세요. \"구멍 닫기\"를 사용하여 모델의 모든 구멍을 닫습니다." msgstr "3DLabPrint 비행기 모델에는 \"짝수-홀수\"를 사용하세요. \"구멍 닫기\"를 사용하여 모델의 모든 구멍을 닫습니다."
@@ -15690,6 +15764,14 @@ msgstr "폴리홀 회전"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "레이어마다 폴리홀을 회전시킵니다." msgstr "레이어마다 폴리홀을 회전시킵니다."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "Gcode 미리보기" msgstr "Gcode 미리보기"
@@ -18063,6 +18145,132 @@ msgstr "로그인/테스트"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "출력 호스트를 통해 연결된 프린터에 연결하지 못했습니다." msgstr "출력 호스트를 통해 연결된 프린터에 연결하지 못했습니다."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -18145,6 +18353,19 @@ msgstr "MKS에 대한 연결이 올바르게 작동합니다."
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "MKS에 연결할 수 없습니다" msgstr "MKS에 연결할 수 없습니다"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "OctoPrint에 대한 연결이 올바르게 작동합니다." msgstr "OctoPrint에 대한 연결이 올바르게 작동합니다."
@@ -18896,6 +19117,12 @@ msgstr "삼각형 패싯 수"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "계산 중, 잠시만 기다려주세요..." msgstr "계산 중, 잠시만 기다려주세요..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -19301,6 +19528,55 @@ msgstr ""
"뒤틀림 방지\n" "뒤틀림 방지\n"
"ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?" "ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
#~ msgid "in"
#~ msgstr "인치"
#~ msgid "Object coordinates"
#~ msgstr "객체 좌표"
#~ msgid "World coordinates"
#~ msgstr "영역 좌표"
#~ msgid "Translate(Relative)"
#~ msgstr "이동(상대)"
#~ msgid "Rotate (absolute)"
#~ msgstr "회전 (절대)"
#~ msgid "Part coordinates"
#~ msgstr "파트 좌표"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "오버행에 대한 적응형 PA 활성화(베타)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "브릿지를 위한 PA"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "브릿지의 PA 값입니다. 비활성화하려면 0으로 설정합니다.\n"
#~ "\n"
#~ " 브릿지를 프린팅할 때 PA 값이 낮으면 브릿지 직후에 약간의 언더 압출이 나타나는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 출력할 때 노즐의 압력 강하로 인해 발생하며 PA가 낮을수록 이를 방지하는 데 도움이 됩니다."
#~ msgid "View control settings"
#~ msgstr "시점 컨트롤 설정"
#~ msgid "Rotate view"
#~ msgstr "시점 회전"
#~ msgid "Pan view"
#~ msgstr "시점 이동"
#~ msgid "Zoom view"
#~ msgstr "시점 확대/축소"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "확대/축소 시 마우스 휠이 반전됩니다"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "왼쪽: %s" #~ msgstr "왼쪽: %s"

View File

@@ -227,11 +227,14 @@ src/slic3r/GUI/CreatePresetsDialog.cpp
src/slic3r/GUI/DailyTips.cpp src/slic3r/GUI/DailyTips.cpp
src/slic3r/Utils/CalibUtils.cpp src/slic3r/Utils/CalibUtils.cpp
src/slic3r/GUI/PhysicalPrinterDialog.cpp src/slic3r/GUI/PhysicalPrinterDialog.cpp
src/slic3r/GUI/CrealityDiscoveryDialog.cpp
src/slic3r/GUI/TroubleshootDialog.cpp
src/slic3r/Utils/3DPrinterOS.cpp src/slic3r/Utils/3DPrinterOS.cpp
src/slic3r/Utils/AstroBox.cpp src/slic3r/Utils/AstroBox.cpp
src/slic3r/Utils/Duet.cpp src/slic3r/Utils/Duet.cpp
src/slic3r/Utils/FlashAir.cpp src/slic3r/Utils/FlashAir.cpp
src/slic3r/Utils/MKS.cpp src/slic3r/Utils/MKS.cpp
src/slic3r/Utils/Moonraker.cpp
src/slic3r/Utils/OctoPrint.cpp src/slic3r/Utils/OctoPrint.cpp
src/slic3r/Utils/Repetier.cpp src/slic3r/Utils/Repetier.cpp
src/slic3r/Utils/ProfileDescription.hpp src/slic3r/Utils/ProfileDescription.hpp

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -336,8 +336,9 @@ msgstr "Verschalen"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "Fout: sluit eerst alle openstaande hulpmiddelmenu's" msgstr "Fout: sluit eerst alle openstaande hulpmiddelmenu's"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "in" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -397,27 +398,30 @@ msgstr "Positie herstellen"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "Reset rotatie" msgstr "Reset rotatie"
msgid "Object coordinates" msgid "World"
msgstr "Objectcoördinaten" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Wereldcoördinaten" msgstr "Voorwerp"
msgid "Translate(Relative)" msgid "Part"
msgstr "Onderdeel"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr "" msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "" msgstr ""
msgid "Rotate (absolute)"
msgstr ""
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "" msgstr ""
msgid "Part coordinates"
msgstr ""
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Maat" msgstr "Maat"
@@ -521,12 +525,6 @@ msgstr "Kloof"
msgid "Spacing" msgid "Spacing"
msgstr "Uitlijning" msgstr "Uitlijning"
msgid "Part"
msgstr "Onderdeel"
msgid "Object"
msgstr "Voorwerp"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1852,23 +1850,30 @@ msgstr "Project openen"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "De versie van Orca Slicer is te oud en dient te worden bijgewerkt naar de nieuwste versie voordat deze normaal kan worden gebruikt" msgstr "De versie van Orca Slicer is te oud en dient te worden bijgewerkt naar de nieuwste versie voordat deze normaal kan worden gebruikt"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1877,6 +1882,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1944,7 +1955,8 @@ msgstr "Het aantal gebruikersvoorinstellingen dat in de cloud is opgeslagen, hee
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Synchroniseer gebruikersvoorinstellingen" msgstr "Synchroniseer gebruikersvoorinstellingen"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2166,6 +2178,9 @@ msgstr "Orca-kubus"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "" msgstr ""
@@ -5197,6 +5212,9 @@ msgstr "Overhangen"
msgid "Outline" msgid "Outline"
msgstr "Omtrek" msgstr "Omtrek"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7800,6 +7818,45 @@ msgstr ""
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "Kies Downloadmap" msgstr "Kies Downloadmap"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr "Gelukt"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr "Herladen"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate" msgid "Associate"
msgstr "Associeer" msgstr "Associeer"
@@ -7855,12 +7912,6 @@ msgstr "Toon startscherm"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Toon het opstartscherm tijdens het opstarten." msgstr "Toon het opstartscherm tijdens het opstarten."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -7891,6 +7942,13 @@ msgstr ""
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "" msgstr ""
msgid "Auto backup"
msgstr "Automatisch een back-up maken"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Maak regelmatig een back-up van uw project, zodat u het kunt herstellen na een incidentele crash."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "" msgstr ""
@@ -7909,12 +7967,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "" msgstr ""
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "Automatisch een back-up maken" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "Maak regelmatig een back-up van uw project, zodat u het kunt herstellen na een incidentele crash." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Voorinstelling" msgstr "Voorinstelling"
@@ -7946,6 +8044,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "" msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "Functies" msgstr "Functies"
@@ -7958,18 +8062,6 @@ msgstr ""
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "" msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour" msgid "Behaviour"
msgstr "Gedrag" msgstr "Gedrag"
@@ -8197,19 +8289,6 @@ msgstr "Alleen op stabiele updates controleren"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Gebruikersvoorinstellingen automatisch synchroniseren (printer/filament/proces)" msgstr "Gebruikersvoorinstellingen automatisch synchroniseren (printer/filament/proces)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Ingebouwde voorinstellingen automatisch bijwerken."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "" msgstr ""
@@ -8222,6 +8301,16 @@ msgstr ""
msgid "Color only" msgid "Color only"
msgstr "" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Ingebouwde voorinstellingen automatisch bijwerken."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8234,30 +8323,6 @@ msgstr ""
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "" msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr "Gelukt"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Koppel bestanden aan OrcaSlicer" msgstr "Koppel bestanden aan OrcaSlicer"
@@ -8306,7 +8371,16 @@ msgstr "Ontwikkelaar"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "AMS-zwartelijstcontrole overslaan" msgstr "AMS-zwartelijstcontrole overslaan"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8314,12 +8388,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "" msgstr ""
@@ -8346,24 +8414,6 @@ msgstr ""
msgid "trace" msgid "trace"
msgstr "" msgstr ""
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr "Herladen"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug" msgid "Debug"
msgstr "Foutopsporing" msgstr "Foutopsporing"
@@ -8379,25 +8429,6 @@ msgstr "Voorinstellingen synchronizeren"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Synchroniseer voorkeuren" msgstr "Synchroniseer voorkeuren"
msgid "View control settings"
msgstr "Besturing instellingen weergeven"
msgid "Rotate view"
msgstr ""
msgid "Pan view"
msgstr ""
msgid "Zoom view"
msgstr ""
msgid "Other"
msgstr "Anders"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Omgekeerde scrollrichting tijdens het zoomen"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "" msgstr ""
@@ -12155,6 +12186,18 @@ msgstr ""
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Dit stelt de drempel voor kleine omtreklengte in. De standaarddrempel is 0 mm" msgstr "Dit stelt de drempel voor kleine omtreklengte in. De standaarddrempel is 0 mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "" msgstr ""
@@ -12310,21 +12353,25 @@ msgid ""
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile." "3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
msgstr "" msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr ""
msgid "Pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
@@ -12692,6 +12739,22 @@ msgstr ""
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "" msgstr ""
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Vulling percentage" msgstr "Vulling percentage"
@@ -12905,6 +12968,17 @@ msgstr ""
msgid "layer" msgid "layer"
msgstr "laag" msgstr "laag"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "" msgstr ""
@@ -14705,6 +14779,9 @@ msgstr "Scheuren kleiner dan 2x de sluitradius van de spleet worden opgevuld tij
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Slicing-modus" msgstr "Slicing-modus"
msgid "Other"
msgstr "Anders"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Gebruik „Even-Oneven” voor 3DLabPrint-vliegtuigmodellen. Gebruik „Gaten sluiten” om alle gaten in het model te sluiten." msgstr "Gebruik „Even-Oneven” voor 3DLabPrint-vliegtuigmodellen. Gebruik „Gaten sluiten” om alle gaten in het model te sluiten."
@@ -15346,6 +15423,14 @@ msgstr ""
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "" msgstr ""
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "G-code miniaturen" msgstr "G-code miniaturen"
@@ -17647,6 +17732,132 @@ msgstr "Inloggen/Test"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "Verbinding met printers aangesloten via de printhost mislukt." msgstr "Verbinding met printers aangesloten via de printhost mislukt."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -17729,6 +17940,19 @@ msgstr ""
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "Kan geen verbinding maken met MKS" msgstr "Kan geen verbinding maken met MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "" msgstr ""
@@ -18480,6 +18704,12 @@ msgstr ""
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "" msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -18885,6 +19115,22 @@ msgstr ""
"Kromtrekken voorkomen\n" "Kromtrekken voorkomen\n"
"Wist je dat bij het printen van materialen die gevoelig zijn voor kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het warmtebed de kans op kromtrekken kan verkleinen?" "Wist je dat bij het printen van materialen die gevoelig zijn voor kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het warmtebed de kans op kromtrekken kan verkleinen?"
#~ msgid "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Objectcoördinaten"
#~ msgid "World coordinates"
#~ msgstr "Wereldcoördinaten"
#~ msgid "View control settings"
#~ msgstr "Besturing instellingen weergeven"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Omgekeerde scrollrichting tijdens het zoomen"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "Links: %s" #~ msgstr "Links: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n" "Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n" "Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -338,8 +338,9 @@ msgstr "Uchwyt-Skaluj"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "Błąd: Proszę najpierw zamknąć wszystkie paski narzędziowe" msgstr "Błąd: Proszę najpierw zamknąć wszystkie paski narzędziowe"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "cal" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -399,27 +400,30 @@ msgstr "Zresetuj pozycję"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "Zresetuj obrót" msgstr "Zresetuj obrót"
msgid "Object coordinates" msgid "World"
msgstr "Koordynaty obiektu" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Współrzędne" msgstr "Obiekt"
msgid "Translate(Relative)" msgid "Part"
msgstr "Przesunięcie równoległe (Względne)" msgstr "Część"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Zresetuj bieżący obrót do wartości ustawionej przy otwarciu narzędzia obrotu." msgstr "Zresetuj bieżący obrót do wartości ustawionej przy otwarciu narzędzia obrotu."
msgid "Rotate (absolute)"
msgstr "Obrót (bezwzględny)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "Zresetuj bieżący obrót do wartości zerowej." msgstr "Zresetuj bieżący obrót do wartości zerowej."
msgid "Part coordinates"
msgstr "Koordynaty części"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Rozmiar" msgstr "Rozmiar"
@@ -523,12 +527,6 @@ msgstr "Szczelina"
msgid "Spacing" msgid "Spacing"
msgstr "Rozstaw" msgstr "Rozstaw"
msgid "Part"
msgstr "Część"
msgid "Object"
msgstr "Obiekt"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1875,23 +1873,30 @@ msgstr "Otwórz projekt"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Wersja Orca Slicer jest przestarzała i musi zostać uaktualniona do najnowszej wersji, aby działać normalnie" msgstr "Wersja Orca Slicer jest przestarzała i musi zostać uaktualniona do najnowszej wersji, aby działać normalnie"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1900,6 +1905,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1967,7 +1978,8 @@ msgstr "Liczba zapisanych w chmurze ustawień użytkownika przekroczyła maksyma
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Synchronizuj ustawienia użytkownika" msgstr "Synchronizuj ustawienia użytkownika"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2189,6 +2201,9 @@ msgstr "Sześcian Orca"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Test tolerancji Orca" msgstr "Test tolerancji Orca"
@@ -5254,6 +5269,9 @@ msgstr "Nawisy"
msgid "Outline" msgid "Outline"
msgstr "kontur" msgstr "kontur"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7893,6 +7911,45 @@ msgstr ""
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "Wybierz katalog pobierania" msgstr "Wybierz katalog pobierania"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate" msgid "Associate"
msgstr "Powiązanie" msgstr "Powiązanie"
@@ -7948,12 +8005,6 @@ msgstr "Wyświetlanie ekranu powitalnego"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Wyświetla ekran powitalny podczas uruchamiania." msgstr "Wyświetla ekran powitalny podczas uruchamiania."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -7984,6 +8035,13 @@ msgstr "Zachowanie przy wczytywaniu"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Określa czy ustawienia drukarki/filamentu/procesu mają być wczytywane podczas otwierania pliku .3mf" msgstr "Określa czy ustawienia drukarki/filamentu/procesu mają być wczytywane podczas otwierania pliku .3mf"
msgid "Auto backup"
msgstr "Automatyczne tworzenie kopii zapasowej"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Wykonuje okresowe kopie zapasowe projektu w celu przywracania po sporadycznych awariach."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "" msgstr ""
@@ -8002,12 +8060,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "" msgstr ""
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "Automatyczne tworzenie kopii zapasowej" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "Wykonuje okresowe kopie zapasowe projektu w celu przywracania po sporadycznych awariach." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Profil" msgstr "Profil"
@@ -8039,6 +8137,12 @@ msgstr "filamenty"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "" msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "" msgstr ""
@@ -8051,18 +8155,6 @@ msgstr "Umożliwia wysyłanie zadania do wielu urządzeń jednocześnie i zarzą
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "Okno dialogowe do wyboru trybu grupowania filamentów" msgstr "Okno dialogowe do wyboru trybu grupowania filamentów"
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour" msgid "Behaviour"
msgstr "" msgstr ""
@@ -8290,19 +8382,6 @@ msgstr "Sprawdzanie aktualizacji do stabilnych wersji"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Automatyczne synchronizowanie profili użytkownika (drukarka/filament/proces)" msgstr "Automatyczne synchronizowanie profili użytkownika (drukarka/filament/proces)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Automatyczne uaktualnianie wbudowanych profili"
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "" msgstr ""
@@ -8315,6 +8394,16 @@ msgstr ""
msgid "Color only" msgid "Color only"
msgstr "" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Automatyczne uaktualnianie wbudowanych profili"
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8327,30 +8416,6 @@ msgstr ""
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "" msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Skojarzenia plików z OrcaSlicer" msgstr "Skojarzenia plików z OrcaSlicer"
@@ -8396,7 +8461,16 @@ msgstr ""
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "Pomijanie sprawdzania czarnej listy AMS" msgstr "Pomijanie sprawdzania czarnej listy AMS"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8404,12 +8478,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "" msgstr ""
@@ -8436,24 +8504,6 @@ msgstr "debugowanie"
msgid "trace" msgid "trace"
msgstr "śledzenie" msgstr "śledzenie"
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug" msgid "Debug"
msgstr "Debugowanie" msgstr "Debugowanie"
@@ -8469,25 +8519,6 @@ msgstr "Synchronizacja profili"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Synchronizacja preferencji" msgstr "Synchronizacja preferencji"
msgid "View control settings"
msgstr "Ustawienia kontrolowania widoku"
msgid "Rotate view"
msgstr "Obróć widok"
msgid "Pan view"
msgstr "Przesuń widok"
msgid "Zoom view"
msgstr "Przybliż widok"
msgid "Other"
msgstr "Inne"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Kierunek obracania koła myszy odwraca się podczas powiększania"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "Włącz SSL(MQTT)" msgstr "Włącz SSL(MQTT)"
@@ -12365,6 +12396,18 @@ msgstr "Próg małego obrysu"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "To ustawia próg długości małych obrysów. Domyślny próg to 0 mm" msgstr "To ustawia próg długości małych obrysów. Domyślny próg to 0 mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "Kolejność drukowania ścian" msgstr "Kolejność drukowania ścian"
@@ -12545,25 +12588,26 @@ msgstr ""
"2. Zwróć uwagę na optymalną wartość PA dla każdej wolumetrycznej prędkości przepływu i przyspieszenia. Możesz znaleźć numer przepływu, wybierając przepływ z rozwijanego schematu kolorów i przesuwając poziomy suwak nad liniami wzoru PA. Numer powinien być widoczny na dole strony. Idealna wartość PA powinna maleć, im większy jest przepływ objętościowy. Jeśli tak nie jest, potwierdź, że ekstruder działa poprawnie. Im wolniej i z mniejszym przyspieszeniu drukujesz, tym jest większy zakres dopuszczalnych wartości PA. Jeśli różnica nie jest widoczna, należy użyć wartości PA z szybszego testu.\n" "2. Zwróć uwagę na optymalną wartość PA dla każdej wolumetrycznej prędkości przepływu i przyspieszenia. Możesz znaleźć numer przepływu, wybierając przepływ z rozwijanego schematu kolorów i przesuwając poziomy suwak nad liniami wzoru PA. Numer powinien być widoczny na dole strony. Idealna wartość PA powinna maleć, im większy jest przepływ objętościowy. Jeśli tak nie jest, potwierdź, że ekstruder działa poprawnie. Im wolniej i z mniejszym przyspieszeniu drukujesz, tym jest większy zakres dopuszczalnych wartości PA. Jeśli różnica nie jest widoczna, należy użyć wartości PA z szybszego testu.\n"
"3. Wprowadź trójki wartości PA, przepływu i przyspieszenia w polu tekstowym tutaj i zapisz swój profil filamentu." "3. Wprowadź trójki wartości PA, przepływu i przyspieszenia w polu tekstowym tutaj i zapisz swój profil filamentu."
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "Włącz adaptacyjny wzrost ciśnienia dla nawisów (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
msgid "Pressure advance for bridges" msgid ""
msgstr "Wzrost ciśnienia (PA) dla mostów" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"Wartość wzrostu ciśnienia dla mostów. Ustaw na 0, aby wyłączyć.\n"
"\n"
"Niższa wartość PA podczas drukowania mostów pomaga zredukować widoczność lekkiego niedoboru materiału, który może wystąpić bezpośrednio po ich wydruku. Jest to spowodowane spadkiem ciśnienia w dyszy podczas drukowania w powietrzu, a niższy PA pomaga temu przeciwdziałać."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Domyślna szerokość linii, jeśli inne szerokości linii są ustawione na 0. Jeśli wyrażona w %, zostanie obliczona na podstawie średnicy dyszy." msgstr "Domyślna szerokość linii, jeśli inne szerokości linii są ustawione na 0. Jeśli wyrażona w %, zostanie obliczona na podstawie średnicy dyszy."
@@ -12939,6 +12983,22 @@ msgstr "Kierunek wzoru pełnego wypełnienia"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Kąt wyznaczający główny kierunek linii dla wzoru pełnego wypełnienia" msgstr "Kąt wyznaczający główny kierunek linii dla wzoru pełnego wypełnienia"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Gęstość wypełnienia" msgstr "Gęstość wypełnienia"
@@ -13152,6 +13212,17 @@ msgstr "Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na
msgid "layer" msgid "layer"
msgstr "warstwa" msgstr "warstwa"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Prędkość wentylatora dla warstwy łączącej podpory" msgstr "Prędkość wentylatora dla warstwy łączącej podpory"
@@ -15038,6 +15109,9 @@ msgstr "Szpary mniejsze niż dwukrotność wartości parametru „promień zamyk
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Tryb cięcia" msgstr "Tryb cięcia"
msgid "Other"
msgstr "Inne"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Użyj „Parzysto-nieparzysty” dla modeli samolotów 3DLabPrint. Użyj „Zamknij otwory” do zamknięcia wszystkich otworów w modelu." msgstr "Użyj „Parzysto-nieparzysty” dla modeli samolotów 3DLabPrint. Użyj „Zamknij otwory” do zamknięcia wszystkich otworów w modelu."
@@ -15706,6 +15780,14 @@ msgstr "Skręt poliotworu"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "Obracaj poliotwor co warstwę." msgstr "Obracaj poliotwor co warstwę."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "Miniatury G-code" msgstr "Miniatury G-code"
@@ -18074,6 +18156,132 @@ msgstr "Logowanie/test"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "Połączenie z drukarkami podłączonymi przez hosta drukowania nie powiodło się." msgstr "Połączenie z drukarkami podłączonymi przez hosta drukowania nie powiodło się."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -18156,6 +18364,19 @@ msgstr "Połączenie z MKS działa poprawnie."
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "Nie udało się połączyć z MKS" msgstr "Nie udało się połączyć z MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "Połączenie z OctoPrint działa poprawnie." msgstr "Połączenie z OctoPrint działa poprawnie."
@@ -18907,6 +19128,12 @@ msgstr "Liczba trójkątnych faset"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "Obliczanie, proszę czekać..." msgstr "Obliczanie, proszę czekać..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -19315,6 +19542,55 @@ msgstr ""
"Unikaj odkształceń\n" "Unikaj odkształceń\n"
"Czy wiesz, że podczas drukowania filamentami podatnymi na odkształcenia, takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może zmniejszyć prawdopodobieństwo odkształceń?" "Czy wiesz, że podczas drukowania filamentami podatnymi na odkształcenia, takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może zmniejszyć prawdopodobieństwo odkształceń?"
#~ msgid "in"
#~ msgstr "cal"
#~ msgid "Object coordinates"
#~ msgstr "Koordynaty obiektu"
#~ msgid "World coordinates"
#~ msgstr "Współrzędne"
#~ msgid "Translate(Relative)"
#~ msgstr "Przesunięcie równoległe (Względne)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Obrót (bezwzględny)"
#~ msgid "Part coordinates"
#~ msgstr "Koordynaty części"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Włącz adaptacyjny wzrost ciśnienia dla nawisów (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Wzrost ciśnienia (PA) dla mostów"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Wartość wzrostu ciśnienia dla mostów. Ustaw na 0, aby wyłączyć.\n"
#~ "\n"
#~ "Niższa wartość PA podczas drukowania mostów pomaga zredukować widoczność lekkiego niedoboru materiału, który może wystąpić bezpośrednio po ich wydruku. Jest to spowodowane spadkiem ciśnienia w dyszy podczas drukowania w powietrzu, a niższy PA pomaga temu przeciwdziałać."
#~ msgid "View control settings"
#~ msgstr "Ustawienia kontrolowania widoku"
#~ msgid "Rotate view"
#~ msgstr "Obróć widok"
#~ msgid "Pan view"
#~ msgstr "Przesuń widok"
#~ msgid "Zoom view"
#~ msgstr "Przybliż widok"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Kierunek obracania koła myszy odwraca się podczas powiększania"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "Lewy: %s" #~ msgstr "Lewy: %s"

File diff suppressed because it is too large Load Diff

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OrcaSlicer V2.5.0\n" "Project-Id-Version: OrcaSlicer V2.5.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: 2026-02-25 13:38+0300\n" "PO-Revision-Date: 2026-02-25 13:38+0300\n"
"Last-Translator: Felix14_v2\n" "Last-Translator: Felix14_v2\n"
"Language-Team: Felix14_v2 (ДС/ТГ: @felix14_v2, почта: aleks111001@list.ru), Andylg <andylg@yandex.ru>\n" "Language-Team: Felix14_v2 (ДС/ТГ: @felix14_v2, почта: aleks111001@list.ru), Andylg <andylg@yandex.ru>\n"
@@ -346,8 +346,9 @@ msgstr "Инструмент изменения размера"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "Ошибка: сначала закройте текущий инструмент." msgstr "Ошибка: сначала закройте текущий инструмент."
msgctxt "inches"
msgid "in" msgid "in"
msgstr "дюйм" msgstr ""
msgid "mm" msgid "mm"
msgstr "мм" msgstr "мм"
@@ -400,27 +401,30 @@ msgstr "Сброс позиции"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "Сброс вращения" msgstr "Сброс вращения"
msgid "Object coordinates" msgid "World"
msgstr "Относительно модели" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Относительно стола" msgstr "Модель"
msgid "Translate(Relative)" msgid "Part"
msgstr "Перемещение (относительное)" msgstr "Часть"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Сбросить последние изменения ориентации" msgstr "Сбросить последние изменения ориентации"
msgid "Rotate (absolute)"
msgstr "Поворот"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "Сбросить ориентацию до изначальной" msgstr "Сбросить ориентацию до изначальной"
msgid "Part coordinates"
msgstr "Относительно части"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Размер" msgstr "Размер"
@@ -527,12 +531,6 @@ msgstr "Зазор"
msgid "Spacing" msgid "Spacing"
msgstr "Отступ" msgstr "Отступ"
msgid "Part"
msgstr "Часть"
msgid "Object"
msgstr "Модель"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1907,23 +1905,30 @@ msgstr "Открыть проект"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Слишком старая версия Orca Slicer. Для корректной работы обновите программу до последней версии." msgstr "Слишком старая версия Orca Slicer. Для корректной работы обновите программу до последней версии."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1932,6 +1937,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -2007,7 +2018,8 @@ msgstr "Количество пользовательских профилей,
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Синхронизировать пользовательские профили" msgstr "Синхронизировать пользовательские профили"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2217,6 +2229,9 @@ msgstr "Куб Orca"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "Нарезанная Orca" msgstr "Нарезанная Orca"
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Тест точности Orca" msgstr "Тест точности Orca"
@@ -5299,6 +5314,9 @@ msgstr "Нависания"
msgid "Outline" msgid "Outline"
msgstr "Обводка выбранного" msgstr "Обводка выбранного"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7965,6 +7983,48 @@ msgstr "Укажите расположение загружаемых файл
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "Выбор папки загрузки" msgstr "Выбор папки загрузки"
msgid "(Latest)"
msgstr "(новейшая)"
msgid "Network plug-in switched successfully."
msgstr "Сетевой плагин успешно переключён."
msgid "Success"
msgstr "Успех"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Для загрузки сетевого плагина требуется перезапуск приложения."
#, c-format, boost-format
msgid ""
"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 ""
"Выбрана следующая версия плагина: %s.\n"
"\n"
"Загрузить и установить её? Возможно, потребуется перезагрузка приложения."
msgid "Download Network Plug-in"
msgstr "Загрузить сетевой плагин"
msgid "Reload the network plug-in without restarting the application"
msgstr "Перезагрузить плагин без перезапуска приложения."
msgid "Network plug-in reloaded successfully."
msgstr "Плагин успешно перезагружен."
msgid "Reload"
msgstr "Перезагрузить"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Не удалось перезагрузить сетевой плагин. Требуется перезапуск приложения."
msgid "Reload Failed"
msgstr "Перезапуск не удался"
msgid "Associate" msgid "Associate"
msgstr "Ассоциация" msgstr "Ассоциация"
@@ -8019,12 +8079,6 @@ msgstr "Показывать заставку при запуске"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Показывать окно приветствия при запуске программы." msgstr "Показывать окно приветствия при запуске программы."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -8055,6 +8109,12 @@ msgstr "При загрузке файла 3MF открывать ..."
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Следует ли при открытии 3MF проекта загружать настройки принтера, печати и материала?" msgstr "Следует ли при открытии 3MF проекта загружать настройки принтера, печати и материала?"
msgid "Auto backup"
msgstr "Сохранение резервной копии"
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Периодическое создание резервной копии проекта для восстановления в случае непредвиденного сбоя программы."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "Ограничение последних файлов" msgstr "Ограничение последних файлов"
@@ -8075,11 +8135,55 @@ msgstr "Показывать настройки импорта STEP"
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Если включено, во время импорта STEP файла появится диалоговое окно настроек параметров импорта." msgstr "Если включено, во время импорта STEP файла появится диалоговое окно настроек параметров импорта."
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "Сохранение резервной копии" msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash." msgid ""
msgstr "Периодическое создание резервной копии проекта для восстановления в случае непредвиденного сбоя программы." "Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Качество при экспорте в DRC"
msgid "bits"
msgstr "бит"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Настройка глубины квантования при сжатии полигональной сетки в формат Draco.\n"
"Чем меньше глубина, тем ниже качество и размер файла. Допустимый диапазон от 8 до 30.\n"
"0 сжатие без потерь (представление с максимальной точностью)."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Профиль" msgstr "Профиль"
@@ -8111,6 +8215,12 @@ msgstr "материалов"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Ограничить высоту секции с материалами проекта. При превышении лимита будет отображаться полоса прокрутки." msgstr "Ограничить высоту секции с материалами проекта. При превышении лимита будет отображаться полоса прокрутки."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "Возможности" msgstr "Возможности"
@@ -8124,21 +8234,6 @@ msgstr "Если включено, вы сможете управлять нес
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "Всплывающее окно для выбора режима группировки филаментов" msgstr "Всплывающее окно для выбора режима группировки филаментов"
msgid "Quality level for Draco export"
msgstr "Качество при экспорте в DRC"
msgid "bits"
msgstr "бит"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Настройка глубины квантования при сжатии полигональной сетки в формат Draco.\n"
"Чем меньше глубина, тем ниже качество и размер файла. Допустимый диапазон от 8 до 30.\n"
"0 сжатие без потерь (представление с максимальной точностью)."
msgid "Behaviour" msgid "Behaviour"
msgstr "Автоматизация" msgstr "Автоматизация"
@@ -8373,18 +8468,6 @@ msgstr "Уведомлять только о стабильных версиях
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Синхронизация пользовательских профилей (принтера/материала/настроек)" msgstr "Синхронизация пользовательских профилей (принтера/материала/настроек)"
msgid "Update built-in presets automatically."
msgstr "Автоматически обновлять системные профили"
msgid "Use encrypted file for token storage"
msgstr "Хранить токены в зашифрованном файле"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Сохранять токены аутентификации в зашифрованном файле вместо использования системной связки ключей (требуется перезапуск)."
msgid "Filament Sync Options"
msgstr "Настройки синхронизации"
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "Режим синхронизации" msgstr "Режим синхронизации"
@@ -8397,6 +8480,15 @@ msgstr "Цвет и материал"
msgid "Color only" msgid "Color only"
msgstr "Цвет" msgstr "Цвет"
msgid "Update built-in presets automatically."
msgstr "Автоматически обновлять системные профили"
msgid "Use encrypted file for token storage"
msgstr "Хранить токены в зашифрованном файле"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Сохранять токены аутентификации в зашифрованном файле вместо использования системной связки ключей (требуется перезапуск)."
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8409,33 +8501,6 @@ msgstr "Версия сетевого плагина"
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "Выберите версию сетевого плагина для загрузки" msgstr "Выберите версию сетевого плагина для загрузки"
msgid "(Latest)"
msgstr "(новейшая)"
msgid "Network plug-in switched successfully."
msgstr "Сетевой плагин успешно переключён."
msgid "Success"
msgstr "Успех"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Для загрузки сетевого плагина требуется перезапуск приложения."
#, c-format, boost-format
msgid ""
"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 ""
"Выбрана следующая версия плагина: %s.\n"
"\n"
"Загрузить и установить её? Возможно, потребуется перезагрузка приложения."
msgid "Download Network Plug-in"
msgstr "Загрузить сетевой плагин"
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Открытие файлов по умолчанию" msgstr "Открытие файлов по умолчанию"
@@ -8478,7 +8543,16 @@ msgstr "Разработка"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "Пропуск проверки материалов в AMS из файла чёрного списка" msgstr "Пропуск проверки материалов в AMS из файла чёрного списка"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8486,12 +8560,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "Игнорировать неисправность хранилища" msgstr "Игнорировать неисправность хранилища"
@@ -8520,24 +8588,6 @@ msgstr "отладка"
msgid "trace" msgid "trace"
msgstr "трассировка" msgstr "трассировка"
msgid "Network plug-in"
msgstr "Сетевой плагин"
msgid "Reload"
msgstr "Перезагрузить"
msgid "Reload the network plug-in without restarting the application"
msgstr "Перезагрузить плагин без перезапуска приложения."
msgid "Network plug-in reloaded successfully."
msgstr "Плагин успешно перезагружен."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Не удалось перезагрузить сетевой плагин. Требуется перезапуск приложения."
msgid "Reload Failed"
msgstr "Перезапуск не удался"
msgid "Debug" msgid "Debug"
msgstr "Отладка" msgstr "Отладка"
@@ -8553,24 +8603,6 @@ msgstr "Синхронизация профилей"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Синхронизация настроек" msgstr "Синхронизация настроек"
msgid "View control settings"
msgstr "Просмотр настроек управления"
msgid "Rotate view"
msgstr "Вращение камеры"
msgid "Pan view"
msgstr "Перемещение камеры"
msgid "Zoom view"
msgstr "Масштабирование вида"
msgid "Other"
msgstr "Прочее"
msgid "Reverse scroll direction while zooming"
msgstr "Инвертировать масштабирование с помощью колеса мыши"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "Включить SSL(MQTT)" msgstr "Включить SSL(MQTT)"
@@ -12530,6 +12562,18 @@ msgstr "Порог коротких периметров"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Пороговое значение (радиус) для расчёта длины коротких периметров (по формуле длины окружности). Значение по умолчанию 0 мм." msgstr "Пороговое значение (радиус) для расчёта длины коротких периметров (по формуле длины окружности). Значение по умолчанию 0 мм."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "Порядок печати периметров" msgstr "Порядок печати периметров"
@@ -12739,27 +12783,26 @@ msgstr ""
"\n" "\n"
"3. Проверьте порядок введённых значений (PA, расход, ускорения) и сохраните профиль материала." "3. Проверьте порядок введённых значений (PA, расход, ускорения) и сохраните профиль материала."
# Тут речь о коэффициенте PA (адаптивный коэффициент PA), а не об адаптивном msgid "Enable adaptive pressure advance within features (beta)"
# алгоритме
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Адаптивный PA на нависаниях (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
msgid "Pressure advance for bridges" msgid ""
msgstr "Коэффициент PA на мостах" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"Коэффициент Pressure Advance для мостов. Установите значение 0, если хотите отключить функцию.\n"
"\n"
"Более низкое значение PA при печати мостов помогает уменьшить появление небольшой недоэкструзии сразу после мостов. Это вызвано падением давления в сопле при печати в воздухе, и более низкое значение PA помогает предотвратить это."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Стандартная ширина линии для отключённых (установленных на 0) значений ниже. Можно указать процент от диаметра сопла." msgstr "Стандартная ширина линии для отключённых (установленных на 0) значений ниже. Можно указать процент от диаметра сопла."
@@ -13146,6 +13189,22 @@ msgstr "Угол шаблона сплошного заполнения"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Угол ориентации шаблона сплошного заполнения, который определяет начало или основное направление линий." msgstr "Угол ориентации шаблона сплошного заполнения, который определяет начало или основное направление линий."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Плотность заполнения" msgstr "Плотность заполнения"
@@ -13402,6 +13461,17 @@ msgstr ""
msgid "layer" msgid "layer"
msgstr "слой" msgstr "слой"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Обдув связующего слоя" msgstr "Обдув связующего слоя"
@@ -15426,6 +15496,9 @@ msgstr "Часто в импортируемых в программу моде
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Режим нарезки" msgstr "Режим нарезки"
msgid "Other"
msgstr "Прочее"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "" msgstr ""
"Режим нарезки «Чётный-нечётный» применяется для моделей с намеренно нарушенной целостностью. Например, для моделей самолётов с ресурса 3DLabPrint.\n" "Режим нарезки «Чётный-нечётный» применяется для моделей с намеренно нарушенной целостностью. Например, для моделей самолётов с ресурса 3DLabPrint.\n"
@@ -16166,6 +16239,14 @@ msgstr "Скручивание многогранника"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "Вращение многогранного отверстия на каждом слое." msgstr "Вращение многогранного отверстия на каждом слое."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "Эскизы в G-коде" msgstr "Эскизы в G-коде"
@@ -18621,6 +18702,132 @@ msgstr "Вход/Тест"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "Не удалось подключиться к принтерам, подключенным через хост печати." msgstr "Не удалось подключиться к принтерам, подключенным через хост печати."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -18703,6 +18910,19 @@ msgstr "Подключение к MKS успешно установлено."
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "Не удалось подключиться к MKS" msgstr "Не удалось подключиться к MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "Подключение к OctoPrint успешно установлено." msgstr "Подключение к OctoPrint успешно установлено."
@@ -19462,6 +19682,12 @@ msgstr "Количество треугольников"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "Расчёт, подождите..." msgstr "Расчёт, подождите..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -19870,6 +20096,62 @@ msgstr ""
"Предотвращение коробления материала\n" "Предотвращение коробления материала\n"
"Знаете ли вы, что при печати материалами, склонными к короблению, таких как ABS, повышение температуры подогреваемого стола может снизить эту вероятность?" "Знаете ли вы, что при печати материалами, склонными к короблению, таких как ABS, повышение температуры подогреваемого стола может снизить эту вероятность?"
#~ msgid "in"
#~ msgstr "дюйм"
#~ msgid "Object coordinates"
#~ msgstr "Относительно модели"
#~ msgid "World coordinates"
#~ msgstr "Относительно стола"
#~ msgid "Translate(Relative)"
#~ msgstr "Перемещение (относительное)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Поворот"
#~ msgid "Part coordinates"
#~ msgstr "Относительно части"
# Тут речь о коэффициенте PA (адаптивный коэффициент PA), а не об адаптивном
# алгоритме
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Адаптивный PA на нависаниях (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Коэффициент PA на мостах"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Коэффициент Pressure Advance для мостов. Установите значение 0, если хотите отключить функцию.\n"
#~ "\n"
#~ "Более низкое значение PA при печати мостов помогает уменьшить появление небольшой недоэкструзии сразу после мостов. Это вызвано падением давления в сопле при печати в воздухе, и более низкое значение PA помогает предотвратить это."
#~ msgid "Filament Sync Options"
#~ msgstr "Настройки синхронизации"
#~ msgid "Network plug-in"
#~ msgstr "Сетевой плагин"
#~ msgid "View control settings"
#~ msgstr "Просмотр настроек управления"
#~ msgid "Rotate view"
#~ msgstr "Вращение камеры"
#~ msgid "Pan view"
#~ msgstr "Перемещение камеры"
#~ msgid "Zoom view"
#~ msgstr "Масштабирование вида"
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Инвертировать масштабирование с помощью колеса мыши"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "Левый: %s" #~ msgstr "Левый: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"Language: sv\n" "Language: sv\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -333,8 +333,9 @@ msgstr ""
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "FEL: Stäng alla verktygsmenyer först" msgstr "FEL: Stäng alla verktygsmenyer först"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "i" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -393,27 +394,30 @@ msgstr "Återställ Position"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "" msgstr ""
msgid "Object coordinates" msgid "World"
msgstr "" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Världskoordinater" msgstr "Objekt"
msgid "Translate(Relative)" msgid "Part"
msgstr "Del"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr "" msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "" msgstr ""
msgid "Rotate (absolute)"
msgstr ""
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "" msgstr ""
msgid "Part coordinates"
msgstr ""
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Storlek" msgstr "Storlek"
@@ -517,12 +521,6 @@ msgstr "Glipa"
msgid "Spacing" msgid "Spacing"
msgstr "Mellanrum" msgstr "Mellanrum"
msgid "Part"
msgstr "Del"
msgid "Object"
msgstr "Objekt"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1841,23 +1839,30 @@ msgstr "Öppna Projekt"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Versionen av Orca Slicer är för låg och behöver uppdateras till den senaste versionen innan den kan användas normalt" msgstr "Versionen av Orca Slicer är för låg och behöver uppdateras till den senaste versionen innan den kan användas normalt"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1866,6 +1871,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1933,7 +1944,8 @@ msgstr "Antalet användar inställningar som cachats i molnet har överskridit d
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Synkronisera användar inställningar" msgstr "Synkronisera användar inställningar"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2155,6 +2167,9 @@ msgstr ""
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "" msgstr ""
@@ -5188,6 +5203,9 @@ msgstr ""
msgid "Outline" msgid "Outline"
msgstr "Kontur" msgstr "Kontur"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7789,6 +7807,45 @@ msgstr ""
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "Välj Nedladdnings Register" msgstr "Välj Nedladdnings Register"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr "Lyckades"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr "Ladda om"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate" msgid "Associate"
msgstr "" msgstr ""
@@ -7844,12 +7901,6 @@ msgstr "Visa välkomstskärm"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Visa välkomstskärmen under uppstart." msgstr "Visa välkomstskärmen under uppstart."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -7880,6 +7931,13 @@ msgstr ""
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "" msgstr ""
msgid "Auto backup"
msgstr "Auto säkerhetskopiera"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Säkerhetskopiera ditt projekt med jämna mellanrum för att underlätta återställning efter en tillfällig krasch."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "" msgstr ""
@@ -7898,12 +7956,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "" msgstr ""
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "Auto säkerhetskopiera" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "Säkerhetskopiera ditt projekt med jämna mellanrum för att underlätta återställning efter en tillfällig krasch." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Förinställd" msgstr "Förinställd"
@@ -7935,6 +8033,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "" msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "Funktioner" msgstr "Funktioner"
@@ -7947,18 +8051,6 @@ msgstr ""
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "" msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour" msgid "Behaviour"
msgstr "" msgstr ""
@@ -8183,19 +8275,6 @@ msgstr ""
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Automatisk synkronisering av användarens förinställningar (skrivare/filament/process)" msgstr "Automatisk synkronisering av användarens förinställningar (skrivare/filament/process)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Uppdatera inbyggda förinställningar automatiskt."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "" msgstr ""
@@ -8208,6 +8287,16 @@ msgstr ""
msgid "Color only" msgid "Color only"
msgstr "" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Uppdatera inbyggda förinställningar automatiskt."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8220,30 +8309,6 @@ msgstr ""
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "" msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr "Lyckades"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Associerade filer till Orca Slicer" msgstr "Associerade filer till Orca Slicer"
@@ -8290,7 +8355,16 @@ msgstr "Utvecklare"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "Hoppa över kontrollen av AMS svarta lista" msgstr "Hoppa över kontrollen av AMS svarta lista"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8298,12 +8372,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "" msgstr ""
@@ -8330,24 +8398,6 @@ msgstr "felsök"
msgid "trace" msgid "trace"
msgstr "spåra" msgstr "spåra"
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr "Ladda om"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug" msgid "Debug"
msgstr "Felsökning" msgstr "Felsökning"
@@ -8363,25 +8413,6 @@ msgstr "Förinställd synkronisering"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Synkronisera inställningar" msgstr "Synkronisera inställningar"
msgid "View control settings"
msgstr "Kontroll inställningar"
msgid "Rotate view"
msgstr "Rotera vy"
msgid "Pan view"
msgstr "Panoreringsvy"
msgid "Zoom view"
msgstr "Zoomvy"
msgid "Other"
msgstr "Andra"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Reversera mushjulet för att zooma"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "Aktivera SSL(MQTT)" msgstr "Aktivera SSL(MQTT)"
@@ -12129,6 +12160,18 @@ msgstr ""
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Detta ställer in tröskelvärdet för liten perimeterlängd. Standardgränsen är 0mm" msgstr "Detta ställer in tröskelvärdet för liten perimeterlängd. Standardgränsen är 0mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "" msgstr ""
@@ -12284,21 +12327,25 @@ msgid ""
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile." "3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
msgstr "" msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr ""
msgid "Pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
@@ -12665,6 +12712,22 @@ msgstr ""
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "" msgstr ""
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Sparsam ifyllnads densitet" msgstr "Sparsam ifyllnads densitet"
@@ -12878,6 +12941,17 @@ msgstr ""
msgid "layer" msgid "layer"
msgstr "" msgstr ""
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "" msgstr ""
@@ -14678,6 +14752,9 @@ msgstr "Sprickor mindre än 2 x gap stängningsradie fylls under triangeln mesh
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Berednings läge" msgstr "Berednings läge"
msgid "Other"
msgstr "Andra"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Använd ”Jämn-Udda” för 3DLabPrint flygplans modeller. Använd ”Stäng hål” för att stänga alla hål i modellen." msgstr "Använd ”Jämn-Udda” för 3DLabPrint flygplans modeller. Använd ”Stäng hål” för att stänga alla hål i modellen."
@@ -15317,6 +15394,14 @@ msgstr ""
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "" msgstr ""
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "" msgstr ""
@@ -17614,6 +17699,132 @@ msgstr ""
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "Anslutningen till printrar som är anslutna via printer värden misslyckades." msgstr "Anslutningen till printrar som är anslutna via printer värden misslyckades."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -17696,6 +17907,19 @@ msgstr ""
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "Kunde inte ansluta till MKS" msgstr "Kunde inte ansluta till MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "" msgstr ""
@@ -18447,6 +18671,12 @@ msgstr ""
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "" msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -18825,6 +19055,28 @@ msgstr ""
"Undvik vridning\n" "Undvik vridning\n"
"Visste du att när du skriver ut material som är benägna att vrida, såsom ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten för vridning?" "Visste du att när du skriver ut material som är benägna att vrida, såsom ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten för vridning?"
#~ msgid "in"
#~ msgstr "i"
#~ msgid "World coordinates"
#~ msgstr "Världskoordinater"
#~ msgid "View control settings"
#~ msgstr "Kontroll inställningar"
#~ msgid "Rotate view"
#~ msgstr "Rotera vy"
#~ msgid "Pan view"
#~ msgstr "Panoreringsvy"
#~ msgid "Zoom view"
#~ msgstr "Zoomvy"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Reversera mushjulet för att zooma"
#~ msgid "Perform" #~ msgid "Perform"
#~ msgstr "Utför" #~ msgstr "Utför"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: 2026-06-19 13:40+0700\n" "PO-Revision-Date: 2026-06-19 13:40+0700\n"
"Last-Translator: Icezaza\n" "Last-Translator: Icezaza\n"
"Language-Team: Thai\n" "Language-Team: Thai\n"
@@ -333,8 +333,9 @@ msgstr "Gizmo-ขนาด"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "ข้อผิดพลาด: โปรดปิดเมนูแถบเครื่องมือทั้งหมดก่อน" msgstr "ข้อผิดพลาด: โปรดปิดเมนูแถบเครื่องมือทั้งหมดก่อน"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "นิ้ว" msgstr ""
msgid "mm" msgid "mm"
msgstr "มม." msgstr "มม."
@@ -387,27 +388,30 @@ msgstr "รีเซ็ตตำแหน่ง"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "รีเซ็ตการหมุน" msgstr "รีเซ็ตการหมุน"
msgid "Object coordinates" msgid "World"
msgstr "พิกัดวัตถุ" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "พิกัดโลก" msgstr "วัตถุ"
msgid "Translate(Relative)" msgid "Part"
msgstr "เลื่อนตำแหน่ง (แบบสัมพันธ์)" msgstr "ชิ้นส่วน"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "รีเซ็ตการหมุนปัจจุบันเป็นค่าเมื่อเปิดเครื่องมือการหมุน" msgstr "รีเซ็ตการหมุนปัจจุบันเป็นค่าเมื่อเปิดเครื่องมือการหมุน"
msgid "Rotate (absolute)"
msgstr "หมุน (สัมบูรณ์)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "รีเซ็ตการหมุนปัจจุบันให้เป็นศูนย์จริง" msgstr "รีเซ็ตการหมุนปัจจุบันให้เป็นศูนย์จริง"
msgid "Part coordinates"
msgstr "พิกัดส่วน"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "ขนาด" msgstr "ขนาด"
@@ -511,12 +515,6 @@ msgstr "ช่องว่าง"
msgid "Spacing" msgid "Spacing"
msgstr "ระยะห่าง" msgstr "ระยะห่าง"
msgid "Part"
msgstr "ชิ้นส่วน"
msgid "Object"
msgstr "วัตถุ"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1850,33 +1848,32 @@ msgstr "เปิดโปรเจกต์"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Orca Slicer เวอร์ชันต่ำเกินไปและจำเป็นต้องอัปเดตเป็นเวอร์ชันล่าสุดก่อนจึงจะสามารถใช้งานได้ตามปกติ" msgstr "Orca Slicer เวอร์ชันต่ำเกินไปและจำเป็นต้องอัปเดตเป็นเวอร์ชันล่าสุดก่อนจึงจะสามารถใช้งานได้ตามปกติ"
msgid "" msgid "Cloud sync conflict:"
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" msgstr ""
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr "" msgstr ""
"ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้านี้มีเวอร์ชันใหม่กว่าใน Orca Cloud\n"
"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"ความขัดแย้งในการซิงก์ Cloud: มีค่าที่ตั้งไว้ล่วงหน้าชื่อนี้อยู่ใน Orca Cloud แล้ว\n"
"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้าชื่อเดียวกันเคยถูกลบจากคลาวด์แล้ว\n"
"ลบจะลบค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"ความขัดแย้งในการซิงก์ Cloud: พบความขัดแย้งของค่าที่ตั้งไว้ล่วงหน้าที่ไม่คาดคิดหรือระบุไม่ได้\n"
"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
msgid "" msgid ""
"Force push will overwrite the cloud copy with your local preset changes.\n" "Force push will overwrite the cloud copy with your local preset changes.\n"
@@ -1885,6 +1882,12 @@ msgstr ""
"การบังคับส่งจะเขียนทับสำเนาบนคลาวด์ด้วยการเปลี่ยนแปลงค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ\n" "การบังคับส่งจะเขียนทับสำเนาบนคลาวด์ด้วยการเปลี่ยนแปลงค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ\n"
"คุณต้องการดำเนินการต่อหรือไม่?" "คุณต้องการดำเนินการต่อหรือไม่?"
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "แก้ไขความขัดแย้งการซิงค์คลาวด์" msgstr "แก้ไขความขัดแย้งการซิงค์คลาวด์"
@@ -1964,8 +1967,9 @@ msgstr "จำนวนค่าที่ตั้งไว้ล่วงหน
msgid "Sync user presets" msgid "Sync user presets"
msgstr "ซิงค์การตั้งค่าล่วงหน้าของผู้ใช้" msgstr "ซิงค์การตั้งค่าล่วงหน้าของผู้ใช้"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgstr "เนื้อหาที่ตั้งไว้ล่วงหน้ามีขนาดใหญ่เกินกว่าจะซิงค์กับระบบคลาวด์ (เกิน 1MB) โปรดลดขนาดที่กำหนดไว้ล่วงหน้าโดยการลบการกำหนดค่าที่กำหนดเองออกหรือใช้เฉพาะในเครื่องเท่านั้น" msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "%s updated from %s to %s" msgid "%s updated from %s to %s"
@@ -2174,6 +2178,9 @@ msgstr "ออร์ก้าคิวบ์"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "OrcaSliced Combo" msgstr "OrcaSliced Combo"
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "การทดสอบค่าความเผื่อ Orca" msgstr "การทดสอบค่าความเผื่อ Orca"
@@ -5142,6 +5149,9 @@ msgstr "ส่วนยื่น"
msgid "Outline" msgid "Outline"
msgstr "เส้นขอบ" msgstr "เส้นขอบ"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "มุมมองสมจริง" msgstr "มุมมองสมจริง"
@@ -7711,6 +7721,50 @@ msgstr "เลือกโฟลเดอร์สำหรับรายกา
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "เลือกดาวน์โหลดไดเรกทอรี" msgstr "เลือกดาวน์โหลดไดเรกทอรี"
msgid "(Latest)"
msgstr "(ล่าสุด)"
msgid "Network plug-in switched successfully."
msgstr "สลับปลั๊กอินเครือข่ายสำเร็จแล้ว"
msgid "Success"
msgstr "สำเร็จ"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "โหลดปลั๊กอินเครือข่ายไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน"
#, c-format, boost-format
msgid ""
"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 ""
"คุณได้เลือกปลั๊กอินเครือข่ายเวอร์ชัน %s\n"
"\n"
"คุณต้องการดาวน์โหลดและติดตั้งเวอร์ชันนี้ทันทีหรือไม่\n"
"\n"
"หมายเหตุ: แอปพลิเคชันอาจต้องรีสตาร์ทหลังการติดตั้ง"
msgid "Download Network Plug-in"
msgstr "ดาวน์โหลดปลั๊กอินเครือข่าย"
msgid "Reload the network plug-in without restarting the application"
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำโดยไม่ต้องรีสตาร์ทแอปพลิเคชัน"
msgid "Network plug-in reloaded successfully."
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำสำเร็จแล้ว"
msgid "Reload"
msgstr "โหลดใหม่"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน"
msgid "Reload Failed"
msgstr "โหลดใหม่ล้มเหลว"
msgid "Associate" msgid "Associate"
msgstr "เชื่อมโยง" msgstr "เชื่อมโยง"
@@ -7765,12 +7819,6 @@ msgstr "แสดงหน้าจอเริ่มต้น"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "แสดงหน้าจอเริ่มต้นระหว่างการเริ่มต้น" msgstr "แสดงหน้าจอเริ่มต้นระหว่างการเริ่มต้น"
msgid "Show shared profiles notification"
msgstr "แสดงการแจ้งเตือนโปรไฟล์ที่แชร์"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "แสดงการแจ้งเตือนพร้อมลิงก์เพื่อเรียกดูโปรไฟล์ที่แชร์เมื่อเครื่องพิมพ์ที่เลือกมีการเปลี่ยนแปลง"
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "ใช้ปุ่มหน้าต่างทางด้านซ้าย" msgstr "ใช้ปุ่มหน้าต่างทางด้านซ้าย"
@@ -7801,6 +7849,12 @@ msgstr "พฤติกรรมการโหลด"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "ควรโหลดการตั้งค่าเครื่องพิมพ์/เส้นพลาสติก/กระบวนการเมื่อเปิดไฟล์ 3MF หรือไม่" msgstr "ควรโหลดการตั้งค่าเครื่องพิมพ์/เส้นพลาสติก/กระบวนการเมื่อเปิดไฟล์ 3MF หรือไม่"
msgid "Auto backup"
msgstr "การสำรองข้อมูลอัตโนมัติ"
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "สำรองข้อมูลโปรเจ็กต์ของคุณเป็นระยะเพื่อกู้คืนจากข้อขัดข้องเป็นครั้งคราว"
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "ไฟล์ล่าสุดสูงสุด" msgstr "ไฟล์ล่าสุดสูงสุด"
@@ -7819,11 +7873,55 @@ msgstr "แสดงตัวเลือกเมื่อนำเข้าไ
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "หากเปิดใช้งาน กล่องโต้ตอบการตั้งค่าพารามิเตอร์จะปรากฏขึ้นระหว่างการนำเข้าไฟล์ STEP" msgstr "หากเปิดใช้งาน กล่องโต้ตอบการตั้งค่าพารามิเตอร์จะปรากฏขึ้นระหว่างการนำเข้าไฟล์ STEP"
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "การสำรองข้อมูลอัตโนมัติ" msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash." msgid ""
msgstr "สำรองข้อมูลโปรเจ็กต์ของคุณเป็นระยะเพื่อกู้คืนจากข้อขัดข้องเป็นครั้งคราว" "Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "ระดับคุณภาพสำหรับการส่งออกของ Draco"
msgid "bits"
msgstr "บิต"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"ควบคุมความลึกบิตเชิงปริมาณที่ใช้ในการบีบอัด mesh เป็นรูปแบบ Draco\n"
"0 = การบีบอัดแบบไม่สูญเสีย (รูปทรงเรขาคณิตจะถูกรักษาไว้อย่างแม่นยำเต็มที่) ค่าการสูญเสียที่ถูกต้องมีตั้งแต่ 8 ถึง 30\n"
"ค่าที่ต่ำกว่าจะทำให้ไฟล์มีขนาดเล็กลง แต่สูญเสียรายละเอียดทางเรขาคณิตมากขึ้น ค่าที่สูงกว่าจะรักษารายละเอียดได้มากขึ้นโดยที่ไฟล์มีขนาดใหญ่กว่า"
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "พรีเซ็ต" msgstr "พรีเซ็ต"
@@ -7855,6 +7953,12 @@ msgstr "เส้นพลาสติก"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "ปรับความสูงสูงสุดของพื้นที่เส้นพลาสติกให้เหมาะสมตามจำนวนเส้นพลาสติกที่เลือก" msgstr "ปรับความสูงสูงสุดของพื้นที่เส้นพลาสติกให้เหมาะสมตามจำนวนเส้นพลาสติกที่เลือก"
msgid "Show shared profiles notification"
msgstr "แสดงการแจ้งเตือนโปรไฟล์ที่แชร์"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "แสดงการแจ้งเตือนพร้อมลิงก์เพื่อเรียกดูโปรไฟล์ที่แชร์เมื่อเครื่องพิมพ์ที่เลือกมีการเปลี่ยนแปลง"
msgid "Features" msgid "Features"
msgstr "คุณสมบัติ" msgstr "คุณสมบัติ"
@@ -7867,21 +7971,6 @@ msgstr "เมื่อเปิดใช้งานตัวเลือกน
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "ปรากฏขึ้นเพื่อเลือกโหมดการจัดกลุ่มเส้นพลาสติก" msgstr "ปรากฏขึ้นเพื่อเลือกโหมดการจัดกลุ่มเส้นพลาสติก"
msgid "Quality level for Draco export"
msgstr "ระดับคุณภาพสำหรับการส่งออกของ Draco"
msgid "bits"
msgstr "บิต"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"ควบคุมความลึกบิตเชิงปริมาณที่ใช้ในการบีบอัด mesh เป็นรูปแบบ Draco\n"
"0 = การบีบอัดแบบไม่สูญเสีย (รูปทรงเรขาคณิตจะถูกรักษาไว้อย่างแม่นยำเต็มที่) ค่าการสูญเสียที่ถูกต้องมีตั้งแต่ 8 ถึง 30\n"
"ค่าที่ต่ำกว่าจะทำให้ไฟล์มีขนาดเล็กลง แต่สูญเสียรายละเอียดทางเรขาคณิตมากขึ้น ค่าที่สูงกว่าจะรักษารายละเอียดได้มากขึ้นโดยที่ไฟล์มีขนาดใหญ่กว่า"
msgid "Behaviour" msgid "Behaviour"
msgstr "พฤติกรรม" msgstr "พฤติกรรม"
@@ -8126,18 +8215,6 @@ msgstr "ตรวจสอบการอัปเดตที่เสถีย
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "การตั้งค่าล่วงหน้าของผู้ใช้ซิงค์อัตโนมัติ (เครื่องพิมพ์/เส้นพลาสติก/กระบวนการ)" msgstr "การตั้งค่าล่วงหน้าของผู้ใช้ซิงค์อัตโนมัติ (เครื่องพิมพ์/เส้นพลาสติก/กระบวนการ)"
msgid "Update built-in presets automatically."
msgstr "อัปเดตค่าที่ตั้งล่วงหน้าในตัวโดยอัตโนมัติ"
msgid "Use encrypted file for token storage"
msgstr "ใช้ไฟล์ที่เข้ารหัสสำหรับการจัดเก็บโทเค็น"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "จัดเก็บโทเค็นการรับรองความถูกต้องในไฟล์ที่เข้ารหัสแทนพวงกุญแจระบบ (ต้องรีสตาร์ท)"
msgid "Filament Sync Options"
msgstr "ตัวเลือกการซิงค์ฟิลาเมนต์"
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "โหมดการซิงค์ฟิลาเมนต์" msgstr "โหมดการซิงค์ฟิลาเมนต์"
@@ -8150,6 +8227,15 @@ msgstr "เส้นพลาสติกและสี"
msgid "Color only" msgid "Color only"
msgstr "สีเท่านั้น" msgstr "สีเท่านั้น"
msgid "Update built-in presets automatically."
msgstr "อัปเดตค่าที่ตั้งล่วงหน้าในตัวโดยอัตโนมัติ"
msgid "Use encrypted file for token storage"
msgstr "ใช้ไฟล์ที่เข้ารหัสสำหรับการจัดเก็บโทเค็น"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "จัดเก็บโทเค็นการรับรองความถูกต้องในไฟล์ที่เข้ารหัสแทนพวงกุญแจระบบ (ต้องรีสตาร์ท)"
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "ปลั๊กอินเครือข่าย Bambu" msgstr "ปลั๊กอินเครือข่าย Bambu"
@@ -8162,35 +8248,6 @@ msgstr "เวอร์ชันปลั๊กอินเครือข่า
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "เลือกเวอร์ชันปลั๊กอินเครือข่ายที่จะใช้" msgstr "เลือกเวอร์ชันปลั๊กอินเครือข่ายที่จะใช้"
msgid "(Latest)"
msgstr "(ล่าสุด)"
msgid "Network plug-in switched successfully."
msgstr "สลับปลั๊กอินเครือข่ายสำเร็จแล้ว"
msgid "Success"
msgstr "สำเร็จ"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "โหลดปลั๊กอินเครือข่ายไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน"
#, c-format, boost-format
msgid ""
"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 ""
"คุณได้เลือกปลั๊กอินเครือข่ายเวอร์ชัน %s\n"
"\n"
"คุณต้องการดาวน์โหลดและติดตั้งเวอร์ชันนี้ทันทีหรือไม่\n"
"\n"
"หมายเหตุ: แอปพลิเคชันอาจต้องรีสตาร์ทหลังการติดตั้ง"
msgid "Download Network Plug-in"
msgstr "ดาวน์โหลดปลั๊กอินเครือข่าย"
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "เชื่อมโยงไฟล์กับ OrcaSlicer" msgstr "เชื่อมโยงไฟล์กับ OrcaSlicer"
@@ -8233,8 +8290,17 @@ msgstr "นักพัฒนา"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "ข้ามการตรวจสอบบัญชีดำของ AMS" msgstr "ข้ามการตรวจสอบบัญชีดำของ AMS"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr "(ทดลอง) เก็บคุณสมบัติการทาสีไว้หลังจากเปลี่ยนตาข่าย" msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่รองรับ"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่เข้ากันหรือไม่รองรับในรายการเลือกเครื่องพิมพ์และเส้นพลาสติก ไม่สามารถเลือกค่าที่ตั้งไว้ล่วงหน้าเหล่านี้ได้"
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid "" msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
@@ -8243,12 +8309,6 @@ msgstr ""
"พยายามคงคุณสมบัติการทาสีไว้ (สี/รอยตะเข็บ/ส่วนรองรับ/คลุมเครือ ฯลฯ) หลังจากเปลี่ยนตาข่ายวัตถุ (เช่น ตัด/โหลดซ้ำจากดิสก์/ลดความซับซ้อน/แก้ไข ฯลฯ)\n" "พยายามคงคุณสมบัติการทาสีไว้ (สี/รอยตะเข็บ/ส่วนรองรับ/คลุมเครือ ฯลฯ) หลังจากเปลี่ยนตาข่ายวัตถุ (เช่น ตัด/โหลดซ้ำจากดิสก์/ลดความซับซ้อน/แก้ไข ฯลฯ)\n"
"น่าทดลองมาก! ช้าและอาจสร้างสิ่งประดิษฐ์" "น่าทดลองมาก! ช้าและอาจสร้างสิ่งประดิษฐ์"
msgid "Show unsupported presets"
msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่รองรับ"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่เข้ากันหรือไม่รองรับในรายการเลือกเครื่องพิมพ์และเส้นพลาสติก ไม่สามารถเลือกค่าที่ตั้งไว้ล่วงหน้าเหล่านี้ได้"
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "อนุญาตให้จัดเก็บผิดปกติ" msgstr "อนุญาตให้จัดเก็บผิดปกติ"
@@ -8277,24 +8337,6 @@ msgstr "แก้ปัญหา"
msgid "trace" msgid "trace"
msgstr "ติดตาม" msgstr "ติดตาม"
msgid "Network plug-in"
msgstr "ปลั๊กอินเครือข่าย"
msgid "Reload"
msgstr "โหลดใหม่"
msgid "Reload the network plug-in without restarting the application"
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำโดยไม่ต้องรีสตาร์ทแอปพลิเคชัน"
msgid "Network plug-in reloaded successfully."
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำสำเร็จแล้ว"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน"
msgid "Reload Failed"
msgstr "โหลดใหม่ล้มเหลว"
msgid "Debug" msgid "Debug"
msgstr "ดีบัก" msgstr "ดีบัก"
@@ -8310,24 +8352,6 @@ msgstr "การซิงค์ที่ตั้งไว้ล่วงหน
msgid "Preferences sync" msgid "Preferences sync"
msgstr "ซิงค์การตั้งค่า" msgstr "ซิงค์การตั้งค่า"
msgid "View control settings"
msgstr "ดูการตั้งค่าการควบคุม"
msgid "Rotate view"
msgstr "หมุนมุมมอง"
msgid "Pan view"
msgstr "แพนวิว"
msgid "Zoom view"
msgstr "ซูมดู"
msgid "Other"
msgstr "อื่นๆ"
msgid "Reverse scroll direction while zooming"
msgstr "ล้อเมาส์จะกลับด้านเมื่อซูม"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "เปิดใช้งาน SSL(MQTT)" msgstr "เปิดใช้งาน SSL(MQTT)"
@@ -12220,6 +12244,18 @@ msgstr "เกณฑ์ขอบเขตขนาดเล็ก"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "นี่เป็นการกำหนดเกณฑ์สำหรับความยาวเส้นรอบวงเล็กน้อย เกณฑ์เริ่มต้นคือ 0 มม." msgstr "นี่เป็นการกำหนดเกณฑ์สำหรับความยาวเส้นรอบวงเล็กน้อย เกณฑ์เริ่มต้นคือ 0 มม."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "สั่งพิมพ์ผนัง" msgstr "สั่งพิมพ์ผนัง"
@@ -12404,27 +12440,26 @@ msgstr ""
"2. จดบันทึกค่า PA ที่เหมาะสมที่สุดสำหรับความเร็วการไหลและความเร่งตามปริมาตรแต่ละรายการ คุณสามารถค้นหาหมายเลขโฟลว์ได้โดยเลือกโฟลว์จากรายการสีแบบเลื่อนลง และเลื่อนแถบเลื่อนแนวนอนไปเหนือเส้นรูปแบบ PA หมายเลขควรปรากฏที่ด้านล่างของหน้า ค่า PA ในอุดมคติควรลดลงตามอัตราการไหลตามปริมาตรที่สูงขึ้น หากไม่เป็นเช่นนั้น ให้ยืนยันว่าชุดดันเส้นของคุณทำงานอย่างถูกต้อง ยิ่งคุณพิมพ์ช้าลงและเร่งความเร็วน้อยลง ช่วงของค่า PA ที่ยอมรับได้ก็จะยิ่งมากขึ้นเท่านั้น หากไม่เห็นความแตกต่าง ให้ใช้ค่า PA จากการทดสอบที่เร็วกว่า\n" "2. จดบันทึกค่า PA ที่เหมาะสมที่สุดสำหรับความเร็วการไหลและความเร่งตามปริมาตรแต่ละรายการ คุณสามารถค้นหาหมายเลขโฟลว์ได้โดยเลือกโฟลว์จากรายการสีแบบเลื่อนลง และเลื่อนแถบเลื่อนแนวนอนไปเหนือเส้นรูปแบบ PA หมายเลขควรปรากฏที่ด้านล่างของหน้า ค่า PA ในอุดมคติควรลดลงตามอัตราการไหลตามปริมาตรที่สูงขึ้น หากไม่เป็นเช่นนั้น ให้ยืนยันว่าชุดดันเส้นของคุณทำงานอย่างถูกต้อง ยิ่งคุณพิมพ์ช้าลงและเร่งความเร็วน้อยลง ช่วงของค่า PA ที่ยอมรับได้ก็จะยิ่งมากขึ้นเท่านั้น หากไม่เห็นความแตกต่าง ให้ใช้ค่า PA จากการทดสอบที่เร็วกว่า\n"
"3. ป้อนค่า PA, การไหล และความเร่งสามเท่าในกล่องข้อความที่นี่ และบันทึกโปรไฟล์เส้นพลาสติกของคุณ" "3. ป้อนค่า PA, การไหล และความเร่งสามเท่าในกล่องข้อความที่นี่ และบันทึกโปรไฟล์เส้นพลาสติกของคุณ"
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "เปิดใช้งานการปรับPressure Advanceสำหรับระยะยื่น (เบต้า)" msgstr ""
msgid "" msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." "\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr "" msgstr ""
"เปิดใช้งาน PA แบบปรับตัวสำหรับส่วนยื่นและเมื่ออัตราการไหลเปลี่ยนภายในฟีเจอร์เดียวกัน เป็นตัวเลือกทดลอง หากโปรไฟล์ PA ไม่แม่นยำ จะทำให้ผิวด้านนอกไม่สม่ำเสมอก่อนและหลังส่วนยื่น\n"
"ไม่รองรับเครื่องพิมพ์ Prusa เพราะจะหยุดชั่วคราวเพื่อประมวลผลการเปลี่ยน PA ทำให้เกิดความล่าช้าและข้อบกพร่อง"
msgid "Pressure advance for bridges" msgid "Static pressure advance for bridges"
msgstr "แรงดันล่วงหน้า (Pressure Advance)สำหรับสะพาน" msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"ค่าPressure Advanceสำหรับสะพาน ตั้งค่าเป็น 0 เพื่อปิดใช้งาน\n"
"\n"
"ค่า PA ที่ต่ำลงเมื่อพิมพ์บริดจ์จะช่วยลดลักษณะที่ปรากฏเล็กน้อยจากการอัดขึ้นรูปทันทีหลังจากบริดจ์ สาเหตุนี้เกิดจากแรงดันตกในหัวฉีดเมื่อพิมพ์ในอากาศ และค่า PA ที่ต่ำกว่าจะช่วยแก้ปัญหานี้ได้"
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "ความกว้างของเส้นเริ่มต้นหากความกว้างของเส้นอื่นตั้งค่าเป็น 0 หากแสดงเป็น % ระบบจะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด" msgstr "ความกว้างของเส้นเริ่มต้นหากความกว้างของเส้นอื่นตั้งค่าเป็น 0 หากแสดงเป็น % ระบบจะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
@@ -12796,6 +12831,22 @@ msgstr "ทิศทางไส้ในแบบทึบ"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "มุมสำหรับรูปแบบไส้ในแบบทึบ ซึ่งควบคุมจุดเริ่มต้นหรือทิศทางหลักของเส้น" msgstr "มุมสำหรับรูปแบบไส้ในแบบทึบ ซึ่งควบคุมจุดเริ่มต้นหรือทิศทางหลักของเส้น"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "ความหนาแน่นไส้ในแบบโปร่ง" msgstr "ความหนาแน่นไส้ในแบบโปร่ง"
@@ -13002,6 +13053,17 @@ msgstr "ความเร็วพัดลมจะเพิ่มขึ้น
msgid "layer" msgid "layer"
msgstr "ชั้น" msgstr "ชั้น"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "ความเร็วพัดลมผิวสัมผัสส่วนรองรับ" msgstr "ความเร็วพัดลมผิวสัมผัสส่วนรองรับ"
@@ -14895,6 +14957,9 @@ msgstr "รอยแตกร้าวที่มีขนาดเล็กก
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "โหมดการแบ่งส่วน" msgstr "โหมดการแบ่งส่วน"
msgid "Other"
msgstr "อื่นๆ"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "ใช้ \"เลขคู่\" สำหรับโมเดลเครื่องบิน 3DLabPrint ใช้ \"ปิดรู\" เพื่อปิดรูทั้งหมดในโมเดล" msgstr "ใช้ \"เลขคู่\" สำหรับโมเดลเครื่องบิน 3DLabPrint ใช้ \"ปิดรู\" เพื่อปิดรูทั้งหมดในโมเดล"
@@ -15542,6 +15607,14 @@ msgstr "บิดรูหลายรู"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "หมุนโพลีโฮลทุกชั้น" msgstr "หมุนโพลีโฮลทุกชั้น"
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "ภาพขนาดย่อ G-code" msgstr "ภาพขนาดย่อ G-code"
@@ -17895,6 +17968,132 @@ msgstr "เข้าสู่ระบบ/ทดสอบ"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "การเชื่อมต่อกับเครื่องพิมพ์ที่เชื่อมต่อผ่านโฮสต์การพิมพ์ล้มเหลว" msgstr "การเชื่อมต่อกับเครื่องพิมพ์ที่เชื่อมต่อผ่านโฮสต์การพิมพ์ล้มเหลว"
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "ตัวเลือกอัปโหลดคลาวด์ 3DPrinterOS" msgstr "ตัวเลือกอัปโหลดคลาวด์ 3DPrinterOS"
@@ -17977,6 +18176,19 @@ msgstr "การเชื่อมต่อกับ MKS ทำงานอย
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "ไม่สามารถเชื่อมต่อกับ MKS" msgstr "ไม่สามารถเชื่อมต่อกับ MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "การเชื่อมต่อกับ OctoPrint ทำงานอย่างถูกต้อง" msgstr "การเชื่อมต่อกับ OctoPrint ทำงานอย่างถูกต้อง"
@@ -18726,6 +18938,12 @@ msgstr "จำนวนด้านสามเหลี่ยม"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "กำลังคำนวณ โปรดรอสักครู่..." msgstr "กำลังคำนวณ โปรดรอสักครู่..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "ชุดค่าที่ตั้งไว้ล่วงหน้า" msgstr "ชุดค่าที่ตั้งไว้ล่วงหน้า"
@@ -19127,6 +19345,101 @@ msgstr ""
"หลีกเลี่ยงการบิดเบี้ยว\n" "หลีกเลี่ยงการบิดเบี้ยว\n"
"คุณรู้หรือไม่ว่าเมื่อพิมพ์วัสดุที่มีแนวโน้มที่จะเกิดการบิดเบี้ยว เช่น ABS การเพิ่มอุณหภูมิฐานพิมพ์อย่างเหมาะสมสามารถลดความน่าจะเป็นของการบิดเบี้ยวได้" "คุณรู้หรือไม่ว่าเมื่อพิมพ์วัสดุที่มีแนวโน้มที่จะเกิดการบิดเบี้ยว เช่น ABS การเพิ่มอุณหภูมิฐานพิมพ์อย่างเหมาะสมสามารถลดความน่าจะเป็นของการบิดเบี้ยวได้"
#~ msgid "in"
#~ msgstr "นิ้ว"
#~ msgid "Object coordinates"
#~ msgstr "พิกัดวัตถุ"
#~ msgid "World coordinates"
#~ msgstr "พิกัดโลก"
#~ msgid "Translate(Relative)"
#~ msgstr "เลื่อนตำแหน่ง (แบบสัมพันธ์)"
#~ msgid "Rotate (absolute)"
#~ msgstr "หมุน (สัมบูรณ์)"
#~ msgid "Part coordinates"
#~ msgstr "พิกัดส่วน"
#~ msgid ""
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้านี้มีเวอร์ชันใหม่กว่าใน Orca Cloud\n"
#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
#~ msgid ""
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "ความขัดแย้งในการซิงก์ Cloud: มีค่าที่ตั้งไว้ล่วงหน้าชื่อนี้อยู่ใน Orca Cloud แล้ว\n"
#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
#~ msgid ""
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้าชื่อเดียวกันเคยถูกลบจากคลาวด์แล้ว\n"
#~ "ลบจะลบค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
#~ msgid ""
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "ความขัดแย้งในการซิงก์ Cloud: พบความขัดแย้งของค่าที่ตั้งไว้ล่วงหน้าที่ไม่คาดคิดหรือระบุไม่ได้\n"
#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "เนื้อหาที่ตั้งไว้ล่วงหน้ามีขนาดใหญ่เกินกว่าจะซิงค์กับระบบคลาวด์ (เกิน 1MB) โปรดลดขนาดที่กำหนดไว้ล่วงหน้าโดยการลบการกำหนดค่าที่กำหนดเองออกหรือใช้เฉพาะในเครื่องเท่านั้น"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "เปิดใช้งานการปรับPressure Advanceสำหรับระยะยื่น (เบต้า)"
#~ msgid ""
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
#~ msgstr ""
#~ "เปิดใช้งาน PA แบบปรับตัวสำหรับส่วนยื่นและเมื่ออัตราการไหลเปลี่ยนภายในฟีเจอร์เดียวกัน เป็นตัวเลือกทดลอง หากโปรไฟล์ PA ไม่แม่นยำ จะทำให้ผิวด้านนอกไม่สม่ำเสมอก่อนและหลังส่วนยื่น\n"
#~ "ไม่รองรับเครื่องพิมพ์ Prusa เพราะจะหยุดชั่วคราวเพื่อประมวลผลการเปลี่ยน PA ทำให้เกิดความล่าช้าและข้อบกพร่อง"
#~ msgid "Pressure advance for bridges"
#~ msgstr "แรงดันล่วงหน้า (Pressure Advance)สำหรับสะพาน"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "ค่าPressure Advanceสำหรับสะพาน ตั้งค่าเป็น 0 เพื่อปิดใช้งาน\n"
#~ "\n"
#~ "ค่า PA ที่ต่ำลงเมื่อพิมพ์บริดจ์จะช่วยลดลักษณะที่ปรากฏเล็กน้อยจากการอัดขึ้นรูปทันทีหลังจากบริดจ์ สาเหตุนี้เกิดจากแรงดันตกในหัวฉีดเมื่อพิมพ์ในอากาศ และค่า PA ที่ต่ำกว่าจะช่วยแก้ปัญหานี้ได้"
#~ msgid "Filament Sync Options"
#~ msgstr "ตัวเลือกการซิงค์ฟิลาเมนต์"
#~ msgid "(Experimental) Keep painted feature after mesh change"
#~ msgstr "(ทดลอง) เก็บคุณสมบัติการทาสีไว้หลังจากเปลี่ยนตาข่าย"
#~ msgid "Network plug-in"
#~ msgstr "ปลั๊กอินเครือข่าย"
#~ msgid "View control settings"
#~ msgstr "ดูการตั้งค่าการควบคุม"
#~ msgid "Rotate view"
#~ msgstr "หมุนมุมมอง"
#~ msgid "Pan view"
#~ msgstr "แพนวิว"
#~ msgid "Zoom view"
#~ msgstr "ซูมดู"
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "ล้อเมาส์จะกลับด้านเมื่อซูม"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "ซ้าย: %s" #~ msgstr "ซ้าย: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: 2026-04-08 23:59+0300\n" "PO-Revision-Date: 2026-04-08 23:59+0300\n"
"Last-Translator: GlauTech\n" "Last-Translator: GlauTech\n"
"Language-Team: \n" "Language-Team: \n"
@@ -336,8 +336,9 @@ msgstr "Gizmo-Ölçeklendir"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "Hata: Lütfen önce tüm araç çubuğu menülerini kapatın" msgstr "Hata: Lütfen önce tüm araç çubuğu menülerini kapatın"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "in" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -397,27 +398,30 @@ msgstr "Konumu Sıfırla"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "Döndürmeyi sıfırla" msgstr "Döndürmeyi sıfırla"
msgid "Object coordinates" msgid "World"
msgstr "Nesne koordinatları" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Dünya koordinatları" msgstr "Nesne"
msgid "Translate(Relative)" msgid "Part"
msgstr "Çevir(Göreceli)" msgstr "Parça"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Döndürme aracını açtığınızda mevcut döndürme değerini sıfırlayın." msgstr "Döndürme aracını açtığınızda mevcut döndürme değerini sıfırlayın."
msgid "Rotate (absolute)"
msgstr "Döndür (mutlak)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "Mevcut dönüşü gerçek sıfırlara sıfırla." msgstr "Mevcut dönüşü gerçek sıfırlara sıfırla."
msgid "Part coordinates"
msgstr "Parça koordinatları"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Boyut" msgstr "Boyut"
@@ -521,12 +525,6 @@ msgstr "Boşluk"
msgid "Spacing" msgid "Spacing"
msgstr "Boşluk" msgstr "Boşluk"
msgid "Part"
msgstr "Parça"
msgid "Object"
msgstr "Nesne"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1871,23 +1869,30 @@ msgstr "Projeyi Aç"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Orca Slicer'ın sürümü çok düşük ve normal şekilde kullanılabilmesi için en son sürüme güncellenmesi gerekiyor." msgstr "Orca Slicer'ın sürümü çok düşük ve normal şekilde kullanılabilmesi için en son sürüme güncellenmesi gerekiyor."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1896,6 +1901,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1970,7 +1981,8 @@ msgstr "Bulutta önbelleğe alınan kullanıcı ön ayarlarının sayısı üst
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Kullanıcı ön ayarlarını senkronize edin" msgstr "Kullanıcı ön ayarlarını senkronize edin"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2192,6 +2204,9 @@ msgstr "Orca Küpü"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Orca tolerans testi" msgstr "Orca tolerans testi"
@@ -5258,6 +5273,9 @@ msgstr "Çıkıntılar"
msgid "Outline" msgid "Outline"
msgstr "Taslak" msgstr "Taslak"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7886,6 +7904,50 @@ msgstr "İndirilen öğeler için klasör seçin"
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "İndirme Dizini seçin" msgstr "İndirme Dizini seçin"
msgid "(Latest)"
msgstr "(En sonuncu)"
msgid "Network plug-in switched successfully."
msgstr "Ağ eklentisi başarıyla değiştirildi."
msgid "Success"
msgstr "Başarı"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Ağ eklentisi yüklenemedi. Lütfen uygulamayı yeniden başlatın."
#, c-format, boost-format
msgid ""
"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 ""
"Ağ eklentisi %s sürümünü seçtiniz.\n"
"\n"
"Bu sürümü şimdi indirip yüklemek ister misiniz?\n"
"\n"
"Not: Uygulamanın kurulumdan sonra yeniden başlatılması gerekebilir."
msgid "Download Network Plug-in"
msgstr "Ağ Eklentisini İndirin"
msgid "Reload the network plug-in without restarting the application"
msgstr "Uygulamayı yeniden başlatmadan ağ eklentisini yeniden yükleyin"
msgid "Network plug-in reloaded successfully."
msgstr "Ağ eklentisi başarıyla yeniden yüklendi."
msgid "Reload"
msgstr "Yeniden yükle"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Ağ eklentisi yeniden yüklenemedi. Lütfen uygulamayı yeniden başlatın."
msgid "Reload Failed"
msgstr "Yeniden Yükleme Başarısız"
msgid "Associate" msgid "Associate"
msgstr "Ortak" msgstr "Ortak"
@@ -7941,12 +8003,6 @@ msgstr "Açılış ekranını göster"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Açılış sırasında açılış ekranını göster." msgstr "Açılış sırasında açılış ekranını göster."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -7977,6 +8033,13 @@ msgstr "Yükleme davranışı"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Bir .3mf açılırken yazıcı/filament/işlem ayarları yüklenmeli mi?" msgstr "Bir .3mf açılırken yazıcı/filament/işlem ayarları yüklenmeli mi?"
msgid "Auto backup"
msgstr "Otomatik yedekleme"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi düzenli aralıklarla yedekleyin."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "Son kullanılan dosyaların maksimum sayısı" msgstr "Son kullanılan dosyaların maksimum sayısı"
@@ -7995,12 +8058,55 @@ msgstr "STEP dosyasını içe aktarırken seçenekleri göster"
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Etkinleştirilirse, STEP dosyası içe aktarılırken bir parametre ayarları iletişim kutusu görüntülenir." msgstr "Etkinleştirilirse, STEP dosyası içe aktarılırken bir parametre ayarları iletişim kutusu görüntülenir."
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "Otomatik yedekleme" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi düzenli aralıklarla yedekleyin." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Draco dışa aktarımı için kalite düzeyi"
msgid "bits"
msgstr "bitler"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Mesh Draco formatına sıkıştırılırken kullanılan niceleme bit derinliğini kontrol eder.\n"
"0 = kayıpsız sıkıştırma (geometri tam hassasiyetle korunur). Geçerli kayıplı değerler 8 ile 30 arasında değişir.\n"
"Daha düşük değerler daha küçük dosyalar oluşturur ancak daha fazla geometrik ayrıntıyı kaybeder; daha yüksek değerler, daha büyük dosyalar pahasına daha fazla ayrıntıyı korur."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Ön ayar" msgstr "Ön ayar"
@@ -8032,6 +8138,12 @@ msgstr "filamentler"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Seçilen filaman sayısına göre filaman alanı maksimum yüksekliğini optimize eder." msgstr "Seçilen filaman sayısına göre filaman alanı maksimum yüksekliğini optimize eder."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "Özellikler" msgstr "Özellikler"
@@ -8044,21 +8156,6 @@ msgstr "Bu seçenek etkinleştirildiğinde, aynı anda birden fazla cihaza bir g
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "Filament gruplama modunu seçmek için açılır pencere" msgstr "Filament gruplama modunu seçmek için açılır pencere"
msgid "Quality level for Draco export"
msgstr "Draco dışa aktarımı için kalite düzeyi"
msgid "bits"
msgstr "bitler"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Mesh Draco formatına sıkıştırılırken kullanılan niceleme bit derinliğini kontrol eder.\n"
"0 = kayıpsız sıkıştırma (geometri tam hassasiyetle korunur). Geçerli kayıplı değerler 8 ile 30 arasında değişir.\n"
"Daha düşük değerler daha küçük dosyalar oluşturur ancak daha fazla geometrik ayrıntıyı kaybeder; daha yüksek değerler, daha büyük dosyalar pahasına daha fazla ayrıntıyı korur."
msgid "Behaviour" msgid "Behaviour"
msgstr "Davranış" msgstr "Davranış"
@@ -8286,19 +8383,6 @@ msgstr "Yalnızca kararlı güncellemeleri kontrol edin"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Kullanıcı ön ayarları otomatik senkronizasyon (Yazıcı/Filament/İşlem)" msgstr "Kullanıcı ön ayarları otomatik senkronizasyon (Yazıcı/Filament/İşlem)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Yerleşik Ön Ayarları otomatik olarak güncelleyin."
msgid "Use encrypted file for token storage"
msgstr "Belirteç depolaması için şifrelenmiş dosyayı kullan"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Kimlik doğrulama belirteçlerini sistem anahtarlığı yerine şifrelenmiş bir dosyada saklayın. (Yeniden başlatma gerektirir)"
msgid "Filament Sync Options"
msgstr "Filament Senkronizasyon Seçenekleri"
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "Filament senkronizasyon modu" msgstr "Filament senkronizasyon modu"
@@ -8311,6 +8395,16 @@ msgstr "Filament ve Renk"
msgid "Color only" msgid "Color only"
msgstr "Yalnızca renk" msgstr "Yalnızca renk"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Yerleşik Ön Ayarları otomatik olarak güncelleyin."
msgid "Use encrypted file for token storage"
msgstr "Belirteç depolaması için şifrelenmiş dosyayı kullan"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Kimlik doğrulama belirteçlerini sistem anahtarlığı yerine şifrelenmiş bir dosyada saklayın. (Yeniden başlatma gerektirir)"
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8323,35 +8417,6 @@ msgstr "Ağ eklentisi sürümü"
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "Kullanılacak ağ eklentisi sürümünü seçin" msgstr "Kullanılacak ağ eklentisi sürümünü seçin"
msgid "(Latest)"
msgstr "(En sonuncu)"
msgid "Network plug-in switched successfully."
msgstr "Ağ eklentisi başarıyla değiştirildi."
msgid "Success"
msgstr "Başarı"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Ağ eklentisi yüklenemedi. Lütfen uygulamayı yeniden başlatın."
#, c-format, boost-format
msgid ""
"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 ""
"Ağ eklentisi %s sürümünü seçtiniz.\n"
"\n"
"Bu sürümü şimdi indirip yüklemek ister misiniz?\n"
"\n"
"Not: Uygulamanın kurulumdan sonra yeniden başlatılması gerekebilir."
msgid "Download Network Plug-in"
msgstr "Ağ Eklentisini İndirin"
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Dosyaları OrcaSlicer ile ilişkilendirin" msgstr "Dosyaları OrcaSlicer ile ilişkilendirin"
@@ -8397,7 +8462,16 @@ msgstr "Geliştirici"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "AMS kara liste kontrolünü atla" msgstr "AMS kara liste kontrolünü atla"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8405,12 +8479,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "Anormal Depolamaya İzin Ver" msgstr "Anormal Depolamaya İzin Ver"
@@ -8439,24 +8507,6 @@ msgstr "hata ayıklama"
msgid "trace" msgid "trace"
msgstr "iz" msgstr "iz"
msgid "Network plug-in"
msgstr "Ağ eklentisi"
msgid "Reload"
msgstr "Yeniden yükle"
msgid "Reload the network plug-in without restarting the application"
msgstr "Uygulamayı yeniden başlatmadan ağ eklentisini yeniden yükleyin"
msgid "Network plug-in reloaded successfully."
msgstr "Ağ eklentisi başarıyla yeniden yüklendi."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Ağ eklentisi yeniden yüklenemedi. Lütfen uygulamayı yeniden başlatın."
msgid "Reload Failed"
msgstr "Yeniden Yükleme Başarısız"
msgid "Debug" msgid "Debug"
msgstr "Hata ayıklama" msgstr "Hata ayıklama"
@@ -8472,25 +8522,6 @@ msgstr "Ön ayar senkronizasyonu"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Tercihler senkronizasyonu" msgstr "Tercihler senkronizasyonu"
msgid "View control settings"
msgstr "Kontrol ayarlarını görüntüle"
msgid "Rotate view"
msgstr "Görüntüyü döndür"
msgid "Pan view"
msgstr "Pan Görünümü"
msgid "Zoom view"
msgstr "Zoom Görünümü"
msgid "Other"
msgstr "Diğer"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Yakınlaştırma sırasında fare tekerleği ters dönüyor"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "SSL'yi etkinleştir(MQTT)" msgstr "SSL'yi etkinleştir(MQTT)"
@@ -12389,6 +12420,18 @@ msgstr "Küçük çevre (perimeter) eşiği"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Bu, küçük çevre uzunluğu için eşiği belirler. Varsayılan eşik 0 mm'dir." msgstr "Bu, küçük çevre uzunluğu için eşiği belirler. Varsayılan eşik 0 mm'dir."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "Duvar baskı sırası" msgstr "Duvar baskı sırası"
@@ -12572,25 +12615,26 @@ msgstr ""
"2. Her hacimsel akış hızı ve ivme için en uygun PA değerini not edin. Renk şemasıılır menüsünden akışı seçerek ve yatay kaydırıcıyı PA desen çizgileri üzerinde hareket ettirerek akış numarasını bulabilirsiniz. Numara sayfanın altında görünmelidir. İdeal PA değeri hacimsel akış ne kadar yüksek olursa o kadar azalmalıdır. Değilse, ekstruderinizin doğru şekilde çalıştığını doğrulayın. Ne kadar yavaş ve daha az ivmeyle yazdırırsanız, 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" "2. Her hacimsel akış hızı ve ivme için en uygun PA değerini not edin. Renk şemasıılır menüsünden akışı seçerek ve yatay kaydırıcıyı PA desen çizgileri üzerinde hareket ettirerek akış numarasını bulabilirsiniz. Numara sayfanın altında görünmelidir. İdeal PA değeri hacimsel akış ne kadar yüksek olursa o kadar azalmalıdır. Değilse, ekstruderinizin doğru şekilde çalıştığını doğrulayın. Ne kadar yavaş ve daha az ivmeyle yazdırırsanız, 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." "3. Buradaki metin kutusuna PA değerleri, Akış ve Hızlanma üçlüsünü girin ve filament profilinizi kaydedin."
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
msgid "Pressure advance for bridges" msgid ""
msgstr "Köprüler için basınç ilerlemesi" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"Köprüler için basınç ilerleme değeri. Devre dışı bırakmak için 0a ayarlayın.\n"
"\n"
" Köprüleri yazdırırken daha düşük bir basınç değeri, köprülerden hemen sonra hafif ekstrüzyon görünümünün azaltılmasına yardımcı olur. Bunun nedeni, havada yazdırma sırasında nozuldaki basınç düşüşüdür ve daha düşük bir basınç, bunu önlemeye yardımcı olur."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Diğer çizgi genişlikleri 0'a ayarlanmışsa varsayılan çizgi genişliği. % olarak ifade edilirse nozul çapı üzerinden hesaplanacaktır." msgstr "Diğer çizgi genişlikleri 0'a ayarlanmışsa varsayılan çizgi genişliği. % olarak ifade edilirse nozul çapı üzerinden hesaplanacaktır."
@@ -12973,6 +13017,22 @@ msgstr "Katı dolgu yönü"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Hattın başlangıcını veya ana yönünü kontrol eden katı dolgu deseni açısı." msgstr "Hattın başlangıcını veya ana yönünü kontrol eden katı dolgu deseni açısı."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Dolgu yoğunluğu" msgstr "Dolgu yoğunluğu"
@@ -13186,6 +13246,17 @@ msgstr "Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan \"fu
msgid "layer" msgid "layer"
msgstr "katman" msgstr "katman"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Destekler için fan hızı" msgstr "Destekler için fan hızı"
@@ -15074,6 +15145,9 @@ msgstr "Üçgen mesh dilimleme sırasında 2x boşluk kapatma yarıçapından k
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Dilimleme modu" msgstr "Dilimleme modu"
msgid "Other"
msgstr "Diğer"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "3DLabPrint uçak modelleri için \"Çift-tek\" seçeneğini kullanın. Modeldeki tüm delikleri kapatmak için \"Delikleri kapat\"ı kullanın." msgstr "3DLabPrint uçak modelleri için \"Çift-tek\" seçeneğini kullanın. Modeldeki tüm delikleri kapatmak için \"Delikleri kapat\"ı kullanın."
@@ -15754,6 +15828,14 @@ msgstr "Çokgen delik eğrisi"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "Çokgeni her katmanda döndürün." msgstr "Çokgeni her katmanda döndürün."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "G-code önizleme resimleri" msgstr "G-code önizleme resimleri"
@@ -18145,6 +18227,132 @@ msgstr "Giriş/Test"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "Yazdırma ana bilgisayarı aracılığıyla bağlanan yazıcılara bağlantı başarısız oldu." msgstr "Yazdırma ana bilgisayarı aracılığıyla bağlanan yazıcılara bağlantı başarısız oldu."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -18227,6 +18435,19 @@ msgstr "MKS'ye bağlantı düzgün çalışıyor."
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "MKS'ye bağlanılamadı" msgstr "MKS'ye bağlanılamadı"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "OctoPrint'e bağlantı düzgün çalışıyor." msgstr "OctoPrint'e bağlantı düzgün çalışıyor."
@@ -18978,6 +19199,12 @@ msgstr "Üçgen yüzeylerin sayısı"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "Hesaplanıyor, lütfen bekleyin..." msgstr "Hesaplanıyor, lütfen bekleyin..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -19383,6 +19610,61 @@ msgstr ""
"Eğilmeyi önleyin\n" "Eğilmeyi önleyin\n"
"ABS gibi bükülmeye yatkın malzemelere baskı yaparken, ısıtma yatağı sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını azaltabileceğini biliyor muydunuz?" "ABS gibi bükülmeye yatkın malzemelere baskı yaparken, ısıtma yatağı sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını azaltabileceğini biliyor muydunuz?"
#~ msgid "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Nesne koordinatları"
#~ msgid "World coordinates"
#~ msgstr "Dünya koordinatları"
#~ msgid "Translate(Relative)"
#~ msgstr "Çevir(Göreceli)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Döndür (mutlak)"
#~ msgid "Part coordinates"
#~ msgstr "Parça koordinatları"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Köprüler için basınç ilerlemesi"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Köprüler için basınç ilerleme değeri. Devre dışı bırakmak için 0a ayarlayın.\n"
#~ "\n"
#~ " Köprüleri yazdırırken daha düşük bir basınç değeri, köprülerden hemen sonra hafif ekstrüzyon görünümünün azaltılmasına yardımcı olur. Bunun nedeni, havada yazdırma sırasında nozuldaki basınç düşüşüdür ve daha düşük bir basınç, bunu önlemeye yardımcı olur."
#~ msgid "Filament Sync Options"
#~ msgstr "Filament Senkronizasyon Seçenekleri"
#~ msgid "Network plug-in"
#~ msgstr "Ağ eklentisi"
#~ msgid "View control settings"
#~ msgstr "Kontrol ayarlarını görüntüle"
#~ msgid "Rotate view"
#~ msgstr "Görüntüyü döndür"
#~ msgid "Pan view"
#~ msgstr "Pan Görünümü"
#~ msgid "Zoom view"
#~ msgstr "Zoom Görünümü"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Yakınlaştırma sırasında fare tekerleği ters dönüyor"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "Sol: %s" #~ msgstr "Sol: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: orcaslicerua\n" "Project-Id-Version: orcaslicerua\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: 2025-03-07 09:30+0200\n" "PO-Revision-Date: 2025-03-07 09:30+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Ukrainian\n" "Language-Team: Ukrainian\n"
@@ -341,8 +341,9 @@ msgstr "Gizmo масштабування"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "Помилка: будь ласка, спочатку закрийте все меню панелі інструментів" msgstr "Помилка: будь ласка, спочатку закрийте все меню панелі інструментів"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "в" msgstr ""
msgid "mm" msgid "mm"
msgstr "мм" msgstr "мм"
@@ -402,27 +403,30 @@ msgstr "Скинути позицію"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "Скинути обертання" msgstr "Скинути обертання"
msgid "Object coordinates" msgid "World"
msgstr "Координати об'єкта" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Глобальні координати" msgstr "Об'єкт"
msgid "Translate(Relative)" msgid "Part"
msgstr "Частина"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr "" msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Скинути поточне обертання до значення при відкритті інструмента обертання." msgstr "Скинути поточне обертання до значення при відкритті інструмента обертання."
msgid "Rotate (absolute)"
msgstr "Обертання (абсолютне)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "Скинути поточне обертання до нульових значень." msgstr "Скинути поточне обертання до нульових значень."
msgid "Part coordinates"
msgstr "Координати частини"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Розмір" msgstr "Розмір"
@@ -526,12 +530,6 @@ msgstr "Проміжок"
msgid "Spacing" msgid "Spacing"
msgstr "Відстань" msgstr "Відстань"
msgid "Part"
msgstr "Частина"
msgid "Object"
msgstr "Об'єкт"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1878,23 +1876,30 @@ msgstr "Відкрити проєкт"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Версія студії Bambu надто низька, її необхідно оновити до останньоїверсії, перш ніж її можна буде використовувати у звичайному режимі" msgstr "Версія студії Bambu надто низька, її необхідно оновити до останньоїверсії, перш ніж її можна буде використовувати у звичайному режимі"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1903,6 +1908,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1970,7 +1981,8 @@ msgstr "Кількість налаштувань користувача, збе
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Синхронізувати налаштування користувача" msgstr "Синхронізувати налаштування користувача"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2192,6 +2204,9 @@ msgstr "Orca Куб"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Тест на допуски ORCA" msgstr "Тест на допуски ORCA"
@@ -5259,6 +5274,9 @@ msgstr "Нависання"
msgid "Outline" msgid "Outline"
msgstr "Контур" msgstr "Контур"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7905,6 +7923,45 @@ msgstr ""
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "Виберіть каталог завантаження" msgstr "Виберіть каталог завантаження"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate" msgid "Associate"
msgstr "Ассоціювати" msgstr "Ассоціювати"
@@ -7960,12 +8017,6 @@ msgstr "Показувати заставку"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Показувати заставку під час запуску." msgstr "Показувати заставку під час запуску."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -7996,6 +8047,13 @@ msgstr "Поведінка завантаження"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Чи повинні бути завантажені налаштування принтера/філаменту/процесу при відкритті файлу .3mf?" msgstr "Чи повинні бути завантажені налаштування принтера/філаменту/процесу при відкритті файлу .3mf?"
msgid "Auto backup"
msgstr "Автобекап"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Періодично робіть резервну копію вашого проекту для відновлення після випадкового збою."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "" msgstr ""
@@ -8014,12 +8072,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "" msgstr ""
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "Автобекап" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "Періодично робіть резервну копію вашого проекту для відновлення після випадкового збою." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Шаблон" msgstr "Шаблон"
@@ -8051,6 +8149,12 @@ msgstr "філаменти"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "" msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "" msgstr ""
@@ -8063,18 +8167,6 @@ msgstr "З цією опцією ввімкненою, ви можете від
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "" msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour" msgid "Behaviour"
msgstr "" msgstr ""
@@ -8302,19 +8394,6 @@ msgstr "Перевіряти лише стабільні оновлення"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Автоматична синхронізація користувацьких профілів (принтер/філамент/процес)" msgstr "Автоматична синхронізація користувацьких профілів (принтер/філамент/процес)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Оновлюйте вбудовані пресети автоматично."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "" msgstr ""
@@ -8327,6 +8406,16 @@ msgstr ""
msgid "Color only" msgid "Color only"
msgstr "" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Оновлюйте вбудовані пресети автоматично."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8339,30 +8428,6 @@ msgstr ""
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "" msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Асоціювати файли з OrcaSlicer" msgstr "Асоціювати файли з OrcaSlicer"
@@ -8411,7 +8476,16 @@ msgstr ""
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "Пропустити перевірку чорного списку AMS" msgstr "Пропустити перевірку чорного списку AMS"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8419,12 +8493,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "" msgstr ""
@@ -8451,24 +8519,6 @@ msgstr "налагодження"
msgid "trace" msgid "trace"
msgstr "слід" msgstr "слід"
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug" msgid "Debug"
msgstr "" msgstr ""
@@ -8484,25 +8534,6 @@ msgstr "Синхронізація профілів"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Синхронізація налаштувань" msgstr "Синхронізація налаштувань"
msgid "View control settings"
msgstr "Перегляд параметрів керування"
msgid "Rotate view"
msgstr "Повернути вигляд"
msgid "Pan view"
msgstr "Панорамний вигляд"
msgid "Zoom view"
msgstr "Перегляд масштабу"
msgid "Other"
msgstr "Інший"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Колісок миші реверсує при масштабуванні"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "Увімкнути SSL (MQTT)" msgstr "Увімкнути SSL (MQTT)"
@@ -12372,6 +12403,18 @@ msgstr "Поріг малих периметрів"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "При цьому встановлюється поріг для невеликої довжини периметра. Порігове за замовчуванням - 0 мм" msgstr "При цьому встановлюється поріг для невеликої довжини периметра. Порігове за замовчуванням - 0 мм"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "Послідовність друку стінок" msgstr "Послідовність друку стінок"
@@ -12559,25 +12602,26 @@ msgstr ""
"2. Запишіть оптимальне значення PA для кожної об'ємної швидкості подачі та прискорення. Ви можете знайти значення подачі, вибравши \"Flow\" у випадаючому списку колірної схеми та пересуваючи горизонтальний повзунок по лініях шаблону PA. Значення повинне відображатися внизу сторінки. Ідеальне значення PA має зменшуватися зі збільшенням об'ємної швидкості подачі. Якщо це не так, переконайтеся, що ваш екструдер працює коректно. Чим повільніше друкуєте і з меншим прискоренням, тим ширший діапазон допустимих значень PA. Якщо різниця не помітна, використовуйте значення PA із швидшого тесту.\n" "2. Запишіть оптимальне значення PA для кожної об'ємної швидкості подачі та прискорення. Ви можете знайти значення подачі, вибравши \"Flow\" у випадаючому списку колірної схеми та пересуваючи горизонтальний повзунок по лініях шаблону PA. Значення повинне відображатися внизу сторінки. Ідеальне значення PA має зменшуватися зі збільшенням об'ємної швидкості подачі. Якщо це не так, переконайтеся, що ваш екструдер працює коректно. Чим повільніше друкуєте і з меншим прискоренням, тим ширший діапазон допустимих значень PA. Якщо різниця не помітна, використовуйте значення PA із швидшого тесту.\n"
"3. Введіть трійки значень PA, Flow і Acceleration у це текстове поле та збережіть профіль філамента." "3. Введіть трійки значень PA, Flow і Acceleration у це текстове поле та збережіть профіль філамента."
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "Увімкнути адаптивне випередження тиску для нависань (бета)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
msgid "Pressure advance for bridges" msgid ""
msgstr "Випередження тиску для мостів" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"Значення випередження тиску для мостів. Встановіть 0, щоб вимкнути.\n"
"\n"
"Нижче значення випередження тиску при друкуванні мостів допомагає зменшити прояви незначної недоекструзії одразу після друку мостів. Це спричинено падінням тиску в соплі під час друку в повітрі, і зменшене значення випередження тиску допомагає це компенсувати."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Ширина лінії за замовчуванням, якщо інші ширини ліній встановлено на 0. Якщо виражено у %, вона буде розрахована за діаметром сопла." msgstr "Ширина лінії за замовчуванням, якщо інші ширини ліній встановлено на 0. Якщо виражено у %, вона буде розрахована за діаметром сопла."
@@ -12955,6 +12999,22 @@ msgstr "Напрямок cуцільного заповнення"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Кут шаблону суцільного заповнення, який контролює початок або основний напрямок лінії" msgstr "Кут шаблону суцільного заповнення, який контролює початок або основний напрямок лінії"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Щільність часткового заповнення" msgstr "Щільність часткового заповнення"
@@ -13168,6 +13228,17 @@ msgstr "Швидкість вентилятора лінійно збільшу
msgid "layer" msgid "layer"
msgstr "шар" msgstr "шар"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Швидкість вентилятора під час друку підтримки" msgstr "Швидкість вентилятора під час друку підтримки"
@@ -15055,6 +15126,9 @@ msgstr "Під час розрізання тріщини на трикутну
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Режим нарізки" msgstr "Режим нарізки"
msgid "Other"
msgstr "Інший"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Використовуйте «парний-непарний» для моделей літаків 3DLabPrint. Використовуйте «Закрити отвори», щоб закрити всі отвори в моделі." msgstr "Використовуйте «парний-непарний» для моделей літаків 3DLabPrint. Використовуйте «Закрити отвори», щоб закрити всі отвори в моделі."
@@ -15727,6 +15801,14 @@ msgstr "Скручування полігонів"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "Повертайте полігон кожен шар." msgstr "Повертайте полігон кожен шар."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "Мініатюри G-code" msgstr "Мініатюри G-code"
@@ -18089,6 +18171,132 @@ msgstr "Вхід/Тест"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "Не вдалося підключитися до принтерів, підключених через вузол друку." msgstr "Не вдалося підключитися до принтерів, підключених через вузол друку."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -18171,6 +18379,19 @@ msgstr "З’єднання з MKS працює коректно."
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "Не вдалося підключитися до MKS" msgstr "Не вдалося підключитися до MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "Підключення до OctoPrint працює правильно." msgstr "Підключення до OctoPrint працює правильно."
@@ -18922,6 +19143,12 @@ msgstr "Кількість трикутних граней"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "Розрахунок, будь ласка, зачекайте…" msgstr "Розрахунок, будь ласка, зачекайте…"
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -19327,6 +19554,52 @@ msgstr ""
"Уникнення деформації\n" "Уникнення деформації\n"
"Чи знаєте ви, що при друку матеріалами, схильними до деформації, такими як ABS, відповідне підвищення температури гарячого ліжка може зменшити ймовірність деформації?" "Чи знаєте ви, що при друку матеріалами, схильними до деформації, такими як ABS, відповідне підвищення температури гарячого ліжка може зменшити ймовірність деформації?"
#~ msgid "in"
#~ msgstr "в"
#~ msgid "Object coordinates"
#~ msgstr "Координати об'єкта"
#~ msgid "World coordinates"
#~ msgstr "Глобальні координати"
#~ msgid "Rotate (absolute)"
#~ msgstr "Обертання (абсолютне)"
#~ msgid "Part coordinates"
#~ msgstr "Координати частини"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Увімкнути адаптивне випередження тиску для нависань (бета)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Випередження тиску для мостів"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Значення випередження тиску для мостів. Встановіть 0, щоб вимкнути.\n"
#~ "\n"
#~ "Нижче значення випередження тиску при друкуванні мостів допомагає зменшити прояви незначної недоекструзії одразу після друку мостів. Це спричинено падінням тиску в соплі під час друку в повітрі, і зменшене значення випередження тиску допомагає це компенсувати."
#~ msgid "View control settings"
#~ msgstr "Перегляд параметрів керування"
#~ msgid "Rotate view"
#~ msgstr "Повернути вигляд"
#~ msgid "Pan view"
#~ msgstr "Панорамний вигляд"
#~ msgid "Zoom view"
#~ msgstr "Перегляд масштабу"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Колісок миші реверсує при масштабуванні"
#~ msgid "Enable network plug-in" #~ msgid "Enable network plug-in"
#~ msgstr "Увімкнути мережевий плагін" #~ msgstr "Увімкнути мережевий плагін"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: 2025-10-02 17:43+0700\n" "PO-Revision-Date: 2025-10-02 17:43+0700\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: hainguyen.ts13@gmail.com\n" "Language-Team: hainguyen.ts13@gmail.com\n"
@@ -337,8 +337,9 @@ msgstr "Gizmo - Tỷ lệ"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "Lỗi: Vui lòng đóng tất cả menu thanh công cụ trước" msgstr "Lỗi: Vui lòng đóng tất cả menu thanh công cụ trước"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "in" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -398,27 +399,30 @@ msgstr "Đặt lại vị trí"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "Đặt lại xoay" msgstr "Đặt lại xoay"
msgid "Object coordinates" msgid "World"
msgstr "Tọa độ vật thể" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "Tọa độ thế giới" msgstr "Vật thể"
msgid "Translate(Relative)" msgid "Part"
msgstr "Phần"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr "" msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Đặt lại xoay hiện tại về giá trị khi mở công cụ xoay." msgstr "Đặt lại xoay hiện tại về giá trị khi mở công cụ xoay."
msgid "Rotate (absolute)"
msgstr "Xoay (tuyệt đối)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "Đặt lại xoay hiện tại về số không thực." msgstr "Đặt lại xoay hiện tại về số không thực."
msgid "Part coordinates"
msgstr "Tọa độ phần"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "Kích thước" msgstr "Kích thước"
@@ -522,12 +526,6 @@ msgstr ""
msgid "Spacing" msgid "Spacing"
msgstr "Khoảng cách" msgstr "Khoảng cách"
msgid "Part"
msgstr "Phần"
msgid "Object"
msgstr "Vật thể"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1871,23 +1869,30 @@ msgstr "Mở dự án"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Phiên bản Orca Slicer quá cũ và cần được cập nhật lên phiên bản mới nhất trước khi có thể sử dụng bình thường." msgstr "Phiên bản Orca Slicer quá cũ và cần được cập nhật lên phiên bản mới nhất trước khi có thể sử dụng bình thường."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid "" msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
@@ -1896,6 +1901,12 @@ msgid ""
"Do you want to continue?" "Do you want to continue?"
msgstr "" msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "" msgstr ""
@@ -1963,7 +1974,8 @@ msgstr "Số lượng preset người dùng đã lưu trong cloud vượt quá g
msgid "Sync user presets" msgid "Sync user presets"
msgstr "Đồng bộ preset người dùng" msgstr "Đồng bộ preset người dùng"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "" msgstr ""
#, c-format, boost-format #, c-format, boost-format
@@ -2184,6 +2196,9 @@ msgstr ""
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "" msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "" msgstr ""
@@ -5230,6 +5245,9 @@ msgstr "Phần nhô"
msgid "Outline" msgid "Outline"
msgstr "" msgstr ""
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "" msgstr ""
@@ -7844,6 +7862,45 @@ msgstr ""
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "Chọn thư mục tải xuống" msgstr "Chọn thư mục tải xuống"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate" msgid "Associate"
msgstr "Liên kết" msgstr "Liên kết"
@@ -7898,12 +7955,6 @@ msgstr "Hiển thị màn hình khởi động"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "Hiển thị màn hình khởi động trong khi khởi động." msgstr "Hiển thị màn hình khởi động trong khi khởi động."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "" msgstr ""
@@ -7934,6 +7985,13 @@ msgstr ""
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Có nên tải cài đặt máy in/filament/quy trình khi mở file 3MF?" msgstr "Có nên tải cài đặt máy in/filament/quy trình khi mở file 3MF?"
msgid "Auto backup"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Sao lưu dự án của bạn định kỳ để khôi phục từ sự cố thỉnh thoảng."
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "Số file gần đây tối đa" msgstr "Số file gần đây tối đa"
@@ -7952,12 +8010,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Nếu được bật, hộp thoại cài đặt tham số sẽ xuất hiện trong quá trình nhập file STEP." msgstr "Nếu được bật, hộp thoại cài đặt tham số sẽ xuất hiện trong quá trình nhập file STEP."
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "Sao lưu dự án của bạn định kỳ để khôi phục từ sự cố thỉnh thoảng." "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "Cài đặt sẵn" msgstr "Cài đặt sẵn"
@@ -7989,6 +8087,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "" msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features" msgid "Features"
msgstr "" msgstr ""
@@ -8001,18 +8105,6 @@ msgstr "Với tùy chọn này được bật, bạn có thể gửi tác vụ
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "" msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour" msgid "Behaviour"
msgstr "" msgstr ""
@@ -8240,19 +8332,6 @@ msgstr "Chỉ kiểm tra cập nhật ổn định"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Tự động đồng bộ preset người dùng (Máy in/Filament/Quy trình)" msgstr "Tự động đồng bộ preset người dùng (Máy in/Filament/Quy trình)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Cập nhật preset tích hợp tự động."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "" msgstr ""
@@ -8265,6 +8344,16 @@ msgstr "Sợi và Màu sắc"
msgid "Color only" msgid "Color only"
msgstr "Chỉ màu" msgstr "Chỉ màu"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Cập nhật preset tích hợp tự động."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "" msgstr ""
@@ -8277,30 +8366,6 @@ msgstr ""
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "" msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"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 Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Liên kết file với OrcaSlicer" msgstr "Liên kết file với OrcaSlicer"
@@ -8346,7 +8411,16 @@ msgstr ""
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "Bỏ qua kiểm tra danh sách đen AMS" msgstr "Bỏ qua kiểm tra danh sách đen AMS"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8354,12 +8428,6 @@ msgid ""
"Highly experimental! Slow and may create artifact." "Highly experimental! Slow and may create artifact."
msgstr "" msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "" msgstr ""
@@ -8386,24 +8454,6 @@ msgstr "gỡ lỗi"
msgid "trace" msgid "trace"
msgstr "theo dõi" msgstr "theo dõi"
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug" msgid "Debug"
msgstr "" msgstr ""
@@ -8419,25 +8469,6 @@ msgstr "Đồng bộ preset"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "Đồng bộ tùy chọn" msgstr "Đồng bộ tùy chọn"
msgid "View control settings"
msgstr "Cài đặt điều khiển chế độ xem"
msgid "Rotate view"
msgstr "Xoay chế độ xem"
msgid "Pan view"
msgstr "Kéo chế độ xem"
msgid "Zoom view"
msgstr "Thu phóng chế độ xem"
msgid "Other"
msgstr "Khác"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Con lăn chuột đảo ngược khi thu phóng"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "Bật SSL(MQTT)" msgstr "Bật SSL(MQTT)"
@@ -12285,6 +12316,18 @@ msgstr "Ngưỡng chu vi nhỏ"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Điều này đặt ngưỡng cho độ dài chu vi nhỏ. Ngưỡng mặc định là 0mm." msgstr "Điều này đặt ngưỡng cho độ dài chu vi nhỏ. Ngưỡng mặc định là 0mm."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "Thứ tự in thành" msgstr "Thứ tự in thành"
@@ -12469,25 +12512,26 @@ msgstr ""
"2. Ghi chú giá trị PA tối ưu cho mỗi tốc độ lưu lượng thể tích và gia tốc. Bạn có thể tìm số lưu lượng bằng cách chọn lưu lượng từ menu thả xuống sơ đồ màu và di chuyển thanh trượt ngang qua các đường mẫu PA. Số nên hiển thị ở cuối trang. Giá trị PA lý tưởng nên giảm xuống khi lưu lượng thể tích càng cao. Nếu không, hãy xác nhận rằng extruder của bạn đang hoạt động chính xác. Càng chậm và với gia tốc ít hơn bạn in, phạm vi giá trị PA chấp nhận được 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" "2. Ghi chú giá trị PA tối ưu cho mỗi tốc độ lưu lượng thể tích và gia tốc. Bạn có thể tìm số lưu lượng bằng cách chọn lưu lượng từ menu thả xuống sơ đồ màu và di chuyển thanh trượt ngang qua các đường mẫu PA. Số nên hiển thị ở cuối trang. Giá trị PA lý tưởng nên giảm xuống khi lưu lượng thể tích càng cao. Nếu không, hãy xác nhận rằng extruder của bạn đang hoạt động chính xác. Càng chậm và với gia tốc ít hơn bạn in, phạm vi giá trị PA chấp nhận được 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." "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."
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "Bật áp suất nâng cao thích ứng cho phần nhô (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
msgid "Pressure advance for bridges" msgid ""
msgstr "Áp suất nâng cao cho cầu" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "" msgstr ""
"Giá trị áp suất nâng cao cho cầu. Đặt thành 0 để tắt.\n"
"\n"
"Giá trị PA thấp hơn khi in cầu giúp giảm sự xuất hiện của đùn thiếu nhỏ ngay sau cầu. Điều này được gây ra bởi áp suất giảm trong đầu phun khi in trong không khí và PA thấp hơn giúp chống lại điều này."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Độ rộng đường mặc định nếu độ rộng đường khác được đặt thành 0. Nếu được biểu thị dưới dạng %, nó sẽ được tính trên đường kính đầu phun." msgstr "Độ rộng đường mặc định nếu độ rộng đường khác được đặt thành 0. Nếu được biểu thị dưới dạng %, nó sẽ được tính trên đường kính đầu phun."
@@ -12867,6 +12911,22 @@ msgstr "Hướng infill đặc"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Góc cho mẫu infill đặc, điều khiển hướng bắt đầu hoặc chính của đường." msgstr "Góc cho mẫu infill đặc, điều khiển hướng bắt đầu hoặc chính của đường."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Mật độ infill thưa" msgstr "Mật độ infill thưa"
@@ -13080,6 +13140,17 @@ msgstr "Tốc độ quạt sẽ được tăng tuyến tính từ không tại l
msgid "layer" msgid "layer"
msgstr "lớp" msgstr "lớp"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "Tốc độ quạt giao diện support" msgstr "Tốc độ quạt giao diện support"
@@ -14966,6 +15037,9 @@ msgstr "Vết nứt nhỏ hơn 2x bán kính đóng khe được lấp trong sli
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "Chế độ slice" msgstr "Chế độ slice"
msgid "Other"
msgstr "Khác"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Sử dụng \"Chẵn-lẻ\" cho model máy bay 3DLabPrint. Sử dụng \"Đóng lỗ\" để đóng tất cả các lỗ trong model." msgstr "Sử dụng \"Chẵn-lẻ\" cho model máy bay 3DLabPrint. Sử dụng \"Đóng lỗ\" để đóng tất cả các lỗ trong model."
@@ -15642,6 +15716,14 @@ msgstr "Xoắn polyhole"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "Xoay polyhole mỗi lớp." msgstr "Xoay polyhole mỗi lớp."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "Hình thu nhỏ G-code" msgstr "Hình thu nhỏ G-code"
@@ -18010,6 +18092,132 @@ msgstr "Đăng nhập/Kiểm tra"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "Kết nối với máy in được kết nối qua máy chủ in thất bại." msgstr "Kết nối với máy in được kết nối qua máy chủ in thất bại."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "" msgstr ""
@@ -18092,6 +18300,19 @@ msgstr "Kết nối với MKS hoạt động chính xác."
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "Không thể kết nối với MKS" msgstr "Không thể kết nối với MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "Kết nối với OctoPrint hoạt động chính xác." msgstr "Kết nối với OctoPrint hoạt động chính xác."
@@ -18843,6 +19064,12 @@ msgstr ""
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "" msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "" msgstr ""
@@ -19248,6 +19475,52 @@ msgstr ""
"Tránh cong vênh\n" "Tránh cong vênh\n"
"Bạn có biết rằng khi in vật liệu dễ cong vênh như ABS, tăng nhiệt độ bàn nóng một cách thích hợp có thể giảm xác suất cong vênh không?" "Bạn có biết rằng khi in vật liệu dễ cong vênh như ABS, tăng nhiệt độ bàn nóng một cách thích hợp có thể giảm xác suất cong vênh không?"
#~ msgid "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Tọa độ vật thể"
#~ msgid "World coordinates"
#~ msgstr "Tọa độ thế giới"
#~ msgid "Rotate (absolute)"
#~ msgstr "Xoay (tuyệt đối)"
#~ msgid "Part coordinates"
#~ msgstr "Tọa độ phầ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)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Áp suất nâng cao cho cầu"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Giá trị áp suất nâng cao cho cầu. Đặt thành 0 để tắt.\n"
#~ "\n"
#~ "Giá trị PA thấp hơn khi in cầu giúp giảm sự xuất hiện của đùn thiếu nhỏ ngay sau cầu. Điều này được gây ra bởi áp suất giảm trong đầu phun khi in trong không khí và PA thấp hơn giúp chống lại điều này."
#~ msgid "View control settings"
#~ msgstr "Cài đặt điều khiển chế độ xem"
#~ msgid "Rotate view"
#~ msgstr "Xoay chế độ xem"
#~ msgid "Pan view"
#~ msgstr "Kéo chế độ xem"
#~ msgid "Zoom view"
#~ msgstr "Thu phóng chế độ xem"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Con lăn chuột đảo ngược khi thu phóng"
#~ msgid "Enable network plug-in" #~ msgid "Enable network plug-in"
#~ msgstr "Bật plugin mạng" #~ msgstr "Bật plugin mạng"

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Slic3rPE\n" "Project-Id-Version: Slic3rPE\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: 2026-06-11 12:37-0300\n" "PO-Revision-Date: 2026-06-11 12:37-0300\n"
"Last-Translator: Handle <mail@bysb.net>\n" "Last-Translator: Handle <mail@bysb.net>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -339,8 +339,9 @@ msgstr "缩放工具"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "错误:请先关闭所有工具栏菜单" msgstr "错误:请先关闭所有工具栏菜单"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -400,27 +401,30 @@ msgstr "重置位置"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "重置旋转" msgstr "重置旋转"
msgid "Object coordinates" msgid "World"
msgstr "物体坐标" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "世界坐标" msgstr "对象"
msgid "Translate(Relative)" msgid "Part"
msgstr "转换(相对)" msgstr "零件"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "重置当前旋转为打开旋转工具时的值" msgstr "重置当前旋转为打开旋转工具时的值"
msgid "Rotate (absolute)"
msgstr "旋转(绝对)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "重置当前旋转为真实零位" msgstr "重置当前旋转为真实零位"
msgid "Part coordinates"
msgstr "零件坐标"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "大小" msgstr "大小"
@@ -524,12 +528,6 @@ msgstr "间隙"
msgid "Spacing" msgid "Spacing"
msgstr "间距" msgstr "间距"
msgid "Part"
msgstr "零件"
msgid "Object"
msgstr "对象"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1869,33 +1867,32 @@ msgstr "打开项目"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "此逆戟鲸切片器的版本过低,需更新至最新版本方可正常使用" msgstr "此逆戟鲸切片器的版本过低,需更新至最新版本方可正常使用"
msgid "" msgid "Cloud sync conflict:"
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" msgstr ""
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr "" msgstr ""
"云同步冲突:此预设在 OrcaCloud 中存在更新的版本。\n"
"拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"云同步冲突OrcaCloud 中已存在同名预设。\n"
"拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"云同步冲突:之前已从云端删除了同名预设。\n"
"“删除”将删除您的本地预设。“强制推送”将用您的本地预设覆盖它。"
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"云同步冲突:发生了意外或无法识别的预设冲突。\n"
"“拉取”将下载云端副本。“强制推送”将用您的本地预设覆盖它。"
msgid "" msgid ""
"Force push will overwrite the cloud copy with your local preset changes.\n" "Force push will overwrite the cloud copy with your local preset changes.\n"
@@ -1904,6 +1901,12 @@ msgstr ""
"强制推送将用您本地的预设更改覆盖云端副本。\n" "强制推送将用您本地的预设更改覆盖云端副本。\n"
"是否继续?" "是否继续?"
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "解决云同步冲突" msgstr "解决云同步冲突"
@@ -1983,8 +1986,9 @@ msgstr "云端缓存的用户预设数量已超过上限,新创建的用户预
msgid "Sync user presets" msgid "Sync user presets"
msgstr "同步用户预设" msgstr "同步用户预设"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgstr "预设内容过大,无法同步到云端(超过 1MB。请通过移除自定义配置来缩减预设大小或仅在本地使用。" msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "%s updated from %s to %s" msgid "%s updated from %s to %s"
@@ -2205,6 +2209,9 @@ msgstr "Orca方块"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "OrcaSliced 复合模型" msgstr "OrcaSliced 复合模型"
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Orca误差测试" msgstr "Orca误差测试"
@@ -5254,6 +5261,9 @@ msgstr "悬垂"
msgid "Outline" msgid "Outline"
msgstr "轮廓线" msgstr "轮廓线"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "写实渲染" msgstr "写实渲染"
@@ -7866,6 +7876,45 @@ msgstr "选择下载项目的文件夹"
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "选择下载文件夹" msgstr "选择下载文件夹"
msgid "(Latest)"
msgstr "(最新的)"
msgid "Network plug-in switched successfully."
msgstr "网络插件切换成功。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "无法加载网络插件。请重新启动应用程序。"
#, c-format, boost-format
msgid ""
"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 "您已选择网络插件版本 %s。 您想立即下载并安装此版本吗? 注意:安装后应用程序可能需要重新启动。"
msgid "Download Network Plug-in"
msgstr "下载网络插件"
msgid "Reload the network plug-in without restarting the application"
msgstr "重新加载网络插件而不重新启动应用程序"
msgid "Network plug-in reloaded successfully."
msgstr "网络插件已成功重新加载。"
msgid "Reload"
msgstr "重新加载"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "无法重新加载网络插件。请重新启动应用程序。"
msgid "Reload Failed"
msgstr "重新加载失败"
msgid "Associate" msgid "Associate"
msgstr "相关的" msgstr "相关的"
@@ -7921,12 +7970,6 @@ msgstr "显示启动画面"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "在启动时显示启动画面。" msgstr "在启动时显示启动画面。"
msgid "Show shared profiles notification"
msgstr "显示共享配置文件通知"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "当所选打印机更改时,显示带有浏览共享配置文件链接的通知。"
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "将窗口按钮置于左侧" msgstr "将窗口按钮置于左侧"
@@ -7957,6 +8000,13 @@ msgstr "加载 交互项"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "printter/filament/process 设置项文件能否以 .3mf后缀方式打开" msgstr "printter/filament/process 设置项文件能否以 .3mf后缀方式打开"
msgid "Auto backup"
msgstr "自动备份"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "定期备份你的项目,以便从偶尔的崩溃中恢复过来。"
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "最大最近使用文件数" msgstr "最大最近使用文件数"
@@ -7975,12 +8025,55 @@ msgstr "显示STEP网格参数设置对话框"
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "如果启用在导入STEP文件时将出现参数设置对话框" msgstr "如果启用在导入STEP文件时将出现参数设置对话框"
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "自动备份" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "定期备份你的项目,以便从偶尔的崩溃中恢复过来。" "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Draco 导出的模型质量"
msgid "bits"
msgstr "位"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"控制将网格压缩为 Draco 格式时使用的量化位深度。\n"
"0 = 无损压缩(以全精度保留几何形状)。有效有损值范围为 8 到 30。\n"
"较低的值会生成较小的文件,但会丢失更多的几何细节;较高的值可保留更多细节,但代价是文件较大。"
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "预设" msgstr "预设"
@@ -8012,6 +8105,12 @@ msgstr "耗材丝"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "根据选定的耗材丝数量优化耗材区域最大高度" msgstr "根据选定的耗材丝数量优化耗材区域最大高度"
msgid "Show shared profiles notification"
msgstr "显示共享配置文件通知"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "当所选打印机更改时,显示带有浏览共享配置文件链接的通知。"
msgid "Features" msgid "Features"
msgstr "特性" msgstr "特性"
@@ -8024,21 +8123,6 @@ msgstr "启用此选项后,您可以同时向多个设备发送任务并管理
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "弹出选择耗材丝分组模式" msgstr "弹出选择耗材丝分组模式"
msgid "Quality level for Draco export"
msgstr "Draco 导出的模型质量"
msgid "bits"
msgstr "位"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"控制将网格压缩为 Draco 格式时使用的量化位深度。\n"
"0 = 无损压缩(以全精度保留几何形状)。有效有损值范围为 8 到 30。\n"
"较低的值会生成较小的文件,但会丢失更多的几何细节;较高的值可保留更多细节,但代价是文件较大。"
msgid "Behaviour" msgid "Behaviour"
msgstr "行为" msgstr "行为"
@@ -8283,19 +8367,6 @@ msgstr "仅检测正式版的更新"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "同步用户预设(打印机/耗材丝/工艺)" msgstr "同步用户预设(打印机/耗材丝/工艺)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "自动更新系统预设"
msgid "Use encrypted file for token storage"
msgstr "使用加密文件进行令牌存储"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "将身份验证令牌存储在加密文件中,而不是系统钥匙串中。 (需要重启)"
msgid "Filament Sync Options"
msgstr "耗材丝同步选项"
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "耗材丝同步模式" msgstr "耗材丝同步模式"
@@ -8308,6 +8379,16 @@ msgstr "耗材丝及颜色"
msgid "Color only" msgid "Color only"
msgstr "仅颜色" msgstr "仅颜色"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "自动更新系统预设"
msgid "Use encrypted file for token storage"
msgstr "使用加密文件进行令牌存储"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "将身份验证令牌存储在加密文件中,而不是系统钥匙串中。 (需要重启)"
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "Bambu网络插件" msgstr "Bambu网络插件"
@@ -8320,30 +8401,6 @@ msgstr "网络插件版本"
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "选择要使用的网络插件版本" msgstr "选择要使用的网络插件版本"
msgid "(Latest)"
msgstr "(最新的)"
msgid "Network plug-in switched successfully."
msgstr "网络插件切换成功。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "无法加载网络插件。请重新启动应用程序。"
#, c-format, boost-format
msgid ""
"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 "您已选择网络插件版本 %s。 您想立即下载并安装此版本吗? 注意:安装后应用程序可能需要重新启动。"
msgid "Download Network Plug-in"
msgstr "下载网络插件"
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "逆戟鲸切片器文件关联" msgstr "逆戟鲸切片器文件关联"
@@ -8389,8 +8446,17 @@ msgstr "开发者"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "跳过AMS黑名单检查" msgstr "跳过AMS黑名单检查"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr "(实验性) 在网格更改后保留绘制的特征" msgstr "显示不受支持的预设"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "在打印机和耗材下拉列表中显示不兼容/不受支持的预设。这些预设无法被选择。"
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid "" msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
@@ -8399,12 +8465,6 @@ msgstr ""
"在更改对象网格(如切割/从磁盘重新加载/简化/修复等)后,尝试保留绘制的特征(颜色/接缝/支撑/绒毛等)。\n" "在更改对象网格(如切割/从磁盘重新加载/简化/修复等)后,尝试保留绘制的特征(颜色/接缝/支撑/绒毛等)。\n"
"高度实验性!速度较慢且可能产生瑕疵。" "高度实验性!速度较慢且可能产生瑕疵。"
msgid "Show unsupported presets"
msgstr "显示不受支持的预设"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "在打印机和耗材下拉列表中显示不兼容/不受支持的预设。这些预设无法被选择。"
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "允许异常存储" msgstr "允许异常存储"
@@ -8433,24 +8493,6 @@ msgstr "调试"
msgid "trace" msgid "trace"
msgstr "跟踪" msgstr "跟踪"
msgid "Network plug-in"
msgstr "网络插件"
msgid "Reload"
msgstr "重新加载"
msgid "Reload the network plug-in without restarting the application"
msgstr "重新加载网络插件而不重新启动应用程序"
msgid "Network plug-in reloaded successfully."
msgstr "网络插件已成功重新加载。"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "无法重新加载网络插件。请重新启动应用程序。"
msgid "Reload Failed"
msgstr "重新加载失败"
msgid "Debug" msgid "Debug"
msgstr "调试" msgstr "调试"
@@ -8466,25 +8508,6 @@ msgstr "配置同步"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "首选项同步" msgstr "首选项同步"
msgid "View control settings"
msgstr "视图控制设置"
msgid "Rotate view"
msgstr "旋转视角"
msgid "Pan view"
msgstr "移动视角"
msgid "Zoom view"
msgstr "缩放视角"
msgid "Other"
msgstr "其他"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "缩放时鼠标滚轮反转"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "启用SSLMQTT" msgstr "启用SSLMQTT"
@@ -12457,6 +12480,18 @@ msgstr "微小部位周长阈值"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "这将设置微小部位周长的阈值。默认阈值为0mm" msgstr "这将设置微小部位周长的阈值。默认阈值为0mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "墙顺序" msgstr "墙顺序"
@@ -12637,24 +12672,26 @@ msgstr ""
"2. 记下每个体积流速和加速度的最佳 PA 值。您可以通过从配色方案下拉列表中选择流量并将水平滑块移动到 PA 图案线上来找到流量编号。该数字应该在页面底部可见。理想的 PA 值应该随着体积流量的增加而减小。如果不是,请确认您的挤出机运行正常。打印速度越慢且加速度越小,可接受的 PA 值范围就越大。如果没有明显差异,请使用更快测试中的 PA 值\n" "2. 记下每个体积流速和加速度的最佳 PA 值。您可以通过从配色方案下拉列表中选择流量并将水平滑块移动到 PA 图案线上来找到流量编号。该数字应该在页面底部可见。理想的 PA 值应该随着体积流量的增加而减小。如果不是,请确认您的挤出机运行正常。打印速度越慢且加速度越小,可接受的 PA 值范围就越大。如果没有明显差异,请使用更快测试中的 PA 值\n"
"3. 在此处的文本框中输入 PA 值、流量和加速度的三元组并保存耗材丝配置文件" "3. 在此处的文本框中输入 PA 值、流量和加速度的三元组并保存耗材丝配置文件"
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "为悬垂启用自适应压力提前(试验)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
"针对悬垂以及同一特征内的流量变化启用自适应 PA。这是一个实验性选项因为如果未准确设置 PA 配置文件,将导致悬垂前后外表面出现均匀性问题。\n"
"与 Prusa 打印机不兼容,因为它们会暂停以处理 PA 变化,从而导致延迟和瑕疵。"
msgid "Pressure advance for bridges"
msgstr "为搭桥启用压力提前"
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
msgstr "桥梁的压力提前值。设置为 0 以禁用。 打印桥接时较低的 PA 值有助于减少桥接后立即出现的轻微挤压不足现象。这是由在空气中打印时喷嘴中的压力下降引起的,较低的 PA 有助于抵消这种情况。" "\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "当线宽设置为0时走线的默认线宽。如果以%表示,它将基于喷嘴直径来计算。" msgstr "当线宽设置为0时走线的默认线宽。如果以%表示,它将基于喷嘴直径来计算。"
@@ -13050,6 +13087,22 @@ msgstr "实心填充方向"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "实心填充图案的角度,决定走线的开始或整体方向。" msgstr "实心填充图案的角度,决定走线的开始或整体方向。"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "稀疏填充密度" msgstr "稀疏填充密度"
@@ -13273,6 +13326,17 @@ msgstr ""
msgid "layer" msgid "layer"
msgstr "层" msgstr "层"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "支撐接触面风扇" msgstr "支撐接触面风扇"
@@ -15207,6 +15271,9 @@ msgstr "在三角形网格切片过程中小于2倍间隙闭合半径的裂
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "切片模式" msgstr "切片模式"
msgid "Other"
msgstr "其他"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "对3DLabPrint的飞机模型使用 \"奇偶\"。使用 \"闭孔 \"来关闭模型上的所有孔。" msgstr "对3DLabPrint的飞机模型使用 \"奇偶\"。使用 \"闭孔 \"来关闭模型上的所有孔。"
@@ -15885,6 +15952,14 @@ msgstr "扭曲多边型孔"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "按层旋转多边形孔。" msgstr "按层旋转多边形孔。"
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "G-code缩略图尺寸" msgstr "G-code缩略图尺寸"
@@ -18277,6 +18352,132 @@ msgstr "登录/测试"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "无法通过打印机主机连接到打印机。" msgstr "无法通过打印机主机连接到打印机。"
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "3DPrinterOS 云上传选项" msgstr "3DPrinterOS 云上传选项"
@@ -18359,6 +18560,19 @@ msgstr "与 MKS 的连接正常。"
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "无法连接到 MKS。" msgstr "无法连接到 MKS。"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "成功连接到 OctoPrint。" msgstr "成功连接到 OctoPrint。"
@@ -19107,6 +19321,12 @@ msgstr "三角面片数量"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "正在计算,请稍候..." msgstr "正在计算,请稍候..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "预设包" msgstr "预设包"
@@ -19517,6 +19737,99 @@ msgstr ""
"避免翘曲\n" "避免翘曲\n"
"您知道吗打印ABS这类易翘曲材料时适当提高热床温度可以降低翘曲的概率。" "您知道吗打印ABS这类易翘曲材料时适当提高热床温度可以降低翘曲的概率。"
#~ msgid "in"
#~ msgstr "在"
#~ msgid "Object coordinates"
#~ msgstr "物体坐标"
#~ msgid "World coordinates"
#~ msgstr "世界坐标"
#~ msgid "Translate(Relative)"
#~ msgstr "转换(相对)"
#~ msgid "Rotate (absolute)"
#~ msgstr "旋转(绝对)"
#~ msgid "Part coordinates"
#~ msgstr "零件坐标"
#~ msgid ""
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "云同步冲突:此预设在 OrcaCloud 中存在更新的版本。\n"
#~ "拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
#~ msgid ""
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "云同步冲突OrcaCloud 中已存在同名预设。\n"
#~ "拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
#~ msgid ""
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "云同步冲突:之前已从云端删除了同名预设。\n"
#~ "“删除”将删除您的本地预设。“强制推送”将用您的本地预设覆盖它。"
#~ msgid ""
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "云同步冲突:发生了意外或无法识别的预设冲突。\n"
#~ "“拉取”将下载云端副本。“强制推送”将用您的本地预设覆盖它。"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "预设内容过大,无法同步到云端(超过 1MB。请通过移除自定义配置来缩减预设大小或仅在本地使用。"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "为悬垂启用自适应压力提前(试验)"
#~ msgid ""
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
#~ msgstr ""
#~ "针对悬垂以及同一特征内的流量变化启用自适应 PA。这是一个实验性选项因为如果未准确设置 PA 配置文件,将导致悬垂前后外表面出现均匀性问题。\n"
#~ "与 Prusa 打印机不兼容,因为它们会暂停以处理 PA 变化,从而导致延迟和瑕疵。"
#~ msgid "Pressure advance for bridges"
#~ msgstr "为搭桥启用压力提前"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr "桥梁的压力提前值。设置为 0 以禁用。 打印桥接时较低的 PA 值有助于减少桥接后立即出现的轻微挤压不足现象。这是由在空气中打印时喷嘴中的压力下降引起的,较低的 PA 有助于抵消这种情况。"
#~ msgid "Filament Sync Options"
#~ msgstr "耗材丝同步选项"
#~ msgid "(Experimental) Keep painted feature after mesh change"
#~ msgstr "(实验性) 在网格更改后保留绘制的特征"
#~ msgid "Network plug-in"
#~ msgstr "网络插件"
#~ msgid "View control settings"
#~ msgstr "视图控制设置"
#~ msgid "Rotate view"
#~ msgstr "旋转视角"
#~ msgid "Pan view"
#~ msgstr "移动视角"
#~ msgid "Zoom view"
#~ msgstr "缩放视角"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "缩放时鼠标滚轮反转"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "左:%s" #~ msgstr "左:%s"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Orca Slicer\n" "Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n" "POT-Creation-Date: 2026-07-07 10:05-0300\n"
"PO-Revision-Date: 2025-11-28 13:48-0600\n" "PO-Revision-Date: 2025-11-28 13:48-0600\n"
"Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n" "Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -342,8 +342,9 @@ msgstr "Gizmo 比例"
msgid "Error: Please close all toolbar menus first" msgid "Error: Please close all toolbar menus first"
msgstr "錯誤:請先關閉所有工具欄選單" msgstr "錯誤:請先關閉所有工具欄選單"
msgctxt "inches"
msgid "in" msgid "in"
msgstr "" msgstr ""
msgid "mm" msgid "mm"
msgstr "mm" msgstr "mm"
@@ -403,27 +404,30 @@ msgstr "重設位置"
msgid "Reset rotation" msgid "Reset rotation"
msgstr "重設旋轉" msgstr "重設旋轉"
msgid "Object coordinates" msgid "World"
msgstr "物件座標" msgstr ""
msgid "World coordinates" msgid "Object"
msgstr "世界座標" msgstr "物件"
msgid "Translate(Relative)" msgid "Part"
msgstr "平移(相對)" msgstr "零件"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool." msgid "Reset current rotation to the value when open the rotation tool."
msgstr "重設旋轉角度為開啟旋轉工具時的狀態。" msgstr "重設旋轉角度為開啟旋轉工具時的狀態。"
msgid "Rotate (absolute)"
msgstr "旋轉(絕對)"
msgid "Reset current rotation to real zeros." msgid "Reset current rotation to real zeros."
msgstr "將旋轉角度歸零" msgstr "將旋轉角度歸零"
msgid "Part coordinates"
msgstr "零件座標"
#. TRN - Input label. Be short as possible #. TRN - Input label. Be short as possible
msgid "Size" msgid "Size"
msgstr "尺寸" msgstr "尺寸"
@@ -527,12 +531,6 @@ msgstr "間隙"
msgid "Spacing" msgid "Spacing"
msgstr "間距" msgstr "間距"
msgid "Part"
msgstr "零件"
msgid "Object"
msgstr "物件"
msgid "" msgid ""
"Click to flip the cut plane\n" "Click to flip the cut plane\n"
"Drag to move the cut plane" "Drag to move the cut plane"
@@ -1871,33 +1869,32 @@ msgstr "打開專案"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally." msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Orca Slicer 版本過舊,需要更新到最新版本才能正常使用" msgstr "Orca Slicer 版本過舊,需要更新到最新版本才能正常使用"
msgid "" msgid "Cloud sync conflict:"
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" msgstr ""
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr "" msgstr ""
"雲端同步衝突:此預設在 OrcaCloud 中有較新的版本。\n"
"拉取會下載雲端副本。強制推送會以您的本機預設覆寫雲端版本。"
msgid "" msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" "This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"雲端同步衝突OrcaCloud 中已有同名的預設。\n"
"拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
msgid "" msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" "A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset." "Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"雲端同步衝突:先前已從雲端刪除同名的預設。\n"
"「刪除」將刪除您的本機預設。「強制推送」會以您的本機預設覆寫它。"
msgid "" msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" "There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset." "Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr "" msgstr ""
"雲端同步衝突:發生了未預期或無法識別的預設衝突。\n"
"拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
msgid "" msgid ""
"Force push will overwrite the cloud copy with your local preset changes.\n" "Force push will overwrite the cloud copy with your local preset changes.\n"
@@ -1906,6 +1903,12 @@ msgstr ""
"強制推送會以您本機的預設變更覆寫雲端副本。\n" "強制推送會以您本機的預設變更覆寫雲端副本。\n"
"您要繼續嗎?" "您要繼續嗎?"
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict" msgid "Resolve cloud sync conflict"
msgstr "解決雲端同步衝突" msgstr "解決雲端同步衝突"
@@ -1985,8 +1988,9 @@ msgstr "雲端儲存的使用者預設數量已超過上限,新的使用者預
msgid "Sync user presets" msgid "Sync user presets"
msgstr "同步使用者預設" msgstr "同步使用者預設"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only." #, c-format, boost-format
msgstr "預設內容過大,無法同步至雲端(超過 1MB。請移除自訂設定以減少預設大小或僅在本機使用。" msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "%s updated from %s to %s" msgid "%s updated from %s to %s"
@@ -2207,6 +2211,9 @@ msgstr "Orca 立方體"
msgid "OrcaSliced Combo" msgid "OrcaSliced Combo"
msgstr "OrcaSliced 複合模型" msgstr "OrcaSliced 複合模型"
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test" msgid "Orca Tolerance Test"
msgstr "Orca 誤差測試" msgstr "Orca 誤差測試"
@@ -5296,6 +5303,9 @@ msgstr "懸空"
msgid "Outline" msgid "Outline"
msgstr "輪廓線" msgstr "輪廓線"
msgid "Wireframe"
msgstr ""
msgid "Realistic View" msgid "Realistic View"
msgstr "擬真檢視" msgstr "擬真檢視"
@@ -7923,6 +7933,50 @@ msgstr "選擇下載項目的目標資料夾"
msgid "Choose Download Directory" msgid "Choose Download Directory"
msgstr "選擇下載資料夾" msgstr "選擇下載資料夾"
msgid "(Latest)"
msgstr "(最新版)"
msgid "Network plug-in switched successfully."
msgstr "網路外掛程式切換成功。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "無法載入網路外掛程式。請重新啟動應用程式。"
#, c-format, boost-format
msgid ""
"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 ""
"您已選擇網路外掛程式版本 %s。\n"
"\n"
"您想立即下載並安裝此版本嗎?\n"
"\n"
"注意:安裝後應用程式可能需要重新啟動。"
msgid "Download Network Plug-in"
msgstr "下載網路外掛程式"
msgid "Reload the network plug-in without restarting the application"
msgstr "重新載入網路外掛程式而無需重新啟動應用程式"
msgid "Network plug-in reloaded successfully."
msgstr "網路外掛程式重新載入成功。"
msgid "Reload"
msgstr "重新載入"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "無法重新載入網路外掛程式。請重新啟動應用程式。"
msgid "Reload Failed"
msgstr "重新載入失敗"
msgid "Associate" msgid "Associate"
msgstr "關聯" msgstr "關聯"
@@ -7978,12 +8032,6 @@ msgstr "顯示啟動動畫"
msgid "Show the splash screen during startup." msgid "Show the splash screen during startup."
msgstr "啟動時顯示啟動動畫。" msgstr "啟動時顯示啟動動畫。"
msgid "Show shared profiles notification"
msgstr "顯示共用設定檔通知"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "變更所選列印設備時,顯示一則含有瀏覽共享設定檔連結的通知。"
msgid "Use window buttons on left side" msgid "Use window buttons on left side"
msgstr "將視窗按鈕置於左側" msgstr "將視窗按鈕置於左側"
@@ -8014,6 +8062,13 @@ msgstr "載入方式"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "開啟 .3mf 檔案時,是否需要載入列印設備、線材和參數設定?" msgstr "開啟 .3mf 檔案時,是否需要載入列印設備、線材和參數設定?"
msgid "Auto backup"
msgstr "自動備份"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "定期備份專案,以便從未預期的錯誤中恢復。"
msgid "Maximum recent files" msgid "Maximum recent files"
msgstr "最近開啟的檔案上限" msgstr "最近開啟的檔案上限"
@@ -8032,12 +8087,55 @@ msgstr "顯示 STEP 網格參數設定視窗。"
msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "啟用後,匯入 STEP 檔案時會顯示參數設定視窗。" msgstr "啟用後,匯入 STEP 檔案時會顯示參數設定視窗。"
msgid "Auto backup" msgid "STEP importing: linear deflection"
msgstr "自動備份" msgstr ""
# TODO: Review, changed by lang refactor. PR 14254 msgid ""
msgid "Backup your project periodically to help with restoring from an occasional crash." "Linear deflection used when meshing imported STEP files.\n"
msgstr "定期備份專案,以便從未預期的錯誤中恢復。" "Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Draco 匯出品質等級"
msgid "bits"
msgstr "位元"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"控制將網格壓縮為 Draco 格式時使用的量化位元深度。\n"
"0 = 無損壓縮(幾何資料以完整精度保留)。有效的有損值範圍為 8 至 30。\n"
"較低的值會產生較小的檔案但損失更多幾何細節;較高的值會保留更多細節但檔案較大。"
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset" msgid "Preset"
msgstr "預設" msgstr "預設"
@@ -8069,6 +8167,12 @@ msgstr "線材"
msgid "Optimizes filament area maximum height by chosen filament count." msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "根據選擇的線材數量優化線材區域最大高度" msgstr "根據選擇的線材數量優化線材區域最大高度"
msgid "Show shared profiles notification"
msgstr "顯示共用設定檔通知"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "變更所選列印設備時,顯示一則含有瀏覽共享設定檔連結的通知。"
msgid "Features" msgid "Features"
msgstr "功能" msgstr "功能"
@@ -8081,21 +8185,6 @@ msgstr "啟用時可以同時傳送到並管理多個機臺。"
msgid "Pop up to select filament grouping mode" msgid "Pop up to select filament grouping mode"
msgstr "彈出視窗選擇線材分組模式" msgstr "彈出視窗選擇線材分組模式"
msgid "Quality level for Draco export"
msgstr "Draco 匯出品質等級"
msgid "bits"
msgstr "位元"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"控制將網格壓縮為 Draco 格式時使用的量化位元深度。\n"
"0 = 無損壓縮(幾何資料以完整精度保留)。有效的有損值範圍為 8 至 30。\n"
"較低的值會產生較小的檔案但損失更多幾何細節;較高的值會保留更多細節但檔案較大。"
msgid "Behaviour" msgid "Behaviour"
msgstr "行為" msgstr "行為"
@@ -8340,19 +8429,6 @@ msgstr "僅檢查穩定版更新"
msgid "Auto sync user presets (Printer/Filament/Process)" msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "自動同步使用者預設(列印設備/線材/列印品質參數)" msgstr "自動同步使用者預設(列印設備/線材/列印品質參數)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "自動更新系統預設。"
msgid "Use encrypted file for token storage"
msgstr "使用加密檔案儲存權杖"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "將身份驗證權杖儲存在加密檔案中,而不是系統鑰匙圈。(需要重啟)"
msgid "Filament Sync Options"
msgstr "線材同步選項"
msgid "Filament sync mode" msgid "Filament sync mode"
msgstr "線材同步模式" msgstr "線材同步模式"
@@ -8365,6 +8441,16 @@ msgstr "線材與顏色"
msgid "Color only" msgid "Color only"
msgstr "僅顏色" msgstr "僅顏色"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "自動更新系統預設。"
msgid "Use encrypted file for token storage"
msgstr "使用加密檔案儲存權杖"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "將身份驗證權杖儲存在加密檔案中,而不是系統鑰匙圈。(需要重啟)"
msgid "Bambu network plug-in" msgid "Bambu network plug-in"
msgstr "Bambu 網路外掛程式" msgstr "Bambu 網路外掛程式"
@@ -8377,35 +8463,6 @@ msgstr "網路外掛程式版本"
msgid "Select the network plug-in version to use" msgid "Select the network plug-in version to use"
msgstr "選擇要使用的網路外掛程式版本" msgstr "選擇要使用的網路外掛程式版本"
msgid "(Latest)"
msgstr "(最新版)"
msgid "Network plug-in switched successfully."
msgstr "網路外掛程式切換成功。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "無法載入網路外掛程式。請重新啟動應用程式。"
#, c-format, boost-format
msgid ""
"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 ""
"您已選擇網路外掛程式版本 %s。\n"
"\n"
"您想立即下載並安裝此版本嗎?\n"
"\n"
"注意:安裝後應用程式可能需要重新啟動。"
msgid "Download Network Plug-in"
msgstr "下載網路外掛程式"
msgid "Associate files to OrcaSlicer" msgid "Associate files to OrcaSlicer"
msgstr "Orca Slicer 檔案關聯" msgstr "Orca Slicer 檔案關聯"
@@ -8451,8 +8508,17 @@ msgstr "開發者"
msgid "Skip AMS blacklist check" msgid "Skip AMS blacklist check"
msgstr "跳過 AMS 黑名單檢查" msgstr "跳過 AMS 黑名單檢查"
msgid "(Experimental) Keep painted feature after mesh change" msgid "Show unsupported presets"
msgstr "(實驗性)在網格變更後保留繪製的特徵" msgstr "顯示不支援的預設"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "在列印設備和線材下拉選單中顯示不相容/不支援的預設。這些預設無法選取。"
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid "" msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n" "Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
@@ -8461,12 +8527,6 @@ msgstr ""
"嘗試在變更物件網格(例如切割/從磁碟重新載入/簡化/修復等)後,保留已繪製的特徵(顏色/Z 縫/支撐/絨毛等)。\n" "嘗試在變更物件網格(例如切割/從磁碟重新載入/簡化/修復等)後,保留已繪製的特徵(顏色/Z 縫/支撐/絨毛等)。\n"
"高度實驗性!速度緩慢且可能產生瑕疵。" "高度實驗性!速度緩慢且可能產生瑕疵。"
msgid "Show unsupported presets"
msgstr "顯示不支援的預設"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "在列印設備和線材下拉選單中顯示不相容/不支援的預設。這些預設無法選取。"
msgid "Allow Abnormal Storage" msgid "Allow Abnormal Storage"
msgstr "允許異常儲存空間" msgstr "允許異常儲存空間"
@@ -8495,24 +8555,6 @@ msgstr "除錯"
msgid "trace" msgid "trace"
msgstr "跟蹤" msgstr "跟蹤"
msgid "Network plug-in"
msgstr "網路外掛程式"
msgid "Reload"
msgstr "重新載入"
msgid "Reload the network plug-in without restarting the application"
msgstr "重新載入網路外掛程式而無需重新啟動應用程式"
msgid "Network plug-in reloaded successfully."
msgstr "網路外掛程式重新載入成功。"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "無法重新載入網路外掛程式。請重新啟動應用程式。"
msgid "Reload Failed"
msgstr "重新載入失敗"
msgid "Debug" msgid "Debug"
msgstr "除錯" msgstr "除錯"
@@ -8528,25 +8570,6 @@ msgstr "預設檔同步"
msgid "Preferences sync" msgid "Preferences sync"
msgstr "偏好設定同步" msgstr "偏好設定同步"
msgid "View control settings"
msgstr "視角控制設定"
msgid "Rotate view"
msgstr "旋轉視角"
msgid "Pan view"
msgstr "移動視角"
msgid "Zoom view"
msgstr "縮放視角"
msgid "Other"
msgstr "其他"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "縮放時滑鼠滾輪反轉"
msgid "Enable SSL(MQTT)" msgid "Enable SSL(MQTT)"
msgstr "啟用SSLMQTT" msgstr "啟用SSLMQTT"
@@ -12523,6 +12546,18 @@ msgstr "微小部位周長臨界值"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "這設定了微小部位周長的臨界值。 預設臨界值是 0mm" msgstr "這設定了微小部位周長的臨界值。 預設臨界值是 0mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order" msgid "Walls printing order"
msgstr "牆列印順序" msgstr "牆列印順序"
@@ -12705,24 +12740,26 @@ msgstr ""
"2. 記錄每個體積流速和加速度的最佳壓力補償 (PA) 值。您可以通過從顏色方案下拉選單中選擇流量,並將水平滑桿移動到 PA 測試線的圖案來找到流量數值。該數值應顯示在頁面底部。理想的 PA 值應隨著體積流速的增加而減小。如果不是,請檢查您的擠出機是否正常工作。當列印速度較慢且加速度較低時,可接受的 PA 值範圍會更大。如果看不出差異,請採用最快測試的 PA 值。\n" "2. 記錄每個體積流速和加速度的最佳壓力補償 (PA) 值。您可以通過從顏色方案下拉選單中選擇流量,並將水平滑桿移動到 PA 測試線的圖案來找到流量數值。該數值應顯示在頁面底部。理想的 PA 值應隨著體積流速的增加而減小。如果不是,請檢查您的擠出機是否正常工作。當列印速度較慢且加速度較低時,可接受的 PA 值範圍會更大。如果看不出差異,請採用最快測試的 PA 值。\n"
"3. 將 PA 值、流量和加速度的三組資料輸入到此文字框中,然後保存您的線材設定檔" "3. 將 PA 值、流量和加速度的三組資料輸入到此文字框中,然後保存您的線材設定檔"
msgid "Enable adaptive pressure advance for overhangs (beta)" msgid "Enable adaptive pressure advance within features (beta)"
msgstr "啟用懸挑自適應壓力補償 (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr "" msgstr ""
"針對懸空以及同一特徵內的流量變化啟用自適應壓力補償 (PA)。這是一個實驗性選項,因為若 PA 設定檔設定不準確,將會導致懸空前後的外表面出現均勻性問題。\n"
"與 Prusa 印表機不相容,因為它們會暫停以處理 PA 變更,進而導致延遲與瑕疵。"
msgid "Pressure advance for bridges"
msgstr "橋接的壓力補償"
msgid "" msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n" "Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n" "\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this." "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
msgstr "橋接的壓力補償值。設為 0 以停用此功能。降低橋接時的壓力補償值有助於減少橋接結束後立即出現的輕微欠擠出現象。這種現象是由於在空中列印時噴嘴內壓力下降引起的,而降低壓力補償值有助於抵消這一影響。" "\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "當線寬設定為 0 時走線的預設線寬。如果以 % 表示,將以噴嘴直徑為基準來計算。" msgstr "當線寬設定為 0 時走線的預設線寬。如果以 % 表示,將以噴嘴直徑為基準來計算。"
@@ -13104,6 +13141,22 @@ msgstr "實心填充方向"
msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "實心填充圖案的角度設定,用於決定線條的起始方向或主要列印方向" msgstr "實心填充圖案的角度設定,用於決定線條的起始方向或主要列印方向"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "稀疏填充密度" msgstr "稀疏填充密度"
@@ -13322,6 +13375,17 @@ msgstr "風扇速度會從第「close_fan_the_first_x_layers」層開始
msgid "layer" msgid "layer"
msgstr "層" msgstr "層"
msgid "First layer fan speed"
msgstr ""
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed" msgid "Support interface fan speed"
msgstr "支撐界面風扇速度" msgstr "支撐界面風扇速度"
@@ -15257,6 +15321,9 @@ msgstr "在三角網格切片過程中,寬度小於 2 倍間隙閉合半徑的
msgid "Slicing Mode" msgid "Slicing Mode"
msgstr "切片模式" msgstr "切片模式"
msgid "Other"
msgstr "其他"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "針對 3DLabPrint 飛機模型,請選擇『奇偶』模式。若需閉合模型中的所有孔洞,請啟用『閉合孔洞』選項。" msgstr "針對 3DLabPrint 飛機模型,請選擇『奇偶』模式。若需閉合模型中的所有孔洞,請啟用『閉合孔洞』選項。"
@@ -15932,6 +15999,14 @@ msgstr "扭曲多邊形孔"
msgid "Rotate the polyhole every layer." msgid "Rotate the polyhole every layer."
msgstr "依層旋轉多邊形孔。" msgstr "依層旋轉多邊形孔。"
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails" msgid "G-code thumbnails"
msgstr "G-code 縮圖" msgstr "G-code 縮圖"
@@ -18325,6 +18400,132 @@ msgstr "登入/測試"
msgid "Connection to printers connected via the print host failed." msgid "Connection to printers connected via the print host failed."
msgstr "經由列印主機連接的列印設備連接失敗。" msgstr "經由列印主機連接的列印設備連接失敗。"
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options" msgid "3DPrinterOS Cloud upload options"
msgstr "3DPrinterOS 雲端上傳選項" msgstr "3DPrinterOS 雲端上傳選項"
@@ -18407,6 +18608,19 @@ msgstr "成功連接到 MKS。"
msgid "Could not connect to MKS" msgid "Could not connect to MKS"
msgstr "無法連接到 MKS" msgstr "無法連接到 MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly." msgid "Connection to OctoPrint is working correctly."
msgstr "與 OctoPrint 的連接工作正常。" msgstr "與 OctoPrint 的連接工作正常。"
@@ -19157,6 +19371,12 @@ msgstr "三角面片數量"
msgid "Calculating, please wait..." msgid "Calculating, please wait..."
msgstr "正在計算,請稍候..." msgstr "正在計算,請稍候..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle" msgid "PresetBundle"
msgstr "設定檔組" msgstr "設定檔組"
@@ -19588,6 +19808,99 @@ msgstr ""
"您知道嗎?當列印容易翹曲的材料(如 ABS適當提高熱床溫度\n" "您知道嗎?當列印容易翹曲的材料(如 ABS適當提高熱床溫度\n"
"可以降低翹曲的機率。" "可以降低翹曲的機率。"
#~ msgid "in"
#~ msgstr "在"
#~ msgid "Object coordinates"
#~ msgstr "物件座標"
#~ msgid "World coordinates"
#~ msgstr "世界座標"
#~ msgid "Translate(Relative)"
#~ msgstr "平移(相對)"
#~ msgid "Rotate (absolute)"
#~ msgstr "旋轉(絕對)"
#~ msgid "Part coordinates"
#~ msgstr "零件座標"
#~ msgid ""
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "雲端同步衝突:此預設在 OrcaCloud 中有較新的版本。\n"
#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫雲端版本。"
#~ msgid ""
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "雲端同步衝突OrcaCloud 中已有同名的預設。\n"
#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
#~ msgid ""
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "雲端同步衝突:先前已從雲端刪除同名的預設。\n"
#~ "「刪除」將刪除您的本機預設。「強制推送」會以您的本機預設覆寫它。"
#~ msgid ""
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "雲端同步衝突:發生了未預期或無法識別的預設衝突。\n"
#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "預設內容過大,無法同步至雲端(超過 1MB。請移除自訂設定以減少預設大小或僅在本機使用。"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "啟用懸挑自適應壓力補償 (beta)"
#~ msgid ""
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
#~ msgstr ""
#~ "針對懸空以及同一特徵內的流量變化啟用自適應壓力補償 (PA)。這是一個實驗性選項,因為若 PA 設定檔設定不準確,將會導致懸空前後的外表面出現均勻性問題。\n"
#~ "與 Prusa 印表機不相容,因為它們會暫停以處理 PA 變更,進而導致延遲與瑕疵。"
#~ msgid "Pressure advance for bridges"
#~ msgstr "橋接的壓力補償"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr "橋接的壓力補償值。設為 0 以停用此功能。降低橋接時的壓力補償值有助於減少橋接結束後立即出現的輕微欠擠出現象。這種現象是由於在空中列印時噴嘴內壓力下降引起的,而降低壓力補償值有助於抵消這一影響。"
#~ msgid "Filament Sync Options"
#~ msgstr "線材同步選項"
#~ msgid "(Experimental) Keep painted feature after mesh change"
#~ msgstr "(實驗性)在網格變更後保留繪製的特徵"
#~ msgid "Network plug-in"
#~ msgstr "網路外掛程式"
#~ msgid "View control settings"
#~ msgstr "視角控制設定"
#~ msgid "Rotate view"
#~ msgstr "旋轉視角"
#~ msgid "Pan view"
#~ msgstr "移動視角"
#~ msgid "Zoom view"
#~ msgstr "縮放視角"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "縮放時滑鼠滾輪反轉"
#, c-format, boost-format #, c-format, boost-format
#~ msgid "Left: %s" #~ msgid "Left: %s"
#~ msgstr "左:%s" #~ msgstr "左:%s"

Binary file not shown.

20905
resources/hms/hms_lt_093.json Normal file

File diff suppressed because it is too large Load Diff

20317
resources/hms/hms_lt_094.json Normal file

File diff suppressed because it is too large Load Diff

20217
resources/hms/hms_lt_22E.json Normal file

File diff suppressed because it is too large Load Diff

21801
resources/hms/hms_lt_239.json Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "Afinia", "name": "Afinia",
"version": "02.04.00.01", "version": "02.04.00.02",
"force_update": "0", "force_update": "0",
"description": "Afinia configurations", "description": "Afinia configurations",
"machine_model_list": [ "machine_model_list": [
@@ -124,14 +124,6 @@
"name": "fdm_filament_tpu", "name": "fdm_filament_tpu",
"sub_path": "filament/fdm_filament_tpu.json" "sub_path": "filament/fdm_filament_tpu.json"
}, },
{
"name": "Afinia ABS",
"sub_path": "filament/Afinia ABS.json"
},
{
"name": "Afinia ABS+",
"sub_path": "filament/Afinia ABS+.json"
},
{ {
"name": "Afinia ABS+@HS", "name": "Afinia ABS+@HS",
"sub_path": "filament/Afinia ABS+@HS.json" "sub_path": "filament/Afinia ABS+@HS.json"
@@ -140,34 +132,18 @@
"name": "Afinia ABS@HS", "name": "Afinia ABS@HS",
"sub_path": "filament/Afinia ABS@HS.json" "sub_path": "filament/Afinia ABS@HS.json"
}, },
{
"name": "Afinia Value ABS",
"sub_path": "filament/Afinia Value ABS.json"
},
{ {
"name": "Afinia Value ABS@HS", "name": "Afinia Value ABS@HS",
"sub_path": "filament/Afinia Value ABS@HS.json" "sub_path": "filament/Afinia Value ABS@HS.json"
}, },
{
"name": "Afinia PLA",
"sub_path": "filament/Afinia PLA.json"
},
{ {
"name": "Afinia PLA@HS", "name": "Afinia PLA@HS",
"sub_path": "filament/Afinia PLA@HS.json" "sub_path": "filament/Afinia PLA@HS.json"
}, },
{
"name": "Afinia Value PLA",
"sub_path": "filament/Afinia Value PLA.json"
},
{ {
"name": "Afinia Value PLA@HS", "name": "Afinia Value PLA@HS",
"sub_path": "filament/Afinia Value PLA@HS.json" "sub_path": "filament/Afinia Value PLA@HS.json"
}, },
{
"name": "Afinia TPU",
"sub_path": "filament/Afinia TPU.json"
},
{ {
"name": "Afinia TPU@HS", "name": "Afinia TPU@HS",
"sub_path": "filament/Afinia TPU@HS.json" "sub_path": "filament/Afinia TPU@HS.json"

View File

@@ -1,37 +0,0 @@
{
"type": "filament",
"filament_id": "GFB00",
"setting_id": "i5tf9foHnTVNmA2r",
"name": "Afinia ABS+",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_abs",
"filament_flow_ratio": [
"0.95"
],
"filament_cost": [
"24.99"
],
"filament_vendor": [
"Afinia"
],
"fan_max_speed": [
"60"
],
"filament_max_volumetric_speed": [
"16"
],
"nozzle_temperature": [
"275"
],
"nozzle_temperature_initial_layer": [
"275"
],
"slow_down_layer_time": [
"12"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

View File

@@ -1,31 +0,0 @@
{
"type": "filament",
"filament_id": "GFB00",
"setting_id": "LhDHvMepbh8ecfQT",
"name": "Afinia ABS",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_abs",
"filament_flow_ratio": [
"0.95"
],
"filament_cost": [
"24.99"
],
"filament_vendor": [
"Afinia"
],
"fan_max_speed": [
"60"
],
"filament_max_volumetric_speed": [
"16"
],
"slow_down_layer_time": [
"12"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

View File

@@ -1,34 +0,0 @@
{
"type": "filament",
"filament_id": "GFA00",
"setting_id": "1qEFsay7kjYIUkpG",
"name": "Afinia PLA",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_cost": [
"24.99"
],
"filament_density": [
"1.26"
],
"filament_flow_ratio": [
"0.98"
],
"filament_max_volumetric_speed": [
"21"
],
"filament_vendor": [
"Afinia"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

View File

@@ -1,28 +0,0 @@
{
"type": "filament",
"name": "Afinia TPU",
"inherits": "fdm_filament_tpu",
"from": "system",
"setting_id": "E7WBTARZ971LaDMj",
"filament_id": "GFU01",
"instantiation": "true",
"filament_vendor": [
"Afinia"
],
"filament_density": [
"1.22"
],
"nozzle_temperature_initial_layer": [
"230"
],
"filament_cost": [
"41.99"
],
"nozzle_temperature": [
"230"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

View File

@@ -1,37 +0,0 @@
{
"type": "filament",
"filament_id": "GFB00",
"setting_id": "jEYVpOPBjFtQ0DXn",
"name": "Afinia Value ABS",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_abs",
"filament_flow_ratio": [
"0.95"
],
"filament_cost": [
"24.99"
],
"filament_vendor": [
"Afinia"
],
"fan_max_speed": [
"60"
],
"filament_max_volumetric_speed": [
"16"
],
"nozzle_temperature": [
"245"
],
"nozzle_temperature_initial_layer": [
"245"
],
"slow_down_layer_time": [
"12"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

View File

@@ -1,40 +0,0 @@
{
"type": "filament",
"filament_id": "GFA00",
"setting_id": "oNBk0IxmW7C99WI3",
"name": "Afinia Value PLA",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_cost": [
"24.99"
],
"filament_density": [
"1.26"
],
"filament_flow_ratio": [
"0.98"
],
"filament_max_volumetric_speed": [
"21"
],
"filament_vendor": [
"Afinia"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"nozzle_temperature": [
"190"
],
"nozzle_temperature_initial_layer": [
"190"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

View File

@@ -1,7 +1,7 @@
{ {
"name": "Bambulab", "name": "Bambulab",
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json", "url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
"version": "02.01.00.18", "version": "02.01.00.19",
"force_update": "0", "force_update": "0",
"description": "BBL configurations", "description": "BBL configurations",
"machine_model_list": [ "machine_model_list": [
@@ -2177,6 +2177,10 @@
"name": "Generic ABS @BBL X2D 0.4 nozzle", "name": "Generic ABS @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic ABS @BBL X2D 0.4 nozzle.json" "sub_path": "filament/Generic ABS @BBL X2D 0.4 nozzle.json"
}, },
{
"name": "addnorth ABS rABS",
"sub_path": "filament/addnorth/addnorth ABS rABS.json"
},
{ {
"name": "PolyLite ABS @BBL A1", "name": "PolyLite ABS @BBL A1",
"sub_path": "filament/Polymaker/PolyLite ABS @BBL A1.json" "sub_path": "filament/Polymaker/PolyLite ABS @BBL A1.json"
@@ -3005,6 +3009,22 @@
"name": "Generic PA @BBL X2D 0.4 nozzle", "name": "Generic PA @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PA @BBL X2D 0.4 nozzle.json" "sub_path": "filament/Generic PA @BBL X2D 0.4 nozzle.json"
}, },
{
"name": "addnorth PA Adura",
"sub_path": "filament/addnorth/addnorth PA Adura.json"
},
{
"name": "addnorth PA Adura FDA",
"sub_path": "filament/addnorth/addnorth PA Adura FDA.json"
},
{
"name": "addnorth PA6 Addlantis",
"sub_path": "filament/addnorth/addnorth PA6 Addlantis.json"
},
{
"name": "addnorth PVDF Adamant S1",
"sub_path": "filament/addnorth/addnorth PVDF Adamant S1.json"
},
{ {
"name": "Generic PA-CF", "name": "Generic PA-CF",
"sub_path": "filament/Generic PA-CF.json" "sub_path": "filament/Generic PA-CF.json"
@@ -3029,6 +3049,10 @@
"name": "Generic PA-CF @BBL X2D 0.4 nozzle", "name": "Generic PA-CF @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PA-CF @BBL X2D 0.4 nozzle.json" "sub_path": "filament/Generic PA-CF @BBL X2D 0.4 nozzle.json"
}, },
{
"name": "addnorth PA-CF Adura X",
"sub_path": "filament/addnorth/addnorth PA-CF Adura X.json"
},
{ {
"name": "Bambu PC @BBL A1", "name": "Bambu PC @BBL A1",
"sub_path": "filament/Bambu PC @BBL A1.json" "sub_path": "filament/Bambu PC @BBL A1.json"
@@ -3329,6 +3353,10 @@
"name": "Generic PC @BBL X2D 0.4 nozzle", "name": "Generic PC @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PC @BBL X2D 0.4 nozzle.json" "sub_path": "filament/Generic PC @BBL X2D 0.4 nozzle.json"
}, },
{
"name": "addnorth PC BLend HT LCF",
"sub_path": "filament/addnorth/addnorth PC BLend HT LCF.json"
},
{ {
"name": "Generic PCTG @BBL A1", "name": "Generic PCTG @BBL A1",
"sub_path": "filament/Generic PCTG @BBL A1.json" "sub_path": "filament/Generic PCTG @BBL A1.json"
@@ -4185,6 +4213,30 @@
"name": "Generic PETG @BBL X2D 0.4 nozzle", "name": "Generic PETG @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PETG @BBL X2D 0.4 nozzle.json" "sub_path": "filament/Generic PETG @BBL X2D 0.4 nozzle.json"
}, },
{
"name": "addnorth PETG Base",
"sub_path": "filament/addnorth/addnorth PETG Base.json"
},
{
"name": "addnorth PETG ESD",
"sub_path": "filament/addnorth/addnorth PETG ESD.json"
},
{
"name": "addnorth PETG Economy",
"sub_path": "filament/addnorth/addnorth PETG Economy.json"
},
{
"name": "addnorth PETG Flame v0",
"sub_path": "filament/addnorth/addnorth PETG Flame v0.json"
},
{
"name": "addnorth PETG PRO Matte",
"sub_path": "filament/addnorth/addnorth PETG PRO Matte.json"
},
{
"name": "addnorth PETG rPETG Matte",
"sub_path": "filament/addnorth/addnorth PETG rPETG Matte.json"
},
{ {
"name": "Generic PETG HF @BBL A1", "name": "Generic PETG HF @BBL A1",
"sub_path": "filament/Generic PETG HF @BBL A1.json" "sub_path": "filament/Generic PETG HF @BBL A1.json"
@@ -4305,6 +4357,10 @@
"name": "Generic PETG-CF @BBL X2D 0.4 nozzle", "name": "Generic PETG-CF @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json" "sub_path": "filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json"
}, },
{
"name": "addnorth PETG-CF Rigid X",
"sub_path": "filament/addnorth/addnorth PETG-CF Rigid X.json"
},
{ {
"name": "PolyLite PETG @BBL A1", "name": "PolyLite PETG @BBL A1",
"sub_path": "filament/Polymaker/PolyLite PETG @BBL A1.json" "sub_path": "filament/Polymaker/PolyLite PETG @BBL A1.json"
@@ -6589,6 +6645,34 @@
"name": "Generic PLA @BBL X2D 0.4 nozzle", "name": "Generic PLA @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PLA @BBL X2D 0.4 nozzle.json" "sub_path": "filament/Generic PLA @BBL X2D 0.4 nozzle.json"
}, },
{
"name": "addnorth PLA E-PLA",
"sub_path": "filament/addnorth/addnorth PLA E-PLA.json"
},
{
"name": "addnorth PLA Economy",
"sub_path": "filament/addnorth/addnorth PLA Economy.json"
},
{
"name": "addnorth PLA HT-PLA PRO Matte",
"sub_path": "filament/addnorth/addnorth PLA HT-PLA PRO Matte.json"
},
{
"name": "addnorth PLA Textura",
"sub_path": "filament/addnorth/addnorth PLA Textura.json"
},
{
"name": "addnorth PLA Wood",
"sub_path": "filament/addnorth/addnorth PLA Wood.json"
},
{
"name": "addnorth PLA X-PLA",
"sub_path": "filament/addnorth/addnorth PLA X-PLA.json"
},
{
"name": "addnorth PLA rPLA RE-ADD",
"sub_path": "filament/addnorth/addnorth PLA rPLA RE-ADD.json"
},
{ {
"name": "Generic PLA High Speed @BBL A1", "name": "Generic PLA High Speed @BBL A1",
"sub_path": "filament/Generic PLA High Speed @BBL A1.json" "sub_path": "filament/Generic PLA High Speed @BBL A1.json"
@@ -6649,6 +6733,10 @@
"name": "Generic PLA High Speed @BBL X2D 0.4 nozzle", "name": "Generic PLA High Speed @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json" "sub_path": "filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json"
}, },
{
"name": "addnorth PLA X-PLA High Speed",
"sub_path": "filament/addnorth/addnorth PLA X-PLA High Speed.json"
},
{ {
"name": "Generic PLA Silk", "name": "Generic PLA Silk",
"sub_path": "filament/Generic PLA Silk.json" "sub_path": "filament/Generic PLA Silk.json"
@@ -6689,6 +6777,10 @@
"name": "Generic PLA Silk @BBL X2D 0.4 nozzle", "name": "Generic PLA Silk @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json" "sub_path": "filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json"
}, },
{
"name": "addnorth PLA Premium Silk",
"sub_path": "filament/addnorth/addnorth PLA Premium Silk.json"
},
{ {
"name": "Generic PLA-CF", "name": "Generic PLA-CF",
"sub_path": "filament/Generic PLA-CF.json" "sub_path": "filament/Generic PLA-CF.json"
@@ -6729,6 +6821,10 @@
"name": "Generic PLA-CF @BBL X2D 0.4 nozzle", "name": "Generic PLA-CF @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json" "sub_path": "filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json"
}, },
{
"name": "addnorth PLA-CF Carbon Fiber",
"sub_path": "filament/addnorth/addnorth PLA-CF Carbon Fiber.json"
},
{ {
"name": "Numakers PLA+ @BBL A1", "name": "Numakers PLA+ @BBL A1",
"sub_path": "filament/Numakers/Numakers PLA+ @BBL A1.json" "sub_path": "filament/Numakers/Numakers PLA+ @BBL A1.json"
@@ -6981,10 +7077,6 @@
"name": "Panchroma PLA @BBL X1C 0.2 nozzle", "name": "Panchroma PLA @BBL X1C 0.2 nozzle",
"sub_path": "filament/Polymaker/Panchroma PLA @BBL X1C 0.2 nozzle.json" "sub_path": "filament/Polymaker/Panchroma PLA @BBL X1C 0.2 nozzle.json"
}, },
{
"name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle",
"sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json"
},
{ {
"name": "Panchroma PLA Celestial @BBL A1", "name": "Panchroma PLA Celestial @BBL A1",
"sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL A1.json" "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL A1.json"
@@ -7381,6 +7473,10 @@
"name": "Panchroma PLA Silk @BBL X1C", "name": "Panchroma PLA Silk @BBL X1C",
"sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C.json" "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C.json"
}, },
{
"name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle",
"sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json"
},
{ {
"name": "Panchroma PLA Starlight @BBL A1", "name": "Panchroma PLA Starlight @BBL A1",
"sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL A1.json" "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL A1.json"
@@ -8889,6 +8985,18 @@
"name": "Generic TPU @BBL X2D 0.4 nozzle", "name": "Generic TPU @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic TPU @BBL X2D 0.4 nozzle.json" "sub_path": "filament/Generic TPU @BBL X2D 0.4 nozzle.json"
}, },
{
"name": "addnorth TPU EasyFlex",
"sub_path": "filament/addnorth/addnorth TPU EasyFlex.json"
},
{
"name": "addnorth TPU Pro Matte 85A",
"sub_path": "filament/addnorth/addnorth TPU Pro Matte 85A.json"
},
{
"name": "addnorth TPU Pro Matte 95A",
"sub_path": "filament/addnorth/addnorth TPU Pro Matte 95A.json"
},
{ {
"name": "Generic TPU for AMS @BBL A1", "name": "Generic TPU for AMS @BBL A1",
"sub_path": "filament/Generic TPU for AMS @BBL A1.json" "sub_path": "filament/Generic TPU for AMS @BBL A1.json"

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth ABS rABS",
"inherits": "Generic ABS @base",
"from": "system",
"setting_id": "GF_ANRA_00",
"filament_id": "GF_ANRA",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"105"
],
"eng_plate_temp_initial_layer": [
"105"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"25"
],
"fan_min_speed": [
"0"
],
"filament_adhesiveness_category": [
"200"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"43"
],
"filament_density": [
"1.03"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"12",
"12"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth ABS rABS"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"ABS"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"105"
],
"hot_plate_temp_initial_layer": [
"105"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"255",
"255"
],
"nozzle_temperature_initial_layer": [
"250",
"250"
],
"nozzle_temperature_range_high": [
"260"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"50"
],
"overhang_fan_threshold": [
"25%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp": [
"105"
],
"textured_plate_temp_initial_layer": [
"105"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PA Adura FDA",
"inherits": "Generic PA @base",
"from": "system",
"setting_id": "GF_ANAF_00",
"filament_id": "GF_ANAF",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"100"
],
"eng_plate_temp_initial_layer": [
"100"
],
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"50"
],
"filament_density": [
"1.1"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.99",
"0.99"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"11"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PA Adura FDA"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"0.4",
"0.4"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"2"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"100"
],
"hot_plate_temp_initial_layer": [
"100"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"265",
"265"
],
"nozzle_temperature_initial_layer": [
"265",
"265"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"245"
],
"overhang_fan_speed": [
"70"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"110"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PA Adura",
"inherits": "Generic PA @base",
"from": "system",
"setting_id": "GF_ANAD_00",
"filament_id": "GF_ANAD",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"100"
],
"eng_plate_temp_initial_layer": [
"100"
],
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"50"
],
"filament_density": [
"1.1"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.99",
"0.99"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"11"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PA Adura"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"0.4",
"0.4"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"2"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"100"
],
"hot_plate_temp_initial_layer": [
"100"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"265",
"265"
],
"nozzle_temperature_initial_layer": [
"265",
"265"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"245"
],
"overhang_fan_speed": [
"70"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"110"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PA-CF Adura X",
"inherits": "Generic PA-CF @base",
"from": "system",
"setting_id": "GF_ANAX_00",
"filament_id": "GF_ANAX",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"100"
],
"eng_plate_temp_initial_layer": [
"100"
],
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"109"
],
"filament_density": [
"1.2"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.99",
"0.99"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"15"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PA-CF Adura X"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PA-CF"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"2"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"100"
],
"hot_plate_temp_initial_layer": [
"100"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"280",
"280"
],
"nozzle_temperature_initial_layer": [
"275",
"275"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"260"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"2"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"120"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PA6 Addlantis",
"inherits": "Generic PA @base",
"from": "system",
"setting_id": "GF_ANLA_00",
"filament_id": "GF_ANLA",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"60"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"100"
],
"eng_plate_temp_initial_layer": [
"100"
],
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"82"
],
"filament_density": [
"1.18"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.99",
"0.99"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"11"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.62 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PA6 Addlantis"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PA6"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"0.4",
"0.4"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"2"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"100"
],
"hot_plate_temp_initial_layer": [
"100"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"275",
"275"
],
"nozzle_temperature_initial_layer": [
"275",
"275"
],
"nozzle_temperature_range_high": [
"285"
],
"nozzle_temperature_range_low": [
"265"
],
"overhang_fan_speed": [
"40"
],
"overhang_fan_threshold": [
"0%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"0"
],
"slow_down_layer_time": [
"15"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"110"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PC BLend HT LCF",
"inherits": "Generic PC @base",
"from": "system",
"setting_id": "GF_ANPBX_00",
"filament_id": "GF_ANPBX",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"40"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"109"
],
"filament_density": [
"1.3"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"15",
"15"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PC BLend HT LCF"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PC"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"285",
"285"
],
"nozzle_temperature_initial_layer": [
"275",
"275"
],
"nozzle_temperature_range_high": [
"290"
],
"nozzle_temperature_range_low": [
"265"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"2"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"185"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG Base",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANPE_00",
"filament_id": "GF_ANPE",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"35.6"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"10",
"10"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG Base"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"260",
"260"
],
"nozzle_temperature_initial_layer": [
"255",
"255"
],
"nozzle_temperature_range_high": [
"275"
],
"nozzle_temperature_range_low": [
"240"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"75"
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG ESD",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANEG_00",
"filament_id": "GF_ANEG",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"76"
],
"filament_density": [
"1.3"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.97",
"0.97"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"20",
"20"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 high reliability - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG ESD"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"290",
"290"
],
"nozzle_temperature_initial_layer": [
"290",
"290"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"255"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"70"
],
"textured_plate_temp_initial_layer": [
"70"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG Economy",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANGE_00",
"filament_id": "GF_ANGE",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"27"
],
"filament_density": [
"1.25"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"10",
"10"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG Economy"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"260",
"260"
],
"nozzle_temperature_initial_layer": [
"255",
"255"
],
"nozzle_temperature_range_high": [
"275"
],
"nozzle_temperature_range_low": [
"240"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"75"
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG Flame v0",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANPF_00",
"filament_id": "GF_ANPF",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"71"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.97",
"0.97"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"20",
"20"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.4 high reliability - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG Flame V0"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"290",
"290"
],
"nozzle_temperature_initial_layer": [
"290",
"290"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"255"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"70"
],
"textured_plate_temp_initial_layer": [
"70"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG PRO Matte",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANPM_00",
"filament_id": "GF_ANPM",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"54.5"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"8"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG PRO Matte"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"260",
"260"
],
"nozzle_temperature_initial_layer": [
"260",
"260"
],
"nozzle_temperature_range_high": [
"275"
],
"nozzle_temperature_range_low": [
"235"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"1"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"80"
],
"textured_plate_temp_initial_layer": [
"80"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG rPETG Matte",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANRM_00",
"filament_id": "GF_ANRM",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"36"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"10",
"10"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG rPETG Matte"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"260",
"260"
],
"nozzle_temperature_initial_layer": [
"255",
"255"
],
"nozzle_temperature_range_high": [
"260"
],
"nozzle_temperature_range_low": [
"225"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"75"
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG-CF Rigid X",
"inherits": "Generic PETG-CF @base",
"from": "system",
"setting_id": "GF_ANRX_00",
"filament_id": "GF_ANRX",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"100"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"5"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"82"
],
"filament_density": [
"1.3"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"11"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026 Special thanks to Mats.Z (3DP24, Jonkoping University / Campus Varnamo) for profile improvements during internship autumn 2025.",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG-CF Rigid X"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG-CF"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"0.4",
"0.4"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"nozzle_temperature_range_high": [
"275"
],
"nozzle_temperature_range_low": [
"245"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"0"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"6"
],
"slow_down_min_speed": [
"40"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"80"
],
"textured_plate_temp_initial_layer": [
"80"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA E-PLA",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANEP_00",
"filament_id": "GF_ANEP",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"5"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"20"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"12",
"12"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA E-PLA"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA Economy",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANPL_00",
"filament_id": "GF_ANPL",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"23"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"12",
"12"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA Economy"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"200"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"25%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA HT-PLA PRO Matte",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANHTP_00",
"filament_id": "GF_ANHTP",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"2"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"55"
],
"filament_density": [
"1.4"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"11"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA HT-PLA PRO Matte"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"70"
],
"hot_plate_temp_initial_layer": [
"70"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"245"
],
"nozzle_temperature_range_low": [
"210"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"75"
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA Premium Silk",
"inherits": "Generic PLA Silk @base",
"from": "system",
"setting_id": "GF_ANPS_00",
"filament_id": "GF_ANPS",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"50"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"2"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"70"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"42.5"
],
"filament_density": [
"1.26"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"1",
"1"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"10"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA Premium Silk"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"250",
"250"
],
"nozzle_temperature_initial_layer": [
"245",
"245"
],
"nozzle_temperature_range_high": [
"255"
],
"nozzle_temperature_range_low": [
"235"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"25%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA Textura",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANTE_00",
"filament_id": "GF_ANTE",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"55"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"10",
"14"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA Textura"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"235",
"235"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"25%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA Wood",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANPLW_00",
"filament_id": "GF_ANPLW",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer": [
"35"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"54.5"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"8"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA Wood"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"230",
"230"
],
"nozzle_temperature_initial_layer": [
"230",
"230"
],
"nozzle_temperature_range_high": [
"230"
],
"nozzle_temperature_range_low": [
"200"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"0"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"60"
],
"textured_plate_temp_initial_layer": [
"60"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA X-PLA High Speed",
"inherits": "Generic PLA High Speed @base",
"from": "system",
"setting_id": "GF_ANXPH_00",
"filament_id": "GF_ANXPH",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"20"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"12",
"12"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA X-PLA High Speed"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA X-PLA",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANXP_00",
"filament_id": "GF_ANXP",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"39"
],
"filament_density": [
"1.25"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"14",
"14"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA X-PLA"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"235",
"235"
],
"nozzle_temperature_initial_layer": [
"230",
"230"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"25%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA rPLA RE-ADD",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANRPL_00",
"filament_id": "GF_ANRPL",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"5"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"23"
],
"filament_density": [
"1.25"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"12",
"16"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA rPLA RE-ADD"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,320 @@
{
"type": "filament",
"name": "addnorth PLA-CF Carbon Fiber",
"inherits": "Generic PLA-CF @base",
"from": "system",
"setting_id": "GF_ANPCF_00",
"filament_id": "GF_ANPCF",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"37"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n\n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_max_volumetric_speed": [
"14"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0"
],
"filament_ramming_volumetric_speed": [
"-1"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"nil"
],
"filament_retraction_speed": [
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA-CF Carbon Fiber"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PLA-CF"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"nil"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"235"
],
"nozzle_temperature_initial_layer": [
"230"
],
"nozzle_temperature_range_high": [
"250"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"0"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"7"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"50"
],
"supertack_plate_temp_initial_layer": [
"50"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
],
"version": "2.0.0.87"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PVDF Adamant S1",
"inherits": "Generic PA @base",
"from": "system",
"setting_id": "GF_ANPV_00",
"filament_id": "GF_ANPV",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"100"
],
"eng_plate_temp_initial_layer": [
"100"
],
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"25"
],
"filament_adhesiveness_category": [
"400"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"146"
],
"filament_density": [
"1.8"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"1",
"1"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"4",
"4"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PVDF Adamant S1"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"0.4",
"0.4"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"2"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"100"
],
"hot_plate_temp_initial_layer": [
"100"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"260",
"260"
],
"nozzle_temperature_initial_layer": [
"265",
"265"
],
"nozzle_temperature_range_high": [
"260"
],
"nozzle_temperature_range_low": [
"240"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"0"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"12"
],
"slow_down_min_speed": [
"10"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"135"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth TPU EasyFlex",
"inherits": "Generic TPU @base",
"from": "system",
"setting_id": "GF_ANEF_00",
"filament_id": "GF_ANEF",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"30"
],
"eng_plate_temp_initial_layer": [
"30"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"600"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"82"
],
"filament_density": [
"1.1"
],
"filament_deretraction_speed": [
"40",
"40"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"1",
"1"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"3.9",
"5"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"0",
"0"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth TPU EasyFlex"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"TPU"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"35"
],
"hot_plate_temp_initial_layer": [
"35"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"250"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"10"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"35"
],
"textured_plate_temp_initial_layer": [
"35"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth TPU Pro Matte 85A",
"inherits": "Generic TPU @base",
"from": "system",
"setting_id": "GF_ANTA_00",
"filament_id": "GF_ANTA",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"30"
],
"cool_plate_temp_initial_layer": [
"30"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"30"
],
"eng_plate_temp_initial_layer": [
"30"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"600"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"82"
],
"filament_density": [
"1.1"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"1",
"1"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"3.2",
"5"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.2 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"0",
"0"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"40",
"40"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth TPU Pro Matte 85A"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"TPU"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"35"
],
"hot_plate_temp_initial_layer": [
"35"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"250",
"250"
],
"nozzle_temperature_initial_layer": [
"250",
"250"
],
"nozzle_temperature_range_high": [
"250"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"10"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"35"
],
"textured_plate_temp_initial_layer": [
"35"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,340 @@
{
"type": "filament",
"name": "addnorth TPU Pro Matte 95A",
"inherits": "Generic TPU @base",
"from": "system",
"setting_id": "GF_ANTM_00",
"filament_id": "GF_ANTM",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"30"
],
"eng_plate_temp_initial_layer": [
"30"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"600"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"82"
],
"filament_density": [
"1.1"
],
"filament_deretraction_speed": [
"40",
"40"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"1",
"1"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"3.9",
"5"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.3 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"0",
"0"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"40",
"40"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth TPU Pro Matte 95A"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"TPU"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"35"
],
"hot_plate_temp_initial_layer": [
"35"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"250"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"10"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"35"
],
"textured_plate_temp_initial_layer": [
"35"
],
"version": "2.0.0.77"
}

View File

@@ -1,6 +1,6 @@
{ {
"name": "Blocks", "name": "Blocks",
"version": "02.04.00.01", "version": "02.04.00.02",
"force_update": "0", "force_update": "0",
"description": "Blocks configurations", "description": "Blocks configurations",
"machine_model_list": [ "machine_model_list": [

View File

@@ -85,10 +85,8 @@
"BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle", "BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle", "BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle", "BLOCKS RF50 0.8 nozzle"
"BLOCKS RF50"
] ]
} }

View File

@@ -85,10 +85,8 @@
"BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle", "BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle", "BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle", "BLOCKS RF50 0.8 nozzle"
"BLOCKS RF50"
] ]
} }

View File

@@ -85,10 +85,8 @@
"BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle", "BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle", "BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle", "BLOCKS RF50 0.8 nozzle"
"BLOCKS RF50"
] ]
} }

View File

@@ -91,10 +91,8 @@
"BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle", "BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle", "BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle", "BLOCKS RF50 0.8 nozzle"
"BLOCKS RF50"
] ]
} }

View File

@@ -16,10 +16,8 @@
"BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle", "BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle", "BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle", "BLOCKS RF50 0.8 nozzle"
"BLOCKS RF50"
] ]
} }

View File

@@ -16,10 +16,8 @@
"BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle", "BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle", "BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle", "BLOCKS RF50 0.8 nozzle"
"BLOCKS RF50"
] ]
} }

View File

@@ -87,14 +87,11 @@
"BLOCKS Pro S100 0.8 nozzle", "BLOCKS Pro S100 0.8 nozzle",
"BLOCKS Pro S100 1.0 nozzle", "BLOCKS Pro S100 1.0 nozzle",
"BLOCKS Pro S100 1.2 nozzle", "BLOCKS Pro S100 1.2 nozzle",
"BLOCKS Pro S100",
"BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle", "BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle", "BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle", "BLOCKS RF50 0.8 nozzle"
"BLOCKS RF50"
] ]
} }

View File

@@ -22,10 +22,8 @@
"BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle", "BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle", "BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle", "BLOCKS RF50 0.8 nozzle"
"BLOCKS RF50"
] ]
} }

View File

@@ -45,14 +45,11 @@
"BLOCKS Pro S100 0.8 nozzle", "BLOCKS Pro S100 0.8 nozzle",
"BLOCKS Pro S100 1.0 nozzle", "BLOCKS Pro S100 1.0 nozzle",
"BLOCKS Pro S100 1.2 nozzle", "BLOCKS Pro S100 1.2 nozzle",
"BLOCKS Pro S100",
"BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle", "BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle", "BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle", "BLOCKS RF50 0.8 nozzle"
"BLOCKS RF50"
] ]
} }

View File

@@ -16,10 +16,8 @@
"BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle", "BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle", "BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle", "BLOCKS RF50 0.8 nozzle"
"BLOCKS RF50"
] ]
} }

View File

@@ -60,14 +60,11 @@
"BLOCKS Pro S100 0.8 nozzle", "BLOCKS Pro S100 0.8 nozzle",
"BLOCKS Pro S100 1.0 nozzle", "BLOCKS Pro S100 1.0 nozzle",
"BLOCKS Pro S100 1.2 nozzle", "BLOCKS Pro S100 1.2 nozzle",
"BLOCKS Pro S100",
"BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle", "BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle", "BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle", "BLOCKS RF50 0.8 nozzle"
"BLOCKS RF50"
] ]
} }

View File

@@ -10,7 +10,6 @@
"top_shell_layers": "6", "top_shell_layers": "6",
"top_solid_infill_flow_ratio": "0.96", "top_solid_infill_flow_ratio": "0.96",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RD50 V2",
"BLOCKS RD50 V2 0.4 nozzle" "BLOCKS RD50 V2 0.4 nozzle"
] ]
} }

View File

@@ -10,7 +10,6 @@
"bottom_shell_layers": "6", "bottom_shell_layers": "6",
"top_shell_layers": "6", "top_shell_layers": "6",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RF50",
"BLOCKS RF50 0.4 nozzle" "BLOCKS RF50 0.4 nozzle"
], ],
"sparse_infill_speed": "300", "sparse_infill_speed": "300",

View File

@@ -10,7 +10,6 @@
"top_shell_layers": "5", "top_shell_layers": "5",
"top_solid_infill_flow_ratio": "0.96", "top_solid_infill_flow_ratio": "0.96",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RD50 V2",
"BLOCKS RD50 V2 0.4 nozzle" "BLOCKS RD50 V2 0.4 nozzle"
] ]
} }

View File

@@ -10,7 +10,6 @@
"bottom_shell_layers": "5", "bottom_shell_layers": "5",
"top_shell_layers": "5", "top_shell_layers": "5",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RF50",
"BLOCKS RF50 0.4 nozzle" "BLOCKS RF50 0.4 nozzle"
], ],
"sparse_infill_speed": "300", "sparse_infill_speed": "300",

View File

@@ -10,7 +10,6 @@
"top_shell_layers": "4", "top_shell_layers": "4",
"top_solid_infill_flow_ratio": "0.96", "top_solid_infill_flow_ratio": "0.96",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RD50 V2",
"BLOCKS RD50 V2 0.6 nozzle" "BLOCKS RD50 V2 0.6 nozzle"
] ]
} }

View File

@@ -10,7 +10,6 @@
"bottom_shell_layers": "4", "bottom_shell_layers": "4",
"top_shell_layers": "4", "top_shell_layers": "4",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RF50",
"BLOCKS RF50 0.6 nozzle" "BLOCKS RF50 0.6 nozzle"
], ],
"sparse_infill_speed": "300", "sparse_infill_speed": "300",

View File

@@ -9,7 +9,6 @@
"bottom_shell_layers": "4", "bottom_shell_layers": "4",
"top_shell_layers": "5", "top_shell_layers": "5",
"compatible_printers": [ "compatible_printers": [
"BLOCKS Pro S100",
"BLOCKS Pro S100 0.4 nozzle" "BLOCKS Pro S100 0.4 nozzle"
] ]
} }

View File

@@ -10,7 +10,6 @@
"top_shell_layers": "5", "top_shell_layers": "5",
"top_solid_infill_flow_ratio": "0.96", "top_solid_infill_flow_ratio": "0.96",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RD50 V2",
"BLOCKS RD50 V2 0.4 nozzle" "BLOCKS RD50 V2 0.4 nozzle"
] ]
} }

View File

@@ -14,7 +14,6 @@
"bottom_shell_layers": "4", "bottom_shell_layers": "4",
"top_shell_layers": "5", "top_shell_layers": "5",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RF50",
"BLOCKS RF50 0.4 nozzle" "BLOCKS RF50 0.4 nozzle"
], ],
"sparse_infill_speed": "300", "sparse_infill_speed": "300",

View File

@@ -9,7 +9,6 @@
"bottom_shell_layers": "4", "bottom_shell_layers": "4",
"top_shell_layers": "5", "top_shell_layers": "5",
"compatible_printers": [ "compatible_printers": [
"BLOCKS Pro S100",
"BLOCKS Pro S100 0.4 nozzle" "BLOCKS Pro S100 0.4 nozzle"
] ]
} }

View File

@@ -10,7 +10,6 @@
"top_shell_layers": "5", "top_shell_layers": "5",
"top_solid_infill_flow_ratio": "0.96", "top_solid_infill_flow_ratio": "0.96",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RD50 V2",
"BLOCKS RD50 V2 0.4 nozzle" "BLOCKS RD50 V2 0.4 nozzle"
] ]
} }

View File

@@ -10,7 +10,6 @@
"bottom_shell_layers": "4", "bottom_shell_layers": "4",
"top_shell_layers": "5", "top_shell_layers": "5",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RF50",
"BLOCKS RF50 0.4 nozzle" "BLOCKS RF50 0.4 nozzle"
], ],
"sparse_infill_speed": "300", "sparse_infill_speed": "300",

View File

@@ -10,7 +10,6 @@
"top_shell_layers": "4", "top_shell_layers": "4",
"top_solid_infill_flow_ratio": "0.96", "top_solid_infill_flow_ratio": "0.96",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RD50 V2",
"BLOCKS RD50 V2 0.6 nozzle" "BLOCKS RD50 V2 0.6 nozzle"
] ]
} }

View File

@@ -10,7 +10,6 @@
"bottom_shell_layers": "4", "bottom_shell_layers": "4",
"top_shell_layers": "4", "top_shell_layers": "4",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RF50",
"BLOCKS RF50 0.6 nozzle" "BLOCKS RF50 0.6 nozzle"
], ],
"sparse_infill_speed": "300", "sparse_infill_speed": "300",

View File

@@ -10,7 +10,6 @@
"top_shell_layers": "4", "top_shell_layers": "4",
"top_solid_infill_flow_ratio": "0.96", "top_solid_infill_flow_ratio": "0.96",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RD50 V2",
"BLOCKS RD50 V2 0.4 nozzle" "BLOCKS RD50 V2 0.4 nozzle"
] ]
} }

View File

@@ -10,7 +10,6 @@
"bottom_shell_layers": "4", "bottom_shell_layers": "4",
"top_shell_layers": "4", "top_shell_layers": "4",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RF50",
"BLOCKS RF50 0.4 nozzle" "BLOCKS RF50 0.4 nozzle"
], ],
"sparse_infill_speed": "300", "sparse_infill_speed": "300",

View File

@@ -9,7 +9,6 @@
"top_shell_layers": "4", "top_shell_layers": "4",
"layer_height": "0.30", "layer_height": "0.30",
"compatible_printers": [ "compatible_printers": [
"BLOCKS Pro S100",
"BLOCKS Pro S100 0.4 nozzle" "BLOCKS Pro S100 0.4 nozzle"
] ]
} }

View File

@@ -9,7 +9,6 @@
"top_shell_layers": "3", "top_shell_layers": "3",
"layer_height": "0.3", "layer_height": "0.3",
"compatible_printers": [ "compatible_printers": [
"BLOCKS Pro S100",
"BLOCKS Pro S100 0.8 nozzle" "BLOCKS Pro S100 0.8 nozzle"
] ]
} }

View File

@@ -10,7 +10,6 @@
"top_shell_layers": "4", "top_shell_layers": "4",
"top_solid_infill_flow_ratio": "0.96", "top_solid_infill_flow_ratio": "0.96",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RD50 V2",
"BLOCKS RD50 V2 0.8 nozzle" "BLOCKS RD50 V2 0.8 nozzle"
] ]
} }

View File

@@ -10,7 +10,6 @@
"bottom_shell_layers": "4", "bottom_shell_layers": "4",
"top_shell_layers": "4", "top_shell_layers": "4",
"compatible_printers": [ "compatible_printers": [
"BLOCKS RF50",
"BLOCKS RF50 0.8 nozzle" "BLOCKS RF50 0.8 nozzle"
], ],
"sparse_infill_speed": "300", "sparse_infill_speed": "300",

View File

@@ -9,7 +9,6 @@
"top_shell_layers": "4", "top_shell_layers": "4",
"layer_height": "0.30", "layer_height": "0.30",
"compatible_printers": [ "compatible_printers": [
"BLOCKS Pro S100",
"BLOCKS Pro S100 1.0 nozzle" "BLOCKS Pro S100 1.0 nozzle"
] ]
} }

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