Merge remote-tracking branch 'remote/main' into local-fp

This commit is contained in:
Aidan Case
2024-03-04 14:19:13 -06:00
578 changed files with 72112 additions and 23889 deletions

View File

@@ -245,6 +245,15 @@ jobs:
mv -n ./build/OrcaSlicer_Linux_V${{ env.ver_pure }}.AppImage ./build/OrcaSlicer_Linux_${{ env.ver }}.AppImage mv -n ./build/OrcaSlicer_Linux_V${{ env.ver_pure }}.AppImage ./build/OrcaSlicer_Linux_${{ env.ver }}.AppImage
chmod +x ./build/OrcaSlicer_Linux_${{ env.ver }}.AppImage chmod +x ./build/OrcaSlicer_Linux_${{ env.ver }}.AppImage
- name: Build orca_custom_preset_tests
if: github.ref == 'refs/heads/main' && inputs.os == 'ubuntu-20.04'
working-directory: ${{ github.workspace }}/build/src
shell: bash
run: |
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -g 1
cd ${{ github.workspace }}/resources/profiles
zip -r orca_custom_preset_tests.zip user/
- name: Upload artifacts Ubuntu - name: Upload artifacts Ubuntu
if: inputs.os == 'ubuntu-20.04' if: inputs.os == 'ubuntu-20.04'
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
@@ -262,3 +271,14 @@ jobs:
asset_name: OrcaSlicer_Linux_${{ env.ver }}.AppImage asset_name: OrcaSlicer_Linux_${{ env.ver }}.AppImage
asset_content_type: application/octet-stream asset_content_type: application/octet-stream
max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted
- name: Deploy orca_custom_preset_tests
if: github.ref == 'refs/heads/main' && inputs.os == 'ubuntu-20.04'
uses: WebFreak001/deploy-nightly@v3.0.0
with:
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
release_id: 137995723
asset_path: ${{ github.workspace }}/resources/profiles/orca_custom_preset_tests.zip
asset_name: orca_custom_preset_tests.zip
asset_content_type: application/octet-stream
max_releases: 1

39
.github/workflows/check_profiles.yml vendored Normal file
View File

@@ -0,0 +1,39 @@
name: Check profiles
on:
pull_request:
branches:
- main
paths:
- 'resources/profiles/**'
- ".github/workflows/check_profiles.yml"
jobs:
check_translation:
name: Check profiles
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
# download
- name: Download
working-directory: ${{ github.workspace }}
run: |
curl -LJO https://github.com/SoftFever/Orca_tools/releases/download/1/OrcaSlicer_profile_validator
chmod +x ./OrcaSlicer_profile_validator
# validate profiles
- name: validate system profiles
run: |
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2
- name: validate custom presets
working-directory: ${{ github.workspace }}
run: |
curl -LJO https://github.com/SoftFever/OrcaSlicer/releases/download/nightly-builds/orca_custom_preset_tests.zip
unzip ./orca_custom_preset_tests.zip -d ${{ github.workspace }}/resources/profiles
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2

1
.gitignore vendored
View File

@@ -33,3 +33,4 @@ src/OrcaSlicer-doc/
/deps/DL_CACHE/ /deps/DL_CACHE/
/deps/DL_CACHE /deps/DL_CACHE
**/.flatpak-builder/ **/.flatpak-builder/
resources/profiles/user/default

View File

@@ -227,13 +227,16 @@ then
# cmake # cmake
pushd build pushd build
echo -e "cmake .. -DCMAKE_PREFIX_PATH=\"$PWD/../deps/build/destdir/usr/local\" -DSLIC3R_STATIC=1 ${BUILD_ARGS}" echo -e "cmake .. -DCMAKE_PREFIX_PATH=\"$PWD/../deps/build/destdir/usr/local\" -DSLIC3R_STATIC=1 -DORCA_TOOLS=ON ${BUILD_ARGS}"
cmake .. -DCMAKE_PREFIX_PATH="$PWD/../deps/build/destdir/usr/local" -DSLIC3R_STATIC=1 ${BUILD_ARGS} cmake .. -DCMAKE_PREFIX_PATH="$PWD/../deps/build/destdir/usr/local" -DSLIC3R_STATIC=1 ${BUILD_ARGS} -DORCA_TOOLS=ON
echo "done" echo "done"
# make Slic3r # make Slic3r
echo "[8/9] Building Slic3r..." echo "[8/9] Building Slic3r..."
make -j$NCORES OrcaSlicer # Slic3r make -j$NCORES OrcaSlicer # Slic3r
# make OrcaSlicer_profile_validator
make -j$NCORES OrcaSlicer_profile_validator
popd popd
./run_gettext.sh ./run_gettext.sh
echo "done" echo "done"

View File

@@ -69,6 +69,7 @@ endif ()
# Proposal for C++ unit tests and sandboxes # Proposal for C++ unit tests and sandboxes
option(SLIC3R_BUILD_SANDBOXES "Build development sandboxes" OFF) option(SLIC3R_BUILD_SANDBOXES "Build development sandboxes" OFF)
option(SLIC3R_BUILD_TESTS "Build unit tests" OFF) option(SLIC3R_BUILD_TESTS "Build unit tests" OFF)
option(ORCA_TOOLS "Build Orca tools" OFF)
if (IS_CROSS_COMPILE) if (IS_CROSS_COMPILE)
message("Detected cross compilation setup. Tests and encoding checks will be forcedly disabled!") message("Detected cross compilation setup. Tests and encoding checks will be forcedly disabled!")
@@ -378,7 +379,7 @@ endif()
# boost::process was introduced first in version 1.64.0, # boost::process was introduced first in version 1.64.0,
# boost::beast::detail::base64 was introduced first in version 1.66.0 # boost::beast::detail::base64 was introduced first in version 1.66.0
set(MINIMUM_BOOST_VERSION "1.66.0") set(MINIMUM_BOOST_VERSION "1.66.0")
set(_boost_components "system;filesystem;thread;log;locale;regex;chrono;atomic;date_time;iostreams") set(_boost_components "system;filesystem;thread;log;locale;regex;chrono;atomic;date_time;iostreams;program_options")
find_package(Boost ${MINIMUM_BOOST_VERSION} REQUIRED COMPONENTS ${_boost_components}) find_package(Boost ${MINIMUM_BOOST_VERSION} REQUIRED COMPONENTS ${_boost_components})
add_library(boost_libs INTERFACE) add_library(boost_libs INTERFACE)

View File

@@ -1,6 +1,6 @@
OrcaSlicer use `M106 P2` command to control auxiliary cooling fan. OrcaSlicer use `M106 P2` command to control auxiliary cooling fan.
If you are using Klipper, you can define a `M106` macro to control the both normal part cooling fan and auxiliary fan and exhuast fan. If you are using Klipper, you can define a `M106` macro to control the both normal part cooling fan and auxiliary fan and exhaust fan.
Below is a reference configuration for Klipper. Below is a reference configuration for Klipper.
*Note: Don't forget to change the pin name to the actual pin name you are using in the configuration* *Note: Don't forget to change the pin name to the actual pin name you are using in the configuration*

View File

@@ -11,11 +11,12 @@
2. [VFA] 2. [VFA]
**NOTE**: After completing the calibration process, remember to create a new project in order to exit the calibration mode. **NOTE**: After completing the calibration process, remember to create a new project in order to exit the calibration mode.
**NOTE2**: @ItsDeidara has made a webpage to help with the calculation. Check it out if those equations give you a headache [here](https://orcalibrate.com/).
# Flow rate # Flow rate
##### *NOTE: For Bambulab X1/X1C users, make sure you do not select the 'Flow calibration' option.* ##### *NOTE: For Bambulab X1/X1C users, make sure you do not select the 'Flow calibration' option.*
![uncheck](https://user-images.githubusercontent.com/103989404/221345187-3c317a46-4d85-4221-99b9-adb5c7f48026.jpeg) ![uncheck](https://user-images.githubusercontent.com/103989404/221345187-3c317a46-4d85-4221-99b9-adb5c7f48026.jpeg)
---------------------------------------- ----------------------------------------
![flowrate](https://user-images.githubusercontent.com/103989404/210137579-3fd141ad-f2da-4542-a1fd-fc4b4d673908.gif) ![flowrate](./images/flow-calibration.gif)
Calibrating the flow rate involves a two-step process. Calibrating the flow rate involves a two-step process.
Steps Steps
1. Select the printer, filament, and process you would like to use for the test. 1. Select the printer, filament, and process you would like to use for the test.
@@ -30,7 +31,7 @@ Steps
7. Repeat steps 4 and 5. In this case, if your previous flow ratio was 1.029 and you selected the block with a flow rate modifier of -6, the new value should be calculated as follows: `1.029x(100-6)/100 = 0.96726`. ** Remember ** to save the filament profile. 7. Repeat steps 4 and 5. In this case, if your previous flow ratio was 1.029 and you selected the block with a flow rate modifier of -6, the new value should be calculated as follows: `1.029x(100-6)/100 = 0.96726`. ** Remember ** to save the filament profile.
![pass2](https://user-images.githubusercontent.com/103989404/210139072-f2fa91a6-4e3b-4d2a-81f2-c50155e1ff6d.jpg) ![pass2](https://user-images.githubusercontent.com/103989404/210139072-f2fa91a6-4e3b-4d2a-81f2-c50155e1ff6d.jpg)
![-6](https://user-images.githubusercontent.com/103989404/210139131-ee224146-b242-4c1c-ac96-35ef0ca591f1.jpg) ![-6](https://user-images.githubusercontent.com/103989404/210139131-ee224146-b242-4c1c-ac96-35ef0ca591f1.jpg)
![image](https://user-images.githubusercontent.com/103989404/210139721-919be130-fbba-4e3a-aa58-8a563e8c7792.png) ![image](./images/flowcalibration_update_flowrate.jpg)
# Pressure Advance # Pressure Advance

View File

@@ -1,5 +1,8 @@
WIP... WIP...
### Scarf joint seam
WIP...
### Seam gap ### Seam gap
![image](https://user-images.githubusercontent.com/103989404/215331359-236874c9-ca91-4dd4-b969-3cefc70ebe1b.png) ![image](https://user-images.githubusercontent.com/103989404/215331359-236874c9-ca91-4dd4-b969-3cefc70ebe1b.png)

View File

@@ -1,6 +1,6 @@
OrcaSlicer use `M106 P3` command to control air-filtration/exhuast fan. OrcaSlicer use `M106 P3` command to control air-filtration/exhaust fan.
If you are using Klipper, you can define a `M106` macro to control the both normal part cooling fan and auxiliary fan and exhuast fan. If you are using Klipper, you can define a `M106` macro to control the both normal part cooling fan and auxiliary fan and exhaust fan.
Below is a reference configuration for Klipper. Below is a reference configuration for Klipper.
*Note: Don't forget to change the pin name to the actual pin name you are using in the configuration* *Note: Don't forget to change the pin name to the actual pin name you are using in the configuration*

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-02 19:55+0100\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"
@@ -660,6 +660,14 @@ msgstr ""
msgid "Text shape" msgid "Text shape"
msgstr "" msgstr ""
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "" msgstr ""
@@ -678,9 +686,6 @@ msgstr ""
msgid "Emboss" msgid "Emboss"
msgstr "" msgstr ""
msgid "Text-Rotate"
msgstr ""
msgid "NORMAL" msgid "NORMAL"
msgstr "" msgstr ""
@@ -1050,6 +1055,14 @@ msgstr ""
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "" msgstr ""
@@ -1062,10 +1075,6 @@ msgstr ""
msgid "SVG" msgid "SVG"
msgstr "" msgstr ""
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr ""
#, possible-boost-format #, possible-boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "" msgstr ""
@@ -1179,9 +1188,6 @@ msgstr ""
msgid "Reset scale" msgid "Reset scale"
msgstr "" msgstr ""
msgid "Resize"
msgstr ""
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "" msgstr ""
@@ -1443,6 +1449,9 @@ msgstr ""
msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):" msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):"
msgstr "" msgstr ""
msgid "Choose ZIP file"
msgstr ""
msgid "Choose one file (gcode/3mf):" msgid "Choose one file (gcode/3mf):"
msgstr "" msgstr ""
@@ -1506,6 +1515,11 @@ msgstr ""
msgid "Select a G-code file:" msgid "Select a G-code file:"
msgstr "" msgstr ""
msgid ""
"Could not start URL download. Destination folder is not set. Please choose "
"destination folder in Configuration Wizard."
msgstr ""
msgid "Import File" msgid "Import File"
msgstr "" msgstr ""
@@ -1660,6 +1674,17 @@ msgstr ""
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "" msgstr ""
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "" msgstr ""
@@ -2127,9 +2152,6 @@ msgstr ""
msgid "Outside" msgid "Outside"
msgstr "" msgstr ""
msgid " "
msgstr ""
msgid "Layer height" msgid "Layer height"
msgstr "" msgstr ""
@@ -3394,6 +3416,68 @@ msgstr ""
msgid "default" msgid "default"
msgstr "" msgstr ""
#, possible-boost-format
msgid "Edit Custom G-code (%1%)"
msgstr ""
msgid "Built-in placeholders (Double click item to add to G-code)"
msgstr ""
msgid "Search gcode placeholders"
msgstr ""
msgid "Add selected placeholder to G-code"
msgstr ""
msgid "Select placeholder"
msgstr ""
msgid "[Global] Slicing State"
msgstr ""
msgid "Read Only"
msgstr ""
msgid "Read Write"
msgstr ""
msgid "Slicing State"
msgstr ""
msgid "Print Statistics"
msgstr ""
msgid "Objects Info"
msgstr ""
msgid "Dimensions"
msgstr ""
msgid "Temperatures"
msgstr ""
msgid "Timestamps"
msgstr ""
#, possible-boost-format
msgid "Specific for %1%"
msgstr ""
msgid "Presets"
msgstr ""
msgid "Print settings"
msgstr ""
msgid "Filament settings"
msgstr ""
msgid "SLA Materials settings"
msgstr ""
msgid "Printer settings"
msgstr ""
msgid "parameter name" msgid "parameter name"
msgstr "" msgstr ""
@@ -3584,9 +3668,6 @@ msgstr ""
msgid "Printer" msgid "Printer"
msgstr "" msgstr ""
msgid "Print settings"
msgstr ""
msgid "Custom g-code" msgid "Custom g-code"
msgstr "" msgstr ""
@@ -4036,6 +4117,12 @@ msgstr ""
msgid "Load a model" msgid "Load a model"
msgstr "" msgstr ""
msgid "Import Zip Archive"
msgstr ""
msgid "Load models contained within a zip archive"
msgstr ""
msgid "Import Configs" msgid "Import Configs"
msgstr "" msgstr ""
@@ -4144,6 +4231,12 @@ msgstr ""
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "" msgstr ""
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "" msgstr ""
@@ -4913,10 +5006,10 @@ msgstr[1] ""
msgid "ERROR" msgid "ERROR"
msgstr "" msgstr ""
msgid "CANCELED" msgid "COMPLETED"
msgstr "" msgstr ""
msgid "COMPLETED" msgid "CANCELED"
msgstr "" msgstr ""
msgid "Cancel upload" msgid "Cancel upload"
@@ -5039,12 +5132,6 @@ msgstr ""
msgid "View all object's settings" msgid "View all object's settings"
msgstr "" msgstr ""
msgid "Filament settings"
msgstr ""
msgid "Printer settings"
msgstr ""
msgid "Remove current plate (if not last one)" msgid "Remove current plate (if not last one)"
msgstr "" msgstr ""
@@ -5451,6 +5538,20 @@ msgstr ""
msgid "Error occurs while loading G-code file" msgid "Error occurs while loading G-code file"
msgstr "" msgstr ""
#. TRN %1% is archive path
#, possible-boost-format
msgid "Loading of a ZIP archive on path %1% has failed."
msgstr ""
#. TRN: First argument = path to file, second argument = error description
#, possible-boost-format
msgid "Failed to unzip file to %1%: %2%"
msgstr ""
#, possible-boost-format
msgid "Failed to find unzipped file at %1%. Unzipping of file has failed."
msgstr ""
msgid "Drop project file" msgid "Drop project file"
msgstr "" msgstr ""
@@ -5715,9 +5816,6 @@ msgstr ""
msgid "If enabled, auto-calculate everytime the color changed." msgid "If enabled, auto-calculate everytime the color changed."
msgstr "" msgstr ""
msgid "Presets"
msgstr ""
msgid "Auto sync user presets(Printer/Filament/Process)" msgid "Auto sync user presets(Printer/Filament/Process)"
msgstr "" msgstr ""
@@ -5782,6 +5880,9 @@ msgstr ""
msgid "Downloads" msgid "Downloads"
msgstr "" msgstr ""
msgid "Allow downloads from Printables.com"
msgstr ""
msgid "Dark Mode" msgid "Dark Mode"
msgstr "" msgstr ""
@@ -6470,6 +6571,15 @@ msgid ""
"independent support layer height" "independent support layer height"
msgstr "" msgstr ""
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6489,6 +6599,13 @@ msgstr ""
msgid "Ignore" msgid "Ignore"
msgstr "" msgstr ""
msgid ""
"When using scarf joint, we recommend the following settings:\n"
"print outer wall first, disable wipe before external loop, reduce outer wall "
"speed to no greater than 50mm/s, and don't use random or nearest seam "
"position"
msgstr ""
msgid "" msgid ""
"When recording timelapse without toolhead, it is recommended to add a " "When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n" "\"Timelapse Wipe Tower\" \n"
@@ -6511,9 +6628,6 @@ msgstr ""
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "" msgstr ""
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "" msgstr ""
@@ -6733,6 +6847,9 @@ msgstr ""
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "" msgstr ""
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "" msgstr ""
@@ -6992,9 +7109,6 @@ msgstr ""
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "" msgstr ""
msgid "Back"
msgstr ""
msgid "Basic Info" msgid "Basic Info"
msgstr "" msgstr ""
@@ -7573,7 +7687,10 @@ msgstr ""
msgid "Need to check the unsaved changes before configuration updates." msgid "Need to check the unsaved changes before configuration updates."
msgstr "" msgstr ""
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr ""
msgid " updated to "
msgstr "" msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
@@ -7923,6 +8040,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "" msgstr ""
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "" msgstr ""
@@ -8262,12 +8383,14 @@ msgstr ""
msgid "This factor affects the amount of material for bottom solid infill" msgid "This factor affects the amount of material for bottom solid infill"
msgstr "" msgstr ""
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "" msgstr ""
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
@@ -8281,7 +8404,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "" msgstr ""
#, possible-c-format, possible-boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -8342,13 +8465,30 @@ msgid ""
"directions on odd layers irrespective of their overhang degree." "directions on odd layers irrespective of their overhang degree."
msgstr "" msgstr ""
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "" msgstr ""
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "" msgstr ""
#, possible-c-format, possible-boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -8517,11 +8657,11 @@ msgid "Fan speed"
msgstr "" msgstr ""
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "" msgstr ""
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -8558,7 +8698,7 @@ msgid ""
"using large nozzles." "using large nozzles."
msgstr "" msgstr ""
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8633,7 +8773,7 @@ msgid ""
"thickness (top+bottom solid layers)" "thickness (top+bottom solid layers)"
msgstr "" msgstr ""
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8767,6 +8907,26 @@ msgid ""
"external surfaces of the part." "external surfaces of the part."
msgstr "" msgstr ""
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "" msgstr ""
@@ -8788,6 +8948,50 @@ msgid ""
"printing." "printing."
msgstr "" msgstr ""
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "" msgstr ""
@@ -8890,10 +9094,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "" msgstr ""
#, possible-c-format, possible-boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9072,7 +9276,7 @@ msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "" msgstr ""
#, possible-c-format, possible-boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -9649,7 +9853,7 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "" msgstr ""
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -9852,9 +10056,9 @@ msgid "Min print speed"
msgstr "" msgstr ""
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
msgid "Nozzle diameter" msgid "Nozzle diameter"
@@ -10209,6 +10413,9 @@ msgstr ""
msgid "Aligned" msgid "Aligned"
msgstr "" msgstr ""
msgid "Back"
msgstr ""
msgid "Random" msgid "Random"
msgstr "" msgstr ""
@@ -10230,6 +10437,47 @@ msgid ""
"current extruder diameter. The default value for this parameter is 10%." "current extruder diameter. The default value for this parameter is 10%."
msgstr "" msgstr ""
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "" msgstr ""
@@ -10394,7 +10642,7 @@ msgstr ""
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "" msgstr ""
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -10989,7 +11237,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "" msgstr ""
#, possible-c-format, possible-boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "

File diff suppressed because it is too large Load Diff

View File

@@ -7,7 +7,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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\n"
"PO-Revision-Date: 2023-09-30 15:15+0200\n" "PO-Revision-Date: 2023-09-30 15:15+0200\n"
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n" "Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -670,6 +670,14 @@ msgstr "Otočit text"
msgid "Text shape" msgid "Text shape"
msgstr "Tvar textu" msgstr "Tvar textu"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "" msgstr ""
@@ -688,9 +696,6 @@ msgstr ""
msgid "Emboss" msgid "Emboss"
msgstr "" msgstr ""
msgid "Text-Rotate"
msgstr ""
msgid "NORMAL" msgid "NORMAL"
msgstr "" msgstr ""
@@ -1060,6 +1065,14 @@ msgstr ""
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "" msgstr ""
@@ -1072,10 +1085,6 @@ msgstr ""
msgid "SVG" msgid "SVG"
msgstr "" msgstr ""
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr ""
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "" msgstr ""
@@ -1189,9 +1198,6 @@ msgstr ""
msgid "Reset scale" msgid "Reset scale"
msgstr "" msgstr ""
msgid "Resize"
msgstr ""
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "" msgstr ""
@@ -1693,6 +1699,17 @@ msgstr "Voron Kostka"
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "" msgstr ""
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "" msgstr ""
@@ -2180,9 +2197,6 @@ msgstr "kopírování více buněk není podporováno"
msgid "Outside" msgid "Outside"
msgstr "Mimo" msgstr "Mimo"
msgid " "
msgstr " "
msgid "Layer height" msgid "Layer height"
msgstr "Výška vrstvy" msgstr "Výška vrstvy"
@@ -4365,6 +4379,12 @@ msgstr ""
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "" msgstr ""
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "" msgstr ""
@@ -6871,6 +6891,15 @@ msgstr ""
"0 horní z vzdálenost, 0 rozestup rozhraní, koncentrický vzor a vypnutí " "0 horní z vzdálenost, 0 rozestup rozhraní, koncentrický vzor a vypnutí "
"nezávislé výšky podpůrné vrstvy" "nezávislé výšky podpůrné vrstvy"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6916,9 +6945,6 @@ msgstr "Generátor stěny"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "" msgstr ""
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "" msgstr ""
@@ -7167,6 +7193,9 @@ msgstr "Čas zrychlení ventilátoru"
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "Vzdálenost extruderu" msgstr "Vzdálenost extruderu"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "Příslušenství" msgstr "Příslušenství"
@@ -7446,9 +7475,6 @@ msgstr "Obálka"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "Název \"%1%\" již existuje." msgstr "Název \"%1%\" již existuje."
msgid "Back"
msgstr "Zezadu"
msgid "Basic Info" msgid "Basic Info"
msgstr "Základní informace" msgstr "Základní informace"
@@ -8056,8 +8082,11 @@ msgstr "Kopírování souboru %1% do %2% selhalo: %3%"
msgid "Need to check the unsaved changes before configuration updates." msgid "Need to check the unsaved changes before configuration updates."
msgstr "Před aktualizacemi konfigurace je třeba zkontrolovat neuložené změny." msgstr "Před aktualizacemi konfigurace je třeba zkontrolovat neuložené změny."
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "Konfigurační balíček aktualizován na " msgstr ""
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "Otevřít soubor s G-kódem:" msgstr "Otevřít soubor s G-kódem:"
@@ -8452,6 +8481,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "Podložka %d: %s nepodporuje filament %s" msgstr "Podložka %d: %s nepodporuje filament %s"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "Generování Obrysu a Límce" msgstr "Generování Obrysu a Límce"
@@ -8861,15 +8894,15 @@ msgstr "Poměr průtoku spodní vrstvy"
msgid "This factor affects the amount of material for bottom solid infill" msgid "This factor affects the amount of material for bottom solid infill"
msgstr "Tento faktor ovlivňuje množství materiálu pro spodní plnou výplň" msgstr "Tento faktor ovlivňuje množství materiálu pro spodní plnou výplň"
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "Přesná stěna (experimentální)" msgstr "Přesná stěna"
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
"Zlepšete přesnost skořepiny úpravou vzdálenosti vnějších stěn. To také "
"zlepšuje konzistence vrstev."
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
msgstr "Pouze jedna stěna na horních plochách" msgstr "Pouze jedna stěna na horních plochách"
@@ -8884,7 +8917,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "Hranice jedné stěny" msgstr "Hranice jedné stěny"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -8957,13 +8990,30 @@ msgid ""
"directions on odd layers irrespective of their overhang degree." "directions on odd layers irrespective of their overhang degree."
msgstr "" msgstr ""
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "Hranice obrácení" msgstr "Hranice obrácení"
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "Hranice obrácení převisu" msgstr "Hranice obrácení převisu"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -9152,13 +9202,13 @@ msgid "Fan speed"
msgstr "Rychlost ventilátoru" msgstr "Rychlost ventilátoru"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
"Rychlost odsávacího ventilátoru během tisku. Tato rychlost přepíše rychlost " "Rychlost odsávacího ventilátoru během tisku. Tato rychlost přepíše rychlost "
"v g-kódu pro filament" "v g-kódu pro filament"
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "Rychlost odsávacího ventilátoru po dokončení tisku" msgstr "Rychlost odsávacího ventilátoru po dokončení tisku"
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -9204,7 +9254,7 @@ msgid ""
"using large nozzles." "using large nozzles."
msgstr "" msgstr ""
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9284,7 +9334,7 @@ msgstr ""
"Přidá plnou výplň u šikmých ploch pro garanci tloušťky svislých stěn " "Přidá plnou výplň u šikmých ploch pro garanci tloušťky svislých stěn "
"(vrchních a spodních plných vrstev)" "(vrchních a spodních plných vrstev)"
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9430,6 +9480,26 @@ msgid ""
"external surfaces of the part." "external surfaces of the part."
msgstr "" msgstr ""
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "Výška k Ose X" msgstr "Výška k Ose X"
@@ -9457,6 +9527,50 @@ msgstr ""
"Poloměr vůle kolem extruderu. Používá se pro zamezení kolizi při tisku " "Poloměr vůle kolem extruderu. Používá se pro zamezení kolizi při tisku "
"vedlejších objektů." "vedlejších objektů."
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "Barva extruderu" msgstr "Barva extruderu"
@@ -9583,10 +9697,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "Smrštění" msgstr "Smrštění"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9803,7 +9917,7 @@ msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Hustota vnitřní výplně" msgstr "Hustota vnitřní výplně"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10489,7 +10603,7 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "Tento G-kód bude použit jako vlastní kód" msgstr "Tento G-kód bude použit jako vlastní kód"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -10736,13 +10850,10 @@ msgid "Min print speed"
msgstr "Minimální rychlost tisku" msgstr "Minimální rychlost tisku"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
"Minimální rychlost tisku pro filament, když je povoleno zpomalení pro lepší "
"chlazení vrstev, při tisku převisů a pokud rychlosti prvků nejsou explicitně "
"určeny."
msgid "Nozzle diameter" msgid "Nozzle diameter"
msgstr "Průměr trysky" msgstr "Průměr trysky"
@@ -11159,6 +11270,9 @@ msgstr "Nejbližší"
msgid "Aligned" msgid "Aligned"
msgstr "Zarovnaný" msgstr "Zarovnaný"
msgid "Back"
msgstr "Zezadu"
msgid "Random" msgid "Random"
msgstr "Náhodný" msgstr "Náhodný"
@@ -11186,6 +11300,47 @@ msgstr ""
"Tato hodnota může být zadána v milimetrech nebo jako procento aktuálního " "Tato hodnota může být zadána v milimetrech nebo jako procento aktuálního "
"průměru trysky. Výchozí hodnota pro tento parametr je 10%." "průměru trysky. Výchozí hodnota pro tento parametr je 10%."
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "Rychlost čištění podle role" msgstr "Rychlost čištění podle role"
@@ -11381,8 +11536,8 @@ msgstr "Očistěte zbývající filament do čistící věže"
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "Povolit rapidní extruzi filamentu" msgstr "Povolit rapidní extruzi filamentu"
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "Bez řídkých vrstev (EXPERIMENTÁLNÍ)" msgstr ""
msgid "" msgid ""
"If enabled, the wipe tower will not be printed on layers with no " "If enabled, the wipe tower will not be printed on layers with no "
@@ -12100,7 +12255,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "Míra detekce polyotvoru" msgstr "Míra detekce polyotvoru"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -14207,8 +14362,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
#: resources/data/hints.ini: [hint:G-code window] #: resources/data/hints.ini: [hint:G-code window]
@@ -14508,6 +14663,31 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid " "
#~ msgstr " "
#~ msgid "Configuration package updated to "
#~ msgstr "Konfigurační balíček aktualizován na "
#~ msgid ""
#~ "Improve shell precision by adjusting outer wall spacing. This also "
#~ "improves layer consistency."
#~ msgstr ""
#~ "Zlepšete přesnost skořepiny úpravou vzdálenosti vnějších stěn. To také "
#~ "zlepšuje konzistence vrstev."
#~ msgid ""
#~ "The minimum printing speed for the filament when slow down for better "
#~ "layer cooling is enabled, when printing overhangs and when feature speeds "
#~ "are not specified explicitly."
#~ msgstr ""
#~ "Minimální rychlost tisku pro filament, když je povoleno zpomalení pro "
#~ "lepší chlazení vrstev, při tisku převisů a pokud rychlosti prvků nejsou "
#~ "explicitně určeny."
#~ msgid "No sparse layers (EXPERIMENTAL)"
#~ msgstr "Bez řídkých vrstev (EXPERIMENTÁLNÍ)"
#~ msgid "The Config can not be loaded." #~ msgid "The Config can not be loaded."
#~ msgstr "Nelze načíst konfiguraci." #~ msgstr "Nelze načíst konfiguraci."

View File

@@ -2,7 +2,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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\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"
@@ -675,6 +675,14 @@ msgstr "Text drehen"
msgid "Text shape" msgid "Text shape"
msgstr "Text zufügen" msgstr "Text zufügen"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr "Text drehen"
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr "Text verschieben"
msgid "Set Mirror" msgid "Set Mirror"
msgstr "Spiegel setzen" msgstr "Spiegel setzen"
@@ -693,9 +701,6 @@ msgstr "Geprägte Aktionen"
msgid "Emboss" msgid "Emboss"
msgstr "Prägen" msgstr "Prägen"
msgid "Text-Rotate"
msgstr "Text-Drehen"
msgid "NORMAL" msgid "NORMAL"
msgstr "Normal" msgstr "Normal"
@@ -1081,6 +1086,14 @@ msgstr "Behalte oben"
msgid "Collection" msgid "Collection"
msgstr "Sammlung" msgstr "Sammlung"
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr "SVG drehen"
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr "SVG verschieben"
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "SVG-Gizmo eingeben" msgstr "SVG-Gizmo eingeben"
@@ -1093,10 +1106,6 @@ msgstr "SVG-Aktionen"
msgid "SVG" msgid "SVG"
msgstr "SVG" msgstr "SVG"
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr "SVG-Drehen"
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "Deckkraft (%1%)" msgstr "Deckkraft (%1%)"
@@ -1216,9 +1225,6 @@ msgstr "Verriegeln/Entriegeln des Seitenverhältnisses des SVG."
msgid "Reset scale" msgid "Reset scale"
msgstr "Skalierung zurücksetzen" msgstr "Skalierung zurücksetzen"
msgid "Resize"
msgstr "Größe zurücksetzen"
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "Distanz des SVG-Mittelpunkts zur Modell-Oberfläche." msgstr "Distanz des SVG-Mittelpunkts zur Modell-Oberfläche."
@@ -1729,6 +1735,23 @@ msgstr "Voron Würfel"
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "Stanford Hase" msgstr "Stanford Hase"
msgid "Orca String Hell"
msgstr "Orca String Hell"
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
"Dieses Modell verfügt über eine Textprägung auf der Oberfläche. Für optimale "
"Ergebnisse wird empfohlen, die 'One Wall Threshold (min_width_top_surface)' "
"für 'Nur eine Wand auf Oberflächen' auf 0 zu setzen, um das Beste zu "
"erreichen.\n"
"Ja - Ändern Sie diese Einstellungen automatisch\n"
"Nein - Ändern Sie diese Einstellungen nicht für mich"
msgid "Text" msgid "Text"
msgstr "T" msgstr "T"
@@ -2229,9 +2252,6 @@ msgstr "Das Kopieren mehrerer Zellen wird nicht unterstützt"
msgid "Outside" msgid "Outside"
msgstr "Außenseite" msgstr "Außenseite"
msgid " "
msgstr " "
msgid "Layer height" msgid "Layer height"
msgstr "Schichthöhe" msgstr "Schichthöhe"
@@ -4477,6 +4497,12 @@ msgstr "&G-Code-Fenster anzeigen"
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "G-Code-Fenster in der Vorschau anzeigen" msgstr "G-Code-Fenster in der Vorschau anzeigen"
msgid "Show 3D Navigator"
msgstr "3D-Navigator anzeigen"
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr "3D-Navigator in Vorbereitungs- und Vorschauansicht anzeigen"
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "Window-Layout zurücksetzen" msgstr "Window-Layout zurücksetzen"
@@ -5461,7 +5487,7 @@ msgid "Lock current plate"
msgstr "Speere aktuelle Platte" msgstr "Speere aktuelle Platte"
msgid "Edit current plate name" msgid "Edit current plate name"
msgstr "" msgstr "Bearbeite den Namen der aktuellen Platte"
msgid "Customize current plate" msgid "Customize current plate"
msgstr "Aktuelle Platte anpassen" msgstr "Aktuelle Platte anpassen"
@@ -7070,6 +7096,20 @@ msgstr ""
"dieunabhängige Einstellung der Support-Lagenhöhe (independent support layer " "dieunabhängige Einstellung der Support-Lagenhöhe (independent support layer "
"height)." "height)."
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
"Wenn Sie diese Option aktivieren, wird die Form des Modells geändert. Wenn "
"Ihr Druck präzise Abmessungen erfordert oder Teil einer Baugruppe ist, ist "
"es wichtig, zu überprüfen, ob diese Änderung der Geometrie die Funktionalität "
"Ihres Drucks beeinträchtigt."
msgid "Are you sure you want to enable this option?"
msgstr ""
"Sind Sie sicher, dass Sie diese Option aktivieren möchten?"
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -7119,9 +7159,6 @@ msgstr "Wandgenerator"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "Wände und Oberflächen" msgstr "Wände und Oberflächen"
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "Brücken" msgstr "Brücken"
@@ -7371,6 +7408,9 @@ msgstr "Lüfter Beschleunigungszeit"
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "Freiraum des Extruders" msgstr "Freiraum des Extruders"
msgid "Adaptive bed mesh"
msgstr "Adaptives Bett Gitter"
msgid "Accessory" msgid "Accessory"
msgstr "Zubehör" msgstr "Zubehör"
@@ -7633,20 +7673,26 @@ msgstr "Wähle Voreinstellungen zum Vergleich aus"
msgid "" msgid ""
"You can only transfer to current active profile because it has been modified." "You can only transfer to current active profile because it has been modified."
msgstr "" msgstr ""
"Sie können nur in das aktuelle aktive Profil übertragen, da es geändert wurde."
msgid "" msgid ""
"Transfer the selected options from left preset to the right.\n" "Transfer the selected options from left preset to the right.\n"
"Note: New modified presets will be selected in settings tabs after close " "Note: New modified presets will be selected in settings tabs after close "
"this dialog." "this dialog."
msgstr "" msgstr ""
"Übertragen Sie die ausgewählten Optionen vom linken Profil auf das rechte.\n"
"Hinweis: Neue geänderte Profile werden in den Einstellungsregisterkarten "
"ausgewählt, nachdem Sie dieses Dialogfeld geschlossen haben."
msgid "Transfer values from left to right" msgid "Transfer values from left to right"
msgstr "" msgstr "Werte von links nach rechts übertragen"
msgid "" msgid ""
"If enabled, this dialog can be used for transver selected values from left " "If enabled, this dialog can be used for transver selected values from left "
"to right preset." "to right preset."
msgstr "" msgstr ""
"Wenn aktiviert, kann dieses Dialogfeld zum Übertragen ausgewählter Werte von "
"links nach rechts verwendet werden."
msgid "Add File" msgid "Add File"
msgstr "Datei hinzufügen" msgstr "Datei hinzufügen"
@@ -7661,9 +7707,6 @@ msgstr "Abdeckung"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "Der Name \"%1%\" existiert bereits." msgstr "Der Name \"%1%\" existiert bereits."
msgid "Back"
msgstr "Rückseite"
msgid "Basic Info" msgid "Basic Info"
msgstr "Basis-Info" msgstr "Basis-Info"
@@ -8282,8 +8325,11 @@ msgstr ""
"Vor der Aktualisierung der Konfiguration müssen die nicht gespeicherten " "Vor der Aktualisierung der Konfiguration müssen die nicht gespeicherten "
"Änderungen überprüft werden." "Änderungen überprüft werden."
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "Konfigurationspaket aktualisiert auf " msgstr "Konfigurationspaket:"
msgid " updated to "
msgstr " aktualisiert auf "
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "Öffne G-Code-Datei:" msgstr "Öffne G-Code-Datei:"
@@ -8701,6 +8747,12 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "Druckplatte %d: %s unterstützt kein Filament %s" msgstr "Druckplatte %d: %s unterstützt kein Filament %s"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
"Das Einstellen der Ruckgeschwindigkeit zu niedrig kann zu Artefakten auf "
"gebogenen Oberflächen führen"
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "Generieren von Schürze und Rand (skirt & brim)" msgstr "Generieren von Schürze und Rand (skirt & brim)"
@@ -9142,15 +9194,19 @@ msgid "This factor affects the amount of material for bottom solid infill"
msgstr "" msgstr ""
"Dieser Faktor beeinflusst die Menge des Materials für die untere Füllung" "Dieser Faktor beeinflusst die Menge des Materials für die untere Füllung"
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "Exakte Wand (experimentell)" msgstr "Exakte Wand"
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
"Durch Anpassen des Abstands der Außenwand kann die Präzision der Schale " "Verbessern Sie die Schalenpräzision, indem Sie den Abstand der äußeren Wand "
"verbessert werden. Dadurch wird auch die Schichtkonsistenz verbessert." "anpassen. Dies verbessert auch die Schichtkonsistenz.\n"
"Hinweis: Diese Einstellung wird nur wirksam, wenn die Wandsequenz auf "
"Inner-Outer konfiguriert ist."
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
msgstr "Nur eine Wand auf den oberen Flächen" msgstr "Nur eine Wand auf den oberen Flächen"
@@ -9165,7 +9221,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "Schwellenwert für eine Wand" msgstr "Schwellenwert für eine Wand"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -9259,13 +9315,36 @@ msgstr ""
"Schichten unabhängig von ihrem Überhangsgrad in abwechselnden Richtungen " "Schichten unabhängig von ihrem Überhangsgrad in abwechselnden Richtungen "
"gedruckt werden." "gedruckt werden."
msgid "Bridge counterbole holes"
msgstr "Brücken für Senkungen"
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
"Diese Option erstellt Brücken für Senkungen, die es ermöglichen, sie ohne "
"Unterstützung zu drucken. Die verfügbaren Modi sind:\n"
"1. Keine: Es wird keine Brücke erstellt.\n"
"2. Teilweise überbrückt: Nur ein Teil des nicht unterstützten Bereichs wird "
"überbrückt.\n"
"3. Opferschicht: Es wird eine vollständige opfernde Brückenschicht erstellt."
msgid "Partially bridged"
msgstr "Teilweise überbrückt"
msgid "Sacrificial layer"
msgstr "Opferschicht"
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "Umkehrschwelle" msgstr "Umkehrschwelle"
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "Schwellenwert für die Überhangsumkehr" msgstr "Schwellenwert für die Überhangsumkehr"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -9406,13 +9485,13 @@ msgid "By object"
msgstr "Nach Objekt" msgstr "Nach Objekt"
msgid "Intra-layer order" msgid "Intra-layer order"
msgstr "" msgstr "Intra-Schicht-Reihenfolge"
msgid "Print order within a single layer" msgid "Print order within a single layer"
msgstr "" msgstr "Druckreihenfolge innerhalb einer einzelnen Schicht"
msgid "As object list" msgid "As object list"
msgstr "" msgstr "Als Objektliste"
msgid "Slow printing down for better layer cooling" msgid "Slow printing down for better layer cooling"
msgstr "Verlangsamen Sie den Druck für eine bessere Schichtkühlung" msgstr "Verlangsamen Sie den Druck für eine bessere Schichtkühlung"
@@ -9465,13 +9544,13 @@ msgid "Fan speed"
msgstr "Lüftergeschwindigkeit" msgstr "Lüftergeschwindigkeit"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
"Geschwindigkeit des Abluftventilators während des Drucks. Diese Geschwindig-" "Geschwindigkeit des Abluftventilators während des Drucks. Diese Geschwindig-"
"keit überschreibt die Geschwindigkeit im Filament-Benutzerdefinierten G-Code" "keit überschreibt die Geschwindigkeit im Filament-Benutzerdefinierten G-Code"
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "Geschwindigkeit des Abluftventilators nach Abschluss des Drucks" msgstr "Geschwindigkeit des Abluftventilators nach Abschluss des Drucks"
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -9520,7 +9599,7 @@ msgstr ""
"wird normalerweise empfohlen, diese Funktion zu aktivieren. Wenn Sie jedoch " "wird normalerweise empfohlen, diese Funktion zu aktivieren. Wenn Sie jedoch "
"große Düsen verwenden, sollten Sie diese Funktion deaktivieren." "große Düsen verwenden, sollten Sie diese Funktion deaktivieren."
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "Kleine interne Brücken nicht herausfiltern (experimentell)" msgstr "Kleine interne Brücken nicht herausfiltern (experimentell)"
msgid "" msgid ""
@@ -9629,7 +9708,7 @@ msgstr ""
"In der Nähe von schrägen Flächen massive Füllungen hinzufügen, um die " "In der Nähe von schrägen Flächen massive Füllungen hinzufügen, um die "
"vertikale Wanddicke zu gewährleisten (obere + untere massive Schichten)." "vertikale Wanddicke zu gewährleisten (obere + untere massive Schichten)."
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "Weitere Reduzierung des festen Infill an den Wänden (experimentell)" msgstr "Weitere Reduzierung des festen Infill an den Wänden (experimentell)"
msgid "" msgid ""
@@ -9818,6 +9897,32 @@ msgstr ""
"auch dazu führen, dass die Füllung durch die äußeren Oberflächen des Teils " "auch dazu führen, dass die Füllung durch die äußeren Oberflächen des Teils "
"schimmert." "schimmert."
msgid "Wall loop direction"
msgstr "Druck-Richtung der Wand"
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
"Die Richtung, in der die Wand-Schleifen extrudiert werden"
"Standardmäßig werden alle Wände gegen den Uhrzeigersinn extrudiert, es sei "
"denn, die Umkehrung bei ungeraden Schichten ist aktiviert. Wenn Sie dies auf "
"eine Option außer Auto setzen, wird die Wandrichtung unabhängig von der "
"Umkehrung bei ungeraden Schichten erzwungen.\n"
"Diese Option wird deaktiviert, wenn der Spiral-Vase-Modus aktiviert ist."
msgid "Counter clockwise"
msgstr "Gegen den Uhrzeigersinn"
msgid "Clockwise"
msgstr "Im Uhrzeigersinn"
msgid "Height to rod" msgid "Height to rod"
msgstr "Höhe zur Führung" msgstr "Höhe zur Führung"
@@ -9845,6 +9950,75 @@ msgstr ""
"Sicherheitsradius um den Extruder: Dient zur Kollisionsvermeidung beim " "Sicherheitsradius um den Extruder: Dient zur Kollisionsvermeidung beim "
"objektweisen Drucken." "objektweisen Drucken."
msgid "Bed mesh min"
msgstr "Bett Min Abtastbereich"
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
"Diese Option legt den minimalen Punkt für den erlaubten Bett-Mesh-Bereich "
"fest. Aufgrund des XY-Offsets der Sonde sind die meisten Drucker nicht in "
"der Lage, das gesamte Bett abzutasten. Um sicherzustellen, dass der "
"Abtastpunkt nicht außerhalb des Bettbereichs liegt, sollten die minimalen und "
"maximalen Punkte des Bett-Mesh entsprechend festgelegt werden. OrcaSlicer "
"stellt sicher, dass die Werte adaptive_bed_mesh_min/adaptive_bed_mesh_max "
"diese Min-/Max-Punkte nicht überschreiten. Diese Informationen können in der "
"Regel vom Druckerhersteller bezogen werden. Die Standardeinstellung ist "
"(-99999, -99999), was bedeutet, dass es keine Grenzen gibt und somit das "
"Abtasten über das gesamte Bett ermöglicht wird."
msgid "Bed mesh max"
msgstr "Bett Max Abtastbereich"
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
"Diese Option legt den maximalen Punkt für den erlaubten Bett-Mesh-Bereich "
"fest. Aufgrund des XY-Offsets der Sonde sind die meisten Drucker nicht in "
"der Lage, das gesamte Bett abzutasten. Um sicherzustellen, dass der "
"Abtastpunkt nicht außerhalb des Bettbereichs liegt, sollten die minimalen und "
"maximalen Punkte des Bett-Mesh entsprechend festgelegt werden. OrcaSlicer "
"stellt sicher, dass die Werte adaptive_bed_mesh_min/adaptive_bed_mesh_max "
"diese Min-/Max-Punkte nicht überschreiten. Diese Informationen können in der "
"Regel vom Druckerhersteller bezogen werden. Die Standardeinstellung ist "
"(99999, 99999), was bedeutet, dass es keine Grenzen gibt und somit das "
"Abtasten über das gesamte Bett ermöglicht wird."
msgid "Probe point distance"
msgstr "Abstand der Abtastpunkte"
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
"Diese Option legt den bevorzugten Abstand zwischen den Abtastpunkten (Raster-"
"Größe) für die X- und Y-Richtung fest, wobei der Standardwert für beide X "
"und Y 50 mm beträgt."
msgid "Mesh margin"
msgstr "Abtastbereich"
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
"Diese Option bestimmt den zusätzlichen Abstand, um den der adaptive Bett-"
"Mesh-Bereich in den XY-Richtungen erweitert werden soll."
msgid "Extruder Color" msgid "Extruder Color"
msgstr "Extruder Farbe" msgstr "Extruder Farbe"
@@ -9977,10 +10151,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "Schrumpfung" msgstr "Schrumpfung"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -10205,7 +10379,7 @@ msgstr "Winkel des Füllmusters, das die Richtung der Linien bestimmt."
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Fülldichte" msgstr "Fülldichte"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10926,14 +11100,14 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "Dieser G-Code wird als benutzerdefinierter Code verwendet" msgstr "Dieser G-Code wird als benutzerdefinierter Code verwendet"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr "Kleine Flächen-Flusskompensation (Beta)"
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
msgstr "" msgstr "Flusskompensation für kleine Füllbereiche aktivieren"
msgid "Flow Compensation Model" msgid "Flow Compensation Model"
msgstr "" msgstr "Flusskompensationsmodell"
msgid "" msgid ""
"Flow Compensation Model, used to adjust the flow for small infill areas. The " "Flow Compensation Model, used to adjust the flow for small infill areas. The "
@@ -10941,6 +11115,10 @@ msgid ""
"and flow correction factors, one per line, in the following format: " "and flow correction factors, one per line, in the following format: "
"\"1.234,5.678\"" "\"1.234,5.678\""
msgstr "" msgstr ""
"Flusskompensationsmodell, das verwendet wird, um den Fluss für kleine "
"Füllbereiche anzupassen. Das Modell wird als durch Komma getrenntes Paar von "
"Werten für die Extrusionslänge und die Flusskorrekturfaktoren, eine pro "
"Zeile, im folgenden Format ausgedrückt: \"1.234,5.678\""
msgid "Maximum speed X" msgid "Maximum speed X"
msgstr "Maximale Geschwindigkeit X" msgstr "Maximale Geschwindigkeit X"
@@ -11170,13 +11348,13 @@ msgid "Min print speed"
msgstr "Minimale Druckgeschwindigkeit" msgstr "Minimale Druckgeschwindigkeit"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
"Die minimale Druckgeschwindigkeit für das Filament, wenn die Verlangsamung " "Die minimale Druckgeschwindigkeit, die der Drucker einhält, um zu versuchen, "
"für eine bessere Schichtkühlung aktiviert ist, beim Drucken von Überhängen " "die minimale Schichtzeit einzuhalten, wenn die Verlangsamung für eine bessere "
"und wenn die Funktionen nicht explizit angegeben sind." "Schichtkühlung aktiviert ist."
msgid "Nozzle diameter" msgid "Nozzle diameter"
msgstr "Düsendurchmesser" msgstr "Düsendurchmesser"
@@ -11617,6 +11795,9 @@ msgstr "Nächste"
msgid "Aligned" msgid "Aligned"
msgstr "Ausgerichtet" msgstr "Ausgerichtet"
msgid "Back"
msgstr "Rückseite"
msgid "Random" msgid "Random"
msgstr "Zufall" msgstr "Zufall"
@@ -11647,6 +11828,53 @@ msgstr ""
"Der Standardwert für diesen Parameter beträgt 10%. Dies wird durchgeführt, " "Der Standardwert für diesen Parameter beträgt 10%. Dies wird durchgeführt, "
"um das endgültige Produkt glatter und nahtloser aussehen zu lassen." "um das endgültige Produkt glatter und nahtloser aussehen zu lassen."
msgid "Scarf joint seam (beta)"
msgstr "Schaltnaht (Beta)"
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr "Benutze Schaltnaht um die Sichtbarkeit der Naht zu minimieren und die Nahtstärke zu erhöhen."
msgid "Scarf start height"
msgstr "Start Höhe des Schalnaht"
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
"Start Höhe des Schaltnaht.\n"
"Diese Menge kann in Millimetern oder als Prozentsatz der aktuellen "
"Schichthöhe angegeben werden.\n"
"Der Standardwert für diesen Parameter beträgt 0."
msgid "Scarf around entire wall"
msgstr "Schaltnaht um die gesamte Wand"
msgid "The scarf extends to the entire length of the wall."
msgstr "Die Schaltnaht erstreckt sich über die gesamte Länge der Wand."
msgid "Scarf length"
msgstr "Länge der Schaltnaht"
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
"Länge der Schaltnaht. Das Einstellen dieses Parameters auf Null deaktiviert "
"effektiv die Schaltnaht."
msgid "Scarf steps"
msgstr "Schaltnaht Schritte"
msgid "Minimum number of segments of each scarf."
msgstr "Mindestanzahl von Segmenten jeder Schaltnaht."
msgid "Scarf joint for inner walls"
msgstr "Schaltnaht für innere Wände"
msgid "Use scarf joint for inner walls as well."
msgstr "Verwenden Sie Schaltnaht auch für innere Wände."
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "Rollenbasierte Wipe Geschwindigkeit" msgstr "Rollenbasierte Wipe Geschwindigkeit"
@@ -11867,8 +12095,8 @@ msgstr "Reinige das restliche Filament im Reinigungsturm"
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "Filamentrammen aktivieren" msgstr "Filamentrammen aktivieren"
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "Keine dünnen Schichten (EXPERIMENTELL)" msgstr "Keine dünnen Schichten (Beta)"
msgid "" msgid ""
"If enabled, the wipe tower will not be printed on layers with no " "If enabled, the wipe tower will not be printed on layers with no "
@@ -12629,7 +12857,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "ab Wert erkenne Polyhole" msgstr "ab Wert erkenne Polyhole"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -12908,240 +13136,272 @@ msgid "Load custom gcode from json"
msgstr "Lade benutzerdefinierten G-Code aus json" msgstr "Lade benutzerdefinierten G-Code aus json"
msgid "Current z-hop" msgid "Current z-hop"
msgstr "" msgstr "Aktuelles Z-Hop"
msgid "Contains z-hop present at the beginning of the custom G-code block." msgid "Contains z-hop present at the beginning of the custom G-code block."
msgstr "" msgstr "Enthält den Z-Hop am Anfang des benutzerdefinierten G-Codes."
msgid "" msgid ""
"Position of the extruder at the beginning of the custom G-code block. If the " "Position of the extruder at the beginning of the custom G-code block. If the "
"custom G-code travels somewhere else, it should write to this variable so " "custom G-code travels somewhere else, it should write to this variable so "
"PrusaSlicer knows where it travels from when it gets control back." "PrusaSlicer knows where it travels from when it gets control back."
msgstr "" msgstr ""
"Position des Extruders am Anfang des benutzerdefinierten G-Codes. Wenn der "
"benutzerdefinierte G-Code irgendwohin reist, sollte er in diese Variable "
"schreiben, damit PrusaSlicer weiß, wo er herkommt, wenn er die Kontrolle "
"wiedererlangt."
msgid "" msgid ""
"Retraction state at the beginning of the custom G-code block. If the custom " "Retraction state at the beginning of the custom G-code block. If the custom "
"G-code moves the extruder axis, it should write to this variable so " "G-code moves the extruder axis, it should write to this variable so "
"PrusaSlicer deretracts correctly when it gets control back." "PrusaSlicer deretracts correctly when it gets control back."
msgstr "" msgstr ""
"Rückzugszustand am Anfang des benutzerdefinierten G-Codes. Wenn der "
"benutzerdefinierte G-Code die Extruderachse bewegt, sollte er in diese "
"Variable schreiben, damit PrusaSlicer den Rückzug korrekt durchführt, wenn "
"er die Kontrolle wiedererlangt."
msgid "Extra deretraction" msgid "Extra deretraction"
msgstr "" msgstr "Zusätzlicher Rückzug"
msgid "Currently planned extra extruder priming after deretraction." msgid "Currently planned extra extruder priming after deretraction."
msgstr "" msgstr "Derzeit geplantes zusätzliches Extruder-Priming nach dem Rückzug."
msgid "Current extruder" msgid "Current extruder"
msgstr "" msgstr "Aktueller Extruder"
msgid "Zero-based index of currently used extruder." msgid "Zero-based index of currently used extruder."
msgstr "" msgstr "Nullbasierter Index des aktuell verwendeten Extruders."
msgid "Current object index" msgid "Current object index"
msgstr "" msgstr "Aktueller Objektindex"
msgid "" msgid ""
"Specific for sequential printing. Zero-based index of currently printed " "Specific for sequential printing. Zero-based index of currently printed "
"object." "object."
msgstr "" msgstr ""
"Spezifisch für das sequentielle Drucken. Nullbasierter Index des aktuell "
"gedruckten Objekts."
msgid "Has wipe tower" msgid "Has wipe tower"
msgstr "" msgstr "Hat Reinigungsturm"
msgid "Whether or not wipe tower is being generated in the print." msgid "Whether or not wipe tower is being generated in the print."
msgstr "" msgstr "Ob ein Reinigungsturm im Druck generiert wird oder nicht."
msgid "Initial extruder" msgid "Initial extruder"
msgstr "" msgstr "Erster Extruder"
msgid "" msgid ""
"Zero-based index of the first extruder used in the print. Same as " "Zero-based index of the first extruder used in the print. Same as "
"initial_tool." "initial_tool."
msgstr "" msgstr ""
"Nullbasierter Index des ersten Extruders, der im Druck verwendet wird. "
"Gleichbedeutend mit initial_tool."
msgid "Initial tool" msgid "Initial tool"
msgstr "" msgstr "Erstes Werkzeug"
msgid "" msgid ""
"Zero-based index of the first extruder used in the print. Same as " "Zero-based index of the first extruder used in the print. Same as "
"initial_extruder." "initial_extruder."
msgstr "" msgstr ""
"Nullbasierter Index des ersten Extruders, der im Druck verwendet wird. "
"Gleichbedeutend mit initial_extruder."
msgid "Is extruder used?" msgid "Is extruder used?"
msgstr "" msgstr "Wird der Extruder verwendet?"
msgid "Vector of bools stating whether a given extruder is used in the print." msgid "Vector of bools stating whether a given extruder is used in the print."
msgstr "" msgstr "Vektor von Booleschen Werten, die angeben, ob ein bestimmter Extruder im Druck verwendet wird."
msgid "Volume per extruder" msgid "Volume per extruder"
msgstr "" msgstr "Volumen pro Extruder"
msgid "Total filament volume extruded per extruder during the entire print." msgid "Total filament volume extruded per extruder during the entire print."
msgstr "" msgstr "Gesamtes Filamentvolumen, das pro Extruder während des gesamten Drucks extrudiert wurde."
msgid "Total toolchanges" msgid "Total toolchanges"
msgstr "" msgstr "Gesamte Anzahl der Werkzeugwechsel"
msgid "Number of toolchanges during the print." msgid "Number of toolchanges during the print."
msgstr "" msgstr "Anzahl der Werkzeugwechsel während des Drucks."
msgid "Total volume" msgid "Total volume"
msgstr "" msgstr "Gesamtvolumen"
msgid "Total volume of filament used during the entire print." msgid "Total volume of filament used during the entire print."
msgstr "" msgstr "Gesamtvolumen des während des gesamten Drucks verwendeten Filaments."
msgid "Weight per extruder" msgid "Weight per extruder"
msgstr "" msgstr "Gewicht pro Extruder"
msgid "" msgid ""
"Weight per extruder extruded during the entire print. Calculated from " "Weight per extruder extruded during the entire print. Calculated from "
"filament_density value in Filament Settings." "filament_density value in Filament Settings."
msgstr "" msgstr ""
"Gewicht pro Extruder, das während des gesamten Drucks extrudiert wurde. "
"Berechnet aus dem Filamentdichtewert in den Filament-Einstellungen."
msgid "Total weight" msgid "Total weight"
msgstr "" msgstr "Gesamtgewicht"
msgid "" msgid ""
"Total weight of the print. Calculated from filament_density value in " "Total weight of the print. Calculated from filament_density value in "
"Filament Settings." "Filament Settings."
msgstr "" msgstr ""
"Gesamtgewicht des Drucks. Berechnet aus dem Filamentdichtewert in den "
"Filament-Einstellungen."
msgid "Total layer count" msgid "Total layer count"
msgstr "" msgstr "Gesamtanzahl der Schichten"
msgid "Number of layers in the entire print." msgid "Number of layers in the entire print."
msgstr "" msgstr "Anzahl der Schichten im gesamten Druck."
msgid "Number of objects" msgid "Number of objects"
msgstr "" msgstr "Anzahl der Objekte"
msgid "Total number of objects in the print." msgid "Total number of objects in the print."
msgstr "" msgstr "Gesamtanzahl der Objekte im Druck."
msgid "Number of instances" msgid "Number of instances"
msgstr "" msgstr "Anzahl der Instanzen"
msgid "Total number of object instances in the print, summed over all objects." msgid "Total number of object instances in the print, summed over all objects."
msgstr "" msgstr "Gesamtanzahl der Objektinstanzen im Druck, summiert über alle Objekte."
msgid "Scale per object" msgid "Scale per object"
msgstr "" msgstr "Skalierung pro Objekt"
msgid "" msgid ""
"Contains a string with the information about what scaling was applied to the " "Contains a string with the information about what scaling was applied to the "
"individual objects. Indexing of the objects is zero-based (first object has " "individual objects. Indexing of the objects is zero-based (first object has "
"index 0).\n" "index 0).\n"
"Example: 'x:100% y:50% z:100'." "Example: 'x:100% y:50% z:100'."
msgstr "" msgstr "Enthält eine Zeichenfolge mit Informationen darüber, welche Skalierung auf die einzelnen Objekte angewendet wurde. Die Indizierung der Objekte ist nullbasiert (das erste Objekt hat den Index 0).\nBeispiel: 'x:100% y:50% z:100'."
msgid "Scale per instance"
msgstr "Skalierung pro Instanz"
msgid "Input filename without extension" msgid "Input filename without extension"
msgstr "" msgstr "Eingabedateiname ohne Erweiterung"
msgid "Source filename of the first object, without extension." msgid "Source filename of the first object, without extension."
msgstr "" msgstr "Quelldateiname des ersten Objekts, ohne Erweiterung."
msgid "" msgid ""
"The vector has two elements: x and y coordinate of the point. Values in mm." "The vector has two elements: x and y coordinate of the point. Values in mm."
msgstr "" msgstr ""
"Der Vektor hat zwei Elemente: x- und y-Koordinate des Punktes. Werte in mm."
msgid "" msgid ""
"The vector has two elements: x and y dimension of the bounding box. Values " "The vector has two elements: x and y dimension of the bounding box. Values "
"in mm." "in mm."
msgstr "" msgstr ""
"Der Vektor hat zwei Elemente: x- und y-Dimension der Begrenzungsbox. Werte "
"in mm."
msgid "First layer convex hull" msgid "First layer convex hull"
msgstr "" msgstr "Konvexe Hülle der ersten Schicht"
msgid "" msgid ""
"Vector of points of the first layer convex hull. Each element has the " "Vector of points of the first layer convex hull. Each element has the "
"following format:'[x, y]' (x and y are floating-point numbers in mm)." "following format:'[x, y]' (x and y are floating-point numbers in mm)."
msgstr "" msgstr ""
"Vektor von Punkten der konvexen Hülle der ersten Schicht. Jedes Element hat "
"das folgende Format: '[x, y]' (x und y sind Gleitkommazahlen in mm)."
msgid "Bottom-left corner of first layer bounding box" msgid "Bottom-left corner of first layer bounding box"
msgstr "" msgstr "Untere linke Ecke der Begrenzungsbox der ersten Schicht"
msgid "Top-right corner of first layer bounding box" msgid "Top-right corner of first layer bounding box"
msgstr "" msgstr "Obere rechte Ecke der Begrenzungsbox der ersten Schicht"
msgid "Size of the first layer bounding box" msgid "Size of the first layer bounding box"
msgstr "" msgstr "Größe der Begrenzungsbox der ersten Schicht"
msgid "Bottom-left corner of print bed bounding box" msgid "Bottom-left corner of print bed bounding box"
msgstr "" msgstr "Untere linke Ecke der Begrenzungsbox des Druckbetts"
msgid "Top-right corner of print bed bounding box" msgid "Top-right corner of print bed bounding box"
msgstr "" msgstr "Obere rechte Ecke der Begrenzungsbox des Druckbetts"
msgid "Size of the print bed bounding box" msgid "Size of the print bed bounding box"
msgstr "" msgstr "Größe der Begrenzungsbox des Druckbetts"
msgid "Timestamp" msgid "Timestamp"
msgstr "" msgstr "Zeitstempel"
msgid "String containing current time in yyyyMMdd-hhmmss format." msgid "String containing current time in yyyyMMdd-hhmmss format."
msgstr "" msgstr "Zeichenfolge, die die aktuelle Zeit im Format yyyyMMdd-hhmmss enthält."
msgid "Day" msgid "Day"
msgstr "" msgstr "Tag"
msgid "Hour" msgid "Hour"
msgstr "" msgstr "Stunde"
msgid "Minute" msgid "Minute"
msgstr "" msgstr "Minute"
msgid "Print preset name" msgid "Print preset name"
msgstr "" msgstr "Name des Druckvorgaben"
msgid "Name of the print preset used for slicing." msgid "Name of the print preset used for slicing."
msgstr "" msgstr "Name der Druckvorgabe, die zum Slicen verwendet wird."
msgid "Filament preset name" msgid "Filament preset name"
msgstr "" msgstr "Name des Filamentvorgaben"
msgid "" msgid ""
"Names of the filament presets used for slicing. The variable is a vector " "Names of the filament presets used for slicing. The variable is a vector "
"containing one name for each extruder." "containing one name for each extruder."
msgstr "" msgstr ""
"Name der Filamentvorgabe, die zum Slicen verwendet wird. Die Variable ist ein "
"Vektor, der einen Namen für jeden Extruder enthält."
msgid "Printer preset name" msgid "Printer preset name"
msgstr "" msgstr "Name des Druckervorgaben"
msgid "Name of the printer preset used for slicing." msgid "Name of the printer preset used for slicing."
msgstr "" msgstr "Name der Druckervorgabe, die zum Slicen verwendet wird."
msgid "Physical printer name" msgid "Physical printer name"
msgstr "" msgstr "Name des physischen Druckers"
msgid "Name of the physical printer used for slicing." msgid "Name of the physical printer used for slicing."
msgstr "" msgstr "Name des physischen Druckers, der zum Slicen verwendet wird."
msgid "Layer number" msgid "Layer number"
msgstr "" msgstr "Schichtnummer"
msgid "Index of the current layer. One-based (i.e. first layer is number 1)." msgid "Index of the current layer. One-based (i.e. first layer is number 1)."
msgstr "" msgstr "Index der aktuellen Schicht. Einsbasiert (d.h. die erste Schicht ist Nummer 1)."
msgid "Layer z" msgid "Layer z"
msgstr "" msgstr "Layer z"
msgid "" msgid ""
"Height of the current layer above the print bed, measured to the top of the " "Height of the current layer above the print bed, measured to the top of the "
"layer." "layer."
msgstr "" msgstr ""
"Höhe der aktuellen Schicht über dem Druckbett, gemessen an der Oberseite der Schicht."
msgid "Maximal layer z" msgid "Maximal layer z"
msgstr "" msgstr "Maximale Schichtdicke z"
msgid "Height of the last layer above the print bed." msgid "Height of the last layer above the print bed."
msgstr "" msgstr "Höhe der letzten Schicht über dem Druckbett."
msgid "Filament extruder ID" msgid "Filament extruder ID"
msgstr "" msgstr "Extruder-ID des Filaments"
msgid "The current extruder ID. The same as current_extruder." msgid "The current extruder ID. The same as current_extruder."
msgstr "" msgstr "Die aktuelle Extruder-ID. Gleichbedeutend mit current_extruder."
msgid "Error in zip archive" msgid "Error in zip archive"
msgstr "Fehler im Zip-Archiv" msgstr "Fehler im Zip-Archiv"
@@ -14632,7 +14892,7 @@ msgstr ""
"Die Filamentauswahl findet keine Filamentvoreinstellung, bitte neu auswählen" "Die Filamentauswahl findet keine Filamentvoreinstellung, bitte neu auswählen"
msgid "[Delete Required]" msgid "[Delete Required]"
msgstr "" msgstr "[Löschen erforderlich]"
msgid "Edit Preset" msgid "Edit Preset"
msgstr "Voreinstellung bearbeiten" msgstr "Voreinstellung bearbeiten"
@@ -14891,8 +15151,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
"Luftfiltration/Abluftventilator\n" "Luftfiltration/Abluftventilator\n"
"Wussten Sie, dass OrcaSlicer eine Luftfiltration/Abluftventilator " "Wussten Sie, dass OrcaSlicer eine Luftfiltration/Abluftventilator "
@@ -15234,6 +15494,40 @@ msgstr ""
"wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die " "wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die "
"Wahrscheinlichkeit von Verwerfungen verringert werden kann." "Wahrscheinlichkeit von Verwerfungen verringert werden kann."
#~ msgid " "
#~ msgstr " "
#~ msgid "Text-Rotate"
#~ msgstr "Text-Drehen"
#~ msgid "SVG-Rotate"
#~ msgstr "SVG-Drehen"
#~ msgid "Resize"
#~ msgstr "Größe zurücksetzen"
#~ msgid "Configuration package updated to "
#~ msgstr "Konfigurationspaket aktualisiert auf "
#~ msgid ""
#~ "Improve shell precision by adjusting outer wall spacing. This also "
#~ "improves layer consistency."
#~ msgstr ""
#~ "Durch Anpassen des Abstands der Außenwand kann die Präzision der Schale "
#~ "verbessert werden. Dadurch wird auch die Schichtkonsistenz verbessert."
#~ msgid ""
#~ "The minimum printing speed for the filament when slow down for better "
#~ "layer cooling is enabled, when printing overhangs and when feature speeds "
#~ "are not specified explicitly."
#~ msgstr ""
#~ "Die minimale Druckgeschwindigkeit für das Filament, wenn die "
#~ "Verlangsamung für eine bessere Schichtkühlung aktiviert ist, beim Drucken "
#~ "von Überhängen und wenn die Funktionen nicht explizit angegeben sind."
#~ msgid "No sparse layers (EXPERIMENTAL)"
#~ msgstr "Keine dünnen Schichten (EXPERIMENTELL)"
#~ msgid "" #~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" #~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n" #~ "\". \n"

View File

@@ -2,7 +2,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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -660,6 +660,14 @@ msgstr "Rotate text"
msgid "Text shape" msgid "Text shape"
msgstr "Text shape" msgstr "Text shape"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "" msgstr ""
@@ -678,9 +686,6 @@ msgstr ""
msgid "Emboss" msgid "Emboss"
msgstr "" msgstr ""
msgid "Text-Rotate"
msgstr ""
msgid "NORMAL" msgid "NORMAL"
msgstr "" msgstr ""
@@ -1050,6 +1055,14 @@ msgstr ""
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "" msgstr ""
@@ -1062,10 +1075,6 @@ msgstr ""
msgid "SVG" msgid "SVG"
msgstr "" msgstr ""
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr ""
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "" msgstr ""
@@ -1179,9 +1188,6 @@ msgstr ""
msgid "Reset scale" msgid "Reset scale"
msgstr "" msgstr ""
msgid "Resize"
msgstr ""
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "" msgstr ""
@@ -1668,6 +1674,17 @@ msgstr ""
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "" msgstr ""
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "" msgstr ""
@@ -2148,9 +2165,6 @@ msgstr "Copying multiple cells is not supported."
msgid "Outside" msgid "Outside"
msgstr "Outside" msgstr "Outside"
msgid " "
msgstr ""
msgid "Layer height" msgid "Layer height"
msgstr "Layer height" msgstr "Layer height"
@@ -4305,6 +4319,12 @@ msgstr ""
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "" msgstr ""
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "" msgstr ""
@@ -6759,6 +6779,15 @@ msgstr ""
"0 top z distance, 0 interface spacing, concentric pattern and disable " "0 top z distance, 0 interface spacing, concentric pattern and disable "
"independent support layer height" "independent support layer height"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6804,9 +6833,6 @@ msgstr "Wall generator"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "" msgstr ""
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "" msgstr ""
@@ -7047,6 +7073,9 @@ msgstr ""
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "Extruder Clearance" msgstr "Extruder Clearance"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "Accessory" msgstr "Accessory"
@@ -7320,9 +7349,6 @@ msgstr "Cover"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "The name \"%1%\" already exists." msgstr "The name \"%1%\" already exists."
msgid "Back"
msgstr "Back"
msgid "Basic Info" msgid "Basic Info"
msgstr "Basic Info" msgstr "Basic Info"
@@ -7921,8 +7947,11 @@ msgstr "Copying of file %1% to %2% failed: %3%"
msgid "Need to check the unsaved changes before configuration updates." msgid "Need to check the unsaved changes before configuration updates."
msgstr "Please check any unsaved changes before updating the configuration." msgstr "Please check any unsaved changes before updating the configuration."
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "Configuration package updated to " msgstr ""
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "Open G-code file:" msgstr "Open G-code file:"
@@ -8299,6 +8328,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "Plate %d: %s does not support filament %s" msgstr "Plate %d: %s does not support filament %s"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "Generating skirt & brim" msgstr "Generating skirt & brim"
@@ -8704,12 +8737,14 @@ msgstr ""
msgid "This factor affects the amount of material for bottom solid infill" msgid "This factor affects the amount of material for bottom solid infill"
msgstr "" msgstr ""
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "" msgstr ""
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
@@ -8725,7 +8760,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -8786,13 +8821,30 @@ msgid ""
"directions on odd layers irrespective of their overhang degree." "directions on odd layers irrespective of their overhang degree."
msgstr "" msgstr ""
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "" msgstr ""
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -8975,11 +9027,11 @@ msgid "Fan speed"
msgstr "Fan speed" msgstr "Fan speed"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "" msgstr ""
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -9024,7 +9076,7 @@ msgid ""
"using large nozzles." "using large nozzles."
msgstr "" msgstr ""
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9104,7 +9156,7 @@ msgstr ""
"Add solid infill near sloping surfaces to guarantee the vertical shell " "Add solid infill near sloping surfaces to guarantee the vertical shell "
"thickness (top+bottom solid layers)." "thickness (top+bottom solid layers)."
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9242,6 +9294,26 @@ msgid ""
"external surfaces of the part." "external surfaces of the part."
msgstr "" msgstr ""
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "Height to rod" msgstr "Height to rod"
@@ -9269,6 +9341,50 @@ msgstr ""
"Clearance radius around extruder: used for collision avoidance in by-object " "Clearance radius around extruder: used for collision avoidance in by-object "
"printing." "printing."
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "Extruder Color" msgstr "Extruder Color"
@@ -9393,10 +9509,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9579,7 +9695,7 @@ msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Sparse infill density" msgstr "Sparse infill density"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10196,7 +10312,7 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "This G-code will be used as a custom code" msgstr "This G-code will be used as a custom code"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -10405,9 +10521,9 @@ msgid "Min print speed"
msgstr "Min print speed" msgstr "Min print speed"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
msgid "Nozzle diameter" msgid "Nozzle diameter"
@@ -10789,6 +10905,9 @@ msgstr "Nearest"
msgid "Aligned" msgid "Aligned"
msgstr "Aligned" msgstr "Aligned"
msgid "Back"
msgstr "Back"
msgid "Random" msgid "Random"
msgstr "Random" msgstr "Random"
@@ -10810,6 +10929,47 @@ msgid ""
"current extruder diameter. The default value for this parameter is 10%." "current extruder diameter. The default value for this parameter is 10%."
msgstr "" msgstr ""
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "" msgstr ""
@@ -10993,7 +11153,7 @@ msgstr ""
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "" msgstr ""
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -11659,7 +11819,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -13637,8 +13797,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
#: resources/data/hints.ini: [hint:G-code window] #: resources/data/hints.ini: [hint:G-code window]
@@ -13932,6 +14092,9 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Configuration package updated to "
#~ msgstr "Configuration package updated to "
#~ msgid "The Config can not be loaded." #~ msgid "The Config can not be loaded."
#~ msgstr "The Config cannot be loaded." #~ msgstr "The Config cannot be loaded."

View File

@@ -2,7 +2,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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: Carlos Fco. Caruncho Serrano <puzzlero@gmail.com>\n" "Last-Translator: Carlos Fco. Caruncho Serrano <puzzlero@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -455,6 +455,9 @@ msgstr "Posición de corte"
msgid "Reset cutting plane" msgid "Reset cutting plane"
msgstr "Editar conectores" msgstr "Editar conectores"
msgid "Edit connectors"
msgstr ""
msgid "Add connectors" msgid "Add connectors"
msgstr "Añadir conectores" msgstr "Añadir conectores"
@@ -670,6 +673,14 @@ msgstr "Rotar texto"
msgid "Text shape" msgid "Text shape"
msgstr "Forma de texto" msgstr "Forma de texto"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "Configurar Espejo" msgstr "Configurar Espejo"
@@ -688,20 +699,15 @@ msgstr "Acciones de relieve"
msgid "Emboss" msgid "Emboss"
msgstr "Relieve" msgstr "Relieve"
msgid "Text-Rotate"
msgstr "Rotación de texto"
msgid "NORMAL" msgid "NORMAL"
msgstr "NORMAL" msgstr "NORMAL"
msgid "SMALL" msgid "SMALL"
msgstr "PEQUEÑA" msgstr "PEQUEÑA"
msgid "ITALIC" msgid "ITALIC"
msgstr "CURSIVA" msgstr "CURSIVA"
msgid "SWISS" msgid "SWISS"
msgstr "SUIZA" msgstr "SUIZA"
@@ -1081,6 +1087,14 @@ msgstr "Mantener"
msgid "Collection" msgid "Collection"
msgstr "Colección" msgstr "Colección"
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "Introducir el objeto SVG" msgstr "Introducir el objeto SVG"
@@ -1093,10 +1107,6 @@ msgstr "Acciones SVG"
msgid "SVG" msgid "SVG"
msgstr "SVG" msgstr "SVG"
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr "Rotar-SVG"
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "Opacidad (%1%)" msgstr "Opacidad (%1%)"
@@ -1210,16 +1220,12 @@ msgstr "Anchura del SVG."
msgid "Height of SVG." msgid "Height of SVG."
msgstr "Altura del SVG." msgstr "Altura del SVG."
msgid "Lock/unlock the aspect ratio of the SVG." msgid "Lock/unlock the aspect ratio of the SVG."
msgstr "Bloquear/desbloquear la relación de aspecto del SVG." msgstr "Bloquear/desbloquear la relación de aspecto del SVG."
msgid "Reset scale" msgid "Reset scale"
msgstr "Restablecer escala" msgstr "Restablecer escala"
msgid "Resize"
msgstr "Reescalar"
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "Distancia del centro del SVG a la superficie del modelo." msgstr "Distancia del centro del SVG a la superficie del modelo."
@@ -1232,9 +1238,8 @@ msgstr "Reiniciar rotación"
msgid "Lock/unlock rotation angle when dragging above the surface." msgid "Lock/unlock rotation angle when dragging above the surface."
msgstr "" msgstr ""
"Bloquear/desbloquear el ángulo de rotación al arrastrar por encima de la " "Bloquear/desbloquear el ángulo de rotación al arrastrar por encima de la "
"superficie." "superficie.Bloquear/desbloquear el ángulo de rotación al arrastrar por "
"Bloquear/desbloquear el ángulo de rotación al arrastrar por encima de la " "encima de la superficie."
"superficie."
msgid "Mirror vertically" msgid "Mirror vertically"
msgstr "Espejo vertical" msgstr "Espejo vertical"
@@ -1739,6 +1744,17 @@ msgstr "Cubo de Vorón"
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "Conejito Stanford" msgstr "Conejito Stanford"
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "Texto" msgstr "Texto"
@@ -2230,9 +2246,6 @@ msgstr "no se admite la copia de múltiples celdas"
msgid "Outside" msgid "Outside"
msgstr "En el exterior" msgstr "En el exterior"
msgid " "
msgstr " "
msgid "Layer height" msgid "Layer height"
msgstr "Altura de la capa" msgstr "Altura de la capa"
@@ -4455,6 +4468,12 @@ msgstr "Mostrar Ventana &G-Code"
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "Mostrar ventana de G-Code en escena previa" msgstr "Mostrar ventana de G-Code en escena previa"
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "Reiniciar Capa de Ventana" msgstr "Reiniciar Capa de Ventana"
@@ -4854,9 +4873,8 @@ msgstr "Conexión perdida. Por favor, reinténtelo."
msgid "The device cannot handle more conversations. Please retry later." msgid "The device cannot handle more conversations. Please retry later."
msgstr "" msgstr ""
"El dispositivo no puede gestionar más conversaciones. Intentalo más tarde." "El dispositivo no puede gestionar más conversaciones. Intentalo más tarde.El "
"El aparato no puede manejar más conversaciones. Vuelva a intentarlo más " "aparato no puede manejar más conversaciones. Vuelva a intentarlo más tarde."
"tarde."
msgid "File not exists." msgid "File not exists."
msgstr "El archivo no existe." msgstr "El archivo no existe."
@@ -7024,6 +7042,15 @@ msgstr ""
"distancia z0, espaciado de interfaz 0, patrón concéntrico y desactivar " "distancia z0, espaciado de interfaz 0, patrón concéntrico y desactivar "
"altura de soporte independiente de altura de capa" "altura de soporte independiente de altura de capa"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -7076,9 +7103,6 @@ msgstr "Generador de perímetros"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "Paredes y superficies" msgstr "Paredes y superficies"
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "Puentes" msgstr "Puentes"
@@ -7331,6 +7355,9 @@ msgstr "Tiempo de aumento de velocidad del ventilador"
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "Margen del extrusor" msgstr "Margen del extrusor"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "Accesorio" msgstr "Accesorio"
@@ -7616,9 +7643,6 @@ msgstr "Cubierta"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "El nombre \"%1%\" ya existe." msgstr "El nombre \"%1%\" ya existe."
msgid "Back"
msgstr "Trasera"
msgid "Basic Info" msgid "Basic Info"
msgstr "Información Básica" msgstr "Información Básica"
@@ -7733,10 +7757,9 @@ msgid ""
msgstr "" msgstr ""
"Orca volverá a calcular sus volúmenes de descarga cada vez que se cambie el " "Orca volverá a calcular sus volúmenes de descarga cada vez que se cambie el "
"color de los filamentos. Puedes desactivar el cálculo automático en Orca " "color de los filamentos. Puedes desactivar el cálculo automático en Orca "
"Slicer > Preferencias" "Slicer > PreferenciasOrca recalculaba los volúmenes de lavado cada vez que "
"Orca recalculaba los volúmenes de lavado cada vez que cambiaba el color de " "cambiaba el color de los filamentos. Puedes desactivar el auto-cálculo en "
"los filamentos. Puedes desactivar el auto-cálculo en Orca Slicer > " "Orca Slicer > Preferencias"
"Preferencias"
msgid "Flushing volume (mm³) for each filament pair." msgid "Flushing volume (mm³) for each filament pair."
msgstr "Volumen de limpieza (mm³) para cada par de filamentos." msgstr "Volumen de limpieza (mm³) para cada par de filamentos."
@@ -8240,8 +8263,11 @@ msgstr ""
"Es necesario comprobar los cambios no guardados antes de actualizar la " "Es necesario comprobar los cambios no guardados antes de actualizar la "
"configuración." "configuración."
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "Paquete de configuración actualizado a " msgstr ""
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "Abrir archivo G-Code:" msgstr "Abrir archivo G-Code:"
@@ -8658,6 +8684,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "Bandeja %d: %s no soporta filamento %s" msgstr "Bandeja %d: %s no soporta filamento %s"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "Generando falda y borde de adherencia" msgstr "Generando falda y borde de adherencia"
@@ -9087,15 +9117,15 @@ msgid "This factor affects the amount of material for bottom solid infill"
msgstr "" msgstr ""
"Este factor afecta a la cantidad de material para el relleno sólido inferior" "Este factor afecta a la cantidad de material para el relleno sólido inferior"
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "Pared precisa(experimental)" msgstr "Pared precisa"
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
"Mejorar precisión de la carcasa ajustando el espaciado del perímetro "
"exterior. Esto además mejora la consistencia de capa."
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
msgstr "Sólo un perímetro en las capas superiores" msgstr "Sólo un perímetro en las capas superiores"
@@ -9110,7 +9140,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "Umbral para generar un solo perímetro" msgstr "Umbral para generar un solo perímetro"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -9203,13 +9233,30 @@ msgstr ""
"inverso en 0 para que todas las paredes internas se impriman en direcciones " "inverso en 0 para que todas las paredes internas se impriman en direcciones "
"alternas en las capas impares, independientemente de su grado de voladizo." "alternas en las capas impares, independientemente de su grado de voladizo."
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "Umbral inverso" msgstr "Umbral inverso"
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "Umbral de inversión de voladizo" msgstr "Umbral de inversión de voladizo"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -9411,13 +9458,13 @@ msgid "Fan speed"
msgstr "Velocidad del ventilador" msgstr "Velocidad del ventilador"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
"Velocidad del ventilador de extracción durante la impresión, esta velocidad " "Velocidad del ventilador de extracción durante la impresión, esta velocidad "
"sobrescribirá la velocidad en el GCode personalizado del filamento" "sobrescribirá la velocidad en el GCode personalizado del filamento"
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "Velocidad del ventilador de extracción una vez finalizada la impresión" msgstr "Velocidad del ventilador de extracción una vez finalizada la impresión"
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -9465,8 +9512,8 @@ msgstr ""
"recomienda tener esta función activada. Sin embargo, considera desactivarla " "recomienda tener esta función activada. Sin embargo, considera desactivarla "
"si utilizas boquillas grandes." "si utilizas boquillas grandes."
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "No filtrar los pequeños puentes internos (experimental)" msgstr "No filtrar los pequeños puentes internos (beta)"
msgid "" msgid ""
"This option can help reducing pillowing on top surfaces in heavily slanted " "This option can help reducing pillowing on top surfaces in heavily slanted "
@@ -9574,7 +9621,7 @@ msgstr ""
"Añadir relleno sólido al lado de capas inclinadas para garantizar el grosor " "Añadir relleno sólido al lado de capas inclinadas para garantizar el grosor "
"de carcasa vertical (capas sólidas superior+inferior)" "de carcasa vertical (capas sólidas superior+inferior)"
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9757,6 +9804,26 @@ msgstr ""
"lo que resulta en un peor acabado de la superficie exterior. También puede " "lo que resulta en un peor acabado de la superficie exterior. También puede "
"hacer que el relleno brille a través de las superficies externas de la pieza." "hacer que el relleno brille a través de las superficies externas de la pieza."
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "Altura a la barra" msgstr "Altura a la barra"
@@ -9784,6 +9851,50 @@ msgstr ""
"El radio de claridad alrededor del extrusor. Se utiliza para evitar la " "El radio de claridad alrededor del extrusor. Se utiliza para evitar la "
"colisión con la impresión por objeto." "colisión con la impresión por objeto."
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "Color del extrusor" msgstr "Color del extrusor"
@@ -9914,10 +10025,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "Contracción" msgstr "Contracción"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -10146,7 +10257,7 @@ msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Densidad de relleno" msgstr "Densidad de relleno"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10860,7 +10971,7 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "Este G-Code se usará para el código personalizado" msgstr "Este G-Code se usará para el código personalizado"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -11115,14 +11226,10 @@ msgid "Min print speed"
msgstr "Velocidad de impresión mínima" msgstr "Velocidad de impresión mínima"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
"La velocidad mínima de impresión para el filamento cuando la ralentización "
"para un mejor enfriamiento de la capa está activada, cuando se imprimen "
"voladizos y cuando las velocidades de las características no se especifican "
"explícitamente."
msgid "Nozzle diameter" msgid "Nozzle diameter"
msgstr "Diámetro de la boquilla" msgstr "Diámetro de la boquilla"
@@ -11567,6 +11674,9 @@ msgstr "Más cercano"
msgid "Aligned" msgid "Aligned"
msgstr "Alineado" msgstr "Alineado"
msgid "Back"
msgstr "Trasera"
msgid "Random" msgid "Random"
msgstr "Aleatorio" msgstr "Aleatorio"
@@ -11594,6 +11704,47 @@ msgstr ""
"Esta cantidad puede especificarse en milímetros o como porcentaje del " "Esta cantidad puede especificarse en milímetros o como porcentaje del "
"diámetro actual del extrusor. El valor por defecto de este parámetro es 10%." "diámetro actual del extrusor. El valor por defecto de este parámetro es 10%."
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "Velocidad de limpieza según tipo de línea" msgstr "Velocidad de limpieza según tipo de línea"
@@ -11642,10 +11793,9 @@ msgstr ""
"Esto es útil cuando se imprime con el orden de impresión de pared Exterior/" "Esto es útil cuando se imprime con el orden de impresión de pared Exterior/"
"Interior o Interior/Exterior/Interior, ya que en estos modos es más probable " "Interior o Interior/Exterior/Interior, ya que en estos modos es más probable "
"que se imprima un perímetro externo inmediatamente después de un movimiento " "que se imprima un perímetro externo inmediatamente después de un movimiento "
"de destracción." "de destracción.Para minimizar la visibilidad de una posible sobreextrusión "
"Para minimizar la visibilidad de una posible sobreextrusión al inicio de un " "al inicio de un perímetro exterior cuando se imprime con orden de impresión "
"perímetro exterior cuando se imprime con orden de impresión Exterior/" "Exterior/Interior o Interior/Exterior/Interior, la desetracción se realiza "
"Interior o Interior/Exterior/Interior, la desetracción se realiza "
"ligeramente en el interior desde el inicio del perímetro exterior. De esta " "ligeramente en el interior desde el inicio del perímetro exterior. De esta "
"forma, cualquier posible sobreextrusión queda oculta desde la superficie " "forma, cualquier posible sobreextrusión queda oculta desde la superficie "
"exterior.\n" "exterior.\n"
@@ -11823,8 +11973,8 @@ msgstr "Purgar el filamento restante en una torre"
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "Activar el moldeado de extremo del filamento" msgstr "Activar el moldeado de extremo del filamento"
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "Capas de baja densidad (EXPERIMENTAL)" msgstr ""
msgid "" msgid ""
"If enabled, the wipe tower will not be printed on layers with no " "If enabled, the wipe tower will not be printed on layers with no "
@@ -12578,7 +12728,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "Margen de detección del poliorificio" msgstr "Margen de detección del poliorificio"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -14838,11 +14988,11 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
"Filtración de aire/ventilador Exhuast \n" "Filtración de aire/ventilador Exhaust \n"
"¿Sabías que OrcaSlicer admite filtración de aire/ventilador Exhuast?" "¿Sabías que OrcaSlicer admite filtración de aire/ventilador Exhaust?"
#: resources/data/hints.ini: [hint:G-code window] #: resources/data/hints.ini: [hint:G-code window]
msgid "" msgid ""
@@ -15168,6 +15318,41 @@ msgstr ""
"aumentar adecuadamente la temperatura del lecho térmico puede reducir la " "aumentar adecuadamente la temperatura del lecho térmico puede reducir la "
"probabilidad de deformaciones." "probabilidad de deformaciones."
#~ msgid " "
#~ msgstr " "
#~ msgid "Text-Rotate"
#~ msgstr "Rotación de texto"
#~ msgid "SVG-Rotate"
#~ msgstr "Rotar-SVG"
#~ msgid "Resize"
#~ msgstr "Reescalar"
#~ msgid "Configuration package updated to "
#~ msgstr "Paquete de configuración actualizado a "
#~ msgid ""
#~ "Improve shell precision by adjusting outer wall spacing. This also "
#~ "improves layer consistency."
#~ msgstr ""
#~ "Mejorar precisión de la carcasa ajustando el espaciado del perímetro "
#~ "exterior. Esto además mejora la consistencia de capa."
#~ msgid ""
#~ "The minimum printing speed for the filament when slow down for better "
#~ "layer cooling is enabled, when printing overhangs and when feature speeds "
#~ "are not specified explicitly."
#~ msgstr ""
#~ "La velocidad mínima de impresión para el filamento cuando la "
#~ "ralentización para un mejor enfriamiento de la capa está activada, cuando "
#~ "se imprimen voladizos y cuando las velocidades de las características no "
#~ "se especifican explícitamente."
#~ msgid "No sparse layers (EXPERIMENTAL)"
#~ msgstr "Capas de baja densidad (EXPERIMENTAL)"
#~ msgid "" #~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" #~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n" #~ "\". \n"

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\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"
@@ -659,6 +659,14 @@ msgstr "Rotate text"
msgid "Text shape" msgid "Text shape"
msgstr "Szöveg alakja" msgstr "Szöveg alakja"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "" msgstr ""
@@ -677,9 +685,6 @@ msgstr ""
msgid "Emboss" msgid "Emboss"
msgstr "" msgstr ""
msgid "Text-Rotate"
msgstr ""
msgid "NORMAL" msgid "NORMAL"
msgstr "" msgstr ""
@@ -1049,6 +1054,14 @@ msgstr ""
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "" msgstr ""
@@ -1061,10 +1074,6 @@ msgstr ""
msgid "SVG" msgid "SVG"
msgstr "" msgstr ""
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr ""
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "" msgstr ""
@@ -1178,9 +1187,6 @@ msgstr ""
msgid "Reset scale" msgid "Reset scale"
msgstr "" msgstr ""
msgid "Resize"
msgstr ""
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "" msgstr ""
@@ -1670,6 +1676,17 @@ msgstr ""
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "" msgstr ""
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "" msgstr ""
@@ -2161,9 +2178,6 @@ msgstr "a több cellás másolás nem támogatott"
msgid "Outside" msgid "Outside"
msgstr "Kívül" msgstr "Kívül"
msgid " "
msgstr ""
msgid "Layer height" msgid "Layer height"
msgstr "Rétegmagasság" msgstr "Rétegmagasság"
@@ -4329,6 +4343,12 @@ msgstr ""
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "" msgstr ""
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "" msgstr ""
@@ -6801,6 +6821,15 @@ msgstr ""
"0 top z distance, 0 interface spacing, concentric pattern and disable " "0 top z distance, 0 interface spacing, concentric pattern and disable "
"independent support layer height" "independent support layer height"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6846,9 +6875,6 @@ msgstr "Falgenerátor"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "" msgstr ""
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "" msgstr ""
@@ -7093,6 +7119,9 @@ msgstr ""
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "Extruder távolság" msgstr "Extruder távolság"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "Tartozékok" msgstr "Tartozékok"
@@ -7369,9 +7398,6 @@ msgstr "Lefedés"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "A(z) \"%1%\" név már létezik." msgstr "A(z) \"%1%\" név már létezik."
msgid "Back"
msgstr "Hátul"
msgid "Basic Info" msgid "Basic Info"
msgstr "Alapinformáció" msgstr "Alapinformáció"
@@ -7976,8 +8002,11 @@ msgstr ""
"Kérjük, ellenőrizd a nem mentett módosításokat a konfiguráció frissítése " "Kérjük, ellenőrizd a nem mentett módosításokat a konfiguráció frissítése "
"előtt." "előtt."
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "Konfigurációs csomag frissítve a következőre " msgstr ""
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "G-kód fájl megnyitása:" msgstr "G-kód fájl megnyitása:"
@@ -8367,6 +8396,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "%d. tálca: %s nem használható %s filamenttel." msgstr "%d. tálca: %s nem használható %s filamenttel."
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "Szoknya & perem generálása" msgstr "Szoknya & perem generálása"
@@ -8775,12 +8808,14 @@ msgstr ""
msgid "This factor affects the amount of material for bottom solid infill" msgid "This factor affects the amount of material for bottom solid infill"
msgstr "" msgstr ""
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "" msgstr ""
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
@@ -8796,7 +8831,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -8857,13 +8892,30 @@ msgid ""
"directions on odd layers irrespective of their overhang degree." "directions on odd layers irrespective of their overhang degree."
msgstr "" msgstr ""
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "" msgstr ""
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -9045,11 +9097,11 @@ msgid "Fan speed"
msgstr "Ventilátor fordulatszám" msgstr "Ventilátor fordulatszám"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "" msgstr ""
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -9094,7 +9146,7 @@ msgid ""
"using large nozzles." "using large nozzles."
msgstr "" msgstr ""
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9175,7 +9227,7 @@ msgstr ""
"A függőleges héjvastagság biztosítása érdekében szilárd kitöltést alkalmaz a " "A függőleges héjvastagság biztosítása érdekében szilárd kitöltést alkalmaz a "
"lejtős felületek közelében." "lejtős felületek közelében."
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9311,6 +9363,26 @@ msgid ""
"external surfaces of the part." "external surfaces of the part."
msgstr "" msgstr ""
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "Magasság a rúdig" msgstr "Magasság a rúdig"
@@ -9338,6 +9410,50 @@ msgstr ""
"Az extruder körüli szabadon hagyott terület sugara. Objektumonként történő " "Az extruder körüli szabadon hagyott terület sugara. Objektumonként történő "
"nyomtatás során az ütközések elkerülésére szolgál." "nyomtatás során az ütközések elkerülésére szolgál."
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "Extruder szín" msgstr "Extruder szín"
@@ -9464,10 +9580,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9652,7 +9768,7 @@ 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"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10270,7 +10386,7 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "Ezt a G-kód egyedi kódként lesz használva." msgstr "Ezt a G-kód egyedi kódként lesz használva."
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -10481,9 +10597,9 @@ msgid "Min print speed"
msgstr "Min. nyomtatási sebesség" msgstr "Min. nyomtatási sebesség"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
msgid "Nozzle diameter" msgid "Nozzle diameter"
@@ -10868,6 +10984,9 @@ msgstr "Legközelebbi"
msgid "Aligned" msgid "Aligned"
msgstr "Igazított" msgstr "Igazított"
msgid "Back"
msgstr "Hátul"
msgid "Random" msgid "Random"
msgstr "Véletlenszerû" msgstr "Véletlenszerû"
@@ -10889,6 +11008,47 @@ msgid ""
"current extruder diameter. The default value for this parameter is 10%." "current extruder diameter. The default value for this parameter is 10%."
msgstr "" msgstr ""
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "" msgstr ""
@@ -11077,7 +11237,7 @@ msgstr ""
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "" msgstr ""
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -11751,7 +11911,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -13729,8 +13889,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
#: resources/data/hints.ini: [hint:G-code window] #: resources/data/hints.ini: [hint:G-code window]
@@ -14024,6 +14184,9 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Configuration package updated to "
#~ msgstr "Konfigurációs csomag frissítve a következőre "
#~ msgid "The Config can not be loaded." #~ msgid "The Config can not be loaded."
#~ msgstr "A konfiguráció nem tölthető be." #~ msgstr "A konfiguráció nem tölthető be."

View File

@@ -2,7 +2,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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -670,6 +670,14 @@ msgstr "Ruota testo"
msgid "Text shape" msgid "Text shape"
msgstr "Formato testo" msgstr "Formato testo"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "Imposta specchio" msgstr "Imposta specchio"
@@ -688,9 +696,6 @@ msgstr "Azioni di rilievo"
msgid "Emboss" msgid "Emboss"
msgstr "Rilievo" msgstr "Rilievo"
msgid "Text-Rotate"
msgstr "Ruota testo"
msgid "NORMAL" msgid "NORMAL"
msgstr "NORMALE" msgstr "NORMALE"
@@ -1081,6 +1086,14 @@ msgstr "Mantieni l'alto"
msgid "Collection" msgid "Collection"
msgstr "Raccolta" msgstr "Raccolta"
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "Apri gizmo SVG" msgstr "Apri gizmo SVG"
@@ -1093,10 +1106,6 @@ msgstr "Azioni SVG"
msgid "SVG" msgid "SVG"
msgstr "SVG" msgstr "SVG"
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr "Ruota SVG"
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "Opacità (%1%)" msgstr "Opacità (%1%)"
@@ -1221,9 +1230,6 @@ msgstr "Blocca/sblocca le proporzioni dell'SVG."
msgid "Reset scale" msgid "Reset scale"
msgstr "Reimposta scala" msgstr "Reimposta scala"
msgid "Resize"
msgstr "Ridimensiona"
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "Distanza del centro dell'SVG dalla superficie del modello." msgstr "Distanza del centro dell'SVG dalla superficie del modello."
@@ -1730,6 +1736,17 @@ msgstr "Voron Cube"
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "Coniglietto di Stanford" msgstr "Coniglietto di Stanford"
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "Testo" msgstr "Testo"
@@ -2223,9 +2240,6 @@ msgstr "Copia di celle multiple non supportata."
msgid "Outside" msgid "Outside"
msgstr "Esterno" msgstr "Esterno"
msgid " "
msgstr " "
msgid "Layer height" msgid "Layer height"
msgstr "Altezza layer" msgstr "Altezza layer"
@@ -3625,9 +3639,9 @@ msgid ""
"avoid extruder clogging,it is not allowed to set the chamber temperature " "avoid extruder clogging,it is not allowed to set the chamber temperature "
"above 45℃." "above 45℃."
msgstr "" msgstr ""
"Nell'estrusore viene caricato un filamento a bassa temperatura (PLA/PETG/TPU). " "Nell'estrusore viene caricato un filamento a bassa temperatura (PLA/PETG/"
"Per evitare l'intasamento dell'estrusore, non è consentito impostare una " "TPU). Per evitare l'intasamento dell'estrusore, non è consentito impostare "
"temperatura della camera superiore a 45℃." "una temperatura della camera superiore a 45℃."
msgid "" msgid ""
"When you set the chamber temperature below 40℃, the chamber temperature " "When you set the chamber temperature below 40℃, the chamber temperature "
@@ -3635,8 +3649,8 @@ msgid ""
"automatically be set to 0℃." "automatically be set to 0℃."
msgstr "" msgstr ""
"Quando si imposta la temperatura della camera al di sotto di 40°C, il " "Quando si imposta la temperatura della camera al di sotto di 40°C, il "
"controllo della temperatura della camera non verrà attivato. " "controllo della temperatura della camera non verrà attivato. La temperatura "
"La temperatura target della camera sarà automaticamente impostata su 0℃." "target della camera sarà automaticamente impostata su 0℃."
msgid "Failed to start printing job" msgid "Failed to start printing job"
msgstr "Impossibile avviare il processo di stampa" msgstr "Impossibile avviare il processo di stampa"
@@ -4446,6 +4460,12 @@ msgstr "Mostra la finestra del G-code"
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "Mostra finestra G-code nella scena di anteprima" msgstr "Mostra finestra G-code nella scena di anteprima"
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "Ripristina layout finestra" msgstr "Ripristina layout finestra"
@@ -4925,7 +4945,8 @@ msgid ""
"but the synchronization of rating information has failed." "but the synchronization of rating information has failed."
msgstr "" msgstr ""
"La stampa del modello è stata completata, \n" "La stampa del modello è stata completata, \n"
"tuttavia la sincronizzazione delle informazioni di valutazione non è riuscita." "tuttavia la sincronizzazione delle informazioni di valutazione non è "
"riuscita."
msgid "How do you like this printing file?" msgid "How do you like this printing file?"
msgstr "Che cosa ne pensi di questo file di stampa?" msgstr "Che cosa ne pensi di questo file di stampa?"
@@ -7008,6 +7029,15 @@ msgstr ""
"0 distanza z superiore , 0 spaziatura interfaccia, trama concentrico e " "0 distanza z superiore , 0 spaziatura interfaccia, trama concentrico e "
"disabilita altezza layer di supporto indipendente" "disabilita altezza layer di supporto indipendente"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -7058,9 +7088,6 @@ msgstr "Generatore parete"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "Pareti e superfici" msgstr "Pareti e superfici"
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "Bridging" msgstr "Bridging"
@@ -7308,6 +7335,9 @@ msgstr "Tempo di accelerazione della ventola"
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "Ingombro estrusore" msgstr "Ingombro estrusore"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "Accessori" msgstr "Accessori"
@@ -7593,9 +7623,6 @@ msgstr "Cover"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "Il nome \"%1%\" già esiste." msgstr "Il nome \"%1%\" già esiste."
msgid "Back"
msgstr "Indietro"
msgid "Basic Info" msgid "Basic Info"
msgstr "Info di base" msgstr "Info di base"
@@ -8226,8 +8253,11 @@ msgid "Need to check the unsaved changes before configuration updates."
msgstr "" msgstr ""
"Controllare le modifiche non salvate prima di aggiornare la configurazione." "Controllare le modifiche non salvate prima di aggiornare la configurazione."
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "Pacchetto di configurazione aggiornato a " msgstr ""
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "Apri un file G-code:" msgstr "Apri un file G-code:"
@@ -8647,6 +8677,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "Piatto %d: %s non supporta il filamento %s" msgstr "Piatto %d: %s non supporta il filamento %s"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "Generazione skirt & brim" msgstr "Generazione skirt & brim"
@@ -9055,10 +9089,9 @@ msgid ""
"first layer over sparse infill. Decrease this value slightly (for example " "first layer over sparse infill. Decrease this value slightly (for example "
"0.9) to improve surface quality over sparse infill." "0.9) to improve surface quality over sparse infill."
msgstr "" msgstr ""
"Questo valore governa lo spessore dello strato del bridge interno. Questo è il " "Questo valore governa lo spessore dello strato del bridge interno. Questo è "
"primo strato sopra il riempimento. Riduci leggermente questo valore " "il primo strato sopra il riempimento. Riduci leggermente questo valore (ad "
"(ad esempio 0.9) per migliorare la qualità della superficie sopra il " "esempio 0.9) per migliorare la qualità della superficie sopra il riempimento."
"riempimento."
msgid "Top surface flow ratio" msgid "Top surface flow ratio"
msgstr "Rapporto di portata superficiale superiore" msgstr "Rapporto di portata superficiale superiore"
@@ -9079,15 +9112,15 @@ msgstr ""
"Questo fattore influisce sulla quantità di materiale per il riempimento " "Questo fattore influisce sulla quantità di materiale per il riempimento "
"solido inferiore" "solido inferiore"
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "Parete precisa (sperimentale)" msgstr "Parete precisa"
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
"Migliora la precisione del guscio regolando la spaziatura delle pareti "
"esterne. Questo migliora anche la consistenza degli strati."
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
msgstr "Solo una parete sulle superfici superiori" msgstr "Solo una parete sulle superfici superiori"
@@ -9102,7 +9135,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "Soglia a una parete" msgstr "Soglia a una parete"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -9196,13 +9229,30 @@ msgstr ""
"in direzioni alternate sugli strati dispari, indipendentemente dal loro " "in direzioni alternate sugli strati dispari, indipendentemente dal loro "
"grado di sporgenza." "grado di sporgenza."
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "Soglia inversa" msgstr "Soglia inversa"
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "Soglia di inversione a sbalzo" msgstr "Soglia di inversione a sbalzo"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -9405,13 +9455,13 @@ msgid "Fan speed"
msgstr "Velocità ventola" msgstr "Velocità ventola"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
"Velocità della ventola di scarico durante la stampa. Questa velocità " "Velocità della ventola di scarico durante la stampa. Questa velocità "
"sovrascriverà la velocità nel gcode personalizzato del filamento" "sovrascriverà la velocità nel gcode personalizzato del filamento"
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "Velocità della ventola di estrazione al termine della stampa" msgstr "Velocità della ventola di estrazione al termine della stampa"
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -9444,8 +9494,8 @@ msgid ""
"shorter bridged distances." "shorter bridged distances."
msgstr "" msgstr ""
"Se abilitato, i bridge sono più affidabili e possono colmare distanze " "Se abilitato, i bridge sono più affidabili e possono colmare distanze "
"maggiori, ma potrebbero avere un aspetto peggiore. Se disattivato, avranno" "maggiori, ma potrebbero avere un aspetto peggiore. Se disattivato, avrannoun "
"un aspetto migliore ma sono affidabili solo per le distanze ridotte." "aspetto migliore ma sono affidabili solo per le distanze ridotte."
msgid "Thick internal bridges" msgid "Thick internal bridges"
msgstr "Bridge interni spessi" msgstr "Bridge interni spessi"
@@ -9459,7 +9509,7 @@ msgstr ""
"consiglia di attivare questa funzione. Tuttavia, considera di disattivarlo " "consiglia di attivare questa funzione. Tuttavia, considera di disattivarlo "
"se stai utilizzando ugelli di grandi dimensioni." "se stai utilizzando ugelli di grandi dimensioni."
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9491,28 +9541,30 @@ msgid ""
"However, in most cases it creates too many unecessary bridges." "However, in most cases it creates too many unecessary bridges."
msgstr "" msgstr ""
"Questa opzione può contribuire a ridurre l'effetto 'pillowing' sulle " "Questa opzione può contribuire a ridurre l'effetto 'pillowing' sulle "
"superfici superiori nei modelli fortemente inclinati o curvi.\n\n" "superfici superiori nei modelli fortemente inclinati o curvi.\n"
"\n" "\n"
"Per impostazione predefinita, i piccoli bridge interni vengono filtrati " "\n"
"e il riempimento solido interno viene stampato direttamente sul riempimento." "Per impostazione predefinita, i piccoli bridge interni vengono filtrati e il "
"riempimento solido interno viene stampato direttamente sul riempimento."
"Questo metodo funziona bene nella maggior parte dei casi, velocizzando la " "Questo metodo funziona bene nella maggior parte dei casi, velocizzando la "
"stampa senza compromettere troppo la qualità della superficie superiore.\n" "stampa senza compromettere troppo la qualità della superficie superiore.\n"
"\n" "\n"
"Tuttavia, in modelli fortemente inclinati o curvi, soprattutto se si utilizza " "Tuttavia, in modelli fortemente inclinati o curvi, soprattutto se si "
"una densità di riempimento troppo bassa, potrebbe comportare l'arricciamento " "utilizza una densità di riempimento troppo bassa, potrebbe comportare "
"del riempimento solido non supportato, causando il pillowing.\n" "l'arricciamento del riempimento solido non supportato, causando il "
"pillowing.\n"
"\n" "\n"
"Abilitando questa opzione, lo strato del bridge interno verrà stampato su un " "Abilitando questa opzione, lo strato del bridge interno verrà stampato su un "
"riempimento solido interno leggermente non supportato. Le opzioni sottostanti " "riempimento solido interno leggermente non supportato. Le opzioni "
"controllano la quantità di filtraggio, ovvero la quantità di bridge interni " "sottostanti controllano la quantità di filtraggio, ovvero la quantità di "
"creati.\n" "bridge interni creati.\n"
"\n" "\n"
"Disabilitato - Disabilita questa opzione. È il comportamento predefinito e " "Disabilitato - Disabilita questa opzione. È il comportamento predefinito e "
"funziona bene nella maggior parte dei casi.\n" "funziona bene nella maggior parte dei casi.\n"
"\n" "\n"
"Filtro limitato - Crea bridge interni su superfici fortemente inclinate, " "Filtro limitato - Crea bridge interni su superfici fortemente inclinate, "
"evitando di creare bridge interni non necessari. Funziona bene per " "evitando di creare bridge interni non necessari. Funziona bene per la "
"la maggior parte dei modelli difficili.\n" "maggior parte dei modelli difficili.\n"
"\n" "\n"
"Nessun filtraggio - Crea bridge interni su ogni potenziale sporgenza " "Nessun filtraggio - Crea bridge interni su ogni potenziale sporgenza "
"interna. Questa opzione è utile per i modelli con superficie superiore " "interna. Questa opzione è utile per i modelli con superficie superiore "
@@ -9570,7 +9622,7 @@ msgstr ""
"garantire lo spessore verticale del guscio (layers solidi superiori e " "garantire lo spessore verticale del guscio (layers solidi superiori e "
"inferiori)." "inferiori)."
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9754,6 +9806,26 @@ msgstr ""
"conseguente peggioramento della finitura superficiale esterna. Può anche far " "conseguente peggioramento della finitura superficiale esterna. Può anche far "
"brillare il riempimento attraverso le superfici esterne della parte." "brillare il riempimento attraverso le superfici esterne della parte."
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "Altezza asta" msgstr "Altezza asta"
@@ -9781,6 +9853,50 @@ msgstr ""
"Raggio di sicurezza attorno all'estrusore: utilizzato per evitare collisioni " "Raggio di sicurezza attorno all'estrusore: utilizzato per evitare collisioni "
"nella stampa per oggetto." "nella stampa per oggetto."
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "Colore estrusore" msgstr "Colore estrusore"
@@ -9913,10 +10029,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "Restringimento" msgstr "Restringimento"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -10145,7 +10261,7 @@ msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Densità riempimento" msgstr "Densità riempimento"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10863,7 +10979,7 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "Questo G-code verrà utilizzato come codice personalizzato" msgstr "Questo G-code verrà utilizzato come codice personalizzato"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -11119,14 +11235,10 @@ msgid "Min print speed"
msgstr "Velocità minima di stampa" msgstr "Velocità minima di stampa"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
"La velocità di stampa minima per il filamento quando è abilitato il "
"rallentamento per un migliore raffreddamento dello strato, quando le "
"sporgenze di stampa e quando le velocità delle caratteristiche non sono "
"specificate esplicitamente."
msgid "Nozzle diameter" msgid "Nozzle diameter"
msgstr "Diametro Nozzle" msgstr "Diametro Nozzle"
@@ -11574,6 +11686,9 @@ msgstr "Più vicino"
msgid "Aligned" msgid "Aligned"
msgstr "Allineato" msgstr "Allineato"
msgid "Back"
msgstr "Indietro"
msgid "Random" msgid "Random"
msgstr "Casuale" msgstr "Casuale"
@@ -11602,6 +11717,47 @@ msgstr ""
"diametro corrente dell'estrusore. Il valore predefinito per questo parametro " "diametro corrente dell'estrusore. Il valore predefinito per questo parametro "
"è 10%." "è 10%."
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "Wipe Speed" msgstr "Wipe Speed"
@@ -11820,8 +11976,8 @@ msgstr "Spurgare il filamento rimanente nella torre di prim'ordine"
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "Abilita lo speronamento del filamento" msgstr "Abilita lo speronamento del filamento"
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "Nessun layer sparso (SPERIMENTALE)" msgstr ""
msgid "" msgid ""
"If enabled, the wipe tower will not be printed on layers with no " "If enabled, the wipe tower will not be printed on layers with no "
@@ -12582,7 +12738,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "Margine di rilevamento poliforo" msgstr "Margine di rilevamento poliforo"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -13419,9 +13575,9 @@ msgstr ""
"\n" "\n"
"Si prega di notare che ci sono alcuni casi che renderanno il risultato della " "Si prega di notare che ci sono alcuni casi che renderanno il risultato della "
"calibrazione non affidabile: utilizzo di una piastra di texture per eseguire " "calibrazione non affidabile: utilizzo di una piastra di texture per eseguire "
"la calibrazione; Il piano di stampa non ha una buona adesione (si " "la calibrazione; Il piano di stampa non ha una buona adesione (si prega di "
"prega di lavare il piano di stampa o applicare la colla stick!) ... " "lavare il piano di stampa o applicare la colla stick!) ... Puoi trovare di "
"Puoi trovare di più dal nostro wiki.\n" "più dal nostro wiki.\n"
"\n" "\n"
"I risultati della calibrazione hanno un jitter di circa il 10% nel nostro " "I risultati della calibrazione hanno un jitter di circa il 10% nel nostro "
"test, il che potrebbe causare un risultato non esattamente lo stesso in ogni " "test, il che potrebbe causare un risultato non esattamente lo stesso in ogni "
@@ -14838,11 +14994,11 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
"Filtrazione dell'aria/ventilatore di scarico\n" "Filtrazione dell'aria/ventilatore di scarico\n"
"Sapevi che OrcaSlicer può supportare la filtrazione dell'aria/Exhuast Fan?" "Sapevi che OrcaSlicer può supportare la filtrazione dell'aria/Exhaust Fan?"
#: resources/data/hints.ini: [hint:G-code window] #: resources/data/hints.ini: [hint:G-code window]
msgid "" msgid ""
@@ -15175,6 +15331,41 @@ msgstr ""
"aumentare in modo appropriato la temperatura del piano riscaldato può " "aumentare in modo appropriato la temperatura del piano riscaldato può "
"ridurre la probabilità di deformazione." "ridurre la probabilità di deformazione."
#~ msgid " "
#~ msgstr " "
#~ msgid "Text-Rotate"
#~ msgstr "Ruota testo"
#~ msgid "SVG-Rotate"
#~ msgstr "Ruota SVG"
#~ msgid "Resize"
#~ msgstr "Ridimensiona"
#~ msgid "Configuration package updated to "
#~ msgstr "Pacchetto di configurazione aggiornato a "
#~ msgid ""
#~ "Improve shell precision by adjusting outer wall spacing. This also "
#~ "improves layer consistency."
#~ msgstr ""
#~ "Migliora la precisione del guscio regolando la spaziatura delle pareti "
#~ "esterne. Questo migliora anche la consistenza degli strati."
#~ msgid ""
#~ "The minimum printing speed for the filament when slow down for better "
#~ "layer cooling is enabled, when printing overhangs and when feature speeds "
#~ "are not specified explicitly."
#~ msgstr ""
#~ "La velocità di stampa minima per il filamento quando è abilitato il "
#~ "rallentamento per un migliore raffreddamento dello strato, quando le "
#~ "sporgenze di stampa e quando le velocità delle caratteristiche non sono "
#~ "specificate esplicitamente."
#~ msgid "No sparse layers (EXPERIMENTAL)"
#~ msgstr "Nessun layer sparso (SPERIMENTALE)"
#~ msgid "" #~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" #~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n" #~ "\". \n"

View File

@@ -2,7 +2,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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -656,6 +656,14 @@ msgstr "Rotate text"
msgid "Text shape" msgid "Text shape"
msgstr "文字形状" msgstr "文字形状"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "" msgstr ""
@@ -674,9 +682,6 @@ msgstr ""
msgid "Emboss" msgid "Emboss"
msgstr "" msgstr ""
msgid "Text-Rotate"
msgstr ""
msgid "NORMAL" msgid "NORMAL"
msgstr "" msgstr ""
@@ -1046,6 +1051,14 @@ msgstr ""
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "" msgstr ""
@@ -1058,10 +1071,6 @@ msgstr ""
msgid "SVG" msgid "SVG"
msgstr "" msgstr ""
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr ""
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "" msgstr ""
@@ -1175,9 +1184,6 @@ msgstr ""
msgid "Reset scale" msgid "Reset scale"
msgstr "" msgstr ""
msgid "Resize"
msgstr ""
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "" msgstr ""
@@ -1660,6 +1666,17 @@ msgstr ""
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "" msgstr ""
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "" msgstr ""
@@ -2133,9 +2150,6 @@ msgstr "複数のセルのコピーには対応していません。"
msgid "Outside" msgid "Outside"
msgstr "外側" msgstr "外側"
msgid " "
msgstr ""
msgid "Layer height" msgid "Layer height"
msgstr "積層ピッチ" msgstr "積層ピッチ"
@@ -4241,6 +4255,12 @@ msgstr ""
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "" msgstr ""
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "" msgstr ""
@@ -6650,6 +6670,15 @@ msgstr ""
"0 top z distance, 0 interface spacing, concentric pattern and disable " "0 top z distance, 0 interface spacing, concentric pattern and disable "
"independent support layer height" "independent support layer height"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6694,9 +6723,6 @@ msgstr "壁面生成器"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "" msgstr ""
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "" msgstr ""
@@ -6929,6 +6955,9 @@ msgstr ""
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "押出機クリアランス" msgstr "押出機クリアランス"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "アクセサリー" msgstr "アクセサリー"
@@ -7192,9 +7221,6 @@ msgstr "表紙"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "\"%1%\"が既に存在しています" msgstr "\"%1%\"が既に存在しています"
msgid "Back"
msgstr "背面"
msgid "Basic Info" msgid "Basic Info"
msgstr "基本情報" msgstr "基本情報"
@@ -7783,8 +7809,11 @@ msgstr "ファイル %1% を %2% へのコピーが失敗しました (%3%)"
msgid "Need to check the unsaved changes before configuration updates." msgid "Need to check the unsaved changes before configuration updates."
msgstr "構成を更新する前に、未保存の変更をご確認ください" msgstr "構成を更新する前に、未保存の変更をご確認ください"
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "構成パッケージがアップデートされました" msgstr ""
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "G-codeファイルを開く" msgstr "G-codeファイルを開く"
@@ -8153,6 +8182,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "プレート %d: %s がフィラメント %s を使用できません" msgstr "プレート %d: %s がフィラメント %s を使用できません"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "スカートとブリムを生成" msgstr "スカートとブリムを生成"
@@ -8529,12 +8562,14 @@ msgstr ""
msgid "This factor affects the amount of material for bottom solid infill" msgid "This factor affects the amount of material for bottom solid infill"
msgstr "" msgstr ""
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "" msgstr ""
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
@@ -8548,7 +8583,7 @@ msgstr "トップ面に1層だけ造形します、インフィルを多い空
msgid "One wall threshold" msgid "One wall threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -8609,13 +8644,30 @@ msgid ""
"directions on odd layers irrespective of their overhang degree." "directions on odd layers irrespective of their overhang degree."
msgstr "" msgstr ""
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "" msgstr ""
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -8792,11 +8844,11 @@ msgid "Fan speed"
msgstr "回転速度" msgstr "回転速度"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "" msgstr ""
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -8838,7 +8890,7 @@ msgid ""
"using large nozzles." "using large nozzles."
msgstr "" msgstr ""
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8916,7 +8968,7 @@ msgid ""
"thickness (top+bottom solid layers)" "thickness (top+bottom solid layers)"
msgstr "傾斜面にソリッドインフィルを追加" msgstr "傾斜面にソリッドインフィルを追加"
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9051,6 +9103,26 @@ msgid ""
"external surfaces of the part." "external surfaces of the part."
msgstr "" msgstr ""
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "レールまでの高さ" msgstr "レールまでの高さ"
@@ -9077,6 +9149,50 @@ msgstr ""
"押出機のクリアランス(半径):オブジェクト順で造形する時にこのパラメータでオ" "押出機のクリアランス(半径):オブジェクト順で造形する時にこのパラメータでオ"
"ブジェクトの間隔を計算します。" "ブジェクトの間隔を計算します。"
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "押出機の色" msgstr "押出機の色"
@@ -9193,10 +9309,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9375,7 +9491,7 @@ msgstr "スパース インフィル パターンの角度です"
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "充填密度" msgstr "充填密度"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -9969,7 +10085,7 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "このG-codeがカスタム用です。" msgstr "このG-codeがカスタム用です。"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -10176,9 +10292,9 @@ msgid "Min print speed"
msgstr "最小造形速度" msgstr "最小造形速度"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
msgid "Nozzle diameter" msgid "Nozzle diameter"
@@ -10551,6 +10667,9 @@ msgstr "最寄り"
msgid "Aligned" msgid "Aligned"
msgstr "整列" msgstr "整列"
msgid "Back"
msgstr "背面"
msgid "Random" msgid "Random"
msgstr "ランダム" msgstr "ランダム"
@@ -10572,6 +10691,47 @@ msgid ""
"current extruder diameter. The default value for this parameter is 10%." "current extruder diameter. The default value for this parameter is 10%."
msgstr "" msgstr ""
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "" msgstr ""
@@ -10745,7 +10905,7 @@ msgstr ""
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "" msgstr ""
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -11383,7 +11543,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -13352,8 +13512,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
#: resources/data/hints.ini: [hint:G-code window] #: resources/data/hints.ini: [hint:G-code window]
@@ -13626,6 +13786,9 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Configuration package updated to "
#~ msgstr "構成パッケージがアップデートされました"
#~ msgid "The Config can not be loaded." #~ msgid "The Config can not be loaded."
#~ msgstr "構成を読込めませんでした" #~ msgstr "構成を読込めませんでした"

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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\n"
"PO-Revision-Date: 2024-01-01 14:28+0900\n" "PO-Revision-Date: 2024-01-01 14:28+0900\n"
"Last-Translator: Hotsolidinfill <138652683+Hotsolidinfill@users.noreply." "Last-Translator: Hotsolidinfill <138652683+Hotsolidinfill@users.noreply."
"github.com>, crwusiz <crwusiz@naver.com>\n" "github.com>, crwusiz <crwusiz@naver.com>\n"
@@ -671,6 +671,14 @@ msgstr "텍스트 회전"
msgid "Text shape" msgid "Text shape"
msgstr "텍스트 모양" msgstr "텍스트 모양"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "반전 설정" msgstr "반전 설정"
@@ -689,9 +697,6 @@ msgstr "양각 작업"
msgid "Emboss" msgid "Emboss"
msgstr "양각" msgstr "양각"
msgid "Text-Rotate"
msgstr "텍스트 회전"
msgid "NORMAL" msgid "NORMAL"
msgstr "NORMAL" msgstr "NORMAL"
@@ -1069,6 +1074,14 @@ msgstr "유지하다"
msgid "Collection" msgid "Collection"
msgstr "수집" msgstr "수집"
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "SVG 기즈모 입력" msgstr "SVG 기즈모 입력"
@@ -1081,10 +1094,6 @@ msgstr "SVG 작업"
msgid "SVG" msgid "SVG"
msgstr "SVG" msgstr "SVG"
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr "SVG-회전"
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "불투명도(%1%)" msgstr "불투명도(%1%)"
@@ -1201,9 +1210,6 @@ msgstr "SVG의 종횡비를 잠금/잠금 해제합니다."
msgid "Reset scale" msgid "Reset scale"
msgstr "규모 재설정" msgstr "규모 재설정"
msgid "Resize"
msgstr "크기 조정"
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "SVG 중심에서 모델 표면까지의 거리입니다." msgstr "SVG 중심에서 모델 표면까지의 거리입니다."
@@ -1703,6 +1709,17 @@ msgstr "보론 큐브"
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "스탠포드 버니" msgstr "스탠포드 버니"
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "텍스트" msgstr "텍스트"
@@ -2174,9 +2191,6 @@ msgstr "다중 셀 복사는 지원되지 않습니다"
msgid "Outside" msgid "Outside"
msgstr "외부" msgstr "외부"
msgid " "
msgstr " "
msgid "Layer height" msgid "Layer height"
msgstr "레이어 높이" msgstr "레이어 높이"
@@ -4331,6 +4345,12 @@ msgstr "G코드 창 표시 (&G)"
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "예측 장면에 G코드 창 표시" msgstr "예측 장면에 G코드 창 표시"
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "창 레이아웃 재설정" msgstr "창 레이아웃 재설정"
@@ -6801,6 +6821,15 @@ msgstr ""
"지지대 접점에 지지대 재료를 사용하는 경우 다음 설정을 권장합니다:\n" "지지대 접점에 지지대 재료를 사용하는 경우 다음 설정을 권장합니다:\n"
"상단 Z 거리 0, 접점 간격 0, 접점 패턴 동심원 및 독립적 지지대 높이 비활성화" "상단 Z 거리 0, 접점 간격 0, 접점 패턴 동심원 및 독립적 지지대 높이 비활성화"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6850,9 +6879,6 @@ msgstr "벽 생성기"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "벽과 표면" msgstr "벽과 표면"
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "브릿지" msgstr "브릿지"
@@ -7088,6 +7114,9 @@ msgstr "팬 가속 시간"
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "압출기 회피" msgstr "압출기 회피"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "악세서리" msgstr "악세서리"
@@ -7365,9 +7394,6 @@ msgstr "커버"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "%1% 이름이 이미 있습니다." msgstr "%1% 이름이 이미 있습니다."
msgid "Back"
msgstr "뒷면"
msgid "Basic Info" msgid "Basic Info"
msgstr "기본 정보" msgstr "기본 정보"
@@ -7975,8 +8001,11 @@ msgstr "파일 %1%을(를) %2%(으)로 복사 실패: %3%"
msgid "Need to check the unsaved changes before configuration updates." msgid "Need to check the unsaved changes before configuration updates."
msgstr "구성 업데이트 전에 저장되지 않은 변경 사항을 확인해야 합니다." msgstr "구성 업데이트 전에 저장되지 않은 변경 사항을 확인해야 합니다."
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "다음으로 업데이트된 구성 패키지 " msgstr ""
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "G코드 파일 열기:" msgstr "G코드 파일 열기:"
@@ -8365,6 +8394,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "%d: %s 플레이트는 %s 필라멘트를 지원하지 않습니다" msgstr "%d: %s 플레이트는 %s 필라멘트를 지원하지 않습니다"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "스커트 & 브림 생성 중" msgstr "스커트 & 브림 생성 중"
@@ -8767,15 +8800,15 @@ msgstr "하단 표면 유량 비율"
msgid "This factor affects the amount of material for bottom solid infill" msgid "This factor affects the amount of material for bottom solid infill"
msgstr "이 값은 하단 꽉찬 내부 채우기의 재료의 양에 영향을 미칩니다" msgstr "이 값은 하단 꽉찬 내부 채우기의 재료의 양에 영향을 미칩니다"
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "정밀한 벽(실험적)" msgstr "정밀한 벽"
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
"외벽 간격을 조정하여 쉘 정밀도를 향상시킵니다. 이는 또한 레이어 일관성을 향상"
"시킵니다."
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
msgstr "상단 표면에 단일 벽 생성" msgstr "상단 표면에 단일 벽 생성"
@@ -8790,7 +8823,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "단일 벽 임계값" msgstr "단일 벽 임계값"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -8876,13 +8909,30 @@ msgstr ""
"벽이 교대로 출력되도록 임계값을 0으로 역방향오버행 정도에 관계없이 홀수 레이" "벽이 교대로 출력되도록 임계값을 0으로 역방향오버행 정도에 관계없이 홀수 레이"
"어의 방향입니다." "어의 방향입니다."
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "반전 임계값" msgstr "반전 임계값"
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "돌출부 반전 임계값" msgstr "돌출부 반전 임계값"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -9071,13 +9121,13 @@ msgid "Fan speed"
msgstr "팬 속도" msgstr "팬 속도"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
"출력 중 배기 팬 속도. 이 속도는 필라멘트 사용자 정의 G코드의 속도를 덮어씁니" "출력 중 배기 팬 속도. 이 속도는 필라멘트 사용자 정의 G코드의 속도를 덮어씁니"
"다" "다"
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "출력 완료 후 배기 팬 속도" msgstr "출력 완료 후 배기 팬 속도"
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -9124,7 +9174,7 @@ msgstr ""
"기능을 켜두세요. 하지만 다음과 같은 경우에는 끄는 것을 고려해 보세요.큰 노즐" "기능을 켜두세요. 하지만 다음과 같은 경우에는 끄는 것을 고려해 보세요.큰 노즐"
"을 사용합니다." "을 사용합니다."
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9205,7 +9255,7 @@ msgstr ""
"경사진 표면 근처에 꽉찬 내부 채우기를 추가하여 수직 쉘 두께를 보장합니다 (상" "경사진 표면 근처에 꽉찬 내부 채우기를 추가하여 수직 쉘 두께를 보장합니다 (상"
"단+하단 꽉찬 레이어)" "단+하단 꽉찬 레이어)"
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9371,6 +9421,26 @@ msgstr ""
"표면 마감이 더 나빠집니다. 또한 충전재가 부품의 외부 표면을 통해 빛날 수도 있" "표면 마감이 더 나빠집니다. 또한 충전재가 부품의 외부 표면을 통해 빛날 수도 있"
"습니다." "습니다."
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "레일까지의 높이" msgstr "레일까지의 높이"
@@ -9393,6 +9463,50 @@ msgid ""
"printing." "printing."
msgstr "압출기 주변의 회피 반경. 개체별 출력에서 충돌 방지에 사용됩니다." msgstr "압출기 주변의 회피 반경. 개체별 출력에서 충돌 방지에 사용됩니다."
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "압출기 색상" msgstr "압출기 색상"
@@ -9513,10 +9627,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "수축" msgstr "수축"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9724,7 +9838,7 @@ msgstr "선의 시작 또는 주 방향을 제어하는 드문 채우기 패턴
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "드문 채우기 밀도" msgstr "드문 채우기 밀도"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10396,7 +10510,7 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "이 G코드는 사용자 정의 코드로 사용됩니다" msgstr "이 G코드는 사용자 정의 코드로 사용됩니다"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -10641,12 +10755,10 @@ msgid "Min print speed"
msgstr "최소 출력 속도" msgstr "최소 출력 속도"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
"보다 나은 레이어 냉각을 위해 속도를 늦출 때, 돌출부 출력 속도가 명시적으로 지"
"정되지 않은 경우 필라멘트의 최소 출력 속도가 활성화됩니다."
msgid "Nozzle diameter" msgid "Nozzle diameter"
msgstr "노즐 직경" msgstr "노즐 직경"
@@ -11063,6 +11175,9 @@ msgstr "근접"
msgid "Aligned" msgid "Aligned"
msgstr "정렬" msgstr "정렬"
msgid "Back"
msgstr "뒷면"
msgid "Random" msgid "Random"
msgstr "무작위" msgstr "무작위"
@@ -11090,6 +11205,47 @@ msgstr ""
"이 양은 밀리미터로 지정하거나 현재 압출기 직경의 백분율로 지정할 수 있습니" "이 양은 밀리미터로 지정하거나 현재 압출기 직경의 백분율로 지정할 수 있습니"
"다. 이 매개 변수의 기본값은 10%입니다." "다. 이 매개 변수의 기본값은 10%입니다."
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "역할 기반 닦기 속도" msgstr "역할 기반 닦기 속도"
@@ -11289,8 +11445,8 @@ msgstr "남은 필라멘트를 프라임 타워에서 제거"
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "필라멘트 래밍 활성화" msgstr "필라멘트 래밍 활성화"
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "드문 레이어 없음(실험적)" msgstr ""
msgid "" msgid ""
"If enabled, the wipe tower will not be printed on layers with no " "If enabled, the wipe tower will not be printed on layers with no "
@@ -11993,7 +12149,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "폴리홀 감지 마진" msgstr "폴리홀 감지 마진"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -14147,8 +14303,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
"공기 여과/배기 팬\n" "공기 여과/배기 팬\n"
"오르카 슬라이서가 공기 여과/배기 팬을 지원할 수 있다는 사실을 알고 계셨나요?" "오르카 슬라이서가 공기 여과/배기 팬을 지원할 수 있다는 사실을 알고 계셨나요?"
@@ -14476,6 +14632,39 @@ msgstr ""
"ABS 등 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이" "ABS 등 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이"
"면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?" "면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
#~ msgid " "
#~ msgstr " "
#~ msgid "Text-Rotate"
#~ msgstr "텍스트 회전"
#~ msgid "SVG-Rotate"
#~ msgstr "SVG-회전"
#~ msgid "Resize"
#~ msgstr "크기 조정"
#~ msgid "Configuration package updated to "
#~ msgstr "다음으로 업데이트된 구성 패키지 "
#~ msgid ""
#~ "Improve shell precision by adjusting outer wall spacing. This also "
#~ "improves layer consistency."
#~ msgstr ""
#~ "외벽 간격을 조정하여 쉘 정밀도를 향상시킵니다. 이는 또한 레이어 일관성을 "
#~ "향상시킵니다."
#~ msgid ""
#~ "The minimum printing speed for the filament when slow down for better "
#~ "layer cooling is enabled, when printing overhangs and when feature speeds "
#~ "are not specified explicitly."
#~ msgstr ""
#~ "보다 나은 레이어 냉각을 위해 속도를 늦출 때, 돌출부 출력 속도가 명시적으"
#~ "로 지정되지 않은 경우 필라멘트의 최소 출력 속도가 활성화됩니다."
#~ msgid "No sparse layers (EXPERIMENTAL)"
#~ msgstr "드문 레이어 없음(실험적)"
#~ msgid "" #~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" #~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n" #~ "\". \n"

View File

@@ -58,6 +58,7 @@ src/slic3r/GUI/BedShapeDialog.hpp
src/slic3r/GUI/ConfigManipulation.cpp src/slic3r/GUI/ConfigManipulation.cpp
src/slic3r/GUI/DeviceManager.cpp src/slic3r/GUI/DeviceManager.cpp
src/slic3r/GUI/ExtraRenderers.cpp src/slic3r/GUI/ExtraRenderers.cpp
src/slic3r/GUI/EditGCodeDialog.cpp
src/slic3r/GUI/Field.cpp src/slic3r/GUI/Field.cpp
src/slic3r/GUI/GCodeViewer.cpp src/slic3r/GUI/GCodeViewer.cpp
src/slic3r/GUI/GLCanvas3D.cpp src/slic3r/GUI/GLCanvas3D.cpp

View File

@@ -2,7 +2,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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\n"
"Language: nl\n" "Language: nl\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"
@@ -660,6 +660,14 @@ msgstr "Draai tekst"
msgid "Text shape" msgid "Text shape"
msgstr "Tekstvorm" msgstr "Tekstvorm"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "" msgstr ""
@@ -678,9 +686,6 @@ msgstr ""
msgid "Emboss" msgid "Emboss"
msgstr "" msgstr ""
msgid "Text-Rotate"
msgstr ""
msgid "NORMAL" msgid "NORMAL"
msgstr "" msgstr ""
@@ -1050,6 +1055,14 @@ msgstr ""
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "" msgstr ""
@@ -1062,10 +1075,6 @@ msgstr ""
msgid "SVG" msgid "SVG"
msgstr "" msgstr ""
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr ""
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "" msgstr ""
@@ -1179,9 +1188,6 @@ msgstr ""
msgid "Reset scale" msgid "Reset scale"
msgstr "" msgstr ""
msgid "Resize"
msgstr ""
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "" msgstr ""
@@ -1678,6 +1684,17 @@ msgstr "Voron-kubus"
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "" msgstr ""
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "" msgstr ""
@@ -2178,9 +2195,6 @@ msgstr "Het kopiëren van meerdere cellen wordt niet ondersteund."
msgid "Outside" msgid "Outside"
msgstr "Buitenkant" msgstr "Buitenkant"
msgid " "
msgstr ""
msgid "Layer height" msgid "Layer height"
msgstr "Laaghoogte" msgstr "Laaghoogte"
@@ -4358,6 +4372,12 @@ msgstr ""
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "" msgstr ""
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "" msgstr ""
@@ -6866,6 +6886,15 @@ msgstr ""
"0 top z distance, 0 interface spacing, concentric pattern and disable " "0 top z distance, 0 interface spacing, concentric pattern and disable "
"independent support layer height" "independent support layer height"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6911,9 +6940,6 @@ msgstr "Wandgenerator"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "" msgstr ""
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "" msgstr ""
@@ -7160,6 +7186,9 @@ msgstr ""
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "Extruder ruimte" msgstr "Extruder ruimte"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "Accessoire" msgstr "Accessoire"
@@ -7440,9 +7469,6 @@ msgstr "Omslag"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "De naam \"%1%\" bestaat reeds." msgstr "De naam \"%1%\" bestaat reeds."
msgid "Back"
msgstr "Achterzijde"
msgid "Basic Info" msgid "Basic Info"
msgstr "Basisinfo" msgstr "Basisinfo"
@@ -8052,8 +8078,11 @@ msgid "Need to check the unsaved changes before configuration updates."
msgstr "" msgstr ""
"Controleer niet-opgeslagen wijzigingen voordat u de configuratie bijwerkt." "Controleer niet-opgeslagen wijzigingen voordat u de configuratie bijwerkt."
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "Het configuratiebestand is bijgewerkt naar " msgstr ""
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "Open G-code bestand:" msgstr "Open G-code bestand:"
@@ -8445,6 +8474,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "Printbed %d: %s ondersteunt filament %s niet." msgstr "Printbed %d: %s ondersteunt filament %s niet."
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "Skirt en brim worden gegenereerd" msgstr "Skirt en brim worden gegenereerd"
@@ -8857,12 +8890,14 @@ msgstr ""
msgid "This factor affects the amount of material for bottom solid infill" msgid "This factor affects the amount of material for bottom solid infill"
msgstr "" msgstr ""
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "" msgstr ""
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
@@ -8878,7 +8913,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -8939,13 +8974,30 @@ msgid ""
"directions on odd layers irrespective of their overhang degree." "directions on odd layers irrespective of their overhang degree."
msgstr "" msgstr ""
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "" msgstr ""
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -9129,11 +9181,11 @@ msgid "Fan speed"
msgstr "Ventilator snelheid" msgstr "Ventilator snelheid"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "" msgstr ""
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -9180,7 +9232,7 @@ msgid ""
"using large nozzles." "using large nozzles."
msgstr "" msgstr ""
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9261,7 +9313,7 @@ msgstr ""
"Voeg dichte vulling toe in de buurt van hellende oppervlakken om de " "Voeg dichte vulling toe in de buurt van hellende oppervlakken om de "
"verticale schaaldikte te garanderen (boven+onder vaste lagen)." "verticale schaaldikte te garanderen (boven+onder vaste lagen)."
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9400,6 +9452,26 @@ msgid ""
"external surfaces of the part." "external surfaces of the part."
msgstr "" msgstr ""
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "Hoogte tot geleider" msgstr "Hoogte tot geleider"
@@ -9427,6 +9499,50 @@ msgstr ""
"Afstandsradius rond de extruder: gebruikt om botsingen te vermijden bij het " "Afstandsradius rond de extruder: gebruikt om botsingen te vermijden bij het "
"printen per object." "printen per object."
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "Extruder kleur" msgstr "Extruder kleur"
@@ -9554,10 +9670,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9742,7 +9858,7 @@ msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Vulling percentage" msgstr "Vulling percentage"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10367,7 +10483,7 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "Deze G-code wordt gebruikt als een aangepaste code" msgstr "Deze G-code wordt gebruikt als een aangepaste code"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -10577,9 +10693,9 @@ msgid "Min print speed"
msgstr "Minimale print snelheid" msgstr "Minimale print snelheid"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
msgid "Nozzle diameter" msgid "Nozzle diameter"
@@ -10973,6 +11089,9 @@ msgstr "Dichtstbijzijnde"
msgid "Aligned" msgid "Aligned"
msgstr "Uitgelijnd" msgstr "Uitgelijnd"
msgid "Back"
msgstr "Achterzijde"
msgid "Random" msgid "Random"
msgstr "Willekeurig" msgstr "Willekeurig"
@@ -10994,6 +11113,47 @@ msgid ""
"current extruder diameter. The default value for this parameter is 10%." "current extruder diameter. The default value for this parameter is 10%."
msgstr "" msgstr ""
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "" msgstr ""
@@ -11179,7 +11339,7 @@ msgstr ""
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "" msgstr ""
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -11862,7 +12022,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -13843,8 +14003,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
#: resources/data/hints.ini: [hint:G-code window] #: resources/data/hints.ini: [hint:G-code window]
@@ -14138,6 +14298,9 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Configuration package updated to "
#~ msgstr "Het configuratiebestand is bijgewerkt naar "
#~ msgid "The Config can not be loaded." #~ msgid "The Config can not be loaded."
#~ msgstr "De configuratie kan niet worden geladen." #~ msgstr "De configuratie kan niet worden geladen."

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\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"
@@ -658,6 +658,14 @@ msgstr "Rotera text"
msgid "Text shape" msgid "Text shape"
msgstr "Text form" msgstr "Text form"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "" msgstr ""
@@ -676,9 +684,6 @@ msgstr ""
msgid "Emboss" msgid "Emboss"
msgstr "" msgstr ""
msgid "Text-Rotate"
msgstr ""
msgid "NORMAL" msgid "NORMAL"
msgstr "" msgstr ""
@@ -1048,6 +1053,14 @@ msgstr ""
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "" msgstr ""
@@ -1060,10 +1073,6 @@ msgstr ""
msgid "SVG" msgid "SVG"
msgstr "" msgstr ""
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr ""
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "" msgstr ""
@@ -1177,9 +1186,6 @@ msgstr ""
msgid "Reset scale" msgid "Reset scale"
msgstr "" msgstr ""
msgid "Resize"
msgstr ""
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "" msgstr ""
@@ -1666,6 +1672,17 @@ msgstr ""
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "" msgstr ""
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "" msgstr ""
@@ -2154,9 +2171,6 @@ msgstr "Kopiering av flertalet celler stöds ej"
msgid "Outside" msgid "Outside"
msgstr "Utsida" msgstr "Utsida"
msgid " "
msgstr ""
msgid "Layer height" msgid "Layer height"
msgstr "Lager höjd" msgstr "Lager höjd"
@@ -4317,6 +4331,12 @@ msgstr ""
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "" msgstr ""
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "" msgstr ""
@@ -6779,6 +6799,15 @@ msgstr ""
"0 top z-avstånd, 0 gränssnittsavstånd, koncentriskt mönster och inaktivera " "0 top z-avstånd, 0 gränssnittsavstånd, koncentriskt mönster och inaktivera "
"oberoende stödskiktshöjd" "oberoende stödskiktshöjd"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6824,9 +6853,6 @@ msgstr "Vägg generator"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "" msgstr ""
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "" msgstr ""
@@ -7069,6 +7095,9 @@ msgstr ""
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "Extruder Frigång" msgstr "Extruder Frigång"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "Tillbehör" msgstr "Tillbehör"
@@ -7348,9 +7377,6 @@ msgstr "Skydd"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "Namnet \"%1%\" finns redan." msgstr "Namnet \"%1%\" finns redan."
msgid "Back"
msgstr "Tillbaka"
msgid "Basic Info" msgid "Basic Info"
msgstr "Grundläggande information" msgstr "Grundläggande information"
@@ -7947,8 +7973,11 @@ msgstr "Kopierar fil %1% till %2% misslyckade: %3%"
msgid "Need to check the unsaved changes before configuration updates." msgid "Need to check the unsaved changes before configuration updates."
msgstr "Kontrollera ej sparade ändringar innan konfigureringen uppdateras." msgstr "Kontrollera ej sparade ändringar innan konfigureringen uppdateras."
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "Konfigurations paket uppdaterat till " msgstr ""
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "Öppna G-kod fil:" msgstr "Öppna G-kod fil:"
@@ -8319,6 +8348,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "Plate %d: %s stöder inte filamentet %s" msgstr "Plate %d: %s stöder inte filamentet %s"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "Skapar Skirt & Brim" msgstr "Skapar Skirt & Brim"
@@ -8720,12 +8753,14 @@ msgstr ""
msgid "This factor affects the amount of material for bottom solid infill" msgid "This factor affects the amount of material for bottom solid infill"
msgstr "" msgstr ""
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "" msgstr ""
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
@@ -8741,7 +8776,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -8802,13 +8837,30 @@ msgid ""
"directions on odd layers irrespective of their overhang degree." "directions on odd layers irrespective of their overhang degree."
msgstr "" msgstr ""
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "" msgstr ""
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -8988,11 +9040,11 @@ msgid "Fan speed"
msgstr "Fläkt hastighet" msgstr "Fläkt hastighet"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "" msgstr ""
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -9037,7 +9089,7 @@ msgid ""
"using large nozzles." "using large nozzles."
msgstr "" msgstr ""
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9117,7 +9169,7 @@ msgstr ""
"Lägg till massiv fyllning nära sluttande ytor för att garantera den " "Lägg till massiv fyllning nära sluttande ytor för att garantera den "
"vertikala skal tjockleken (topp+bottenfasta lager)." "vertikala skal tjockleken (topp+bottenfasta lager)."
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9253,6 +9305,26 @@ msgid ""
"external surfaces of the part." "external surfaces of the part."
msgstr "" msgstr ""
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "Höjd till axel" msgstr "Höjd till axel"
@@ -9280,6 +9352,50 @@ msgstr ""
"Frigångsradie runt extrudern: används för att undvika kollisioner vid " "Frigångsradie runt extrudern: används för att undvika kollisioner vid "
"utskrift av flera objekt." "utskrift av flera objekt."
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "Extruder Färg" msgstr "Extruder Färg"
@@ -9403,10 +9519,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9591,7 +9707,7 @@ msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Sparsam ifyllnads densitet" msgstr "Sparsam ifyllnads densitet"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10209,7 +10325,7 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "Denna G-kod kommer att användas som en anpassad kod." msgstr "Denna G-kod kommer att användas som en anpassad kod."
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -10418,9 +10534,9 @@ msgid "Min print speed"
msgstr "Min utskrifts hastighet" msgstr "Min utskrifts hastighet"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
msgid "Nozzle diameter" msgid "Nozzle diameter"
@@ -10805,6 +10921,9 @@ msgstr "Närmaste"
msgid "Aligned" msgid "Aligned"
msgstr "Linjerad" msgstr "Linjerad"
msgid "Back"
msgstr "Tillbaka"
msgid "Random" msgid "Random"
msgstr "Slumpmässig" msgstr "Slumpmässig"
@@ -10826,6 +10945,47 @@ msgid ""
"current extruder diameter. The default value for this parameter is 10%." "current extruder diameter. The default value for this parameter is 10%."
msgstr "" msgstr ""
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "" msgstr ""
@@ -11006,7 +11166,7 @@ msgstr ""
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "" msgstr ""
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -11674,7 +11834,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -13655,8 +13815,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
#: resources/data/hints.ini: [hint:G-code window] #: resources/data/hints.ini: [hint:G-code window]
@@ -13950,6 +14110,9 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Configuration package updated to "
#~ msgstr "Konfigurations paket uppdaterat till "
#~ msgid "The Config can not be loaded." #~ msgid "The Config can not be loaded."
#~ msgstr "Konfigurationen kan inte laddas." #~ msgstr "Konfigurationen kan inte laddas."

View File

@@ -6,8 +6,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OrcaSlicer\n" "Project-Id-Version: OrcaSlicer\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\n"
"PO-Revision-Date: 2024-01-28 13:16+0300\n" "PO-Revision-Date: 2024-03-03 22:12+0300\n"
"Last-Translator: Olcay ÖREN\n" "Last-Translator: Olcay ÖREN\n"
"Language-Team: Türkçe\n" "Language-Team: Türkçe\n"
"Language: tr_TR\n" "Language: tr_TR\n"
@@ -675,6 +675,14 @@ msgstr "Metni döndür"
msgid "Text shape" msgid "Text shape"
msgstr "Metin şekli" msgstr "Metin şekli"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr "Metin döndürme"
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr "Metin taşıma"
msgid "Set Mirror" msgid "Set Mirror"
msgstr "Aynayı Ayarla" msgstr "Aynayı Ayarla"
@@ -693,9 +701,6 @@ msgstr "Kabartma eylemleri"
msgid "Emboss" msgid "Emboss"
msgstr "Kabartma" msgstr "Kabartma"
msgid "Text-Rotate"
msgstr "Metin Döndürme"
msgid "NORMAL" msgid "NORMAL"
msgstr "NORMAL" msgstr "NORMAL"
@@ -1080,6 +1085,14 @@ msgstr "Sürdür"
msgid "Collection" msgid "Collection"
msgstr "Koleksiyon" msgstr "Koleksiyon"
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr "SVG döndürme"
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr "SVG taşıma"
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "SVG aletine girin" msgstr "SVG aletine girin"
@@ -1092,10 +1105,6 @@ msgstr "SVG eylemleri"
msgid "SVG" msgid "SVG"
msgstr "SVG" msgstr "SVG"
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr "SVG-Döndürme"
#, fuzzy, boost-format #, fuzzy, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "Opaklık (%1)" msgstr "Opaklık (%1)"
@@ -1178,7 +1187,7 @@ msgstr ""
#. TRN: An menu option to convert the SVG into an unmodifiable model part. #. TRN: An menu option to convert the SVG into an unmodifiable model part.
msgid "Bake" msgid "Bake"
msgstr "" msgstr "Düzenlenemez"
#. TRN: Tooltip for the menu item. #. TRN: Tooltip for the menu item.
msgid "Bake into model as uneditable part" msgid "Bake into model as uneditable part"
@@ -1213,9 +1222,6 @@ msgstr "SVG'nin en boy oranını kilitleyin/kilidini açın."
msgid "Reset scale" msgid "Reset scale"
msgstr "Ölçeği sıfırla" msgstr "Ölçeği sıfırla"
msgid "Resize"
msgstr "Boyutlandır"
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "SVG merkezinin model yüzeyine uzaklığı." msgstr "SVG merkezinin model yüzeyine uzaklığı."
@@ -1716,6 +1722,23 @@ msgstr "Voron Küpü"
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "Stanford Tavşanı" msgstr "Stanford Tavşanı"
msgid "Orca String Hell"
msgstr "Orca Cehennemi"
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
"Bu modelin üst yüzeyinde metin kabartması bulunmaktadır. En iyi sonuçları "
"elde etmek amacıyla, 'Üst Yüzeylerde Yalnızca Bir Duvar'ın en iyi şekilde "
"çalışması için 'Tek Duvar Eşiği(min_width_top_surface)' seçeneğini 0'a "
"ayarlamanız önerilir.\n"
"Evet - Bu ayarları otomatik olarak değiştir\n"
"Hayır - Bu ayarları benim için değiştirme"
msgid "Text" msgid "Text"
msgstr "Metin" msgstr "Metin"
@@ -2194,9 +2217,6 @@ msgstr "birden fazla hücre kopyalama desteklenmiyor"
msgid "Outside" msgid "Outside"
msgstr "Dış" msgstr "Dış"
msgid " "
msgstr " "
msgid "Layer height" msgid "Layer height"
msgstr "Katman Yüksekliği" msgstr "Katman Yüksekliği"
@@ -2865,7 +2885,7 @@ msgid "℃"
msgstr "°C" msgstr "°C"
msgid "Bed temperature" msgid "Bed temperature"
msgstr "Yatak sıcaklığı" msgstr "Yatak Sıcaklığı"
msgid "mm³" msgid "mm³"
msgstr "mm³" msgstr "mm³"
@@ -4396,6 +4416,12 @@ msgstr "&G-code Penceresini Göster"
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "Previce sahnesinde G-kodu penceresini göster" msgstr "Previce sahnesinde G-kodu penceresini göster"
msgid "Show 3D Navigator"
msgstr "3D Gezgini Göster"
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr "Hazırlama ve Önizleme sahnesinde 3D gezgini göster"
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "Pencere Düzenini Sıfırla" msgstr "Pencere Düzenini Sıfırla"
@@ -6928,6 +6954,18 @@ msgstr ""
"0 üst z mesafesi, 0 arayüz aralığı, eş merkezli desen ve bağımsız destek " "0 üst z mesafesi, 0 arayüz aralığı, eş merkezli desen ve bağımsız destek "
"katmanı yüksekliğini devre dışı bırakma" "katmanı yüksekliğini devre dışı bırakma"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
"Bu seçeneğin etkinleştirilmesi modelin şeklini değiştirecektir. Baskınız kesin "
"boyutlar gerektiriyorsa veya bir montajın parçasıysa geometrideki bu değişikliğin "
"baskınızın işlevselliğini etkileyip etkilemediğini bir kez daha kontrol etmeniz önemlidir."
msgid "Are you sure you want to enable this option?"
msgstr "Bu seçeneği etkinleştirmek istediğinizden emin misiniz?"
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6978,9 +7016,6 @@ msgstr "Duvar Türü"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "Duvarlar ve Yüzeyler" msgstr "Duvarlar ve Yüzeyler"
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr "Küçük Alan Dolgusu Akış Telafisi (deneysel)"
msgid "Bridging" msgid "Bridging"
msgstr "Köprüleme" msgstr "Köprüleme"
@@ -7024,7 +7059,7 @@ msgid "Acceleration"
msgstr "Hızlanma" msgstr "Hızlanma"
msgid "Jerk(XY)" msgid "Jerk(XY)"
msgstr "Jerk(XY)" msgstr "Sarsıntı(XY)"
msgid "Raft" msgid "Raft"
msgstr "Raft" msgstr "Raft"
@@ -7225,6 +7260,9 @@ msgstr "Fan hızlanma süresi"
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "Ekstruder Boşluğu" msgstr "Ekstruder Boşluğu"
msgid "Adaptive bed mesh"
msgstr "Uyarlanabilir Yatak Ağı"
msgid "Accessory" msgid "Accessory"
msgstr "Aksesuar" msgstr "Aksesuar"
@@ -7274,7 +7312,7 @@ msgid "Acceleration limitation"
msgstr "Hızlanma Sınırlaması" msgstr "Hızlanma Sınırlaması"
msgid "Jerk limitation" msgid "Jerk limitation"
msgstr "Jerk Sınırlaması" msgstr "Sarsıntı Sınırlaması"
msgid "Single extruder multimaterial setup" msgid "Single extruder multimaterial setup"
msgstr "Tek Ekstruder Çoklu Malzeme Kurulumu" msgstr "Tek Ekstruder Çoklu Malzeme Kurulumu"
@@ -7487,8 +7525,8 @@ msgid ""
"this dialog." "this dialog."
msgstr "" msgstr ""
"Seçilen seçenekleri sol ön ayardan sağa aktarın.\n" "Seçilen seçenekleri sol ön ayardan sağa aktarın.\n"
"Not: Bu iletişim kutusunu kapattıktan sonra ayarlar sekmelerinde değiştirilen " "Not: Bu iletişim kutusunu kapattıktan sonra ayarlar sekmelerinde "
"yeni ön ayarlar seçilecektir." "değiştirilen yeni ön ayarlar seçilecektir."
msgid "Transfer values from left to right" msgid "Transfer values from left to right"
msgstr "Değerleri soldan sağa aktarın" msgstr "Değerleri soldan sağa aktarın"
@@ -7513,9 +7551,6 @@ msgstr "Kapak"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "\"%1%\" adı zaten mevcut." msgstr "\"%1%\" adı zaten mevcut."
msgid "Back"
msgstr "Arka"
msgid "Basic Info" msgid "Basic Info"
msgstr "Temel bilgi" msgstr "Temel bilgi"
@@ -8132,8 +8167,11 @@ msgstr ""
"Yapılandırma güncellemelerinden önce kaydedilmemiş değişiklikleri kontrol " "Yapılandırma güncellemelerinden önce kaydedilmemiş değişiklikleri kontrol "
"etmeniz gerekir." "etmeniz gerekir."
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "Yapılandırma paketi şu şekilde güncellendi: " msgstr "Yapılandırma paketi:"
msgid " updated to "
msgstr " güncellendi "
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "G kodu dosyasınıın:" msgstr "G kodu dosyasınıın:"
@@ -8538,6 +8576,11 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "Plaka %d: %s, %s filamentini desteklemiyor" msgstr "Plaka %d: %s, %s filamentini desteklemiyor"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
"Sarsıntı hızının çok düşük ayarlanması kavisli yüzeylerde bozulmalara neden olabilir"
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "Etek ve kenar oluşturma" msgstr "Etek ve kenar oluşturma"
@@ -8850,7 +8893,8 @@ msgid ""
"3. Nowhere: Disables gap fill\n" "3. Nowhere: Disables gap fill\n"
msgstr "" msgstr ""
"Seçilen yüzeyler için boşluk doldurmayı etkinleştirir. Doldurulacak minimum " "Seçilen yüzeyler için boşluk doldurmayı etkinleştirir. Doldurulacak minimum "
"boşluk uzunluğu aşağıdaki küçük boşlukları filtrele seçeneğinden kontrol edilebilir.\n" "boşluk uzunluğu aşağıdaki küçük boşlukları filtrele seçeneğinden kontrol "
"edilebilir.\n"
"\n" "\n"
"Seçenekler:\n" "Seçenekler:\n"
"1. Her Yerde: Üst, alt ve iç katı yüzeylere boşluk doldurma uygular\n" "1. Her Yerde: Üst, alt ve iç katı yüzeylere boşluk doldurma uygular\n"
@@ -8962,15 +9006,19 @@ msgstr "Alt katı dolgu akış oranı"
msgid "This factor affects the amount of material for bottom solid infill" msgid "This factor affects the amount of material for bottom solid infill"
msgstr "Bu faktör alt katı dolgu için malzeme miktarını etkiler" msgstr "Bu faktör alt katı dolgu için malzeme miktarını etkiler"
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "Hassas duvar (deneysel)" msgstr "Hassas duvar"
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
"Dış duvar aralığını ayarlayarak kabuk hassasiyetini artırın. Bu aynı zamanda " "Dış duvar aralığını ayarlayarak kabuk hassasiyetini artırın. Bu aynı zamanda "
"katman tutarlılığını da artırır." "katman tutarlılığını da artırır.\n"
"Not: Bu ayar yalnızca duvar sırası İç-Dış olarak yapılandırıldığında "
"etkili olacaktır."
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
msgstr "Üst yüzeylerde yalnızca bir duvar" msgstr "Üst yüzeylerde yalnızca bir duvar"
@@ -8985,7 +9033,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "Tek duvar eşiği" msgstr "Tek duvar eşiği"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -9076,13 +9124,35 @@ msgstr ""
"bakılmaksızın tek katmanlar üzerine değişen yönlerde yazdırılması için Ters " "bakılmaksızın tek katmanlar üzerine değişen yönlerde yazdırılması için Ters "
"Eşiği 0'a ayarlamanız önerilir." "Eşiği 0'a ayarlamanız önerilir."
msgid "Bridge counterbole holes"
msgstr "Köprü havşa delikleri"
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
"Bu seçenek, havşa delikleri için köprüler oluşturarak bunların desteksiz "
"yazdırılmasına olanak tanır. Mevcut modlar şunları içerir:\n"
"1. Yok: Köprü oluşturulmaz.\n"
"2. Kısmen Köprülendi: Desteklenmeyen alanın yalnızca bir kısmı köprülenecek.\n"
"3. Feda Katman: Tam bir feda köprü katmanı oluşturulur."
msgid "Partially bridged"
msgstr "Kısmen köprülü"
msgid "Sacrificial layer"
msgstr "Feda katmanı"
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "Ters eşik" msgstr "Ters eşik"
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "Çıkıntıyı tersine çevirme eşiği" msgstr "Çıkıntıyı tersine çevirme eşiği"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -9278,13 +9348,13 @@ msgid "Fan speed"
msgstr "Fan hızı" msgstr "Fan hızı"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
"Baskı sırasında egzoz fanının hızı. Bu hız, filament özel gcode'undaki hızın " "Baskı sırasında egzoz fanının hızı. Bu hız, filament özel gcode'undaki hızın "
"üzerine yazılacaktır" "üzerine yazılacaktır"
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "Baskı tamamlandıktan sonra egzoz fanının hızı" msgstr "Baskı tamamlandıktan sonra egzoz fanının hızı"
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -9332,7 +9402,7 @@ msgstr ""
"açık olması önerilir. Ancak büyük nozul uçları kullanıyorsanız kapatmayı " "açık olması önerilir. Ancak büyük nozul uçları kullanıyorsanız kapatmayı "
"düşünün." "düşünün."
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "Küçük iç köprüleri filtrelemeyin (deneysel)" msgstr "Küçük iç köprüleri filtrelemeyin (deneysel)"
msgid "" msgid ""
@@ -9438,7 +9508,7 @@ msgstr ""
"Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına katı " "Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına katı "
"dolgu ekleyin (üst + alt katı katmanlar)" "dolgu ekleyin (üst + alt katı katmanlar)"
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "Duvarlardaki katı dolguyu daha da azaltın (deneysel)" msgstr "Duvarlardaki katı dolguyu daha da azaltın (deneysel)"
msgid "" msgid ""
@@ -9617,6 +9687,34 @@ msgstr ""
"yüzey kalitesine neden olacaktır. Ayrıca dolgunun parçanın dış yüzeylerinden " "yüzey kalitesine neden olacaktır. Ayrıca dolgunun parçanın dış yüzeylerinden "
"parlamasına da neden olabilir." "parlamasına da neden olabilir."
msgid "Wall loop direction"
msgstr "Duvar döngüsü yönü"
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
"Yukarıdan aşağıya bakıldığında duvar döngülerinin ekstrüzyona "
"uğradığı yön.\n"
"\n"
"Tek sayıyı ters çevir seçeneği etkinleştirilmedikçe, varsayılan olarak tüm duvarlar "
"saat yönünün tersine ekstrüde edilir. Bunu Otomatik dışında herhangi bir seçeneğe "
"ayarlayın, Ters açıklığa bakılmaksızın duvar yönünü zorlayacaktır.\n"
"\n"
"Spiral vazo modu etkinse bu seçenek devre dışı bırakılacaktır."
msgid "Counter clockwise"
msgstr "Saat yönünün tersine"
msgid "Clockwise"
msgstr "Saat yönünde"
msgid "Height to rod" msgid "Height to rod"
msgstr "Çubuğa kadar olan yükseklik" msgstr "Çubuğa kadar olan yükseklik"
@@ -9644,8 +9742,74 @@ msgstr ""
"Ekstruder etrafındaki boşluk yarıçapı. Nesneye göre yazdırmada çarpışmayı " "Ekstruder etrafındaki boşluk yarıçapı. Nesneye göre yazdırmada çarpışmayı "
"önlemek için kullanılır." "önlemek için kullanılır."
msgid "Bed mesh min"
msgstr "Minimum yatak ağı"
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
"Bu seçenek, izin verilen yatak ağ alanı için minimum noktayı ayarlar. "
"Prob XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. "
"Prob noktasının yatak alanı dışına çıkmamasını sağlamak için yatak ağının "
"minimum ve maksimum noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, "
"adaptive_bed_mesh_min/adaptive_bed_mesh_max değerlerinin bu min/maks "
"noktalarını aşmamasını sağlar. Bu bilgi genellikle yazıcınızın "
"üreticisinden edinilebilir. Varsayılan ayar (-99999, -99999) şeklindedir; "
"bu, herhangi bir sınırın olmadığı anlamına gelir, dolayısıyla yatağın "
"tamamında problamaya izin verilir."
msgid "Bed mesh max"
msgstr "Maksimum yatak ağı"
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
"Bu seçenek, izin verilen yatak ağ alanı için maksimum noktayı ayarlar. "
"Probun XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. "
"Prob noktasının yatak alanı dışına çıkmamasını sağlamak için yatak ağının "
"minimum ve maksimum noktaları uygun şekilde ayarlanmalıdır. "
"OrcaSlicer, adaptive_bed_mesh_min/adaptive_bed_mesh_max değerlerinin bu "
"min/maks noktalarını aşmamasını sağlar. Bu bilgi genellikle yazıcınızın "
"üreticisinden edinilebilir. Varsayılan ayar (99999, 99999) şeklindedir; bu, "
"herhangi bir sınırın olmadığı anlamına gelir, dolayısıyla yatağın tamamında "
"problamaya izin verilir."
msgid "Probe point distance"
msgstr "Prob noktası mesafesi"
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
"Bu seçenek, X ve Y yönleri için prob noktaları arasındaki tercih edilen "
"mesafeyi (ızgara boyutu) ayarlar; varsayılan değer hem X hem de Y için 50 mm'dir."
msgid "Mesh margin"
msgstr "Yatak ağı boşluğu"
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
"Bu seçenek, uyarlanabilir yatak ağ alanının XY yönlerinde genişletilmesi "
"gereken ek mesafeyi belirler."
msgid "Extruder Color" msgid "Extruder Color"
msgstr "Ekstruder Rengi" msgstr "Ekstruder rengi"
msgid "Only used as a visual help on UI" msgid "Only used as a visual help on UI"
msgstr "Yalnızca kullanıcı arayüzünde görsel yardım olarak kullanılır" msgstr "Yalnızca kullanıcı arayüzünde görsel yardım olarak kullanılır"
@@ -9772,10 +9936,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "Büzüşme" msgstr "Büzüşme"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9995,7 +10159,7 @@ msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Dolgu yoğunluğu" msgstr "Dolgu yoğunluğu"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10693,8 +10857,8 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "Bu G kodu özel kod olarak kullanılacak" msgstr "Bu G kodu özel kod olarak kullanılacak"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "Akış telafisi'ni etkinleştir" msgstr "Küçük alan akış telafisi (beta)"
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
msgstr "Küçük dolgu alanları için akış telafisini etkinleştirin" msgstr "Küçük dolgu alanları için akış telafisini etkinleştirin"
@@ -10708,10 +10872,10 @@ msgid ""
"and flow correction factors, one per line, in the following format: " "and flow correction factors, one per line, in the following format: "
"\"1.234,5.678\"" "\"1.234,5.678\""
msgstr "" msgstr ""
"Akış Telafisi Modeli, küçük dolgu alanları için akışı ayarlamak için kullanılır. Model, " "Akış Telafisi Modeli, küçük dolgu alanları için akışı ayarlamak için "
"ekstrüzyon uzunluğu ve akış düzeltme faktörleri için virgülle ayrılmış değer çifti " "kullanılır. Model, ekstrüzyon uzunluğu ve akış düzeltme faktörleri için "
"olarak, her satıra bir tane olmak üzere aşağıdaki formatta ifade edilir: " "virgülle ayrılmış değer çifti olarak, her satıra bir tane olmak üzere "
"\"1.234,5.678\"" "aşağıdaki formatta ifade edilir: \"1.234,5.678\""
msgid "Maximum speed X" msgid "Maximum speed X"
msgstr "Maksimum hız X" msgstr "Maksimum hız X"
@@ -10948,13 +11112,13 @@ msgid "Min print speed"
msgstr "Minimum baskı hızı" msgstr "Minimum baskı hızı"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
"Daha iyi katman soğutması için yavaşlama etkinleştirildiğinde, yazdırma " "Daha iyi katman soğutması için yavaşlama etkinleştirildiğinde, yukarıdaki minimum "
"çıkıntıları olduğunda ve özellik hızlarııkça belirtilmediğinde filament " "katman süresini korumaya çalışmak için yazıcının yavaşlayacağı minimum "
"için minimum yazdırma hızı." "yazdırma hızı."
msgid "Nozzle diameter" msgid "Nozzle diameter"
msgstr "Nozul çapı" msgstr "Nozul çapı"
@@ -11388,6 +11552,9 @@ msgstr "En yakın"
msgid "Aligned" msgid "Aligned"
msgstr "Hizalı" msgstr "Hizalı"
msgid "Back"
msgstr "Arka"
msgid "Random" msgid "Random"
msgstr "Rastgele" msgstr "Rastgele"
@@ -11415,6 +11582,53 @@ msgstr ""
"Bu miktar milimetre cinsinden veya mevcut ekstruder çapının yüzdesi olarak " "Bu miktar milimetre cinsinden veya mevcut ekstruder çapının yüzdesi olarak "
"belirtilebilir. Bu parametrenin varsayılan değeri %10'dur." "belirtilebilir. Bu parametrenin varsayılan değeri %10'dur."
msgid "Scarf joint seam (beta)"
msgstr "Eşarp birleşim yeri dikişi (beta)"
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr "Dikiş görünürlüğünü en aza indirmek ve dikiş mukavemetini arttırmak "
"için eşarp eklemini kullanın."
msgid "Scarf start height"
msgstr "Eşarp başlangıç yüksekliği"
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
"Eşarpın yüksekliğini başlatın.\n"
"Bu miktar milimetre cinsinden veya geçerli katman yüksekliğinin yüzdesi "
"olarak belirtilebilir. Bu parametrenin varsayılan değeri 0'dır."
msgid "Scarf around entire wall"
msgstr "Tüm duvarın etrafında eşarp"
msgid "The scarf extends to the entire length of the wall."
msgstr "Eşarp duvarın tüm uzunluğu boyunca uzanır."
msgid "Scarf length"
msgstr "Eşarp uzunluğu"
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
"Eşarpın uzunluğu. Bu parametrenin 0 a ayarlanması "
"eşarpı etkili bir şekilde devre dışı bırakır."
msgid "Scarf steps"
msgstr "Eşarp adımları"
msgid "Minimum number of segments of each scarf."
msgstr "Her eşarpın minimum segment sayısı."
msgid "Scarf joint for inner walls"
msgstr "İç duvarlar için eşarp bağlantısı"
msgid "Use scarf joint for inner walls as well."
msgstr "İç duvarlar için de eşarp eklemi kullanın."
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "Otomatik temizleme hızı" msgstr "Otomatik temizleme hızı"
@@ -11627,8 +11841,8 @@ msgstr "Kalan filamenti Prime Tower'da boşalt"
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "Filament sıkıştırmayı etkinleştir" msgstr "Filament sıkıştırmayı etkinleştir"
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "Seyrek katman yok (DENEYSEL)" msgstr "Seyrek katman yok (beta)"
msgid "" msgid ""
"If enabled, the wipe tower will not be printed on layers with no " "If enabled, the wipe tower will not be printed on layers with no "
@@ -12369,7 +12583,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "Çokgen delik tespiti marjı" msgstr "Çokgen delik tespiti marjı"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -12663,15 +12877,16 @@ msgid ""
"G-code moves the extruder axis, it should write to this variable so " "G-code moves the extruder axis, it should write to this variable so "
"PrusaSlicer deretracts correctly when it gets control back." "PrusaSlicer deretracts correctly when it gets control back."
msgstr "" msgstr ""
"Özel G kodu bloğunun başlangıcındaki geri çekilme durumu. Özel G kodu ekstruder " "Özel G kodu bloğunun başlangıcındaki geri çekilme durumu. Özel G kodu "
"eksenini hareket ettirirse, Slicer'ın kontrolü geri aldığında doğru şekilde " "ekstruder eksenini hareket ettirirse, Slicer'ın kontrolü geri aldığında "
"geri çekme yapması için bu değişkene yazması gerekir." "doğru şekilde geri çekme yapması için bu değişkene yazması gerekir."
msgid "Extra deretraction" msgid "Extra deretraction"
msgstr "Ekstra deretraksiyon" msgstr "Ekstra deretraksiyon"
msgid "Currently planned extra extruder priming after deretraction." msgid "Currently planned extra extruder priming after deretraction."
msgstr "Şu anda, geri çekilmeden sonra ekstra ekstruder hazırlaması planlanıyor." msgstr ""
"Şu anda, geri çekilmeden sonra ekstra ekstruder hazırlaması planlanıyor."
msgid "Current extruder" msgid "Current extruder"
msgstr "Mevcut ekstruder" msgstr "Mevcut ekstruder"
@@ -12701,8 +12916,8 @@ msgid ""
"Zero-based index of the first extruder used in the print. Same as " "Zero-based index of the first extruder used in the print. Same as "
"initial_tool." "initial_tool."
msgstr "" msgstr ""
"Baskıda kullanılan ilk ekstruderin sıfır bazlı indeksi. " "Baskıda kullanılan ilk ekstruderin sıfır bazlı indeksi. başlangıç_aracı ile "
"başlangıç_aracı ile aynı." "aynı."
msgid "Initial tool" msgid "Initial tool"
msgstr "Başlangıç aracı" msgstr "Başlangıç aracı"
@@ -12711,20 +12926,24 @@ msgid ""
"Zero-based index of the first extruder used in the print. Same as " "Zero-based index of the first extruder used in the print. Same as "
"initial_extruder." "initial_extruder."
msgstr "" msgstr ""
"Baskıda kullanılan ilk ekstruderin sıfır bazlı indeksi. " "Baskıda kullanılan ilk ekstruderin sıfır bazlı indeksi. İlk ekstruder ile "
"İlk ekstruder ile aynı." "aynı."
msgid "Is extruder used?" msgid "Is extruder used?"
msgstr "Ekstruder kullanılıyor mu?" msgstr "Ekstruder kullanılıyor mu?"
msgid "Vector of bools stating whether a given extruder is used in the print." msgid "Vector of bools stating whether a given extruder is used in the print."
msgstr "Belirli bir ekstruderin baskıda kullanılıp kullanılmadığını belirten bool vektörü." msgstr ""
"Belirli bir ekstruderin baskıda kullanılıp kullanılmadığını belirten bool "
"vektörü."
msgid "Volume per extruder" msgid "Volume per extruder"
msgstr "Ekstruder başına hacim" msgstr "Ekstruder başına hacim"
msgid "Total filament volume extruded per extruder during the entire print." msgid "Total filament volume extruded per extruder during the entire print."
msgstr "Baskının tamamı boyunca ekstruder başına ekstrüzyona tabi tutulan toplam filament hacmi." msgstr ""
"Baskının tamamı boyunca ekstruder başına ekstrüzyona tabi tutulan toplam "
"filament hacmi."
msgid "Total toolchanges" msgid "Total toolchanges"
msgstr "Toplam takım değişiklikleri" msgstr "Toplam takım değişiklikleri"
@@ -12774,7 +12993,9 @@ msgid "Number of instances"
msgstr "Örnek sayısı" msgstr "Örnek sayısı"
msgid "Total number of object instances in the print, summed over all objects." msgid "Total number of object instances in the print, summed over all objects."
msgstr "Tüm nesneler üzerinden toplanan, yazdırmadaki nesne örneklerinin toplam sayısı." msgstr ""
"Tüm nesneler üzerinden toplanan, yazdırmadaki nesne örneklerinin toplam "
"sayısı."
msgid "Scale per object" msgid "Scale per object"
msgstr "Nesne başına ölçeklendirme" msgstr "Nesne başına ölçeklendirme"
@@ -12785,8 +13006,9 @@ msgid ""
"index 0).\n" "index 0).\n"
"Example: 'x:100% y:50% z:100'." "Example: 'x:100% y:50% z:100'."
msgstr "" msgstr ""
"Bireysel nesnelere hangi ölçeklendirmenin uygulandığına ilişkin bilgileri içeren bir dize " "Bireysel nesnelere hangi ölçeklendirmenin uygulandığına ilişkin bilgileri "
"içerir. Nesnelerin indekslenmesi sıfır tabanlıdır (ilk nesnenin indeksi 0'dır).\n" "içeren bir dize içerir. Nesnelerin indekslenmesi sıfır tabanlıdır (ilk "
"nesnenin indeksi 0'dır).\n"
"Örnek: 'x:100% y:50% z:100'." "Örnek: 'x:100% y:50% z:100'."
msgid "Input filename without extension" msgid "Input filename without extension"
@@ -12798,14 +13020,15 @@ msgstr "İlk nesnenin kaynak dosya adı, uzantısız."
msgid "" msgid ""
"The vector has two elements: x and y coordinate of the point. Values in mm." "The vector has two elements: x and y coordinate of the point. Values in mm."
msgstr "" msgstr ""
"Vektörün iki öğesi vardır: noktanın x ve y koordinatı. Değerler mm cinsindendir." "Vektörün iki öğesi vardır: noktanın x ve y koordinatı. Değerler mm "
"cinsindendir."
msgid "" msgid ""
"The vector has two elements: x and y dimension of the bounding box. Values " "The vector has two elements: x and y dimension of the bounding box. Values "
"in mm." "in mm."
msgstr "" msgstr ""
"Vektörün iki öğesi vardır: sınırlayıcı kutunun x ve y boyutu. " "Vektörün iki öğesi vardır: sınırlayıcı kutunun x ve y boyutu. Değerler mm "
"Değerler mm cinsindendir." "cinsindendir."
msgid "First layer convex hull" msgid "First layer convex hull"
msgstr "İlk katman dışbükey gövde" msgstr "İlk katman dışbükey gövde"
@@ -12814,8 +13037,8 @@ msgid ""
"Vector of points of the first layer convex hull. Each element has the " "Vector of points of the first layer convex hull. Each element has the "
"following format:'[x, y]' (x and y are floating-point numbers in mm)." "following format:'[x, y]' (x and y are floating-point numbers in mm)."
msgstr "" msgstr ""
"Birinci katmanın dışbükey gövdesinin noktalarının vektörü. Her öğe şu formata " "Birinci katmanın dışbükey gövdesinin noktalarının vektörü. Her öğe şu "
"sahiptir:'[x, y]' (x ve y, mm cinsinden kayan noktalı sayılardır)." "formata sahiptir:'[x, y]' (x ve y, mm cinsinden kayan noktalı sayılardır)."
msgid "Bottom-left corner of first layer bounding box" msgid "Bottom-left corner of first layer bounding box"
msgstr "İlk katman sınırlayıcı kutusunun sol alt köşesi" msgstr "İlk katman sınırlayıcı kutusunun sol alt köşesi"
@@ -12891,8 +13114,8 @@ msgid ""
"Height of the current layer above the print bed, measured to the top of the " "Height of the current layer above the print bed, measured to the top of the "
"layer." "layer."
msgstr "" msgstr ""
"Geçerli katmanın baskı yatağı üzerindeki yüksekliği, katmanın tepesine " "Geçerli katmanın baskı yatağı üzerindeki yüksekliği, katmanın tepesine kadar "
"kadar ölçülür." "ölçülür."
msgid "Maximal layer z" msgid "Maximal layer z"
msgstr "Maksimum katman z" msgstr "Maksimum katman z"
@@ -13974,8 +14197,8 @@ msgid ""
"\". \n" "\". \n"
"To add preset for more printers, Please go to printer selection" "To add preset for more printers, Please go to printer selection"
msgstr "" msgstr ""
"Ön ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri @printer" "Ön ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri "
"\". \n" "@printer\". \n"
"Daha fazla yazıcıya yönelik ön ayar eklemek için lütfen yazıcı seçimine gidin" "Daha fazla yazıcıya yönelik ön ayar eklemek için lütfen yazıcı seçimine gidin"
msgid "Create Printer/Nozzle" msgid "Create Printer/Nozzle"
@@ -14607,8 +14830,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
"Hava filtreleme/Egzoz Fanı\n" "Hava filtreleme/Egzoz Fanı\n"
"OrcaSlicer'ın Hava filtreleme/Egzoz Fanını destekleyebileceğini biliyor " "OrcaSlicer'ın Hava filtreleme/Egzoz Fanını destekleyebileceğini biliyor "
@@ -14945,6 +15168,46 @@ msgstr ""
"sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını " "sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını "
"azaltabileceğini biliyor muydunuz?" "azaltabileceğini biliyor muydunuz?"
#~ msgid " "
#~ msgstr " "
#~ msgid "Text-Rotate"
#~ msgstr "Metin Döndürme"
#~ msgid "SVG-Rotate"
#~ msgstr "SVG-Döndürme"
#~ msgid "Resize"
#~ msgstr "Boyutlandır"
#~ msgid "Small Area Infill Flow Compensation (beta)"
#~ msgstr "Küçük Alan Dolgusu Akış Telafisi (deneysel)"
#~ msgid "Configuration package updated to "
#~ msgstr "Yapılandırma paketi şu şekilde güncellendi: "
#~ msgid ""
#~ "Improve shell precision by adjusting outer wall spacing. This also "
#~ "improves layer consistency."
#~ msgstr ""
#~ "Dış duvar aralığını ayarlayarak kabuk hassasiyetini artırın. Bu aynı "
#~ "zamanda katman tutarlılığını da artırır."
#~ msgid "Enable Flow Compensation"
#~ msgstr "Akış telafisi'ni etkinleştir"
#~ msgid ""
#~ "The minimum printing speed for the filament when slow down for better "
#~ "layer cooling is enabled, when printing overhangs and when feature speeds "
#~ "are not specified explicitly."
#~ msgstr ""
#~ "Daha iyi katman soğutması için yavaşlama etkinleştirildiğinde, yazdırma "
#~ "çıkıntıları olduğunda ve özellik hızlarııkça belirtilmediğinde "
#~ "filament için minimum yazdırma hızı."
#~ msgid "No sparse layers (EXPERIMENTAL)"
#~ msgstr "Seyrek katman yok (DENEYSEL)"
#~ msgid "" #~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" #~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n" #~ "\". \n"

View File

@@ -7,7 +7,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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\n"
"PO-Revision-Date: 2023-08-10 20:25-0400\n" "PO-Revision-Date: 2023-08-10 20:25-0400\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -668,6 +668,14 @@ msgstr "Повернути текст"
msgid "Text shape" msgid "Text shape"
msgstr "Форма тексту" msgstr "Форма тексту"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "" msgstr ""
@@ -686,9 +694,6 @@ msgstr ""
msgid "Emboss" msgid "Emboss"
msgstr "" msgstr ""
msgid "Text-Rotate"
msgstr ""
msgid "NORMAL" msgid "NORMAL"
msgstr "" msgstr ""
@@ -1058,6 +1063,14 @@ msgstr ""
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "" msgstr ""
@@ -1070,10 +1083,6 @@ msgstr ""
msgid "SVG" msgid "SVG"
msgstr "" msgstr ""
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr ""
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "" msgstr ""
@@ -1187,9 +1196,6 @@ msgstr ""
msgid "Reset scale" msgid "Reset scale"
msgstr "" msgstr ""
msgid "Resize"
msgstr ""
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "" msgstr ""
@@ -1679,6 +1685,17 @@ msgstr "Voron Куб"
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "" msgstr ""
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "" msgstr ""
@@ -2171,9 +2188,6 @@ msgstr "копіювання кількох осередків не підтри
msgid "Outside" msgid "Outside"
msgstr "Зовнішній" msgstr "Зовнішній"
msgid " "
msgstr ""
msgid "Layer height" msgid "Layer height"
msgstr "Висота шару" msgstr "Висота шару"
@@ -4349,6 +4363,12 @@ msgstr ""
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "" msgstr ""
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "" msgstr ""
@@ -6817,6 +6837,15 @@ msgstr ""
"0 відстань між вершинами z, 0 відстань між підтримкою, концентричний малюнок " "0 відстань між вершинами z, 0 відстань між підтримкою, концентричний малюнок "
"та відключення висота незалежного опорного шару" "та відключення висота незалежного опорного шару"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6862,9 +6891,6 @@ msgstr "Генерація периметрів"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "" msgstr ""
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "" msgstr ""
@@ -7110,6 +7136,9 @@ msgstr "Час розгону вентилятора"
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "Очищення екструдера" msgstr "Очищення екструдера"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "Аксесуари" msgstr "Аксесуари"
@@ -7391,9 +7420,6 @@ msgstr "Обкладинка"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "Ім'я %1% вже існує." msgstr "Ім'я %1% вже існує."
msgid "Back"
msgstr "Ззаду"
msgid "Basic Info" msgid "Basic Info"
msgstr "Основна інформація" msgstr "Основна інформація"
@@ -7988,8 +8014,11 @@ msgstr "Копіювання %1% у %2% не вдалося: %3%"
msgid "Need to check the unsaved changes before configuration updates." msgid "Need to check the unsaved changes before configuration updates."
msgstr "Необхідність перевірки незбережених змін перед оновленнямконфігурації." msgstr "Необхідність перевірки незбережених змін перед оновленнямконфігурації."
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "Пакет конфігурації оновлено до " msgstr ""
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "Відкрийте файл G-коду:" msgstr "Відкрийте файл G-коду:"
@@ -8370,6 +8399,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "Плита %d: %s не підтримує філамент %s" msgstr "Плита %d: %s не підтримує філамент %s"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "Створення спідниці та кайми" msgstr "Створення спідниці та кайми"
@@ -8784,15 +8817,15 @@ msgstr ""
"Цей фактор впливає на кількість матеріалу для заповнення нижнього " "Цей фактор впливає на кількість матеріалу для заповнення нижнього "
"твердоготіла" "твердоготіла"
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "Точні периметри (експериментальна)" msgstr "Точні периметри"
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
"Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr "" msgstr ""
"Підвищення точності оболонки за рахунок регулювання відстані між "
"зовнішнімипериметрами. Це також покращує узгодженість шарів."
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
msgstr "Тільки один периметр на верхніх поверхнях" msgstr "Тільки один периметр на верхніх поверхнях"
@@ -8807,7 +8840,7 @@ msgstr ""
msgid "One wall threshold" msgid "One wall threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -8870,13 +8903,30 @@ msgid ""
"directions on odd layers irrespective of their overhang degree." "directions on odd layers irrespective of their overhang degree."
msgstr "" msgstr ""
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "" msgstr ""
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -9056,11 +9106,11 @@ msgid "Fan speed"
msgstr "Швидкість вентилятора" msgstr "Швидкість вентилятора"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "" msgstr ""
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "" msgstr ""
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -9105,7 +9155,7 @@ msgid ""
"using large nozzles." "using large nozzles."
msgstr "" msgstr ""
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9185,7 +9235,7 @@ msgstr ""
"Додавання заповнення твердого тіла поблизу похилих поверхонь для Гарантії " "Додавання заповнення твердого тіла поблизу похилих поверхонь для Гарантії "
"товщини вертикальної оболонки (верхній + нижній шари твердого тіла)" "товщини вертикальної оболонки (верхній + нижній шари твердого тіла)"
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9329,6 +9379,26 @@ msgid ""
"external surfaces of the part." "external surfaces of the part."
msgstr "" msgstr ""
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "Висота до сопла" msgstr "Висота до сопла"
@@ -9356,6 +9426,50 @@ msgstr ""
"Радіус вільного простору навколо екструдера. Використовується для уникнення " "Радіус вільного простору навколо екструдера. Використовується для уникнення "
"зіткнення під час друку за об’єктами." "зіткнення під час друку за об’єктами."
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "Колір екструдера" msgstr "Колір екструдера"
@@ -9485,10 +9599,10 @@ msgstr ""
msgid "Shrinkage" msgid "Shrinkage"
msgstr "Усадка" msgstr "Усадка"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9675,7 +9789,7 @@ msgstr ""
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "Щільність заповнення" msgstr "Щільність заповнення"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10359,7 +10473,7 @@ msgstr ""
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "Цей G-код буде використовуватися як код користувача" msgstr "Цей G-код буде використовуватися як код користувача"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -10569,9 +10683,9 @@ msgid "Min print speed"
msgstr "Мін. швидкість друку" msgstr "Мін. швидкість друку"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
msgid "Nozzle diameter" msgid "Nozzle diameter"
@@ -10965,6 +11079,9 @@ msgstr "Найближчий"
msgid "Aligned" msgid "Aligned"
msgstr "Вирівняний" msgstr "Вирівняний"
msgid "Back"
msgstr "Ззаду"
msgid "Random" msgid "Random"
msgstr "Випадковий" msgstr "Випадковий"
@@ -10991,6 +11108,47 @@ msgstr ""
"поточногодіаметр екструдера. Стандартне значення для цього параметра " "поточногодіаметр екструдера. Стандартне значення для цього параметра "
"становить 10%." "становить 10%."
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "Базова швидкість очищення ролей" msgstr "Базова швидкість очищення ролей"
@@ -11184,7 +11342,7 @@ msgstr ""
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "" msgstr ""
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -11846,7 +12004,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "" msgstr ""
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -13832,8 +13990,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
#: resources/data/hints.ini: [hint:G-code window] #: resources/data/hints.ini: [hint:G-code window]
@@ -14127,6 +14285,16 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#~ msgid "Configuration package updated to "
#~ msgstr "Пакет конфігурації оновлено до "
#~ msgid ""
#~ "Improve shell precision by adjusting outer wall spacing. This also "
#~ "improves layer consistency."
#~ msgstr ""
#~ "Підвищення точності оболонки за рахунок регулювання відстані між "
#~ "зовнішнімипериметрами. Це також покращує узгодженість шарів."
#~ msgid "The Config can not be loaded." #~ msgid "The Config can not be loaded."
#~ msgstr "Конфіг не завантажується." #~ msgstr "Конфіг не завантажується."

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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\n"
"PO-Revision-Date: 2023-04-01 13:21+0800\n" "PO-Revision-Date: 2023-04-01 13:21+0800\n"
"Last-Translator: SoftFever <softfeverever@gmail.com>\n" "Last-Translator: SoftFever <softfeverever@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -658,6 +658,14 @@ msgstr "旋转文字"
msgid "Text shape" msgid "Text shape"
msgstr "文本形状" msgstr "文本形状"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "" msgstr ""
@@ -676,9 +684,6 @@ msgstr ""
msgid "Emboss" msgid "Emboss"
msgstr "浮雕" msgstr "浮雕"
msgid "Text-Rotate"
msgstr "旋转文字"
msgid "NORMAL" msgid "NORMAL"
msgstr "常规" msgstr "常规"
@@ -1048,6 +1053,14 @@ msgstr "保持向上"
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "" msgstr ""
@@ -1060,10 +1073,6 @@ msgstr ""
msgid "SVG" msgid "SVG"
msgstr "" msgstr ""
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr ""
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "" msgstr ""
@@ -1177,9 +1186,6 @@ msgstr ""
msgid "Reset scale" msgid "Reset scale"
msgstr "" msgstr ""
msgid "Resize"
msgstr ""
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "" msgstr ""
@@ -1662,6 +1668,17 @@ msgstr "Voron方块"
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "斯坦福兔子" msgstr "斯坦福兔子"
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "" msgstr ""
@@ -2127,9 +2144,6 @@ msgstr "不支持多个单元格的复制"
msgid "Outside" msgid "Outside"
msgstr "盘外" msgstr "盘外"
msgid " "
msgstr " "
msgid "Layer height" msgid "Layer height"
msgstr "层高" msgstr "层高"
@@ -4228,6 +4242,12 @@ msgstr ""
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "" msgstr ""
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "" msgstr ""
@@ -6620,6 +6640,15 @@ msgstr ""
"当使用支持界面的支持材料时,我们推荐以下设置:\n" "当使用支持界面的支持材料时,我们推荐以下设置:\n"
"0顶层z距离0接触层间距同心图案并且禁用独立支撑层高" "0顶层z距离0接触层间距同心图案并且禁用独立支撑层高"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6664,9 +6693,6 @@ msgstr "墙生成器"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "墙壁和表面" msgstr "墙壁和表面"
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "搭桥" msgstr "搭桥"
@@ -6893,6 +6919,9 @@ msgstr "风扇响应时间"
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "挤出机避让空间" msgstr "挤出机避让空间"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "配件" msgstr "配件"
@@ -7160,9 +7189,6 @@ msgstr "封面"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "名字\"%1%\"已经存在。" msgstr "名字\"%1%\"已经存在。"
msgid "Back"
msgstr "背面"
msgid "Basic Info" msgid "Basic Info"
msgstr "基本信息" msgstr "基本信息"
@@ -7759,8 +7785,11 @@ msgstr "从%1%拷贝文件到%2%失败:%3%"
msgid "Need to check the unsaved changes before configuration updates." msgid "Need to check the unsaved changes before configuration updates."
msgstr "需要在配置更新之前检查没有保存的参数修改。" msgstr "需要在配置更新之前检查没有保存的参数修改。"
msgid "Configuration package updated to " msgid "Configuration package: "
msgstr "配置包已更新到" msgstr ""
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "打开G-code文件" msgstr "打开G-code文件"
@@ -8116,6 +8145,10 @@ msgstr ""
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "盘 %d: %s 不支持耗材丝 %s" msgstr "盘 %d: %s 不支持耗材丝 %s"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "正在生成skirt和brim" msgstr "正在生成skirt和brim"
@@ -8480,13 +8513,15 @@ msgstr "底部表面流量比例"
msgid "This factor affects the amount of material for bottom solid infill" msgid "This factor affects the amount of material for bottom solid infill"
msgstr "首层流量调整系数默认为1.0" msgstr "首层流量调整系数默认为1.0"
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "精准外墙尺寸(试验)" msgstr "精准外墙尺寸"
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
msgstr "优化外墙刀路以提高外墙精度。这个优化同时减少层纹" "Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr ""
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
msgstr "顶面单层墙" msgstr "顶面单层墙"
@@ -8499,7 +8534,7 @@ msgstr "顶面只使用单层墙,从而更多的空间能够使用顶部填充
msgid "One wall threshold" msgid "One wall threshold"
msgstr "单层墙阈值" msgstr "单层墙阈值"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -8577,13 +8612,30 @@ msgstr ""
"为了使这个设置最有效建议将反转阈值设置为0这样所有的内墙都会在奇数层交替打" "为了使这个设置最有效建议将反转阈值设置为0这样所有的内墙都会在奇数层交替打"
"印。" "印。"
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "反转阈值" msgstr "反转阈值"
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "悬垂反转阈值" msgstr "悬垂反转阈值"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -8763,11 +8815,11 @@ msgid "Fan speed"
msgstr "风扇速度" msgstr "风扇速度"
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "打印过程中排气风扇的速度。此速度将覆盖耗材丝自定义gcode中的速度" msgstr "打印过程中排气风扇的速度。此速度将覆盖耗材丝自定义gcode中的速度"
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "打印完成后排气风扇的速度" msgstr "打印完成后排气风扇的速度"
msgid "No cooling for the first" msgid "No cooling for the first"
@@ -8811,7 +8863,7 @@ msgstr ""
"如果启用,将使用厚内部桥接。通常建议打开此功能。但是,如果您使用大喷嘴,请考" "如果启用,将使用厚内部桥接。通常建议打开此功能。但是,如果您使用大喷嘴,请考"
"虑关闭它。" "虑关闭它。"
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -8888,7 +8940,7 @@ msgid ""
"thickness (top+bottom solid layers)" "thickness (top+bottom solid layers)"
msgstr "在斜面表面附近添加实心填充,以保证垂直外壳厚度(顶部+底部实心层)" msgstr "在斜面表面附近添加实心填充,以保证垂直外壳厚度(顶部+底部实心层)"
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9046,6 +9098,26 @@ msgstr ""
"会在附着在墙壁上的地方轻微地挤出打印的墙壁,导致外部表面质量更差。它还会导致" "会在附着在墙壁上的地方轻微地挤出打印的墙壁,导致外部表面质量更差。它还会导致"
"填充物透过零件的外部表面。" "填充物透过零件的外部表面。"
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "到横杆高度" msgstr "到横杆高度"
@@ -9067,6 +9139,50 @@ msgid ""
"printing." "printing."
msgstr "挤出机四周的避让半径。用于在逐件打印中避免碰撞。" msgstr "挤出机四周的避让半径。用于在逐件打印中避免碰撞。"
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "挤出机颜色" msgstr "挤出机颜色"
@@ -9178,10 +9294,10 @@ msgstr "耗材丝直径被用于计算G-code文件中的挤出量。因此很重
msgid "Shrinkage" msgid "Shrinkage"
msgstr "耗材收缩率" msgstr "耗材收缩率"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9377,7 +9493,7 @@ msgstr "稀疏填充图案的角度,决定走线的开始或整体方向。"
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "稀疏填充密度" msgstr "稀疏填充密度"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -9985,7 +10101,7 @@ msgstr "该G-code用于暂停打印。您可以在gcode预览中插入暂停G-co
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "该G-code是定制化指令" msgstr "该G-code是定制化指令"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -10210,9 +10326,9 @@ msgid "Min print speed"
msgstr "最小打印速度" msgstr "最小打印速度"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
msgid "Nozzle diameter" msgid "Nozzle diameter"
@@ -10596,6 +10712,9 @@ msgstr "最近"
msgid "Aligned" msgid "Aligned"
msgstr "对齐" msgstr "对齐"
msgid "Back"
msgstr "背面"
msgid "Random" msgid "Random"
msgstr "随机" msgstr "随机"
@@ -10617,6 +10736,47 @@ msgid ""
"current extruder diameter. The default value for this parameter is 10%." "current extruder diameter. The default value for this parameter is 10%."
msgstr "" msgstr ""
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "自动擦拭速度" msgstr "自动擦拭速度"
@@ -10801,8 +10961,8 @@ msgstr "冲刷剩余的耗材丝进入擦拭塔"
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "启用耗材尖端成型" msgstr "启用耗材尖端成型"
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "无稀疏层(实验)" msgstr ""
msgid "" msgid ""
"If enabled, the wipe tower will not be printed on layers with no " "If enabled, the wipe tower will not be printed on layers with no "
@@ -11451,7 +11611,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "多边型孔检测边缘" msgstr "多边型孔检测边缘"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -13510,8 +13670,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
#: resources/data/hints.ini: [hint:G-code window] #: resources/data/hints.ini: [hint:G-code window]
@@ -13799,6 +13959,23 @@ msgstr ""
"避免翘曲\n" "避免翘曲\n"
"您知道吗打印ABS这类易翘曲材料时适当提高热床温度可以降低翘曲的概率。" "您知道吗打印ABS这类易翘曲材料时适当提高热床温度可以降低翘曲的概率。"
#~ msgid " "
#~ msgstr " "
#~ msgid "Text-Rotate"
#~ msgstr "旋转文字"
#~ msgid "Configuration package updated to "
#~ msgstr "配置包已更新到"
#~ msgid ""
#~ "Improve shell precision by adjusting outer wall spacing. This also "
#~ "improves layer consistency."
#~ msgstr "优化外墙刀路以提高外墙精度。这个优化同时减少层纹"
#~ msgid "No sparse layers (EXPERIMENTAL)"
#~ msgstr "无稀疏层(实验)"
#~ msgid "" #~ msgid ""
#~ "We would rename the presets as \"Vendor Type Serial @printer you selected" #~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
#~ "\". \n" #~ "\". \n"

View File

@@ -6,7 +6,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: 2024-01-27 13:20+0800\n" "POT-Creation-Date: 2024-03-03 09:32+0800\n"
"PO-Revision-Date: 2023-11-06 14:37+0800\n" "PO-Revision-Date: 2023-11-06 14:37+0800\n"
"Last-Translator: ablegods <ablegods@gmail.com>\n" "Last-Translator: ablegods <ablegods@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
@@ -685,6 +685,14 @@ msgstr "旋轉文字"
msgid "Text shape" msgid "Text shape"
msgstr "新增文字" msgstr "新增文字"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
msgstr ""
msgid "Set Mirror" msgid "Set Mirror"
msgstr "" msgstr ""
@@ -703,9 +711,6 @@ msgstr ""
msgid "Emboss" msgid "Emboss"
msgstr "" msgstr ""
msgid "Text-Rotate"
msgstr ""
msgid "NORMAL" msgid "NORMAL"
msgstr "" msgstr ""
@@ -1075,6 +1080,14 @@ msgstr ""
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
msgid "SVG rotate"
msgstr ""
#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
msgid "SVG move"
msgstr ""
msgid "Enter SVG gizmo" msgid "Enter SVG gizmo"
msgstr "" msgstr ""
@@ -1087,10 +1100,6 @@ msgstr ""
msgid "SVG" msgid "SVG"
msgstr "" msgstr ""
#. TRN This is an item label in the undo-redo stack.
msgid "SVG-Rotate"
msgstr ""
#, boost-format #, boost-format
msgid "Opacity (%1%)" msgid "Opacity (%1%)"
msgstr "" msgstr ""
@@ -1204,9 +1213,6 @@ msgstr ""
msgid "Reset scale" msgid "Reset scale"
msgstr "" msgstr ""
msgid "Resize"
msgstr ""
msgid "Distance of the center of the SVG to the model surface." msgid "Distance of the center of the SVG to the model surface."
msgstr "" msgstr ""
@@ -1710,6 +1716,17 @@ msgstr "Voron 立方體"
msgid "Stanford Bunny" msgid "Stanford Bunny"
msgstr "" msgstr ""
msgid "Orca String Hell"
msgstr ""
msgid ""
"This model features text embossment on the top surface. For optimal results, "
"it is advisable to set the 'One Wall Threshold(min_width_top_surface)' to 0 "
"for the 'Only One Wall on Top Surfaces' to work best.\n"
"Yes - Change these settings automatically\n"
"No - Do not change these settings for me"
msgstr ""
msgid "Text" msgid "Text"
msgstr "" msgstr ""
@@ -2203,9 +2220,6 @@ msgstr "不支援多個單元格的複製"
msgid "Outside" msgid "Outside"
msgstr "列印板外" msgstr "列印板外"
msgid " "
msgstr ""
msgid "Layer height" msgid "Layer height"
msgstr "層高" msgstr "層高"
@@ -4421,6 +4435,12 @@ msgstr ""
msgid "Show g-code window in Previce scene" msgid "Show g-code window in Previce scene"
msgstr "" msgstr ""
msgid "Show 3D Navigator"
msgstr ""
msgid "Show 3D navigator in Prepare and Preview scene"
msgstr ""
msgid "Reset Window Layout" msgid "Reset Window Layout"
msgstr "" msgstr ""
@@ -6951,6 +6971,15 @@ msgstr ""
"當使用專用的支撐線材時,我們推薦以下設定:\n" "當使用專用的支撐線材時,我們推薦以下設定:\n"
"0 頂層z距離0 接觸層間距,同心圖案,並且禁用獨立支撐層高" "0 頂層z距離0 接觸層間距,同心圖案,並且禁用獨立支撐層高"
msgid ""
"Enabling this option will modify the model's shape. If your print requires "
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
msgid "Are you sure you want to enable this option?"
msgstr ""
msgid "" msgid ""
"Layer height is too small.\n" "Layer height is too small.\n"
"It will set to min_layer_height\n" "It will set to min_layer_height\n"
@@ -6995,9 +7024,6 @@ msgstr "牆產生器"
msgid "Walls and surfaces" msgid "Walls and surfaces"
msgstr "" msgstr ""
msgid "Small Area Infill Flow Compensation (experimental)"
msgstr ""
msgid "Bridging" msgid "Bridging"
msgstr "" msgstr ""
@@ -7251,6 +7277,9 @@ msgstr "風扇反應時間"
msgid "Extruder Clearance" msgid "Extruder Clearance"
msgstr "擠出機避讓空間" msgstr "擠出機避讓空間"
msgid "Adaptive bed mesh"
msgstr ""
msgid "Accessory" msgid "Accessory"
msgstr "配件" msgstr "配件"
@@ -7524,9 +7553,6 @@ msgstr "封面"
msgid "The name \"%1%\" already exists." msgid "The name \"%1%\" already exists."
msgstr "名字 \"%1%\" 已經存在。" msgstr "名字 \"%1%\" 已經存在。"
msgid "Back"
msgstr "背面"
msgid "Basic Info" msgid "Basic Info"
msgstr "基本資訊" msgstr "基本資訊"
@@ -8164,9 +8190,11 @@ msgstr "從 %1% 複製檔案到 %2% 失敗:%3%"
msgid "Need to check the unsaved changes before configuration updates." msgid "Need to check the unsaved changes before configuration updates."
msgstr "在設定更新之前需要檢查未儲存的設定變更。" msgstr "在設定更新之前需要檢查未儲存的設定變更。"
#, fuzzy msgid "Configuration package: "
msgid "Configuration package updated to " msgstr ""
msgstr "設定檔已更新到"
msgid " updated to "
msgstr ""
msgid "Open G-code file:" msgid "Open G-code file:"
msgstr "打開 G-code 檔案:" msgstr "打開 G-code 檔案:"
@@ -8530,6 +8558,10 @@ msgstr "在 layer_gcode 中發現 \"G92 E0\",它與絕對擠出機尋址不相
msgid "Plate %d: %s does not support filament %s" msgid "Plate %d: %s does not support filament %s"
msgstr "列印板 %d%s 不支援線材 %s" msgstr "列印板 %d%s 不支援線材 %s"
msgid ""
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
msgstr ""
#, fuzzy #, fuzzy
msgid "Generating skirt & brim" msgid "Generating skirt & brim"
msgstr "正在產生 skirt 和 brim裙邊" msgstr "正在產生 skirt 和 brim裙邊"
@@ -8933,14 +8965,15 @@ msgid "This factor affects the amount of material for bottom solid infill"
msgstr "首層流量調整係數,預設為 1.0" msgstr "首層流量調整係數,預設為 1.0"
#, fuzzy #, fuzzy
msgid "Precise wall(experimental)" msgid "Precise wall"
msgstr "精準外牆尺寸(試驗)" msgstr "精準外牆尺寸"
#, fuzzy
msgid "" msgid ""
"Improve shell precision by adjusting outer wall spacing. This also improves " "Improve shell precision by adjusting outer wall spacing. This also improves "
"layer consistency." "layer consistency.\n"
msgstr "最佳化外牆路徑以提高外牆精度。這個最佳化同時減少層紋" "Note: This setting will only take effect if the wall sequence is configured "
"to Inner-Outer"
msgstr ""
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
msgstr "頂面單層牆" msgstr "頂面單層牆"
@@ -8953,7 +8986,7 @@ msgstr "頂面只使用單層牆,從而更多的空間能夠使用頂部填充
msgid "One wall threshold" msgid "One wall threshold"
msgstr "單層牆臨界值" msgstr "單層牆臨界值"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"If a top surface has to be printed and it's partially covered by another " "If a top surface has to be printed and it's partially covered by another "
"layer, it won't be considered at a top layer where its width is below this " "layer, it won't be considered at a top layer where its width is below this "
@@ -9021,13 +9054,30 @@ msgid ""
"directions on odd layers irrespective of their overhang degree." "directions on odd layers irrespective of their overhang degree."
msgstr "" msgstr ""
msgid "Bridge counterbole holes"
msgstr ""
msgid ""
"This option creates bridges for counterbore holes, allowing them to be "
"printed without support. Available modes include:\n"
"1. None: No bridge is created.\n"
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
msgstr ""
msgid "Partially bridged"
msgstr ""
msgid "Sacrificial layer"
msgstr ""
msgid "Reverse threshold" msgid "Reverse threshold"
msgstr "反轉臨界值" msgstr "反轉臨界值"
msgid "Overhang reversal threshold" msgid "Overhang reversal threshold"
msgstr "懸空反轉臨界值" msgstr "懸空反轉臨界值"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Number of mm the overhang need to be for the reversal to be considered " "Number of mm the overhang need to be for the reversal to be considered "
"useful. Can be a % of the perimeter width.\n" "useful. Can be a % of the perimeter width.\n"
@@ -9234,11 +9284,11 @@ msgstr "風扇速度"
#, fuzzy #, fuzzy
msgid "" msgid ""
"Speed of exhuast fan during printing.This speed will overwrite the speed in " "Speed of exhaust fan during printing.This speed will overwrite the speed in "
"filament custom gcode" "filament custom gcode"
msgstr "列印過程中排風扇的速度。此速度將覆蓋線材自訂 G-code 中的速度" msgstr "列印過程中排風扇的速度。此速度將覆蓋線材自訂 G-code 中的速度"
msgid "Speed of exhuast fan after printing completes" msgid "Speed of exhaust fan after printing completes"
msgstr "列印完成後排風扇的轉速" msgstr "列印完成後排風扇的轉速"
#, fuzzy #, fuzzy
@@ -9283,7 +9333,7 @@ msgid ""
"using large nozzles." "using large nozzles."
msgstr "" msgstr ""
msgid "Don't filter out small internal bridges (experimental)" msgid "Don't filter out small internal bridges (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9364,7 +9414,7 @@ msgid ""
"thickness (top+bottom solid layers)" "thickness (top+bottom solid layers)"
msgstr "在斜面表面附近增加實心填充,以保證垂直外殼厚度(頂部+底部實心層)" msgstr "在斜面表面附近增加實心填充,以保證垂直外殼厚度(頂部+底部實心層)"
msgid "Further reduce solid infill on walls (experimental)" msgid "Further reduce solid infill on walls (beta)"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -9504,6 +9554,26 @@ msgid ""
"external surfaces of the part." "external surfaces of the part."
msgstr "" msgstr ""
msgid "Wall loop direction"
msgstr ""
msgid ""
"The direction which the wall loops are extruded when looking down from the "
"top.\n"
"\n"
"By default all walls are extruded in counter-clockwise, unless Reverse on "
"odd is enabled. Set this to any option other than Auto will force the wall "
"direction regardless of the Reverse on odd.\n"
"\n"
"This option will be disabled if sprial vase mode is enabled."
msgstr ""
msgid "Counter clockwise"
msgstr ""
msgid "Clockwise"
msgstr ""
msgid "Height to rod" msgid "Height to rod"
msgstr "到橫杆高度" msgstr "到橫杆高度"
@@ -9525,6 +9595,50 @@ msgid ""
"printing." "printing."
msgstr "擠出機四周的避讓半徑。用於在逐件列印中避免碰撞。" msgstr "擠出機四周的避讓半徑。用於在逐件列印中避免碰撞。"
msgid "Bed mesh min"
msgstr ""
msgid ""
"This option sets the min point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (-99999, -99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Bed mesh max"
msgstr ""
msgid ""
"This option sets the max point for the allowed bed mesh area. Due to the "
"probe's XY offset, most printers are unable to probe the entire bed. To "
"ensure the probe point does not go outside the bed area, the minimum and "
"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
"exceed these min/max points. This information can usually be obtained from "
"your printer manufacturer. The default setting is (99999, 99999), which "
"means there are no limits, thus allowing probing across the entire bed."
msgstr ""
msgid "Probe point distance"
msgstr ""
msgid ""
"This option sets the preferred distance between probe points (grid size) for "
"the X and Y directions, with the default being 50mm for both X and Y."
msgstr ""
msgid "Mesh margin"
msgstr ""
msgid ""
"This option determines the additional distance by which the adaptive bed "
"mesh area should be expanded in the XY directions."
msgstr ""
msgid "Extruder Color" msgid "Extruder Color"
msgstr "擠出機顏色" msgstr "擠出機顏色"
@@ -9644,10 +9758,10 @@ msgstr "線材直徑被用於計算 G-code 檔案中的擠出量。因此很重
msgid "Shrinkage" msgid "Shrinkage"
msgstr "耗材收縮率" msgstr "耗材收縮率"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Enter the shrinkage percentage that the filament will get after cooling " "Enter the shrinkage percentage that the filament will get after cooling (94% "
"(94% if you measure 94mm instead of 100mm). The part will be scaled in xy to " "if you measure 94mm instead of 100mm). The part will be scaled in xy to "
"compensate. Only the filament used for the perimeter is taken into account.\n" "compensate. Only the filament used for the perimeter is taken into account.\n"
"Be sure to allow enough space between objects, as this compensation is done " "Be sure to allow enough space between objects, as this compensation is done "
"after the checks." "after the checks."
@@ -9851,7 +9965,7 @@ msgstr "稀疏填充圖案的角度,決定走線的開始或整體方向。"
msgid "Sparse infill density" msgid "Sparse infill density"
msgstr "稀疏填充密度" msgstr "稀疏填充密度"
#, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Density of internal sparse infill, 100% turns all sparse infill into solid " "Density of internal sparse infill, 100% turns all sparse infill into solid "
"infill and internal solid infill pattern will be used" "infill and internal solid infill pattern will be used"
@@ -10500,7 +10614,7 @@ msgstr "該 G-code 用於暫停列印。您可以在 gcode 預覽中插入暫停
msgid "This G-code will be used as a custom code" msgid "This G-code will be used as a custom code"
msgstr "該 G-code 是訂製化指令" msgstr "該 G-code 是訂製化指令"
msgid "Enable Flow Compensation" msgid "Small area flow compensation (beta)"
msgstr "" msgstr ""
msgid "Enable flow compensation for small infill areas" msgid "Enable flow compensation for small infill areas"
@@ -10730,12 +10844,10 @@ msgid "Min print speed"
msgstr "最小列印速度" msgstr "最小列印速度"
msgid "" msgid ""
"The minimum printing speed for the filament when slow down for better layer " "The minimum printing speed that the printer will slow down to to attempt to "
"cooling is enabled, when printing overhangs and when feature speeds are not " "maintain the minimum layer time above, when slow down for better layer "
"specified explicitly." "cooling is enabled."
msgstr "" msgstr ""
"線材最小列印速度。當啟用減速以實現更好的層冷卻、列印懸空以及未明確指定特徵速"
"度時"
msgid "Nozzle diameter" msgid "Nozzle diameter"
msgstr "噴嘴直徑" msgstr "噴嘴直徑"
@@ -11121,6 +11233,9 @@ msgstr "最近"
msgid "Aligned" msgid "Aligned"
msgstr "對齊" msgstr "對齊"
msgid "Back"
msgstr "背面"
msgid "Random" msgid "Random"
msgstr "隨機" msgstr "隨機"
@@ -11142,6 +11257,47 @@ msgid ""
"current extruder diameter. The default value for this parameter is 10%." "current extruder diameter. The default value for this parameter is 10%."
msgstr "" msgstr ""
msgid "Scarf joint seam (beta)"
msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
msgid "Scarf start height"
msgstr ""
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
msgid "Scarf around entire wall"
msgstr ""
msgid "The scarf extends to the entire length of the wall."
msgstr ""
msgid "Scarf length"
msgstr ""
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
msgid "Scarf steps"
msgstr ""
msgid "Minimum number of segments of each scarf."
msgstr ""
msgid "Scarf joint for inner walls"
msgstr ""
msgid "Use scarf joint for inner walls as well."
msgstr ""
msgid "Role base wipe speed" msgid "Role base wipe speed"
msgstr "自動擦拭速度" msgstr "自動擦拭速度"
@@ -11319,8 +11475,8 @@ msgstr "沖刷剩餘的線材進入擦拭塔"
msgid "Enable filament ramming" msgid "Enable filament ramming"
msgstr "啟用線材尖端成型" msgstr "啟用線材尖端成型"
msgid "No sparse layers (EXPERIMENTAL)" msgid "No sparse layers (beta)"
msgstr "無稀疏層(实验性功能)" msgstr ""
msgid "" msgid ""
"If enabled, the wipe tower will not be printed on layers with no " "If enabled, the wipe tower will not be printed on layers with no "
@@ -11997,7 +12153,7 @@ msgstr ""
msgid "Polyhole detection margin" msgid "Polyhole detection margin"
msgstr "偵測多邊形孔邊緣" msgstr "偵測多邊形孔邊緣"
#, fuzzy, c-format, boost-format #, no-c-format, no-boost-format
msgid "" msgid ""
"Maximum defection of a point to the estimated radius of the circle.\n" "Maximum defection of a point to the estimated radius of the circle.\n"
"As cylinders are often exported as triangles of varying size, points may not " "As cylinders are often exported as triangles of varying size, points may not "
@@ -14086,8 +14242,8 @@ msgstr ""
#: resources/data/hints.ini: [hint:Air filtration] #: resources/data/hints.ini: [hint:Air filtration]
msgid "" msgid ""
"Air filtration/Exhuast Fan\n" "Air filtration/Exhaust Fan\n"
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
msgstr "" msgstr ""
#: resources/data/hints.ini: [hint:G-code window] #: resources/data/hints.ini: [hint:G-code window]
@@ -14380,6 +14536,27 @@ msgid ""
"probability of warping." "probability of warping."
msgstr "" msgstr ""
#, fuzzy
#~ msgid "Configuration package updated to "
#~ msgstr "設定檔已更新到"
#, fuzzy
#~ msgid ""
#~ "Improve shell precision by adjusting outer wall spacing. This also "
#~ "improves layer consistency."
#~ msgstr "最佳化外牆路徑以提高外牆精度。這個最佳化同時減少層紋"
#~ msgid ""
#~ "The minimum printing speed for the filament when slow down for better "
#~ "layer cooling is enabled, when printing overhangs and when feature speeds "
#~ "are not specified explicitly."
#~ msgstr ""
#~ "線材最小列印速度。當啟用減速以實現更好的層冷卻、列印懸空以及未明確指定特徵"
#~ "速度時"
#~ msgid "No sparse layers (EXPERIMENTAL)"
#~ msgstr "無稀疏層(实验性功能)"
#, fuzzy #, fuzzy
#~ msgid "The Config can not be loaded." #~ msgid "The Config can not be loaded."
#~ msgstr "設定檔無法載入。" #~ msgstr "設定檔無法載入。"

File diff suppressed because it is too large Load Diff

View File

@@ -82,7 +82,7 @@ text = Auxiliary fan\nDid you know that OrcaSlicer supports Auxiliary part cooli
documentation_link = https://github.com/SoftFever/OrcaSlicer/wiki/Auxiliary-fan documentation_link = https://github.com/SoftFever/OrcaSlicer/wiki/Auxiliary-fan
[hint:Air filtration] [hint:Air filtration]
text = Air filtration/Exhuast Fan\nDid you know that OrcaSlicer can support Air filtration/Exhuast Fan? text = Air filtration/Exhaust Fan\nDid you know that OrcaSlicer can support Air filtration/Exhaust Fan?
documentation_link = https://github.com/SoftFever/OrcaSlicer/wiki/air-filtration documentation_link = https://github.com/SoftFever/OrcaSlicer/wiki/air-filtration
[hint:G-code window] [hint:G-code window]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 287 B

After

Width:  |  Height:  |  Size: 151 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 289 B

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 276 B

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 178 KiB

After

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 KiB

After

Width:  |  Height:  |  Size: 139 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 198 KiB

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 KiB

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 KiB

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 KiB

After

Width:  |  Height:  |  Size: 161 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 754 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 474 KiB

After

Width:  |  Height:  |  Size: 392 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 230 KiB

After

Width:  |  Height:  |  Size: 208 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 261 KiB

After

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 254 KiB

After

Width:  |  Height:  |  Size: 232 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 807 KiB

After

Width:  |  Height:  |  Size: 669 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 920 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

After

Width:  |  Height:  |  Size: 881 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 344 KiB

After

Width:  |  Height:  |  Size: 276 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 480 KiB

After

Width:  |  Height:  |  Size: 413 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 260 KiB

After

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 258 KiB

After

Width:  |  Height:  |  Size: 237 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 497 KiB

After

Width:  |  Height:  |  Size: 438 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 224 KiB

After

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 221 KiB

After

Width:  |  Height:  |  Size: 209 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 841 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 224 KiB

After

Width:  |  Height:  |  Size: 171 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.6 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 400 B

After

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 379 B

After

Width:  |  Height:  |  Size: 216 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 582 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 751 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 441 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 923 B

After

Width:  |  Height:  |  Size: 328 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 194 KiB

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 536 KiB

After

Width:  |  Height:  |  Size: 342 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 422 B

After

Width:  |  Height:  |  Size: 109 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 423 B

After

Width:  |  Height:  |  Size: 96 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 199 B

After

Width:  |  Height:  |  Size: 124 B

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