Merge branch 'main' into arm
@@ -1,4 +1,4 @@
|
||||
FROM docker.io/ubuntu:22.04
|
||||
FROM docker.io/ubuntu:24.04
|
||||
LABEL maintainer "DeftDawg <DeftDawg@gmail.com>"
|
||||
|
||||
# Disable interactive package configuration
|
||||
|
||||
10
README.md
@@ -1,5 +1,5 @@
|
||||
|
||||
<h1> <p "font-size:200px;"><img align="left" src="https://github.com/KDW06/OrcaSlicer/blob/main/resources/images/OrcaSlicer.ico" width="100"> Orca Slicer</p> </h1>
|
||||
<h1> <p "font-size:200px;"><img align="left" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/OrcaSlicer.ico" width="100"> Orca Slicer</p> </h1>
|
||||
|
||||
[](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_all.yml)
|
||||
<br>Orca Slicer is an open source slicer for FDM printers.
|
||||
@@ -10,12 +10,16 @@ Join our Discord community here:<br>
|
||||
|
||||
<h3>🚨🚨🚨Important Security Alert🚨🚨🚨</h3>
|
||||
|
||||
Please be aware that "**orcaslicer.net**" or "**orcaslicer.info**" are NOT an official website for OrcaSlicer and may be potentially malicious. This site appears to use AI-generated content, lacking genuine context, and seems to exist solely to profit from advertisements. Worse, it may redirect download links to harmful sources. For your safety, avoid downloading OrcaSlicer from this site as the links may be compromised.
|
||||
Please be aware that "**orcaslicer.net**", "**orcaslicer.co**" or "**orca-slicer.com**" are NOT an official website for OrcaSlicer and may be potentially malicious. These sites appear to use AI-generated content, lacking genuine context and seems to exist solely to profit from advertisements. Worse, it may redirect download links to harmful sources. For your safety, avoid downloading OrcaSlicer from this site as the links may be compromised.
|
||||
|
||||
If you see the above sites in your searches, report them as spam or unsafe to the search engine. This small action will assist everyone.
|
||||
|
||||
The only official platforms for OrcaSlicer are our GitHub project page and the <a href="https://discord.gg/P4VE9UY9gJ">official Discord channel</a> .
|
||||
|
||||
We deeply value our OrcaSlicer community and appreciate all the social groups that support us. However, it is crucial to address the risk posed by any group that falsely claims to be official or misleads its members. If you encounter such a group or are part of one, please assist by encouraging the group owner to add a clear disclaimer or by alerting its members.
|
||||
|
||||
|
||||
|
||||
Thank you for your vigilance and support in keeping our community safe!
|
||||
|
||||
# Main features
|
||||
@@ -129,7 +133,7 @@ resolution: 0.1
|
||||
```
|
||||
|
||||
# Supports
|
||||
**Orca Slicer** is an open-source project, and I'm deeply grateful to all my sponsors and backers.
|
||||
**Orca Slicer** is an open-source project and I'm deeply grateful to all my sponsors and backers.
|
||||
Their generous support enables me to purchase filaments and other essential 3D printing materials for the project.
|
||||
Thank you! :)
|
||||
|
||||
|
||||
15
cmake/modules/Findlibnoise.cmake
Normal file
@@ -0,0 +1,15 @@
|
||||
find_path(LIBNOISE_INCLUDE_DIR libnoise/noise.h)
|
||||
find_library(LIBNOISE_LIBRARY NAMES libnoise libnoise_static liblibnoise_static)
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(libnoise DEFAULT_MSG
|
||||
LIBNOISE_LIBRARY
|
||||
LIBNOISE_INCLUDE_DIR
|
||||
)
|
||||
|
||||
if(libnoise_FOUND)
|
||||
add_library(noise::noise STATIC IMPORTED)
|
||||
set_target_properties(noise::noise PROPERTIES
|
||||
IMPORTED_LOCATION "${LIBNOISE_LIBRARY}"
|
||||
INTERFACE_INCLUDE_DIRECTORIES "${LIBNOISE_INCLUDE_DIR}"
|
||||
)
|
||||
endif()
|
||||
2
deps/CMakeLists.txt
vendored
@@ -293,6 +293,7 @@ include(MPFR/MPFR.cmake)
|
||||
include(CGAL/CGAL.cmake)
|
||||
|
||||
include(NLopt/NLopt.cmake)
|
||||
include(libnoise/libnoise.cmake)
|
||||
|
||||
|
||||
# I *think* 1.1 is used for *just* md5 hashing?
|
||||
@@ -360,6 +361,7 @@ set(_dep_list
|
||||
${PNG_PKG}
|
||||
${ZLIB_PKG}
|
||||
${EXPAT_PKG}
|
||||
dep_libnoise
|
||||
)
|
||||
|
||||
if (MSVC)
|
||||
|
||||
4
deps/libnoise/libnoise.cmake
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
orcaslicer_add_cmake_project(libnoise
|
||||
URL https://github.com/SoftFever/Orca-deps-libnoise/archive/refs/tags/1.0.zip
|
||||
URL_HASH SHA256=96ffd6cc47898dd8147aab53d7d1b1911b507d9dbaecd5613ca2649468afd8b6
|
||||
)
|
||||
@@ -35,7 +35,8 @@ Steps
|
||||
|
||||
5. Update the flow ratio in the filament settings using the following equation: `FlowRatio_old*(100 + modifier)/100`. If your previous flow ratio was `0.98` and you selected the block with a flow rate modifier of `+5`, the new value should be calculated as follows: `0.98x(100+5)/100 = 1.029`.** Remember** to save the filament profile.
|
||||
6. Perform the `Pass 2` calibration. This process is similar to `Pass 1`, but a new project with ten blocks will be generated. The flow rate modifiers for this project will range from `-9 to 0`.
|
||||
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.
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
@@ -36,3 +36,4 @@ The guide below takes you through the key calibration tests in Orca - flow rate,
|
||||
- [How to build Orca Slicer](./How-to-build)
|
||||
- [Localization and translation guide](Localization_guide)
|
||||
- [Developer Reference](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/Home.md)
|
||||
- [How to create profiles](./How-to-create-profiles)
|
||||
180
doc/How-to-create-profiles.md
Normal file
@@ -0,0 +1,180 @@
|
||||
# Guide: Develop Profiles for OrcaSlicer
|
||||
|
||||
## Introduction
|
||||
This guide will help you develop profiles for OrcaSlicer.
|
||||
|
||||
## High-level Overview
|
||||
OrcaSlicer uses JSON files to store profiles. There are four types of profiles:
|
||||
1. Printer model (type `machine_model`). Example: `Orca 3D Fuse1.json`
|
||||
2. Printer variant (type `machine`). Example: `Orca 3D Fuse1 0.2 nozzle.json`
|
||||
3. Filament (type `filament`). Example: `Generic PLA @Orca 3D Fuse1@.json`
|
||||
4. Process (type `process`). Example: `0.10mm Standard @Orca 3D Fuse1 0.2.json`
|
||||
|
||||
Additionally, there is an overall meta file for each vendor (`Orca 3D.json`).
|
||||
|
||||
For easier understanding, let's consider a scenario with a printer manufacturer called `Orca 3D`. The manufacturer offers one printer model called `Fuse 1`, which supports 0.2/0.4/0.6/0.8mm nozzles and common market filaments.
|
||||
|
||||
In this case:
|
||||
- Vendor profile: `Orca 3D`
|
||||
- Printer profile: `Orca 3D Fuse1`
|
||||
- Printer variant profile: `Orca 3D Fuse1 0.4 nozzle`
|
||||
- Filament profile: `Generic PLA @Orca 3D Fuse1@`
|
||||
- Process profile: `0.20mm Standard @Orca 3D Fuse1 0.4`
|
||||
|
||||
The profile name should be same as the filename without the `.json` extension in principal.
|
||||
Naming conventions:
|
||||
1. Vendor profile: `vendor_name.json`
|
||||
2. Printer profile: `vendor_name` + `printer_name` + `.json`
|
||||
3. Printer variant profile: `vendor_name` + `printer_variant_name` + `.json` (where `printer_variant_name` typically includes `printer_name` + `nozzle_diameter`)
|
||||
4. Filament profile: `filament_vendor_name` + `filament_name` + " @" + `vendor_name` + `printer_name`/`printer_variant_name` + `.json`
|
||||
5. Process profile: `layer_height` + `preset_name` + " @" + `vendor_name` + `printer_name`/`printer_variant_name` + `.json` (`preset_name` typically includes "standard," "fine," "fast," "draft," etc.)
|
||||
|
||||
|
||||
A typical file structure for a vendor:
|
||||
```
|
||||
resources\profiles\
|
||||
- Orca 3D.json
|
||||
- Orca 3D\
|
||||
- machine\
|
||||
- Orca 3D Fuse1.json
|
||||
- Orca 3D Fuse1 0.2 nozzle.json
|
||||
- Orca 3D Fuse1 0.4 nozzle.json
|
||||
- process\
|
||||
- 0.10mm Standard @Orca 3D Fuse1 0.2.json
|
||||
- 0.20mm Standard @Orca 3D Fuse1 0.4.json
|
||||
- filament\
|
||||
- Generic PLA @Orca 3D Fuse1@.json
|
||||
```
|
||||
|
||||
|
||||
**NOTE 1**: Use short vendor names in filenames to avoid excessive length.
|
||||
**NOTE 2**: Filament profiles are **optional**. Create them only if the vendor has specifically tuned profiles for the given printer. See [Filament profiles](#filament-profiles) for details.
|
||||
|
||||
## Filament Profiles
|
||||
OrcaSlicer features a global filament library called `OrcaFilamentLibrary`, which is automatically available for all printers. It includes generic filaments like `Generic PLA @System` and `Generic ABS @System` etc.
|
||||
|
||||
Printer vendors can override specific filaments in the global library for certain printer models by creating new filament profiles.
|
||||
|
||||
Relationship diagram:
|
||||
```mermaid
|
||||
graph TD;
|
||||
OrcaFilamentLibrary-->Orca_3D_filament;
|
||||
OrcaFilamentLibrary-->Vendor_A_filament;
|
||||
OrcaFilamentLibrary-->Vendor_B_filament;
|
||||
```
|
||||
|
||||
**NOTE**: Create new filament profiles only if you have truly specifically tuned the filament for the given printer. Otherwise, use the global library. The global library has a better chance to receive optimizations and updates from OrcaSlicer contributors, which will benefit users of all printers.
|
||||
|
||||
### Adding Filament Profiles to the Global Library
|
||||
In this section, we will discuss how to add a new filament profile into the global library.
|
||||
If you want to add a new generic profile into the global library, you need to create a new file in the `resources\profiles\OrcaFilamentLibrary\filament` folder. If a base type already exists in the global library, you can use this file as a base profile by inheriting it.
|
||||
The following sample JSON file shows how to create a new generic filament profile `Generic PLA-GF @System` in the global library.
|
||||
|
||||
1. The first step is to create a new file in the `resources\profiles\OrcaFilamentLibrary\filament` folder. The file name should be `Generic PLA-GF @System.json`. Please note that we leave the `compatible_printers` field empty so that it is available for all printers.
|
||||
|
||||
```json
|
||||
{
|
||||
"type": "filament",
|
||||
"filament_id": "GFL99",
|
||||
"setting_id": "GFSA05",
|
||||
"name": "Generic PLA-GF @System",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"filament_type": ["PLA-GF"],
|
||||
"filament_flow_ratio": [
|
||||
"0.96"
|
||||
],
|
||||
"compatible_printers": []
|
||||
}
|
||||
```
|
||||
|
||||
2. Register the profile in `resources\profiles\OrcaFilamentLibrary.json`:
|
||||
|
||||
```json
|
||||
{
|
||||
"name": "OrcaFilamentLibrary",
|
||||
"version": "02.02.00.04",
|
||||
"force_update": "0",
|
||||
"description": "Orca Filament Library",
|
||||
"filament_list": [
|
||||
// ...
|
||||
{
|
||||
"name": "Generic PLA-GF @System",
|
||||
"sub_path": "filament/Generic PLA-GF @System.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
3. The last step is to validate the newly added filament profiles. You can run OrcaSlicer to verify if the filament you just added is available and usable. You can also use the [Orca profile validator](https://github.com/SoftFever/Orca_tools/releases/tag/1) tool to help debug any errors. **NOTE**: You need to delete the `%appdata%/OrcaSlicer/system` folder to force OrcaSlicer to reload your lastest changes.
|
||||
|
||||
The process is the same if you want to add a new brand filament profile into the global library. You need to create a new file in the `resources\profiles\OrcaFilamentLibrary\filament\brand_name` folder. The only difference is that you should put the file into the brand's own subfolder.`resources\profiles\OrcaFilamentLibrary\filament\brand_name`.
|
||||
|
||||
### Adding Filament Profiles to Printer Vendor Library
|
||||
In this section, we will discuss how to add a new filament profile for a certain vendor.
|
||||
If you want to add a new filament profile, whether it's a brand new profile or a specialized version of a global filament profile for a given printer, you need to create a new file in the `resources\profiles\vendor_name\filament` folder. If a base type already exists in the global library, you can use this file as a base profile by inheriting it.
|
||||
Below is a sample JSON file showing how to create a specialized `Generic ABS` filament profile for the ToolChanger printer.
|
||||
Please note that here we must leave the compatible_printers field non-empty, unlike in the global library.
|
||||
|
||||
```json
|
||||
{
|
||||
"type": "filament",
|
||||
"setting_id": "GFB99_MTC_0",
|
||||
"name": "Generic ABS @MyToolChanger",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "Generic ABS @System",
|
||||
"filament_cooling_final_speed": [
|
||||
"3.5"
|
||||
],
|
||||
"filament_cooling_initial_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_cooling_moves": [
|
||||
"2"
|
||||
],
|
||||
"filament_load_time": [
|
||||
"10.5"
|
||||
],
|
||||
"filament_loading_speed": [
|
||||
"10"
|
||||
],
|
||||
"filament_loading_speed_start": [
|
||||
"50"
|
||||
],
|
||||
"filament_multitool_ramming": [
|
||||
"1"
|
||||
],
|
||||
"filament_multitool_ramming_flow": [
|
||||
"40"
|
||||
],
|
||||
"filament_stamping_distance": [
|
||||
"45"
|
||||
],
|
||||
"filament_stamping_loading_speed": [
|
||||
"29"
|
||||
],
|
||||
"filament_unload_time": [
|
||||
"8.5"
|
||||
],
|
||||
"filament_unloading_speed": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"MyToolChanger 0.4 nozzle",
|
||||
"MyToolChanger 0.2 nozzle",
|
||||
"MyToolChanger 0.6 nozzle",
|
||||
"MyToolChanger 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
## Process Profiles
|
||||
WIP...
|
||||
|
||||
## Printer Profiles
|
||||
WIP...
|
||||
|
||||
## Printer Variant Profiles
|
||||
WIP...
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -2714,9 +2714,6 @@ msgstr ""
|
||||
msgid "About %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Orca Slicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
|
||||
msgstr ""
|
||||
|
||||
@@ -2764,9 +2761,6 @@ msgstr ""
|
||||
msgid "SN"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr ""
|
||||
|
||||
msgid "Factors of Flow Dynamics Calibration"
|
||||
msgstr ""
|
||||
|
||||
@@ -2779,6 +2773,9 @@ msgstr ""
|
||||
msgid "Factor N"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr ""
|
||||
|
||||
msgid "Setting Virtual slot information while printing is not supported"
|
||||
msgstr ""
|
||||
|
||||
@@ -2892,7 +2889,7 @@ msgstr ""
|
||||
msgid "Print with the filament mounted on the back of chassis"
|
||||
msgstr ""
|
||||
|
||||
msgid "Current Cabin humidity"
|
||||
msgid "Current AMS humidity"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -4814,7 +4811,7 @@ msgstr ""
|
||||
msgid "The printer has been logged out and cannot connect."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stopped."
|
||||
msgid "Video Stopped."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to start liveview)"
|
||||
@@ -4901,10 +4898,6 @@ msgstr ""
|
||||
msgid "No printers."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Connect failed [%d]!"
|
||||
msgstr ""
|
||||
|
||||
msgid "Loading file list..."
|
||||
msgstr ""
|
||||
|
||||
@@ -4914,15 +4907,14 @@ msgstr ""
|
||||
msgid "Load failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (Device connection not ready)!"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (Storage unavailable, insert SD card.)!"
|
||||
msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -4931,10 +4923,6 @@ msgstr ""
|
||||
msgid "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Initialize failed (%s)!"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "You are going to delete %u file from printer. Are you sure to continue?"
|
||||
msgid_plural ""
|
||||
@@ -5342,6 +5330,25 @@ msgstr ""
|
||||
msgid "Not for now"
|
||||
msgstr ""
|
||||
|
||||
msgid "Server Exception"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The server is unable to respond. Please click the link below to check the "
|
||||
"server status."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If the server is in a fault state, you can temporarily use offline printing "
|
||||
"or local network printing."
|
||||
msgstr ""
|
||||
|
||||
msgid "How to use LAN only mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't show this dialog again"
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Mouse disconnected."
|
||||
msgstr ""
|
||||
|
||||
@@ -6000,6 +6007,10 @@ msgstr ""
|
||||
msgid "Import geometry only"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can be changed later in preferences, under 'Load Behaviour'."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one G-code file can be opened at the same time."
|
||||
msgstr ""
|
||||
|
||||
@@ -6397,6 +6408,24 @@ msgstr ""
|
||||
msgid "Associate URLs to OrcaSlicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ask When Relevant"
|
||||
msgstr ""
|
||||
|
||||
msgid "Always Ask"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum recent projects"
|
||||
msgstr ""
|
||||
|
||||
@@ -6924,6 +6953,9 @@ msgstr ""
|
||||
msgid "Bind with Pin Code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bind with Access Code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Send to Printer SD card"
|
||||
msgstr ""
|
||||
|
||||
@@ -7167,6 +7199,75 @@ msgid ""
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line width"
|
||||
msgstr ""
|
||||
|
||||
@@ -7260,6 +7361,12 @@ msgstr ""
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr ""
|
||||
|
||||
@@ -8278,34 +8385,60 @@ msgstr ""
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Sending print file)"
|
||||
msgid "Connect the printer using IP and access code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
"Step 1. Please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 2, if the IP and Access Code below are different from the actual values "
|
||||
"Step 2. If the IP and Access Code below are different from the actual values "
|
||||
"on your printer, please correct them."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 3. Please obtain the device SN from the printer side; it is usually "
|
||||
"found in the device information on the printer screen."
|
||||
msgstr ""
|
||||
|
||||
msgid "IP"
|
||||
msgstr ""
|
||||
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Where to find your printer's IP and Access Code?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test"
|
||||
msgid "Manual Setup"
|
||||
msgstr ""
|
||||
|
||||
msgid "IP and Access Code Verified! You may close the window"
|
||||
msgid "connecting..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to connect to printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to publish login request."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer has already been bound."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer mode is incorrect, please switch to LAN Only."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting to printer... The dialog will close later"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection failed, please double check IP and Access Code"
|
||||
@@ -9135,35 +9268,44 @@ msgstr ""
|
||||
msgid "Nowhere"
|
||||
msgstr ""
|
||||
|
||||
msgid "Force cooling for overhang and bridge"
|
||||
msgid "Force cooling for overhangs and bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option to optimize part cooling fan speed for overhang and "
|
||||
"bridge to get better cooling"
|
||||
"Enable this option to allow adjustment of the part cooling fan speed for "
|
||||
"specifically for overhangs, internal and external bridges. Setting the fan "
|
||||
"speed specifically for these features can improve overall print quality and "
|
||||
"reduce warping."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fan speed for overhang"
|
||||
msgid "Overhangs and external bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
"wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
"bridge can get better quality for these part"
|
||||
"Use this part cooling fan speed when printing bridges or overhang walls with "
|
||||
"an overhang threshold that exceeds the value set in the 'Overhangs cooling "
|
||||
"threshold' parameter above. Increasing the cooling specifically for "
|
||||
"overhangs and bridges can improve the overall print quality of these "
|
||||
"features.\n"
|
||||
"\n"
|
||||
"Please note, this fan speed is clamped on the lower end by the minimum fan "
|
||||
"speed threshold set above. It is also adjusted upwards up to the maximum fan "
|
||||
"speed threshold when the minimum layer time threshold is not met."
|
||||
msgstr ""
|
||||
|
||||
msgid "Cooling overhang threshold"
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"Force cooling fan to be specific speed when overhang degree of printed part "
|
||||
"exceeds this value. Expressed as percentage which indicates how much width "
|
||||
"of the line without support from lower layer. 0% means forcing cooling for "
|
||||
"all outer wall no matter how much overhang degree"
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
"percentage, indicating the portion of each line's width that is unsupported "
|
||||
"by the layer beneath it. Setting this value to 0% forces the cooling fan to "
|
||||
"run for all outer walls, regardless of the overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge infill direction"
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9172,10 +9314,44 @@ msgid ""
|
||||
"external bridges. Use 180°for zero angle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge density"
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Density of external bridges. 100% means solid bridge. Default is 100%."
|
||||
msgid ""
|
||||
"Internal bridging angle override. If left to zero, the bridging angle will "
|
||||
"be calculated automatically. Otherwise the provided angle will be used for "
|
||||
"internal bridges. Use 180°for zero angle.\n"
|
||||
"\n"
|
||||
"It is recommended to leave it at 0 unless there is a specific model need not "
|
||||
"to."
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
"Lower density external bridges can help improve reliability as there is more "
|
||||
"space for air to circulate around the extruded bridge, improving its cooling "
|
||||
"speed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
" Lower density internal bridges can help reduce top surface pillowing and "
|
||||
"improve internal bridge reliability as there is more space for air to "
|
||||
"circulate around the extruded bridge, improving its cooling speed. \n"
|
||||
"\n"
|
||||
"This option works particularly well when combined with the second internal "
|
||||
"bridge over infill option, further improving internal bridging structure "
|
||||
"before solid infill is extruded."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge flow ratio"
|
||||
@@ -9228,9 +9404,7 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Improve shell precision by adjusting outer wall spacing. This also improves "
|
||||
"layer consistency.\n"
|
||||
"Note: This setting will only take effect if the wall sequence is configured "
|
||||
"to Inner-Outer"
|
||||
"layer consistency."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
@@ -9454,12 +9628,24 @@ msgstr ""
|
||||
msgid "Compatible machine condition"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active printer "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr ""
|
||||
|
||||
msgid "Compatible process profiles condition"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active print "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr ""
|
||||
|
||||
@@ -9544,7 +9730,7 @@ msgid ""
|
||||
"usually can be printing directly without support if not very long"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thick bridges"
|
||||
msgid "Thick external bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9562,36 +9748,86 @@ msgid ""
|
||||
"using large nozzles."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges (beta)"
|
||||
msgid "Extra bridge layers (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reducing pillowing on top surfaces in heavily slanted "
|
||||
"or curved models.\n"
|
||||
"This option enables the generation of an extra bridge layer over internal "
|
||||
"and/or external bridges.\n"
|
||||
"\n"
|
||||
"Extra bridge layers help improve bridge appearance and reliability, as the "
|
||||
"solid infill is better supported. This is especially useful in fast "
|
||||
"printers, where the bridge and solid infill speeds vary greatly. The extra "
|
||||
"bridge layer results in reduced pillowing on top surfaces, as well as "
|
||||
"reduced separation of the external bridge layer from its surrounding "
|
||||
"perimeters.\n"
|
||||
"\n"
|
||||
"It is generally recommended to set this to at least 'External bridge only', "
|
||||
"unless specific issues with the sliced model are found.\n"
|
||||
"\n"
|
||||
"Options:\n"
|
||||
"1. Disabled - does not generate second bridge layers. This is the default "
|
||||
"and is set for compatibility purposes.\n"
|
||||
"2. External bridge only - generates second bridge layers for external-facing "
|
||||
"bridges only. Please note that small bridges that are shorter or narrower "
|
||||
"than the set number of perimeters will be skipped as they would not benefit "
|
||||
"from a second bridge layer. If generated, the second bridge layer will be "
|
||||
"extruded parallel to the first bridge layer to reinforce the bridge "
|
||||
"strength.\n"
|
||||
"3. Internal bridge only - generates second bridge layers for internal "
|
||||
"bridges over sparse infill only. Please note that the internal bridges count "
|
||||
"towards the top shell layer count of your model. The second internal bridge "
|
||||
"layer will be extruded as close to perpendicular to the first as possible. "
|
||||
"If multiple regions in the same island, with varying bridge angles are "
|
||||
"present, the last region of that island will be selected as the angle "
|
||||
"reference.\n"
|
||||
"4. Apply to all - generates second bridge layers for both internal and "
|
||||
"external-facing bridges\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply to all"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reduce pillowing on top surfaces in heavily slanted or "
|
||||
"curved models.\n"
|
||||
"\n"
|
||||
"By default, small internal bridges are filtered out and the internal solid "
|
||||
"infill is printed directly over the sparse infill. This works well in most "
|
||||
"cases, speeding up printing without too much compromise on top surface "
|
||||
"quality. \n"
|
||||
"\n"
|
||||
"However, in heavily slanted or curved models especially where too low sparse "
|
||||
"infill density is used, this may result in curling of the unsupported solid "
|
||||
"infill, causing pillowing.\n"
|
||||
"However, in heavily slanted or curved models, especially where too low a "
|
||||
"sparse infill density is used, this may result in curling of the unsupported "
|
||||
"solid infill, causing pillowing.\n"
|
||||
"\n"
|
||||
"Disabling this option will print internal bridge layer over slightly "
|
||||
"unsupported internal solid infill. The options below control the amount of "
|
||||
"filtering, i.e. the amount of internal bridges created.\n"
|
||||
"Enabling limited filtering or no filtering will print internal bridge layer "
|
||||
"over slightly unsupported internal solid infill. The options below control "
|
||||
"the sensitivity of the filtering, i.e. they control where internal bridges "
|
||||
"are created.\n"
|
||||
"\n"
|
||||
"Filter - enable this option. This is the default behavior and works well in "
|
||||
"most cases.\n"
|
||||
"1. Filter - enables this option. This is the default behavior and works well "
|
||||
"in most cases.\n"
|
||||
"\n"
|
||||
"Limited filtering - creates internal bridges on heavily slanted surfaces, "
|
||||
"while avoiding creating unnecessary internal bridges. This works well for "
|
||||
"most difficult models.\n"
|
||||
"2. Limited filtering - creates internal bridges on heavily slanted surfaces "
|
||||
"while avoiding unnecessary bridges. This works well for most difficult "
|
||||
"models.\n"
|
||||
"\n"
|
||||
"No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models. "
|
||||
"However, in most cases it creates too many unnecessary bridges."
|
||||
"3. No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models; "
|
||||
"however, in most cases, it creates too many unnecessary bridges."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter"
|
||||
@@ -10324,6 +10560,9 @@ msgstr ""
|
||||
msgid "Grid"
|
||||
msgstr ""
|
||||
|
||||
msgid "2D Lattice"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line"
|
||||
msgstr ""
|
||||
|
||||
@@ -10354,6 +10593,25 @@ msgstr ""
|
||||
msgid "Cross Hatch"
|
||||
msgstr ""
|
||||
|
||||
msgid "Quarter Cubic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 1"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the first set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 2"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the second set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill anchor length"
|
||||
msgstr ""
|
||||
|
||||
@@ -10528,10 +10786,24 @@ msgid "Support interface fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This fan speed is enforced during all support interfaces, to be able to "
|
||||
"weaken their bonding with a high fan speed.\n"
|
||||
"Set to -1 to disable this override.\n"
|
||||
"Can only be overridden by disable_fan_first_layers."
|
||||
"This part cooling fan speed is applied when printing support interfaces. "
|
||||
"Setting this parameter to a higher than regular speed reduces the layer "
|
||||
"binding strength between supports and the supported part, making them easier "
|
||||
"to separate.\n"
|
||||
"Set to -1 to disable it.\n"
|
||||
"This setting is overridden by disable_fan_first_layers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The part cooling fan speed used for all internal bridges. Set to -1 to use "
|
||||
"the overhang fan speed settings instead.\n"
|
||||
"\n"
|
||||
"Reducing the internal bridges fan speed, compared to your regular fan speed, "
|
||||
"can help reduce part warping due to excessive cooling applied over a large "
|
||||
"surface for a prolonged period of time."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -10570,6 +10842,59 @@ msgstr ""
|
||||
msgid "Whether to apply fuzzy skin on the first layer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise type"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Noise type to use for fuzzy skin generation.\n"
|
||||
"Classic: Classic uniform random noise.\n"
|
||||
"Perlin: Perlin noise, which gives a more consistent texture.\n"
|
||||
"Billow: Similar to perlin noise, but clumpier.\n"
|
||||
"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates "
|
||||
"marble-like textures.\n"
|
||||
"Voronoi: Divides the surface into voronoi cells, and displaces each one by a "
|
||||
"random amount. Creates a patchwork texture."
|
||||
msgstr ""
|
||||
|
||||
msgid "Classic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Perlin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billow"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ridged Multifractal"
|
||||
msgstr ""
|
||||
|
||||
msgid "Voronoi"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin feature size"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The base size of the coherent noise features, in mm. Higher values will "
|
||||
"result in larger features."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy Skin Noise Octaves"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The number of octaves of coherent noise to use. Higher values increase the "
|
||||
"detail of the noise, but also increase computation time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise persistence"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The decay rate for higher octaves of the coherent noise. Lower values will "
|
||||
"result in smoother noise."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out tiny gaps"
|
||||
msgstr ""
|
||||
|
||||
@@ -10952,6 +11277,14 @@ msgstr ""
|
||||
msgid "The distance between the lines of ironing"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ironing inset"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The distance to keep from the edges. A value of 0 sets this to half of the "
|
||||
"nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ironing speed"
|
||||
msgstr ""
|
||||
|
||||
@@ -11173,7 +11506,17 @@ msgid ""
|
||||
"Default value of 3 works well for most cases. If your printer is stuttering, "
|
||||
"increase this value to reduce the number of adjustments made\n"
|
||||
"\n"
|
||||
"Allowed values: 1-5"
|
||||
"Allowed values: 0.5-5"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply only on external features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Applies extrusion rate smoothing only on external perimeters and overhangs. "
|
||||
"This can help reduce artefacts due to sharp speed transitions on externally "
|
||||
"visible overhangs without impacting the print speed of features that will "
|
||||
"not be visible to the user."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum speed for part cooling fan"
|
||||
@@ -11199,9 +11542,9 @@ msgid "Min print speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The minimum print speed to which the printer slows down "
|
||||
"to maintain the minimum layer time defined above "
|
||||
"when the slowdown for better layer cooling is enabled."
|
||||
"The minimum print speed to which the printer slows down to maintain the "
|
||||
"minimum layer time defined above when the slowdown for better layer cooling "
|
||||
"is enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Diameter of nozzle"
|
||||
@@ -11804,9 +12147,6 @@ msgid ""
|
||||
"with them. To avoid this, increase the skirt distance value.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
@@ -12036,21 +12376,21 @@ msgid "Enable support generation."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
"normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
"Normal (auto) and Tree (auto) is used to generate support automatically. If "
|
||||
"Normal (manual) or Tree (manual) is selected, only support enforcers are "
|
||||
"generated"
|
||||
msgstr ""
|
||||
|
||||
msgid "normal(auto)"
|
||||
msgid "Normal (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(auto)"
|
||||
msgid "Tree (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "normal(manual)"
|
||||
msgid "Normal (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(manual)"
|
||||
msgid "Tree (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support/object xy distance"
|
||||
@@ -12246,6 +12586,15 @@ msgid ""
|
||||
"threshold."
|
||||
msgstr ""
|
||||
|
||||
msgid "Threshold overlap"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If threshold angle is zero, support will be generated for overhangs whose "
|
||||
"overlap is below the threshold. The smaller this value is, the steeper the "
|
||||
"overhang that can be printed without support."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tree support branch angle"
|
||||
msgstr ""
|
||||
|
||||
@@ -12677,9 +13026,6 @@ msgid ""
|
||||
"variable extrusion width"
|
||||
msgstr ""
|
||||
|
||||
msgid "Classic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Arachne"
|
||||
msgstr ""
|
||||
|
||||
@@ -14415,6 +14761,9 @@ msgstr ""
|
||||
msgid "Print Host upload"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not get a valid Printer Host reference"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"PO-Revision-Date: 2024-11-03 20:59+0100\n"
|
||||
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -2816,9 +2816,6 @@ msgstr ""
|
||||
msgid "About %s"
|
||||
msgstr "O %s"
|
||||
|
||||
msgid "Orca Slicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
|
||||
msgstr "OrcaSlicer je založen na BambuStudio, PrusaSlicer a SuperSlicer."
|
||||
|
||||
@@ -2869,9 +2866,6 @@ msgstr "Vstupní hodnota by měla být větší než %1% a menší než %2%"
|
||||
msgid "SN"
|
||||
msgstr "SN"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "Nastavení informací o slotu AMS při tisku není podporováno"
|
||||
|
||||
msgid "Factors of Flow Dynamics Calibration"
|
||||
msgstr "Faktory Kalibrace Dynamiky Průtoku"
|
||||
|
||||
@@ -2884,6 +2878,9 @@ msgstr "Faktor K"
|
||||
msgid "Factor N"
|
||||
msgstr "Faktor N"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "Nastavení informací o slotu AMS při tisku není podporováno"
|
||||
|
||||
msgid "Setting Virtual slot information while printing is not supported"
|
||||
msgstr "Nastavení informací o virtuálním slotu během tisku není podporováno"
|
||||
|
||||
@@ -3003,7 +3000,7 @@ msgstr "Zakázat AMS"
|
||||
msgid "Print with the filament mounted on the back of chassis"
|
||||
msgstr "Tisk s filamentem namontovaným na zadní straně podvozku"
|
||||
|
||||
msgid "Current Cabin humidity"
|
||||
msgid "Current AMS humidity"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -5063,8 +5060,8 @@ msgstr ""
|
||||
msgid "The printer has been logged out and cannot connect."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Zastaveno."
|
||||
msgid "Video Stopped."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to start liveview)"
|
||||
msgstr "Připojení LAN se nezdařilo (nepodařilo se spustit živé zobrazení)"
|
||||
@@ -5155,10 +5152,6 @@ msgstr ""
|
||||
msgid "No printers."
|
||||
msgstr "Žádné tiskárny."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Connect failed [%d]!"
|
||||
msgstr "Spojení selhalo [%d]!"
|
||||
|
||||
msgid "Loading file list..."
|
||||
msgstr "Načítání seznamu souborů..."
|
||||
|
||||
@@ -5168,15 +5161,14 @@ msgstr ""
|
||||
msgid "Load failed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (Device connection not ready)!"
|
||||
msgstr "Inicializace se nezdařila (Připojení zařízení není připraveno)!"
|
||||
|
||||
msgid ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
msgstr ""
|
||||
|
||||
msgid "Initialize failed (Storage unavailable, insert SD card.)!"
|
||||
msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -5185,10 +5177,6 @@ msgstr ""
|
||||
msgid "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed (%s)!"
|
||||
msgstr "Inicializace se nezdařila (%s)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "You are going to delete %u file from printer. Are you sure to continue?"
|
||||
msgid_plural ""
|
||||
@@ -5619,6 +5607,25 @@ msgstr ""
|
||||
msgid "Not for now"
|
||||
msgstr ""
|
||||
|
||||
msgid "Server Exception"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The server is unable to respond. Please click the link below to check the "
|
||||
"server status."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If the server is in a fault state, you can temporarily use offline printing "
|
||||
"or local network printing."
|
||||
msgstr ""
|
||||
|
||||
msgid "How to use LAN only mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't show this dialog again"
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Mouse disconnected."
|
||||
msgstr "3D myš odpojena."
|
||||
|
||||
@@ -6335,6 +6342,10 @@ msgstr "Otevřít jako projekt"
|
||||
msgid "Import geometry only"
|
||||
msgstr "Importovat pouze modely"
|
||||
|
||||
msgid ""
|
||||
"This option can be changed later in preferences, under 'Load Behaviour'."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one G-code file can be opened at the same time."
|
||||
msgstr "Najednou lze otevřít pouze jeden soubor s G-kódem."
|
||||
|
||||
@@ -6759,6 +6770,24 @@ msgstr ""
|
||||
msgid "Associate URLs to OrcaSlicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ask When Relevant"
|
||||
msgstr ""
|
||||
|
||||
msgid "Always Ask"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum recent projects"
|
||||
msgstr "Maximální počet nedávných projektů"
|
||||
|
||||
@@ -7313,6 +7342,9 @@ msgstr "Úprava názvu zařízení"
|
||||
msgid "Bind with Pin Code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bind with Access Code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Send to Printer SD card"
|
||||
msgstr "Odeslat do tiskárny SD kartu"
|
||||
|
||||
@@ -7596,6 +7628,75 @@ msgstr ""
|
||||
"klikněte pravým tlačítkem na prázdnou pozici stavební desky a vyberte "
|
||||
"\"Přidat primitivní\" -> \"Timelapse Wipe Tower\" ."
|
||||
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Šířka Extruze"
|
||||
|
||||
@@ -7692,6 +7793,12 @@ msgstr "Post-processing Scripts"
|
||||
msgid "Notes"
|
||||
msgstr "Poznámky"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Časté"
|
||||
|
||||
@@ -8771,20 +8878,22 @@ msgstr ""
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Sending print file)"
|
||||
msgstr "Připojení k síti LAN se nezdařilo (odesílání tiskového souboru)"
|
||||
|
||||
msgid ""
|
||||
"Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgid "Connect the printer using IP and access code"
|
||||
msgstr ""
|
||||
"Krok 1, potvrďte, že Orca Slicer a vaše tiskárna jsou ve stejné síti LAN."
|
||||
|
||||
msgid ""
|
||||
"Step 2, if the IP and Access Code below are different from the actual values "
|
||||
"Step 1. Please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 2. If the IP and Access Code below are different from the actual values "
|
||||
"on your printer, please correct them."
|
||||
msgstr ""
|
||||
"Krok 2, pokud se IP a přístupový kód níže liší od skutečných hodnot na "
|
||||
"tiskárně, opravte je."
|
||||
|
||||
msgid ""
|
||||
"Step 3. Please obtain the device SN from the printer side; it is usually "
|
||||
"found in the device information on the printer screen."
|
||||
msgstr ""
|
||||
|
||||
msgid "IP"
|
||||
msgstr "IP"
|
||||
@@ -8792,16 +8901,37 @@ msgstr "IP"
|
||||
msgid "Access Code"
|
||||
msgstr "Přístupový kód"
|
||||
|
||||
msgid "Printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Where to find your printer's IP and Access Code?"
|
||||
msgstr "Kde najít IP a přístupový kód vaší tiskárny?"
|
||||
|
||||
msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
msgid "Manual Setup"
|
||||
msgstr ""
|
||||
|
||||
msgid "IP and Access Code Verified! You may close the window"
|
||||
msgid "connecting..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to connect to printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to publish login request."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer has already been bound."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer mode is incorrect, please switch to LAN Only."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting to printer... The dialog will close later"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection failed, please double check IP and Access Code"
|
||||
@@ -9740,45 +9870,45 @@ msgstr ""
|
||||
msgid "Nowhere"
|
||||
msgstr ""
|
||||
|
||||
msgid "Force cooling for overhang and bridge"
|
||||
msgstr "Vynucené chlazení pro převisy a mosty"
|
||||
msgid "Force cooling for overhangs and bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option to optimize part cooling fan speed for overhang and "
|
||||
"bridge to get better cooling"
|
||||
"Enable this option to allow adjustment of the part cooling fan speed for "
|
||||
"specifically for overhangs, internal and external bridges. Setting the fan "
|
||||
"speed specifically for these features can improve overall print quality and "
|
||||
"reduce warping."
|
||||
msgstr ""
|
||||
"Povolením této možnosti optimalizujete rychlost ventilátoru chlazení dílů "
|
||||
"pro převis a most, abyste získali lepší chlazení"
|
||||
|
||||
msgid "Fan speed for overhang"
|
||||
msgstr "Rychlost ventilátoru pro převisy"
|
||||
msgid "Overhangs and external bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
"wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
"bridge can get better quality for these part"
|
||||
"Use this part cooling fan speed when printing bridges or overhang walls with "
|
||||
"an overhang threshold that exceeds the value set in the 'Overhangs cooling "
|
||||
"threshold' parameter above. Increasing the cooling specifically for "
|
||||
"overhangs and bridges can improve the overall print quality of these "
|
||||
"features.\n"
|
||||
"\n"
|
||||
"Please note, this fan speed is clamped on the lower end by the minimum fan "
|
||||
"speed threshold set above. It is also adjusted upwards up to the maximum fan "
|
||||
"speed threshold when the minimum layer time threshold is not met."
|
||||
msgstr ""
|
||||
"Vynutit ventilátor chlazení na tuto rychlost, když tisknete most nebo "
|
||||
"převislou stěnu, která má velký přesah. Vynucení chlazení převisu a mostu "
|
||||
"může získat lepší kvalitu těchto dílů"
|
||||
|
||||
msgid "Cooling overhang threshold"
|
||||
msgstr "Hranice chlazení převisů"
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force cooling fan to be specific speed when overhang degree of printed part "
|
||||
"exceeds this value. Expressed as percentage which indicates how much width "
|
||||
"of the line without support from lower layer. 0% means forcing cooling for "
|
||||
"all outer wall no matter how much overhang degree"
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
"percentage, indicating the portion of each line's width that is unsupported "
|
||||
"by the layer beneath it. Setting this value to 0% forces the cooling fan to "
|
||||
"run for all outer walls, regardless of the overhang degree."
|
||||
msgstr ""
|
||||
"Vynutit chladicí ventilátor na určitou rychlost, když stupeň převisu "
|
||||
"tištěného dílu překročí tuto hodnotu. Vyjádřeno v procentech, které udává, "
|
||||
"jak velká šířka extruze bez podpěry spodní vrstvy. 0% znamená vynucení "
|
||||
"chlazení pro celou vnější stěnu bez ohledu na míru převisu"
|
||||
|
||||
msgid "Bridge infill direction"
|
||||
msgstr "Směr výplně mostu"
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
@@ -9789,12 +9919,45 @@ msgstr ""
|
||||
"vypočítán automaticky. Jinak bude poskytnutý úhel použit pro vnější mosty. "
|
||||
"Pro nulový úhel použijte 180°."
|
||||
|
||||
msgid "Bridge density"
|
||||
msgstr "Hustota mostu"
|
||||
|
||||
msgid "Density of external bridges. 100% means solid bridge. Default is 100%."
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Internal bridging angle override. If left to zero, the bridging angle will "
|
||||
"be calculated automatically. Otherwise the provided angle will be used for "
|
||||
"internal bridges. Use 180°for zero angle.\n"
|
||||
"\n"
|
||||
"It is recommended to leave it at 0 unless there is a specific model need not "
|
||||
"to."
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
"Lower density external bridges can help improve reliability as there is more "
|
||||
"space for air to circulate around the extruded bridge, improving its cooling "
|
||||
"speed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
" Lower density internal bridges can help reduce top surface pillowing and "
|
||||
"improve internal bridge reliability as there is more space for air to "
|
||||
"circulate around the extruded bridge, improving its cooling speed. \n"
|
||||
"\n"
|
||||
"This option works particularly well when combined with the second internal "
|
||||
"bridge over infill option, further improving internal bridging structure "
|
||||
"before solid infill is extruded."
|
||||
msgstr ""
|
||||
"Hustota externích mostů. 100 % znamená pevný most. Výchozí hodnota je 100 %."
|
||||
|
||||
msgid "Bridge flow ratio"
|
||||
msgstr "Průtok mostu"
|
||||
@@ -9846,10 +10009,10 @@ msgstr "Přesná stěna"
|
||||
|
||||
msgid ""
|
||||
"Improve shell precision by adjusting outer wall spacing. This also improves "
|
||||
"layer consistency.\n"
|
||||
"Note: This setting will only take effect if the wall sequence is configured "
|
||||
"to Inner-Outer"
|
||||
"layer consistency."
|
||||
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"
|
||||
msgstr "Pouze jedna stěna na horních plochách"
|
||||
@@ -10095,12 +10258,24 @@ msgstr "nahoru kompatibilní stroj"
|
||||
msgid "Compatible machine condition"
|
||||
msgstr "Stav kompatibilního stroje"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active printer "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Kompatibilní profily procesů"
|
||||
|
||||
msgid "Compatible process profiles condition"
|
||||
msgstr "Podmínka kompatibilních procesních profilů"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active print "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr "Tisková sekvence, vrstva po vrstvě nebo objekt po objektu"
|
||||
|
||||
@@ -10196,8 +10371,8 @@ msgstr ""
|
||||
"Nepodpírejte celou oblast mostu, díky čemuž je podpěra velmi velká. Most "
|
||||
"obvykle může tisknout přímo bez podpěry, pokud není příliš dlouhý"
|
||||
|
||||
msgid "Thick bridges"
|
||||
msgstr "Silné přemostění"
|
||||
msgid "Thick external bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, bridges are more reliable, can bridge longer distances, but may "
|
||||
@@ -10218,36 +10393,86 @@ msgid ""
|
||||
"using large nozzles."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges (beta)"
|
||||
msgid "Extra bridge layers (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reducing pillowing on top surfaces in heavily slanted "
|
||||
"or curved models.\n"
|
||||
"This option enables the generation of an extra bridge layer over internal "
|
||||
"and/or external bridges.\n"
|
||||
"\n"
|
||||
"Extra bridge layers help improve bridge appearance and reliability, as the "
|
||||
"solid infill is better supported. This is especially useful in fast "
|
||||
"printers, where the bridge and solid infill speeds vary greatly. The extra "
|
||||
"bridge layer results in reduced pillowing on top surfaces, as well as "
|
||||
"reduced separation of the external bridge layer from its surrounding "
|
||||
"perimeters.\n"
|
||||
"\n"
|
||||
"It is generally recommended to set this to at least 'External bridge only', "
|
||||
"unless specific issues with the sliced model are found.\n"
|
||||
"\n"
|
||||
"Options:\n"
|
||||
"1. Disabled - does not generate second bridge layers. This is the default "
|
||||
"and is set for compatibility purposes.\n"
|
||||
"2. External bridge only - generates second bridge layers for external-facing "
|
||||
"bridges only. Please note that small bridges that are shorter or narrower "
|
||||
"than the set number of perimeters will be skipped as they would not benefit "
|
||||
"from a second bridge layer. If generated, the second bridge layer will be "
|
||||
"extruded parallel to the first bridge layer to reinforce the bridge "
|
||||
"strength.\n"
|
||||
"3. Internal bridge only - generates second bridge layers for internal "
|
||||
"bridges over sparse infill only. Please note that the internal bridges count "
|
||||
"towards the top shell layer count of your model. The second internal bridge "
|
||||
"layer will be extruded as close to perpendicular to the first as possible. "
|
||||
"If multiple regions in the same island, with varying bridge angles are "
|
||||
"present, the last region of that island will be selected as the angle "
|
||||
"reference.\n"
|
||||
"4. Apply to all - generates second bridge layers for both internal and "
|
||||
"external-facing bridges\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "Zakázáno"
|
||||
|
||||
msgid "External bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply to all"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reduce pillowing on top surfaces in heavily slanted or "
|
||||
"curved models.\n"
|
||||
"\n"
|
||||
"By default, small internal bridges are filtered out and the internal solid "
|
||||
"infill is printed directly over the sparse infill. This works well in most "
|
||||
"cases, speeding up printing without too much compromise on top surface "
|
||||
"quality. \n"
|
||||
"\n"
|
||||
"However, in heavily slanted or curved models especially where too low sparse "
|
||||
"infill density is used, this may result in curling of the unsupported solid "
|
||||
"infill, causing pillowing.\n"
|
||||
"However, in heavily slanted or curved models, especially where too low a "
|
||||
"sparse infill density is used, this may result in curling of the unsupported "
|
||||
"solid infill, causing pillowing.\n"
|
||||
"\n"
|
||||
"Disabling this option will print internal bridge layer over slightly "
|
||||
"unsupported internal solid infill. The options below control the amount of "
|
||||
"filtering, i.e. the amount of internal bridges created.\n"
|
||||
"Enabling limited filtering or no filtering will print internal bridge layer "
|
||||
"over slightly unsupported internal solid infill. The options below control "
|
||||
"the sensitivity of the filtering, i.e. they control where internal bridges "
|
||||
"are created.\n"
|
||||
"\n"
|
||||
"Filter - enable this option. This is the default behavior and works well in "
|
||||
"most cases.\n"
|
||||
"1. Filter - enables this option. This is the default behavior and works well "
|
||||
"in most cases.\n"
|
||||
"\n"
|
||||
"Limited filtering - creates internal bridges on heavily slanted surfaces, "
|
||||
"while avoiding creating unnecessary internal bridges. This works well for "
|
||||
"most difficult models.\n"
|
||||
"2. Limited filtering - creates internal bridges on heavily slanted surfaces "
|
||||
"while avoiding unnecessary bridges. This works well for most difficult "
|
||||
"models.\n"
|
||||
"\n"
|
||||
"No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models. "
|
||||
"However, in most cases it creates too many unnecessary bridges."
|
||||
"3. No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models; "
|
||||
"however, in most cases, it creates too many unnecessary bridges."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter"
|
||||
@@ -11055,6 +11280,9 @@ msgstr "Vzor linek pro vnitřní výplň"
|
||||
msgid "Grid"
|
||||
msgstr "Mřížka"
|
||||
|
||||
msgid "2D Lattice"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line"
|
||||
msgstr "Čára"
|
||||
|
||||
@@ -11085,6 +11313,25 @@ msgstr "Blesky"
|
||||
msgid "Cross Hatch"
|
||||
msgstr ""
|
||||
|
||||
msgid "Quarter Cubic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 1"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the first set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 2"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the second set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill anchor length"
|
||||
msgstr "Délka kotvy vnitřní výplně"
|
||||
|
||||
@@ -11298,15 +11545,25 @@ msgid "Support interface fan speed"
|
||||
msgstr "Rychlost ventilátoru kontaktních vrstev podpěr"
|
||||
|
||||
msgid ""
|
||||
"This fan speed is enforced during all support interfaces, to be able to "
|
||||
"weaken their bonding with a high fan speed.\n"
|
||||
"Set to -1 to disable this override.\n"
|
||||
"Can only be overridden by disable_fan_first_layers."
|
||||
"This part cooling fan speed is applied when printing support interfaces. "
|
||||
"Setting this parameter to a higher than regular speed reduces the layer "
|
||||
"binding strength between supports and the supported part, making them easier "
|
||||
"to separate.\n"
|
||||
"Set to -1 to disable it.\n"
|
||||
"This setting is overridden by disable_fan_first_layers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The part cooling fan speed used for all internal bridges. Set to -1 to use "
|
||||
"the overhang fan speed settings instead.\n"
|
||||
"\n"
|
||||
"Reducing the internal bridges fan speed, compared to your regular fan speed, "
|
||||
"can help reduce part warping due to excessive cooling applied over a large "
|
||||
"surface for a prolonged period of time."
|
||||
msgstr ""
|
||||
"Tato rychlost ventilátoru je uplatněna během všech kontaktních vrstev, aby "
|
||||
"bylo možné oslabit jejich spojení vysokou rychlostí ventilátoru.\n"
|
||||
"Nastavte hodnotu -1 pro zrušení tohoto přepisu.\n"
|
||||
"Tuto hodnotu lze přepsat pouze pomocí disable_fan_first_layers."
|
||||
|
||||
msgid ""
|
||||
"Randomly jitter while printing the wall, so that the surface has a rough "
|
||||
@@ -11349,6 +11606,59 @@ msgstr ""
|
||||
msgid "Whether to apply fuzzy skin on the first layer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise type"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Noise type to use for fuzzy skin generation.\n"
|
||||
"Classic: Classic uniform random noise.\n"
|
||||
"Perlin: Perlin noise, which gives a more consistent texture.\n"
|
||||
"Billow: Similar to perlin noise, but clumpier.\n"
|
||||
"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates "
|
||||
"marble-like textures.\n"
|
||||
"Voronoi: Divides the surface into voronoi cells, and displaces each one by a "
|
||||
"random amount. Creates a patchwork texture."
|
||||
msgstr ""
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Klasický"
|
||||
|
||||
msgid "Perlin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billow"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ridged Multifractal"
|
||||
msgstr ""
|
||||
|
||||
msgid "Voronoi"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin feature size"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The base size of the coherent noise features, in mm. Higher values will "
|
||||
"result in larger features."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy Skin Noise Octaves"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The number of octaves of coherent noise to use. Higher values increase the "
|
||||
"detail of the noise, but also increase computation time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise persistence"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The decay rate for higher octaves of the coherent noise. Lower values will "
|
||||
"result in smoother noise."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out tiny gaps"
|
||||
msgstr "Odfiltrujte drobné mezery"
|
||||
|
||||
@@ -11782,6 +12092,14 @@ msgstr "Řádkování žehlení"
|
||||
msgid "The distance between the lines of ironing"
|
||||
msgstr "Vzdálenost mezi žehlicími linkami"
|
||||
|
||||
msgid "Ironing inset"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The distance to keep from the edges. A value of 0 sets this to half of the "
|
||||
"nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ironing speed"
|
||||
msgstr "Rychlost žehlení"
|
||||
|
||||
@@ -12039,15 +12357,18 @@ msgid ""
|
||||
"Default value of 3 works well for most cases. If your printer is stuttering, "
|
||||
"increase this value to reduce the number of adjustments made\n"
|
||||
"\n"
|
||||
"Allowed values: 1-5"
|
||||
"Allowed values: 0.5-5"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply only on external features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Applies extrusion rate smoothing only on external perimeters and overhangs. "
|
||||
"This can help reduce artefacts due to sharp speed transitions on externally "
|
||||
"visible overhangs without impacting the print speed of features that will "
|
||||
"not be visible to the user."
|
||||
msgstr ""
|
||||
"Nižší hodnota způsobí hladší přechody rychlosti extruze. To však má za "
|
||||
"následek výrazně větší soubor G-kódu a více instrukcí pro tiskárnu. \n"
|
||||
"\n"
|
||||
"Výchozí hodnota 3 dobře funguje ve většině případů. Pokud vaše tiskárna má "
|
||||
"problémy, zkuste zvýšit tuto hodnotu, abyste snížili počet úprav\n"
|
||||
"\n"
|
||||
"Povolené hodnoty: 1-5"
|
||||
|
||||
msgid "Minimum speed for part cooling fan"
|
||||
msgstr "Minimální rychlost ventilátoru chlazení dílů"
|
||||
@@ -12079,9 +12400,9 @@ msgid "Min print speed"
|
||||
msgstr "Minimální rychlost tisku"
|
||||
|
||||
msgid ""
|
||||
"The minimum printing speed that the printer will slow down to to attempt to "
|
||||
"maintain the minimum layer time above, when slow down for better layer "
|
||||
"cooling is enabled."
|
||||
"The minimum print speed to which the printer slows down to maintain the "
|
||||
"minimum layer time defined above when the slowdown for better layer cooling "
|
||||
"is enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Diameter of nozzle"
|
||||
@@ -12762,9 +13083,6 @@ msgid ""
|
||||
"with them. To avoid this, increase the skirt distance value.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "Zakázáno"
|
||||
|
||||
msgid "Enabled"
|
||||
msgstr "Povoleno"
|
||||
|
||||
@@ -13033,25 +13351,22 @@ msgid "Enable support generation."
|
||||
msgstr "Povolit generování podpěr."
|
||||
|
||||
msgid ""
|
||||
"normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
"normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
"Normal (auto) and Tree (auto) is used to generate support automatically. If "
|
||||
"Normal (manual) or Tree (manual) is selected, only support enforcers are "
|
||||
"generated"
|
||||
msgstr ""
|
||||
"Normální(auto) a Strom(auto) se používají k automatickému generování podpěr. "
|
||||
"Pokud je vybrána možnost Normální(manual) nebo Strom(manual), budou "
|
||||
"generovány pouze vynucené podpěry"
|
||||
|
||||
msgid "normal(auto)"
|
||||
msgstr "Normální (auto)"
|
||||
msgid "Normal (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(auto)"
|
||||
msgstr "Strom (auto)"
|
||||
msgid "Tree (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "normal(manual)"
|
||||
msgstr "Normální (manuální)"
|
||||
msgid "Normal (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(manual)"
|
||||
msgstr "Strom (manuální)"
|
||||
msgid "Tree (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support/object xy distance"
|
||||
msgstr "Podpěry/Objekt xy vzdálenost"
|
||||
@@ -13271,6 +13586,15 @@ msgstr ""
|
||||
"Podpěry budou generovány pro převisy, jejichž úhel sklonu je pod hraniční "
|
||||
"hodnotou."
|
||||
|
||||
msgid "Threshold overlap"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If threshold angle is zero, support will be generated for overhangs whose "
|
||||
"overlap is below the threshold. The smaller this value is, the steeper the "
|
||||
"overhang that can be printed without support."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tree support branch angle"
|
||||
msgstr "Úhel větve podpěr stromu"
|
||||
|
||||
@@ -13785,9 +14109,6 @@ msgstr ""
|
||||
"velmi tenké oblasti se používá gap-fill. Arachne engine produkuje stěny s "
|
||||
"proměnnou extruzní šířkou."
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Klasický"
|
||||
|
||||
msgid "Arachne"
|
||||
msgstr "Arachne"
|
||||
|
||||
@@ -15668,6 +15989,9 @@ msgstr "Fyzická tiskárna"
|
||||
msgid "Print Host upload"
|
||||
msgstr "Nahrávání do tiskového serveru"
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
msgid "Could not get a valid Printer Host reference"
|
||||
msgstr "Nelze získat platný odkaz na tiskový server"
|
||||
|
||||
@@ -16400,6 +16724,137 @@ msgid ""
|
||||
"probability of warping."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Stopped."
|
||||
#~ msgstr "Zastaveno."
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Connect failed [%d]!"
|
||||
#~ msgstr "Spojení selhalo [%d]!"
|
||||
|
||||
#~ msgid "Initialize failed (Device connection not ready)!"
|
||||
#~ msgstr "Inicializace se nezdařila (Připojení zařízení není připraveno)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Initialize failed (%s)!"
|
||||
#~ msgstr "Inicializace se nezdařila (%s)!"
|
||||
|
||||
#~ msgid "LAN Connection Failed (Sending print file)"
|
||||
#~ msgstr "Připojení k síti LAN se nezdařilo (odesílání tiskového souboru)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
#~ msgstr ""
|
||||
#~ "Krok 1, potvrďte, že Orca Slicer a vaše tiskárna jsou ve stejné síti LAN."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 2, if the IP and Access Code below are different from the actual "
|
||||
#~ "values on your printer, please correct them."
|
||||
#~ msgstr ""
|
||||
#~ "Krok 2, pokud se IP a přístupový kód níže liší od skutečných hodnot na "
|
||||
#~ "tiskárně, opravte je."
|
||||
|
||||
#~ msgid "Force cooling for overhang and bridge"
|
||||
#~ msgstr "Vynucené chlazení pro převisy a mosty"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable this option to optimize part cooling fan speed for overhang and "
|
||||
#~ "bridge to get better cooling"
|
||||
#~ msgstr ""
|
||||
#~ "Povolením této možnosti optimalizujete rychlost ventilátoru chlazení dílů "
|
||||
#~ "pro převis a most, abyste získali lepší chlazení"
|
||||
|
||||
#~ msgid "Fan speed for overhang"
|
||||
#~ msgstr "Rychlost ventilátoru pro převisy"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
#~ "wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
#~ "bridge can get better quality for these part"
|
||||
#~ msgstr ""
|
||||
#~ "Vynutit ventilátor chlazení na tuto rychlost, když tisknete most nebo "
|
||||
#~ "převislou stěnu, která má velký přesah. Vynucení chlazení převisu a mostu "
|
||||
#~ "může získat lepší kvalitu těchto dílů"
|
||||
|
||||
#~ msgid "Cooling overhang threshold"
|
||||
#~ msgstr "Hranice chlazení převisů"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#~ msgid ""
|
||||
#~ "Force cooling fan to be specific speed when overhang degree of printed "
|
||||
#~ "part exceeds this value. Expressed as percentage which indicates how much "
|
||||
#~ "width of the line without support from lower layer. 0% means forcing "
|
||||
#~ "cooling for all outer wall no matter how much overhang degree"
|
||||
#~ msgstr ""
|
||||
#~ "Vynutit chladicí ventilátor na určitou rychlost, když stupeň převisu "
|
||||
#~ "tištěného dílu překročí tuto hodnotu. Vyjádřeno v procentech, které "
|
||||
#~ "udává, jak velká šířka extruze bez podpěry spodní vrstvy. 0% znamená "
|
||||
#~ "vynucení chlazení pro celou vnější stěnu bez ohledu na míru převisu"
|
||||
|
||||
#~ msgid "Bridge infill direction"
|
||||
#~ msgstr "Směr výplně mostu"
|
||||
|
||||
#~ msgid "Bridge density"
|
||||
#~ msgstr "Hustota mostu"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Density of external bridges. 100% means solid bridge. Default is 100%."
|
||||
#~ msgstr ""
|
||||
#~ "Hustota externích mostů. 100 % znamená pevný most. Výchozí hodnota je 100 "
|
||||
#~ "%."
|
||||
|
||||
#~ msgid "Thick bridges"
|
||||
#~ msgstr "Silné přemostění"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This fan speed is enforced during all support interfaces, to be able to "
|
||||
#~ "weaken their bonding with a high fan speed.\n"
|
||||
#~ "Set to -1 to disable this override.\n"
|
||||
#~ "Can only be overridden by disable_fan_first_layers."
|
||||
#~ msgstr ""
|
||||
#~ "Tato rychlost ventilátoru je uplatněna během všech kontaktních vrstev, "
|
||||
#~ "aby bylo možné oslabit jejich spojení vysokou rychlostí ventilátoru.\n"
|
||||
#~ "Nastavte hodnotu -1 pro zrušení tohoto přepisu.\n"
|
||||
#~ "Tuto hodnotu lze přepsat pouze pomocí disable_fan_first_layers."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "A lower value results in smoother extrusion rate transitions. However, "
|
||||
#~ "this results in a significantly larger gcode file and more instructions "
|
||||
#~ "for the printer to process. \n"
|
||||
#~ "\n"
|
||||
#~ "Default value of 3 works well for most cases. If your printer is "
|
||||
#~ "stuttering, increase this value to reduce the number of adjustments made\n"
|
||||
#~ "\n"
|
||||
#~ "Allowed values: 1-5"
|
||||
#~ msgstr ""
|
||||
#~ "Nižší hodnota způsobí hladší přechody rychlosti extruze. To však má za "
|
||||
#~ "následek výrazně větší soubor G-kódu a více instrukcí pro tiskárnu. \n"
|
||||
#~ "\n"
|
||||
#~ "Výchozí hodnota 3 dobře funguje ve většině případů. Pokud vaše tiskárna "
|
||||
#~ "má problémy, zkuste zvýšit tuto hodnotu, abyste snížili počet úprav\n"
|
||||
#~ "\n"
|
||||
#~ "Povolené hodnoty: 1-5"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
#~ "normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
#~ "generated"
|
||||
#~ msgstr ""
|
||||
#~ "Normální(auto) a Strom(auto) se používají k automatickému generování "
|
||||
#~ "podpěr. Pokud je vybrána možnost Normální(manual) nebo Strom(manual), "
|
||||
#~ "budou generovány pouze vynucené podpěry"
|
||||
|
||||
#~ msgid "normal(auto)"
|
||||
#~ msgstr "Normální (auto)"
|
||||
|
||||
#~ msgid "tree(auto)"
|
||||
#~ msgstr "Strom (auto)"
|
||||
|
||||
#~ msgid "normal(manual)"
|
||||
#~ msgstr "Normální (manuální)"
|
||||
|
||||
#~ msgid "tree(manual)"
|
||||
#~ msgstr "Strom (manuální)"
|
||||
|
||||
#~ msgid "Unselect"
|
||||
#~ msgstr "Zrušení výběru"
|
||||
|
||||
@@ -16827,13 +17282,6 @@ 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 "
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -2768,9 +2768,6 @@ msgstr ""
|
||||
msgid "About %s"
|
||||
msgstr "About %s"
|
||||
|
||||
msgid "Orca Slicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
|
||||
msgstr ""
|
||||
|
||||
@@ -2822,9 +2819,6 @@ msgstr "The input value should be greater than %1% and less than %2%"
|
||||
msgid "SN"
|
||||
msgstr "SN"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "Setting AMS slot information while printing is not supported"
|
||||
|
||||
msgid "Factors of Flow Dynamics Calibration"
|
||||
msgstr "Factors of Flow Dynamics Calibration"
|
||||
|
||||
@@ -2837,6 +2831,9 @@ msgstr "Factor K"
|
||||
msgid "Factor N"
|
||||
msgstr "Factor N"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "Setting AMS slot information while printing is not supported"
|
||||
|
||||
msgid "Setting Virtual slot information while printing is not supported"
|
||||
msgstr "Setting Virtual slot information while printing is not supported"
|
||||
|
||||
@@ -2957,8 +2954,8 @@ msgstr "Disable AMS"
|
||||
msgid "Print with the filament mounted on the back of chassis"
|
||||
msgstr "Print with filament on external spool"
|
||||
|
||||
msgid "Current Cabin humidity"
|
||||
msgstr "Current Cabin humidity"
|
||||
msgid "Current AMS humidity"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please change the desiccant when it is too wet. The indicator may not "
|
||||
@@ -5015,8 +5012,8 @@ msgstr ""
|
||||
msgid "The printer has been logged out and cannot connect."
|
||||
msgstr "The printer has been logged out and cannot connect."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Stopped."
|
||||
msgid "Video Stopped."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to start liveview)"
|
||||
msgstr "LAN Connection Failed (Failed to start liveview)"
|
||||
@@ -5107,10 +5104,6 @@ msgstr "Reload file list from printer."
|
||||
msgid "No printers."
|
||||
msgstr "No printers."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Connect failed [%d]!"
|
||||
msgstr "Connection failed [%d]!"
|
||||
|
||||
msgid "Loading file list..."
|
||||
msgstr "Loading file list..."
|
||||
|
||||
@@ -5120,9 +5113,6 @@ msgstr "No files"
|
||||
msgid "Load failed"
|
||||
msgstr "Load failed"
|
||||
|
||||
msgid "Initialize failed (Device connection not ready)!"
|
||||
msgstr "Initialization failed (Device connection not ready)!"
|
||||
|
||||
msgid ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
@@ -5130,7 +5120,9 @@ msgstr ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
|
||||
msgid "Initialize failed (Storage unavailable, insert SD card.)!"
|
||||
msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -5139,10 +5131,6 @@ msgstr "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgid "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
msgstr "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed (%s)!"
|
||||
msgstr "Initialization failed (%s)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "You are going to delete %u file from printer. Are you sure to continue?"
|
||||
msgid_plural ""
|
||||
@@ -5575,6 +5563,25 @@ msgstr "Latest Version: "
|
||||
msgid "Not for now"
|
||||
msgstr "Not for now"
|
||||
|
||||
msgid "Server Exception"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The server is unable to respond. Please click the link below to check the "
|
||||
"server status."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If the server is in a fault state, you can temporarily use offline printing "
|
||||
"or local network printing."
|
||||
msgstr ""
|
||||
|
||||
msgid "How to use LAN only mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't show this dialog again"
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Mouse disconnected."
|
||||
msgstr "3D Mouse disconnected."
|
||||
|
||||
@@ -6281,6 +6288,10 @@ msgstr "Open as project"
|
||||
msgid "Import geometry only"
|
||||
msgstr "Import geometry only"
|
||||
|
||||
msgid ""
|
||||
"This option can be changed later in preferences, under 'Load Behaviour'."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one G-code file can be opened at the same time."
|
||||
msgstr "Only one G-code file can be opened at a time."
|
||||
|
||||
@@ -6704,6 +6715,24 @@ msgstr ""
|
||||
msgid "Associate URLs to OrcaSlicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ask When Relevant"
|
||||
msgstr ""
|
||||
|
||||
msgid "Always Ask"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum recent projects"
|
||||
msgstr "Maximum recent projects"
|
||||
|
||||
@@ -7269,6 +7298,9 @@ msgstr "Modifying the device name"
|
||||
msgid "Bind with Pin Code"
|
||||
msgstr "Bind with Pin Code"
|
||||
|
||||
msgid "Bind with Access Code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Send to Printer SD card"
|
||||
msgstr "Send to Printer MicroSD card"
|
||||
|
||||
@@ -7563,6 +7595,75 @@ msgstr ""
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Line width"
|
||||
|
||||
@@ -7659,6 +7760,12 @@ msgstr "Post-processing Scripts"
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Frequent"
|
||||
|
||||
@@ -8729,20 +8836,22 @@ msgstr "View Liveview"
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Confirm and Update Nozzle"
|
||||
|
||||
msgid "LAN Connection Failed (Sending print file)"
|
||||
msgstr "LAN Connection Failed (Sending print file)"
|
||||
msgid "Connect the printer using IP and access code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
"Step 1. Please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr ""
|
||||
"Step 1, please confirm that Orca Slicer and your printer are on the same LAN."
|
||||
|
||||
msgid ""
|
||||
"Step 2, if the IP and Access Code below are different from the actual values "
|
||||
"Step 2. If the IP and Access Code below are different from the actual values "
|
||||
"on your printer, please correct them."
|
||||
msgstr ""
|
||||
"Step 2, if the IP and Access Code below are different from the actual values "
|
||||
"on your printer, please correct them."
|
||||
|
||||
msgid ""
|
||||
"Step 3. Please obtain the device SN from the printer side; it is usually "
|
||||
"found in the device information on the printer screen."
|
||||
msgstr ""
|
||||
|
||||
msgid "IP"
|
||||
msgstr "IP"
|
||||
@@ -8750,17 +8859,38 @@ msgstr "IP"
|
||||
msgid "Access Code"
|
||||
msgstr "Access Code"
|
||||
|
||||
msgid "Printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Where to find your printer's IP and Access Code?"
|
||||
msgstr "Where to find your printer's IP and Access Code?"
|
||||
|
||||
msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgstr "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
msgid "Manual Setup"
|
||||
msgstr ""
|
||||
|
||||
msgid "IP and Access Code Verified! You may close the window"
|
||||
msgstr "IP and Access Code Verified! You may close the window"
|
||||
msgid "connecting..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to connect to printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to publish login request."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer has already been bound."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer mode is incorrect, please switch to LAN Only."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting to printer... The dialog will close later"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection failed, please double check IP and Access Code"
|
||||
msgstr "Connection failed, please double check IP and Access Code"
|
||||
@@ -9684,44 +9814,44 @@ msgstr ""
|
||||
msgid "Nowhere"
|
||||
msgstr ""
|
||||
|
||||
msgid "Force cooling for overhang and bridge"
|
||||
msgstr "Force cooling for overhangs and bridges"
|
||||
msgid "Force cooling for overhangs and bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option to optimize part cooling fan speed for overhang and "
|
||||
"bridge to get better cooling"
|
||||
"Enable this option to allow adjustment of the part cooling fan speed for "
|
||||
"specifically for overhangs, internal and external bridges. Setting the fan "
|
||||
"speed specifically for these features can improve overall print quality and "
|
||||
"reduce warping."
|
||||
msgstr ""
|
||||
"Enable this option to optimize the part cooling fan speed for overhangs and "
|
||||
"bridges to get better cooling"
|
||||
|
||||
msgid "Fan speed for overhang"
|
||||
msgstr "Fan speed for overhangs"
|
||||
msgid "Overhangs and external bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
"wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
"bridge can get better quality for these part"
|
||||
"Use this part cooling fan speed when printing bridges or overhang walls with "
|
||||
"an overhang threshold that exceeds the value set in the 'Overhangs cooling "
|
||||
"threshold' parameter above. Increasing the cooling specifically for "
|
||||
"overhangs and bridges can improve the overall print quality of these "
|
||||
"features.\n"
|
||||
"\n"
|
||||
"Please note, this fan speed is clamped on the lower end by the minimum fan "
|
||||
"speed threshold set above. It is also adjusted upwards up to the maximum fan "
|
||||
"speed threshold when the minimum layer time threshold is not met."
|
||||
msgstr ""
|
||||
"Force part cooling fan to be this speed when printing bridges or overhang "
|
||||
"walls which have a large overhang degree. Forcing cooling for overhangs and "
|
||||
"bridges can achieve better quality for these parts."
|
||||
|
||||
msgid "Cooling overhang threshold"
|
||||
msgstr "Cooling overhang threshold"
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force cooling fan to be specific speed when overhang degree of printed part "
|
||||
"exceeds this value. Expressed as percentage which indicates how much width "
|
||||
"of the line without support from lower layer. 0% means forcing cooling for "
|
||||
"all outer wall no matter how much overhang degree"
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
"percentage, indicating the portion of each line's width that is unsupported "
|
||||
"by the layer beneath it. Setting this value to 0% forces the cooling fan to "
|
||||
"run for all outer walls, regardless of the overhang degree."
|
||||
msgstr ""
|
||||
"Force cooling fan to be a specific speed when overhang degree of printed "
|
||||
"part exceeds this value. This is expressed as a percentage which indicates "
|
||||
"how much width of the line without support from lower layer. 0% means "
|
||||
"forcing cooling for all outer wall no matter the overhang degree."
|
||||
|
||||
msgid "Bridge infill direction"
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9733,10 +9863,44 @@ msgstr ""
|
||||
"automatically. Otherwise the provided angle will be used for external "
|
||||
"bridges. Use 180° for zero angle."
|
||||
|
||||
msgid "Bridge density"
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Density of external bridges. 100% means solid bridge. Default is 100%."
|
||||
msgid ""
|
||||
"Internal bridging angle override. If left to zero, the bridging angle will "
|
||||
"be calculated automatically. Otherwise the provided angle will be used for "
|
||||
"internal bridges. Use 180°for zero angle.\n"
|
||||
"\n"
|
||||
"It is recommended to leave it at 0 unless there is a specific model need not "
|
||||
"to."
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
"Lower density external bridges can help improve reliability as there is more "
|
||||
"space for air to circulate around the extruded bridge, improving its cooling "
|
||||
"speed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
" Lower density internal bridges can help reduce top surface pillowing and "
|
||||
"improve internal bridge reliability as there is more space for air to "
|
||||
"circulate around the extruded bridge, improving its cooling speed. \n"
|
||||
"\n"
|
||||
"This option works particularly well when combined with the second internal "
|
||||
"bridge over infill option, further improving internal bridging structure "
|
||||
"before solid infill is extruded."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge flow ratio"
|
||||
@@ -9789,9 +9953,7 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Improve shell precision by adjusting outer wall spacing. This also improves "
|
||||
"layer consistency.\n"
|
||||
"Note: This setting will only take effect if the wall sequence is configured "
|
||||
"to Inner-Outer"
|
||||
"layer consistency."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
@@ -10023,12 +10185,24 @@ msgstr "upward compatible machine"
|
||||
msgid "Compatible machine condition"
|
||||
msgstr "Compatible machine condition"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active printer "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Compatible process profiles"
|
||||
|
||||
msgid "Compatible process profiles condition"
|
||||
msgstr "Compatible process profiles condition"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active print "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr ""
|
||||
"This determines the print sequence, allowing you to print layer-by-layer or "
|
||||
@@ -10128,8 +10302,8 @@ msgstr ""
|
||||
"required. Bridges can usually be printed directly without support over a "
|
||||
"reasonable distance."
|
||||
|
||||
msgid "Thick bridges"
|
||||
msgstr "Thick bridges"
|
||||
msgid "Thick external bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, bridges are more reliable, can bridge longer distances, but may "
|
||||
@@ -10149,36 +10323,86 @@ msgid ""
|
||||
"using large nozzles."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges (beta)"
|
||||
msgid "Extra bridge layers (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reducing pillowing on top surfaces in heavily slanted "
|
||||
"or curved models.\n"
|
||||
"This option enables the generation of an extra bridge layer over internal "
|
||||
"and/or external bridges.\n"
|
||||
"\n"
|
||||
"Extra bridge layers help improve bridge appearance and reliability, as the "
|
||||
"solid infill is better supported. This is especially useful in fast "
|
||||
"printers, where the bridge and solid infill speeds vary greatly. The extra "
|
||||
"bridge layer results in reduced pillowing on top surfaces, as well as "
|
||||
"reduced separation of the external bridge layer from its surrounding "
|
||||
"perimeters.\n"
|
||||
"\n"
|
||||
"It is generally recommended to set this to at least 'External bridge only', "
|
||||
"unless specific issues with the sliced model are found.\n"
|
||||
"\n"
|
||||
"Options:\n"
|
||||
"1. Disabled - does not generate second bridge layers. This is the default "
|
||||
"and is set for compatibility purposes.\n"
|
||||
"2. External bridge only - generates second bridge layers for external-facing "
|
||||
"bridges only. Please note that small bridges that are shorter or narrower "
|
||||
"than the set number of perimeters will be skipped as they would not benefit "
|
||||
"from a second bridge layer. If generated, the second bridge layer will be "
|
||||
"extruded parallel to the first bridge layer to reinforce the bridge "
|
||||
"strength.\n"
|
||||
"3. Internal bridge only - generates second bridge layers for internal "
|
||||
"bridges over sparse infill only. Please note that the internal bridges count "
|
||||
"towards the top shell layer count of your model. The second internal bridge "
|
||||
"layer will be extruded as close to perpendicular to the first as possible. "
|
||||
"If multiple regions in the same island, with varying bridge angles are "
|
||||
"present, the last region of that island will be selected as the angle "
|
||||
"reference.\n"
|
||||
"4. Apply to all - generates second bridge layers for both internal and "
|
||||
"external-facing bridges\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply to all"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reduce pillowing on top surfaces in heavily slanted or "
|
||||
"curved models.\n"
|
||||
"\n"
|
||||
"By default, small internal bridges are filtered out and the internal solid "
|
||||
"infill is printed directly over the sparse infill. This works well in most "
|
||||
"cases, speeding up printing without too much compromise on top surface "
|
||||
"quality. \n"
|
||||
"\n"
|
||||
"However, in heavily slanted or curved models especially where too low sparse "
|
||||
"infill density is used, this may result in curling of the unsupported solid "
|
||||
"infill, causing pillowing.\n"
|
||||
"However, in heavily slanted or curved models, especially where too low a "
|
||||
"sparse infill density is used, this may result in curling of the unsupported "
|
||||
"solid infill, causing pillowing.\n"
|
||||
"\n"
|
||||
"Disabling this option will print internal bridge layer over slightly "
|
||||
"unsupported internal solid infill. The options below control the amount of "
|
||||
"filtering, i.e. the amount of internal bridges created.\n"
|
||||
"Enabling limited filtering or no filtering will print internal bridge layer "
|
||||
"over slightly unsupported internal solid infill. The options below control "
|
||||
"the sensitivity of the filtering, i.e. they control where internal bridges "
|
||||
"are created.\n"
|
||||
"\n"
|
||||
"Filter - enable this option. This is the default behavior and works well in "
|
||||
"most cases.\n"
|
||||
"1. Filter - enables this option. This is the default behavior and works well "
|
||||
"in most cases.\n"
|
||||
"\n"
|
||||
"Limited filtering - creates internal bridges on heavily slanted surfaces, "
|
||||
"while avoiding creating unnecessary internal bridges. This works well for "
|
||||
"most difficult models.\n"
|
||||
"2. Limited filtering - creates internal bridges on heavily slanted surfaces "
|
||||
"while avoiding unnecessary bridges. This works well for most difficult "
|
||||
"models.\n"
|
||||
"\n"
|
||||
"No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models. "
|
||||
"However, in most cases it creates too many unnecessary bridges."
|
||||
"3. No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models; "
|
||||
"however, in most cases, it creates too many unnecessary bridges."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter"
|
||||
@@ -10957,6 +11181,9 @@ msgstr "This is the line pattern for internal sparse infill."
|
||||
msgid "Grid"
|
||||
msgstr "Grid"
|
||||
|
||||
msgid "2D Lattice"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line"
|
||||
msgstr "Line"
|
||||
|
||||
@@ -10987,6 +11214,25 @@ msgstr "Lightning"
|
||||
msgid "Cross Hatch"
|
||||
msgstr "Cross Hatch"
|
||||
|
||||
msgid "Quarter Cubic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 1"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the first set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 2"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the second set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill anchor length"
|
||||
msgstr ""
|
||||
|
||||
@@ -11171,10 +11417,24 @@ msgid "Support interface fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This fan speed is enforced during all support interfaces, to be able to "
|
||||
"weaken their bonding with a high fan speed.\n"
|
||||
"Set to -1 to disable this override.\n"
|
||||
"Can only be overridden by disable_fan_first_layers."
|
||||
"This part cooling fan speed is applied when printing support interfaces. "
|
||||
"Setting this parameter to a higher than regular speed reduces the layer "
|
||||
"binding strength between supports and the supported part, making them easier "
|
||||
"to separate.\n"
|
||||
"Set to -1 to disable it.\n"
|
||||
"This setting is overridden by disable_fan_first_layers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The part cooling fan speed used for all internal bridges. Set to -1 to use "
|
||||
"the overhang fan speed settings instead.\n"
|
||||
"\n"
|
||||
"Reducing the internal bridges fan speed, compared to your regular fan speed, "
|
||||
"can help reduce part warping due to excessive cooling applied over a large "
|
||||
"surface for a prolonged period of time."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -11220,6 +11480,59 @@ msgstr ""
|
||||
msgid "Whether to apply fuzzy skin on the first layer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise type"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Noise type to use for fuzzy skin generation.\n"
|
||||
"Classic: Classic uniform random noise.\n"
|
||||
"Perlin: Perlin noise, which gives a more consistent texture.\n"
|
||||
"Billow: Similar to perlin noise, but clumpier.\n"
|
||||
"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates "
|
||||
"marble-like textures.\n"
|
||||
"Voronoi: Divides the surface into voronoi cells, and displaces each one by a "
|
||||
"random amount. Creates a patchwork texture."
|
||||
msgstr ""
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Classic"
|
||||
|
||||
msgid "Perlin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billow"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ridged Multifractal"
|
||||
msgstr ""
|
||||
|
||||
msgid "Voronoi"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin feature size"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The base size of the coherent noise features, in mm. Higher values will "
|
||||
"result in larger features."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy Skin Noise Octaves"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The number of octaves of coherent noise to use. Higher values increase the "
|
||||
"detail of the noise, but also increase computation time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise persistence"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The decay rate for higher octaves of the coherent noise. Lower values will "
|
||||
"result in smoother noise."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out tiny gaps"
|
||||
msgstr "Filter out tiny gaps"
|
||||
|
||||
@@ -11625,6 +11938,14 @@ msgstr "Ironing line spacing"
|
||||
msgid "The distance between the lines of ironing"
|
||||
msgstr "This is the distance between the lines used for ironing."
|
||||
|
||||
msgid "Ironing inset"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The distance to keep from the edges. A value of 0 sets this to half of the "
|
||||
"nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ironing speed"
|
||||
msgstr "Ironing speed"
|
||||
|
||||
@@ -11854,7 +12175,17 @@ msgid ""
|
||||
"Default value of 3 works well for most cases. If your printer is stuttering, "
|
||||
"increase this value to reduce the number of adjustments made\n"
|
||||
"\n"
|
||||
"Allowed values: 1-5"
|
||||
"Allowed values: 0.5-5"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply only on external features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Applies extrusion rate smoothing only on external perimeters and overhangs. "
|
||||
"This can help reduce artefacts due to sharp speed transitions on externally "
|
||||
"visible overhangs without impacting the print speed of features that will "
|
||||
"not be visible to the user."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum speed for part cooling fan"
|
||||
@@ -11882,9 +12213,9 @@ msgid "Min print speed"
|
||||
msgstr "Min print speed"
|
||||
|
||||
msgid ""
|
||||
"The minimum printing speed that the printer will slow down to to attempt to "
|
||||
"maintain the minimum layer time above, when slow down for better layer "
|
||||
"cooling is enabled."
|
||||
"The minimum print speed to which the printer slows down to maintain the "
|
||||
"minimum layer time defined above when the slowdown for better layer cooling "
|
||||
"is enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Diameter of nozzle"
|
||||
@@ -12540,9 +12871,6 @@ msgid ""
|
||||
"with them. To avoid this, increase the skirt distance value.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
@@ -12804,25 +13132,22 @@ msgid "Enable support generation."
|
||||
msgstr "This enables support generation."
|
||||
|
||||
msgid ""
|
||||
"normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
"normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
"Normal (auto) and Tree (auto) is used to generate support automatically. If "
|
||||
"Normal (manual) or Tree (manual) is selected, only support enforcers are "
|
||||
"generated"
|
||||
msgstr ""
|
||||
"Normal(auto) and Tree(auto) are used to generate support automatically. If "
|
||||
"normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
"generated"
|
||||
|
||||
msgid "normal(auto)"
|
||||
msgstr "Normal(auto)"
|
||||
msgid "Normal (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(auto)"
|
||||
msgstr "Tree(auto)"
|
||||
msgid "Tree (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "normal(manual)"
|
||||
msgstr "Normal(manual)"
|
||||
msgid "Normal (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(manual)"
|
||||
msgstr "Tree(manual)"
|
||||
msgid "Tree (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support/object xy distance"
|
||||
msgstr "Support/object xy distance"
|
||||
@@ -13036,6 +13361,15 @@ msgstr ""
|
||||
"Support will be generated for overhangs whose slope angle is below this "
|
||||
"threshold."
|
||||
|
||||
msgid "Threshold overlap"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If threshold angle is zero, support will be generated for overhangs whose "
|
||||
"overlap is below the threshold. The smaller this value is, the steeper the "
|
||||
"overhang that can be printed without support."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tree support branch angle"
|
||||
msgstr "Tree support branch angle"
|
||||
|
||||
@@ -13515,9 +13849,6 @@ msgstr ""
|
||||
"for very thin areas, gap-fill is used. The Arachne engine produces walls "
|
||||
"with variable extrusion width."
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Classic"
|
||||
|
||||
msgid "Arachne"
|
||||
msgstr "Arachne"
|
||||
|
||||
@@ -15422,6 +15753,9 @@ msgstr "Printer"
|
||||
msgid "Print Host upload"
|
||||
msgstr "Print Host upload"
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
msgid "Could not get a valid Printer Host reference"
|
||||
msgstr "Could not get a valid Printer Host reference"
|
||||
|
||||
@@ -16238,6 +16572,106 @@ msgstr ""
|
||||
"ABS, appropriately increasing the heatbed temperature can reduce the "
|
||||
"probability of warping?"
|
||||
|
||||
#~ msgid "Current Cabin humidity"
|
||||
#~ msgstr "Current Cabin humidity"
|
||||
|
||||
#~ msgid "Stopped."
|
||||
#~ msgstr "Stopped."
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Connect failed [%d]!"
|
||||
#~ msgstr "Connection failed [%d]!"
|
||||
|
||||
#~ msgid "Initialize failed (Device connection not ready)!"
|
||||
#~ msgstr "Initialization failed (Device connection not ready)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Initialize failed (%s)!"
|
||||
#~ msgstr "Initialization failed (%s)!"
|
||||
|
||||
#~ msgid "LAN Connection Failed (Sending print file)"
|
||||
#~ msgstr "LAN Connection Failed (Sending print file)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
#~ msgstr ""
|
||||
#~ "Step 1, please confirm that Orca Slicer and your printer are on the same "
|
||||
#~ "LAN."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 2, if the IP and Access Code below are different from the actual "
|
||||
#~ "values on your printer, please correct them."
|
||||
#~ msgstr ""
|
||||
#~ "Step 2, if the IP and Access Code below are different from the actual "
|
||||
#~ "values on your printer, please correct them."
|
||||
|
||||
#~ msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
#~ msgstr "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
|
||||
#~ msgid "IP and Access Code Verified! You may close the window"
|
||||
#~ msgstr "IP and Access Code Verified! You may close the window"
|
||||
|
||||
#~ msgid "Force cooling for overhang and bridge"
|
||||
#~ msgstr "Force cooling for overhangs and bridges"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable this option to optimize part cooling fan speed for overhang and "
|
||||
#~ "bridge to get better cooling"
|
||||
#~ msgstr ""
|
||||
#~ "Enable this option to optimize the part cooling fan speed for overhangs "
|
||||
#~ "and bridges to get better cooling"
|
||||
|
||||
#~ msgid "Fan speed for overhang"
|
||||
#~ msgstr "Fan speed for overhangs"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
#~ "wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
#~ "bridge can get better quality for these part"
|
||||
#~ msgstr ""
|
||||
#~ "Force part cooling fan to be this speed when printing bridges or overhang "
|
||||
#~ "walls which have a large overhang degree. Forcing cooling for overhangs "
|
||||
#~ "and bridges can achieve better quality for these parts."
|
||||
|
||||
#~ msgid "Cooling overhang threshold"
|
||||
#~ msgstr "Cooling overhang threshold"
|
||||
|
||||
#, c-format
|
||||
#~ msgid ""
|
||||
#~ "Force cooling fan to be specific speed when overhang degree of printed "
|
||||
#~ "part exceeds this value. Expressed as percentage which indicates how much "
|
||||
#~ "width of the line without support from lower layer. 0% means forcing "
|
||||
#~ "cooling for all outer wall no matter how much overhang degree"
|
||||
#~ msgstr ""
|
||||
#~ "Force cooling fan to be a specific speed when overhang degree of printed "
|
||||
#~ "part exceeds this value. This is expressed as a percentage which "
|
||||
#~ "indicates how much width of the line without support from lower layer. "
|
||||
#~ "0% means forcing cooling for all outer wall no matter the overhang degree."
|
||||
|
||||
#~ msgid "Thick bridges"
|
||||
#~ msgstr "Thick bridges"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
#~ "normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
#~ "generated"
|
||||
#~ msgstr ""
|
||||
#~ "Normal(auto) and Tree(auto) are used to generate support automatically. "
|
||||
#~ "If normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
#~ "generated"
|
||||
|
||||
#~ msgid "normal(auto)"
|
||||
#~ msgstr "Normal(auto)"
|
||||
|
||||
#~ msgid "tree(auto)"
|
||||
#~ msgstr "Tree(auto)"
|
||||
|
||||
#~ msgid "normal(manual)"
|
||||
#~ msgstr "Normal(manual)"
|
||||
|
||||
#~ msgid "tree(manual)"
|
||||
#~ msgstr "Tree(manual)"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "Scale"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -2790,9 +2790,6 @@ msgstr ""
|
||||
msgid "About %s"
|
||||
msgstr "%s névjegye"
|
||||
|
||||
msgid "Orca Slicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
|
||||
msgstr ""
|
||||
|
||||
@@ -2846,9 +2843,6 @@ msgstr ""
|
||||
msgid "SN"
|
||||
msgstr "SN"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "Nyomtatás közben nem változtathatóak meg a AMS férőhelyek adatai"
|
||||
|
||||
msgid "Factors of Flow Dynamics Calibration"
|
||||
msgstr "Anyagáramlás kalibrálásának faktorai"
|
||||
|
||||
@@ -2861,6 +2855,9 @@ msgstr "K-tényező"
|
||||
msgid "Factor N"
|
||||
msgstr "N-tényező"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "Nyomtatás közben nem változtathatóak meg a AMS férőhelyek adatai"
|
||||
|
||||
msgid "Setting Virtual slot information while printing is not supported"
|
||||
msgstr "Setting Virtual slot information while printing is not supported"
|
||||
|
||||
@@ -2983,8 +2980,8 @@ msgstr "AMS kikapcsolása"
|
||||
msgid "Print with the filament mounted on the back of chassis"
|
||||
msgstr "Nyomtatás külső tartón lévő filamenttel"
|
||||
|
||||
msgid "Current Cabin humidity"
|
||||
msgstr "Current Cabin humidity"
|
||||
msgid "Current AMS humidity"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please change the desiccant when it is too wet. The indicator may not "
|
||||
@@ -5061,8 +5058,8 @@ msgstr ""
|
||||
msgid "The printer has been logged out and cannot connect."
|
||||
msgstr "A nyomtató ki van jelentkezve, és nem tud csatlakozni."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Megállítva."
|
||||
msgid "Video Stopped."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to start liveview)"
|
||||
msgstr "Sikertelen LAN csatlakozás (Nem sikerült elindítani az élő videót)"
|
||||
@@ -5153,10 +5150,6 @@ msgstr "Reload file list from printer."
|
||||
msgid "No printers."
|
||||
msgstr "No printers."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Connect failed [%d]!"
|
||||
msgstr "Connection failed [%d]!"
|
||||
|
||||
msgid "Loading file list..."
|
||||
msgstr "Loading file list..."
|
||||
|
||||
@@ -5166,9 +5159,6 @@ msgstr "Nincs fájl"
|
||||
msgid "Load failed"
|
||||
msgstr "Load failed"
|
||||
|
||||
msgid "Initialize failed (Device connection not ready)!"
|
||||
msgstr "Initialization failed (Device connection not ready)!"
|
||||
|
||||
msgid ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
@@ -5176,7 +5166,9 @@ msgstr ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
|
||||
msgid "Initialize failed (Storage unavailable, insert SD card.)!"
|
||||
msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -5185,10 +5177,6 @@ msgstr "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgid "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
msgstr "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed (%s)!"
|
||||
msgstr "Sikertelen inicializálás (%s)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "You are going to delete %u file from printer. Are you sure to continue?"
|
||||
msgid_plural ""
|
||||
@@ -5619,6 +5607,25 @@ msgstr "Legújabb verzió: "
|
||||
msgid "Not for now"
|
||||
msgstr "Not for now"
|
||||
|
||||
msgid "Server Exception"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The server is unable to respond. Please click the link below to check the "
|
||||
"server status."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If the server is in a fault state, you can temporarily use offline printing "
|
||||
"or local network printing."
|
||||
msgstr ""
|
||||
|
||||
msgid "How to use LAN only mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't show this dialog again"
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Mouse disconnected."
|
||||
msgstr "3D Mouse csatlakoztatva."
|
||||
|
||||
@@ -6330,6 +6337,10 @@ msgstr "Megnyitás projektként"
|
||||
msgid "Import geometry only"
|
||||
msgstr "Csak a geometria importálása"
|
||||
|
||||
msgid ""
|
||||
"This option can be changed later in preferences, under 'Load Behaviour'."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one G-code file can be opened at the same time."
|
||||
msgstr "Egyszerre csak egy G-kód fájl nyitható meg."
|
||||
|
||||
@@ -6762,6 +6773,24 @@ msgstr ""
|
||||
msgid "Associate URLs to OrcaSlicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ask When Relevant"
|
||||
msgstr ""
|
||||
|
||||
msgid "Always Ask"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum recent projects"
|
||||
msgstr "Maximum recent projects"
|
||||
|
||||
@@ -7334,6 +7363,9 @@ msgstr "Eszköz nevének módosítása"
|
||||
msgid "Bind with Pin Code"
|
||||
msgstr "Bind with Pin Code"
|
||||
|
||||
msgid "Bind with Access Code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Send to Printer SD card"
|
||||
msgstr "Küldés a nyomtatóban lévő MicroSD kártyára"
|
||||
|
||||
@@ -7634,6 +7666,75 @@ msgstr ""
|
||||
"gombbal a tálca egy üres részére, majd válaszd a „Primitív hozzáadása“ -> "
|
||||
"„Timelapse törlőtorony“ lehetőséget."
|
||||
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Nyomtatott vonal szélessége"
|
||||
|
||||
@@ -7730,6 +7831,12 @@ msgstr "Post-processing Scripts"
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Gyakori"
|
||||
|
||||
@@ -8822,21 +8929,22 @@ msgstr "View Liveview"
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Fúvóka lecserélésének megerősítése"
|
||||
|
||||
msgid "LAN Connection Failed (Sending print file)"
|
||||
msgstr "LAN kapcsolódás sikertelen (nyomtatási fájl küldése)"
|
||||
|
||||
msgid ""
|
||||
"Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgid "Connect the printer using IP and access code"
|
||||
msgstr ""
|
||||
"1. lépés: Ellenőrizd, hogy a Orca Slicer és a nyomtató ugyanazon a helyi "
|
||||
"hálózaton van."
|
||||
|
||||
msgid ""
|
||||
"Step 2, if the IP and Access Code below are different from the actual values "
|
||||
"Step 1. Please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 2. If the IP and Access Code below are different from the actual values "
|
||||
"on your printer, please correct them."
|
||||
msgstr ""
|
||||
"2. lépés: Ha az alábbi IP és hozzáférési kód eltér a nyomtatón láthatótól, "
|
||||
"kérjük, javítsd ki őket."
|
||||
|
||||
msgid ""
|
||||
"Step 3. Please obtain the device SN from the printer side; it is usually "
|
||||
"found in the device information on the printer screen."
|
||||
msgstr ""
|
||||
|
||||
msgid "IP"
|
||||
msgstr "IP"
|
||||
@@ -8844,19 +8952,38 @@ msgstr "IP"
|
||||
msgid "Access Code"
|
||||
msgstr "Hozzáférési kód"
|
||||
|
||||
msgid "Printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Where to find your printer's IP and Access Code?"
|
||||
msgstr "Hol találom a nyomtató IP címét és a hozzáférési kódot?"
|
||||
|
||||
msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
"3. lépés: Pingeld meg az IP-címet a csomagveszteség és késleltetés "
|
||||
"ellenőrzéséhez."
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Teszt"
|
||||
msgid "Manual Setup"
|
||||
msgstr ""
|
||||
|
||||
msgid "IP and Access Code Verified! You may close the window"
|
||||
msgstr "IP és hozzáférési kód leellenőrizve! Bezárhatod az ablakot"
|
||||
msgid "connecting..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to connect to printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to publish login request."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer has already been bound."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer mode is incorrect, please switch to LAN Only."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting to printer... The dialog will close later"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection failed, please double check IP and Access Code"
|
||||
msgstr ""
|
||||
@@ -9797,46 +9924,44 @@ msgstr ""
|
||||
msgid "Nowhere"
|
||||
msgstr ""
|
||||
|
||||
msgid "Force cooling for overhang and bridge"
|
||||
msgstr "Hűtés kényszerítése túlnyúlásoknál és áthidalásoknál"
|
||||
msgid "Force cooling for overhangs and bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option to optimize part cooling fan speed for overhang and "
|
||||
"bridge to get better cooling"
|
||||
"Enable this option to allow adjustment of the part cooling fan speed for "
|
||||
"specifically for overhangs, internal and external bridges. Setting the fan "
|
||||
"speed specifically for these features can improve overall print quality and "
|
||||
"reduce warping."
|
||||
msgstr ""
|
||||
"Engedélyezd ezt az opciót a tárgyhűtő ventilátor fordulatszámának "
|
||||
"optimalizálásához a jobb hűtés érdekében túlnyúlásoknál és áthidalásoknál"
|
||||
|
||||
msgid "Fan speed for overhang"
|
||||
msgstr "Ventilátor fordulatszám túlnyúlásnál"
|
||||
msgid "Overhangs and external bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
"wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
"bridge can get better quality for these part"
|
||||
"Use this part cooling fan speed when printing bridges or overhang walls with "
|
||||
"an overhang threshold that exceeds the value set in the 'Overhangs cooling "
|
||||
"threshold' parameter above. Increasing the cooling specifically for "
|
||||
"overhangs and bridges can improve the overall print quality of these "
|
||||
"features.\n"
|
||||
"\n"
|
||||
"Please note, this fan speed is clamped on the lower end by the minimum fan "
|
||||
"speed threshold set above. It is also adjusted upwards up to the maximum fan "
|
||||
"speed threshold when the minimum layer time threshold is not met."
|
||||
msgstr ""
|
||||
"A nagy túlnyúlású áthidalások vagy túlnyúló falak nyomtatásakor a tárgyhűtő "
|
||||
"ventilátor kényszerítve lesz, hogy ezt a fordulatszámot használja. A "
|
||||
"túlnyúlások és áthidalások hűtésének kikényszerítésével jobb minőség érhető "
|
||||
"el ezeken a részeken."
|
||||
|
||||
msgid "Cooling overhang threshold"
|
||||
msgstr "Túlnyúlás hűtésének küszöbértéke"
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force cooling fan to be specific speed when overhang degree of printed part "
|
||||
"exceeds this value. Expressed as percentage which indicates how much width "
|
||||
"of the line without support from lower layer. 0% means forcing cooling for "
|
||||
"all outer wall no matter how much overhang degree"
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
"percentage, indicating the portion of each line's width that is unsupported "
|
||||
"by the layer beneath it. Setting this value to 0% forces the cooling fan to "
|
||||
"run for all outer walls, regardless of the overhang degree."
|
||||
msgstr ""
|
||||
"Kényszeríti a hűtőventilátort, hogy egy adott fordulatszámot használjon, ha "
|
||||
"a túlnyúlás mértéke meghaladja ezt az értéket. Százalékban van kifejezve, "
|
||||
"ami azt jelzi, hogy a nyomtatott vonal hány százaléka maradhat az alsóbb "
|
||||
"rétegek alátámasztása nélkül. A 0%%-os érték bekapcsolja a hűtést a külső "
|
||||
"fal teljes szélességén, függetlenül a túlnyúlás mértékétől."
|
||||
|
||||
msgid "Bridge infill direction"
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9849,10 +9974,44 @@ msgstr ""
|
||||
"érték kerül alkalmazásra. Ha az áthidalást a falakkal párhuzamosra szeretnéd "
|
||||
"állítani, használj 180°-os értéket."
|
||||
|
||||
msgid "Bridge density"
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Density of external bridges. 100% means solid bridge. Default is 100%."
|
||||
msgid ""
|
||||
"Internal bridging angle override. If left to zero, the bridging angle will "
|
||||
"be calculated automatically. Otherwise the provided angle will be used for "
|
||||
"internal bridges. Use 180°for zero angle.\n"
|
||||
"\n"
|
||||
"It is recommended to leave it at 0 unless there is a specific model need not "
|
||||
"to."
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
"Lower density external bridges can help improve reliability as there is more "
|
||||
"space for air to circulate around the extruded bridge, improving its cooling "
|
||||
"speed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
" Lower density internal bridges can help reduce top surface pillowing and "
|
||||
"improve internal bridge reliability as there is more space for air to "
|
||||
"circulate around the extruded bridge, improving its cooling speed. \n"
|
||||
"\n"
|
||||
"This option works particularly well when combined with the second internal "
|
||||
"bridge over infill option, further improving internal bridging structure "
|
||||
"before solid infill is extruded."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge flow ratio"
|
||||
@@ -9905,9 +10064,7 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Improve shell precision by adjusting outer wall spacing. This also improves "
|
||||
"layer consistency.\n"
|
||||
"Note: This setting will only take effect if the wall sequence is configured "
|
||||
"to Inner-Outer"
|
||||
"layer consistency."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
@@ -10139,12 +10296,24 @@ msgstr "felfelé kompatibilis gép"
|
||||
msgid "Compatible machine condition"
|
||||
msgstr "Kompatibilis gépállapot"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active printer "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Kompatibilis folyamatprofilok"
|
||||
|
||||
msgid "Compatible process profiles condition"
|
||||
msgstr "Kompatibilis folyamatprofil állapot"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active print "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr "Nyomtatási sorrend, rétegenként vagy tárgyanként"
|
||||
|
||||
@@ -10242,8 +10411,8 @@ msgstr ""
|
||||
"Nem támasztja alá az áthidalásokat, ezáltal támaszanyagot spórolva. Az "
|
||||
"áthidalások általában támasz nélkül is jól nyomtathatók, ha nem túl hosszúak"
|
||||
|
||||
msgid "Thick bridges"
|
||||
msgstr "Vastag áthidalások"
|
||||
msgid "Thick external bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, bridges are more reliable, can bridge longer distances, but may "
|
||||
@@ -10264,36 +10433,86 @@ msgid ""
|
||||
"using large nozzles."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges (beta)"
|
||||
msgid "Extra bridge layers (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reducing pillowing on top surfaces in heavily slanted "
|
||||
"or curved models.\n"
|
||||
"This option enables the generation of an extra bridge layer over internal "
|
||||
"and/or external bridges.\n"
|
||||
"\n"
|
||||
"Extra bridge layers help improve bridge appearance and reliability, as the "
|
||||
"solid infill is better supported. This is especially useful in fast "
|
||||
"printers, where the bridge and solid infill speeds vary greatly. The extra "
|
||||
"bridge layer results in reduced pillowing on top surfaces, as well as "
|
||||
"reduced separation of the external bridge layer from its surrounding "
|
||||
"perimeters.\n"
|
||||
"\n"
|
||||
"It is generally recommended to set this to at least 'External bridge only', "
|
||||
"unless specific issues with the sliced model are found.\n"
|
||||
"\n"
|
||||
"Options:\n"
|
||||
"1. Disabled - does not generate second bridge layers. This is the default "
|
||||
"and is set for compatibility purposes.\n"
|
||||
"2. External bridge only - generates second bridge layers for external-facing "
|
||||
"bridges only. Please note that small bridges that are shorter or narrower "
|
||||
"than the set number of perimeters will be skipped as they would not benefit "
|
||||
"from a second bridge layer. If generated, the second bridge layer will be "
|
||||
"extruded parallel to the first bridge layer to reinforce the bridge "
|
||||
"strength.\n"
|
||||
"3. Internal bridge only - generates second bridge layers for internal "
|
||||
"bridges over sparse infill only. Please note that the internal bridges count "
|
||||
"towards the top shell layer count of your model. The second internal bridge "
|
||||
"layer will be extruded as close to perpendicular to the first as possible. "
|
||||
"If multiple regions in the same island, with varying bridge angles are "
|
||||
"present, the last region of that island will be selected as the angle "
|
||||
"reference.\n"
|
||||
"4. Apply to all - generates second bridge layers for both internal and "
|
||||
"external-facing bridges\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "Letiltva"
|
||||
|
||||
msgid "External bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply to all"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reduce pillowing on top surfaces in heavily slanted or "
|
||||
"curved models.\n"
|
||||
"\n"
|
||||
"By default, small internal bridges are filtered out and the internal solid "
|
||||
"infill is printed directly over the sparse infill. This works well in most "
|
||||
"cases, speeding up printing without too much compromise on top surface "
|
||||
"quality. \n"
|
||||
"\n"
|
||||
"However, in heavily slanted or curved models especially where too low sparse "
|
||||
"infill density is used, this may result in curling of the unsupported solid "
|
||||
"infill, causing pillowing.\n"
|
||||
"However, in heavily slanted or curved models, especially where too low a "
|
||||
"sparse infill density is used, this may result in curling of the unsupported "
|
||||
"solid infill, causing pillowing.\n"
|
||||
"\n"
|
||||
"Disabling this option will print internal bridge layer over slightly "
|
||||
"unsupported internal solid infill. The options below control the amount of "
|
||||
"filtering, i.e. the amount of internal bridges created.\n"
|
||||
"Enabling limited filtering or no filtering will print internal bridge layer "
|
||||
"over slightly unsupported internal solid infill. The options below control "
|
||||
"the sensitivity of the filtering, i.e. they control where internal bridges "
|
||||
"are created.\n"
|
||||
"\n"
|
||||
"Filter - enable this option. This is the default behavior and works well in "
|
||||
"most cases.\n"
|
||||
"1. Filter - enables this option. This is the default behavior and works well "
|
||||
"in most cases.\n"
|
||||
"\n"
|
||||
"Limited filtering - creates internal bridges on heavily slanted surfaces, "
|
||||
"while avoiding creating unnecessary internal bridges. This works well for "
|
||||
"most difficult models.\n"
|
||||
"2. Limited filtering - creates internal bridges on heavily slanted surfaces "
|
||||
"while avoiding unnecessary bridges. This works well for most difficult "
|
||||
"models.\n"
|
||||
"\n"
|
||||
"No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models. "
|
||||
"However, in most cases it creates too many unnecessary bridges."
|
||||
"3. No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models; "
|
||||
"however, in most cases, it creates too many unnecessary bridges."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter"
|
||||
@@ -11080,6 +11299,9 @@ msgstr "Ez a belső ritkás kitöltés mintája."
|
||||
msgid "Grid"
|
||||
msgstr "Rács"
|
||||
|
||||
msgid "2D Lattice"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line"
|
||||
msgstr "Vonal"
|
||||
|
||||
@@ -11110,6 +11332,25 @@ msgstr "Világítás"
|
||||
msgid "Cross Hatch"
|
||||
msgstr "Cross Hatch"
|
||||
|
||||
msgid "Quarter Cubic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 1"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the first set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 2"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the second set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill anchor length"
|
||||
msgstr ""
|
||||
|
||||
@@ -11295,10 +11536,24 @@ msgid "Support interface fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This fan speed is enforced during all support interfaces, to be able to "
|
||||
"weaken their bonding with a high fan speed.\n"
|
||||
"Set to -1 to disable this override.\n"
|
||||
"Can only be overridden by disable_fan_first_layers."
|
||||
"This part cooling fan speed is applied when printing support interfaces. "
|
||||
"Setting this parameter to a higher than regular speed reduces the layer "
|
||||
"binding strength between supports and the supported part, making them easier "
|
||||
"to separate.\n"
|
||||
"Set to -1 to disable it.\n"
|
||||
"This setting is overridden by disable_fan_first_layers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The part cooling fan speed used for all internal bridges. Set to -1 to use "
|
||||
"the overhang fan speed settings instead.\n"
|
||||
"\n"
|
||||
"Reducing the internal bridges fan speed, compared to your regular fan speed, "
|
||||
"can help reduce part warping due to excessive cooling applied over a large "
|
||||
"surface for a prolonged period of time."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -11342,6 +11597,59 @@ msgstr ""
|
||||
msgid "Whether to apply fuzzy skin on the first layer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise type"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Noise type to use for fuzzy skin generation.\n"
|
||||
"Classic: Classic uniform random noise.\n"
|
||||
"Perlin: Perlin noise, which gives a more consistent texture.\n"
|
||||
"Billow: Similar to perlin noise, but clumpier.\n"
|
||||
"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates "
|
||||
"marble-like textures.\n"
|
||||
"Voronoi: Divides the surface into voronoi cells, and displaces each one by a "
|
||||
"random amount. Creates a patchwork texture."
|
||||
msgstr ""
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Klasszikus"
|
||||
|
||||
msgid "Perlin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billow"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ridged Multifractal"
|
||||
msgstr ""
|
||||
|
||||
msgid "Voronoi"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin feature size"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The base size of the coherent noise features, in mm. Higher values will "
|
||||
"result in larger features."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy Skin Noise Octaves"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The number of octaves of coherent noise to use. Higher values increase the "
|
||||
"detail of the noise, but also increase computation time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise persistence"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The decay rate for higher octaves of the coherent noise. Lower values will "
|
||||
"result in smoother noise."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out tiny gaps"
|
||||
msgstr "Apró rések szűrése"
|
||||
|
||||
@@ -11754,6 +12062,14 @@ msgstr "Vasalási vonalak közötti távolság"
|
||||
msgid "The distance between the lines of ironing"
|
||||
msgstr "A vasaláshoz használt vonalak közötti távolság."
|
||||
|
||||
msgid "Ironing inset"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The distance to keep from the edges. A value of 0 sets this to half of the "
|
||||
"nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ironing speed"
|
||||
msgstr "Vasalás sebessége"
|
||||
|
||||
@@ -11986,7 +12302,17 @@ msgid ""
|
||||
"Default value of 3 works well for most cases. If your printer is stuttering, "
|
||||
"increase this value to reduce the number of adjustments made\n"
|
||||
"\n"
|
||||
"Allowed values: 1-5"
|
||||
"Allowed values: 0.5-5"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply only on external features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Applies extrusion rate smoothing only on external perimeters and overhangs. "
|
||||
"This can help reduce artefacts due to sharp speed transitions on externally "
|
||||
"visible overhangs without impacting the print speed of features that will "
|
||||
"not be visible to the user."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum speed for part cooling fan"
|
||||
@@ -12015,9 +12341,9 @@ msgid "Min print speed"
|
||||
msgstr "Min. nyomtatási sebesség"
|
||||
|
||||
msgid ""
|
||||
"The minimum printing speed that the printer will slow down to to attempt to "
|
||||
"maintain the minimum layer time above, when slow down for better layer "
|
||||
"cooling is enabled."
|
||||
"The minimum print speed to which the printer slows down to maintain the "
|
||||
"minimum layer time defined above when the slowdown for better layer cooling "
|
||||
"is enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Diameter of nozzle"
|
||||
@@ -12690,9 +13016,6 @@ msgid ""
|
||||
"with them. To avoid this, increase the skirt distance value.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "Letiltva"
|
||||
|
||||
msgid "Enabled"
|
||||
msgstr "Engedélyezve"
|
||||
|
||||
@@ -12967,25 +13290,22 @@ msgid "Enable support generation."
|
||||
msgstr "Engedélyezi a támasz generálását."
|
||||
|
||||
msgid ""
|
||||
"normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
"normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
"Normal (auto) and Tree (auto) is used to generate support automatically. If "
|
||||
"Normal (manual) or Tree (manual) is selected, only support enforcers are "
|
||||
"generated"
|
||||
msgstr ""
|
||||
"A normál (auto) és a fa (auto) a támaszok automatikus generálásához van "
|
||||
"használva. Ha a normál (kézi) vagy a fa (kézi) van kiválasztva, akkor csak a "
|
||||
"kényszerített támaszok kerülnek generálásra."
|
||||
|
||||
msgid "normal(auto)"
|
||||
msgstr "normál (auto)"
|
||||
msgid "Normal (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(auto)"
|
||||
msgstr "fa (auto)"
|
||||
msgid "Tree (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "normal(manual)"
|
||||
msgstr "normál (manuális)"
|
||||
msgid "Normal (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(manual)"
|
||||
msgstr "fa (manuális)"
|
||||
msgid "Tree (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support/object xy distance"
|
||||
msgstr "Támasz/tárgy XY távolság"
|
||||
@@ -13206,6 +13526,15 @@ msgstr ""
|
||||
"Az olyan túlnyúlásoknál, amelynek dőlésszöge ez alatt az érték alatt van, "
|
||||
"támasz fog generálódni."
|
||||
|
||||
msgid "Threshold overlap"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If threshold angle is zero, support will be generated for overhangs whose "
|
||||
"overlap is below the threshold. The smaller this value is, the steeper the "
|
||||
"overhang that can be printed without support."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tree support branch angle"
|
||||
msgstr "Fa típusú támasz ágainak szöge"
|
||||
|
||||
@@ -13688,9 +14017,6 @@ msgstr ""
|
||||
"vékony területeknél hézagkitöltést használ. Az Arachne engine változó "
|
||||
"szélességű falakat generál."
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Klasszikus"
|
||||
|
||||
msgid "Arachne"
|
||||
msgstr "Arachne"
|
||||
|
||||
@@ -15609,6 +15935,9 @@ msgstr "Fizikai nyomtató"
|
||||
msgid "Print Host upload"
|
||||
msgstr "Feltöltés a nyomtatóra"
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Teszt"
|
||||
|
||||
msgid "Could not get a valid Printer Host reference"
|
||||
msgstr "Nem sikerült érvényes nyomtató hivatkozást lekérni"
|
||||
|
||||
@@ -16426,6 +16755,110 @@ msgstr ""
|
||||
"Tudtad, hogy a vetemedésre hajlamos anyagok (például ABS) nyomtatásakor a "
|
||||
"tárgyasztal hőmérsékletének növelése csökkentheti a vetemedés valószínűségét?"
|
||||
|
||||
#~ msgid "Current Cabin humidity"
|
||||
#~ msgstr "Current Cabin humidity"
|
||||
|
||||
#~ msgid "Stopped."
|
||||
#~ msgstr "Megállítva."
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Connect failed [%d]!"
|
||||
#~ msgstr "Connection failed [%d]!"
|
||||
|
||||
#~ msgid "Initialize failed (Device connection not ready)!"
|
||||
#~ msgstr "Initialization failed (Device connection not ready)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Initialize failed (%s)!"
|
||||
#~ msgstr "Sikertelen inicializálás (%s)!"
|
||||
|
||||
#~ msgid "LAN Connection Failed (Sending print file)"
|
||||
#~ msgstr "LAN kapcsolódás sikertelen (nyomtatási fájl küldése)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
#~ msgstr ""
|
||||
#~ "1. lépés: Ellenőrizd, hogy a Orca Slicer és a nyomtató ugyanazon a helyi "
|
||||
#~ "hálózaton van."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 2, if the IP and Access Code below are different from the actual "
|
||||
#~ "values on your printer, please correct them."
|
||||
#~ msgstr ""
|
||||
#~ "2. lépés: Ha az alábbi IP és hozzáférési kód eltér a nyomtatón "
|
||||
#~ "láthatótól, kérjük, javítsd ki őket."
|
||||
|
||||
#~ msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
#~ msgstr ""
|
||||
#~ "3. lépés: Pingeld meg az IP-címet a csomagveszteség és késleltetés "
|
||||
#~ "ellenőrzéséhez."
|
||||
|
||||
#~ msgid "IP and Access Code Verified! You may close the window"
|
||||
#~ msgstr "IP és hozzáférési kód leellenőrizve! Bezárhatod az ablakot"
|
||||
|
||||
#~ msgid "Force cooling for overhang and bridge"
|
||||
#~ msgstr "Hűtés kényszerítése túlnyúlásoknál és áthidalásoknál"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable this option to optimize part cooling fan speed for overhang and "
|
||||
#~ "bridge to get better cooling"
|
||||
#~ msgstr ""
|
||||
#~ "Engedélyezd ezt az opciót a tárgyhűtő ventilátor fordulatszámának "
|
||||
#~ "optimalizálásához a jobb hűtés érdekében túlnyúlásoknál és áthidalásoknál"
|
||||
|
||||
#~ msgid "Fan speed for overhang"
|
||||
#~ msgstr "Ventilátor fordulatszám túlnyúlásnál"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
#~ "wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
#~ "bridge can get better quality for these part"
|
||||
#~ msgstr ""
|
||||
#~ "A nagy túlnyúlású áthidalások vagy túlnyúló falak nyomtatásakor a "
|
||||
#~ "tárgyhűtő ventilátor kényszerítve lesz, hogy ezt a fordulatszámot "
|
||||
#~ "használja. A túlnyúlások és áthidalások hűtésének kikényszerítésével jobb "
|
||||
#~ "minőség érhető el ezeken a részeken."
|
||||
|
||||
#~ msgid "Cooling overhang threshold"
|
||||
#~ msgstr "Túlnyúlás hűtésének küszöbértéke"
|
||||
|
||||
#, c-format
|
||||
#~ msgid ""
|
||||
#~ "Force cooling fan to be specific speed when overhang degree of printed "
|
||||
#~ "part exceeds this value. Expressed as percentage which indicates how much "
|
||||
#~ "width of the line without support from lower layer. 0% means forcing "
|
||||
#~ "cooling for all outer wall no matter how much overhang degree"
|
||||
#~ msgstr ""
|
||||
#~ "Kényszeríti a hűtőventilátort, hogy egy adott fordulatszámot használjon, "
|
||||
#~ "ha a túlnyúlás mértéke meghaladja ezt az értéket. Százalékban van "
|
||||
#~ "kifejezve, ami azt jelzi, hogy a nyomtatott vonal hány százaléka maradhat "
|
||||
#~ "az alsóbb rétegek alátámasztása nélkül. A 0%%-os érték bekapcsolja a "
|
||||
#~ "hűtést a külső fal teljes szélességén, függetlenül a túlnyúlás mértékétől."
|
||||
|
||||
#~ msgid "Thick bridges"
|
||||
#~ msgstr "Vastag áthidalások"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
#~ "normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
#~ "generated"
|
||||
#~ msgstr ""
|
||||
#~ "A normál (auto) és a fa (auto) a támaszok automatikus generálásához van "
|
||||
#~ "használva. Ha a normál (kézi) vagy a fa (kézi) van kiválasztva, akkor "
|
||||
#~ "csak a kényszerített támaszok kerülnek generálásra."
|
||||
|
||||
#~ msgid "normal(auto)"
|
||||
#~ msgstr "normál (auto)"
|
||||
|
||||
#~ msgid "tree(auto)"
|
||||
#~ msgstr "fa (auto)"
|
||||
|
||||
#~ msgid "normal(manual)"
|
||||
#~ msgstr "normál (manuális)"
|
||||
|
||||
#~ msgid "tree(manual)"
|
||||
#~ msgstr "fa (manuális)"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "Átméretezés"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -2779,9 +2779,6 @@ msgstr ""
|
||||
msgid "About %s"
|
||||
msgstr "%s について"
|
||||
|
||||
msgid "Orca Slicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
|
||||
msgstr ""
|
||||
|
||||
@@ -2832,9 +2829,6 @@ msgstr "入力値範囲は %1% ~ %2%"
|
||||
msgid "SN"
|
||||
msgstr "シリアル番号"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "造形中に、AMSスロットを設定できません。"
|
||||
|
||||
msgid "Factors of Flow Dynamics Calibration"
|
||||
msgstr "Factors of Flow Dynamics Calibration"
|
||||
|
||||
@@ -2847,6 +2841,9 @@ msgstr "係数K"
|
||||
msgid "Factor N"
|
||||
msgstr "係数N"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "造形中に、AMSスロットを設定できません。"
|
||||
|
||||
msgid "Setting Virtual slot information while printing is not supported"
|
||||
msgstr "Setting Virtual slot information while printing is not supported"
|
||||
|
||||
@@ -2962,8 +2959,8 @@ msgstr "AMSを無効"
|
||||
msgid "Print with the filament mounted on the back of chassis"
|
||||
msgstr "外部スプールホルダーのフィラメントで造形します"
|
||||
|
||||
msgid "Current Cabin humidity"
|
||||
msgstr "Current Cabin humidity"
|
||||
msgid "Current AMS humidity"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please change the desiccant when it is too wet. The indicator may not "
|
||||
@@ -4993,8 +4990,8 @@ msgstr ""
|
||||
msgid "The printer has been logged out and cannot connect."
|
||||
msgstr "The printer has been logged out and cannot connect."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "中止しました"
|
||||
msgid "Video Stopped."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to start liveview)"
|
||||
msgstr "LAN接続失敗 (ライブビュー開始失敗)"
|
||||
@@ -5082,10 +5079,6 @@ msgstr "Reload file list from printer."
|
||||
msgid "No printers."
|
||||
msgstr "プリンタなし"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Connect failed [%d]!"
|
||||
msgstr "接続に失敗しました (%d)"
|
||||
|
||||
msgid "Loading file list..."
|
||||
msgstr "ファイルリストを読込み中"
|
||||
|
||||
@@ -5095,9 +5088,6 @@ msgstr "ファイル無し"
|
||||
msgid "Load failed"
|
||||
msgstr "Load failed"
|
||||
|
||||
msgid "Initialize failed (Device connection not ready)!"
|
||||
msgstr "Initialization failed (Device connection not ready)!"
|
||||
|
||||
msgid ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
@@ -5105,7 +5095,9 @@ msgstr ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
|
||||
msgid "Initialize failed (Storage unavailable, insert SD card.)!"
|
||||
msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -5114,10 +5106,6 @@ msgstr "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgid "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
msgstr "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed (%s)!"
|
||||
msgstr "初期化失敗 (%s)"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "You are going to delete %u file from printer. Are you sure to continue?"
|
||||
msgid_plural ""
|
||||
@@ -5549,6 +5537,25 @@ msgstr "Latest Version: "
|
||||
msgid "Not for now"
|
||||
msgstr "Not for now"
|
||||
|
||||
msgid "Server Exception"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The server is unable to respond. Please click the link below to check the "
|
||||
"server status."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If the server is in a fault state, you can temporarily use offline printing "
|
||||
"or local network printing."
|
||||
msgstr ""
|
||||
|
||||
msgid "How to use LAN only mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't show this dialog again"
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Mouse disconnected."
|
||||
msgstr "3D Mouseが切断されました。"
|
||||
|
||||
@@ -6244,6 +6251,10 @@ msgstr "プロジェクトとして開く"
|
||||
msgid "Import geometry only"
|
||||
msgstr "ジオメトリのみをインポート"
|
||||
|
||||
msgid ""
|
||||
"This option can be changed later in preferences, under 'Load Behaviour'."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one G-code file can be opened at the same time."
|
||||
msgstr "G-codeファイルは一度一つしか開きません"
|
||||
|
||||
@@ -6668,6 +6679,24 @@ msgstr ""
|
||||
msgid "Associate URLs to OrcaSlicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ask When Relevant"
|
||||
msgstr ""
|
||||
|
||||
msgid "Always Ask"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum recent projects"
|
||||
msgstr "Maximum recent projects"
|
||||
|
||||
@@ -7217,6 +7246,9 @@ msgstr "デバイス名を変更"
|
||||
msgid "Bind with Pin Code"
|
||||
msgstr "Bind with Pin Code"
|
||||
|
||||
msgid "Bind with Access Code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Send to Printer SD card"
|
||||
msgstr "プリンターのSDカードに送信"
|
||||
|
||||
@@ -7506,6 +7538,75 @@ msgstr ""
|
||||
"を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム"
|
||||
"ラプスプライムタワー」で追加できます。"
|
||||
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "押出線幅"
|
||||
|
||||
@@ -7601,6 +7702,12 @@ msgstr "Post-processing Scripts"
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "よく使う"
|
||||
|
||||
@@ -8664,17 +8771,22 @@ msgstr "View Liveview"
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Confirm and Update Nozzle"
|
||||
|
||||
msgid "LAN Connection Failed (Sending print file)"
|
||||
msgstr "LAN接続失敗 (造形ファイル送信)"
|
||||
msgid "Connect the printer using IP and access code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr "1Orca Slicerとプリンターが同一のLANに繋いでいること確認してください。"
|
||||
"Step 1. Please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 2, if the IP and Access Code below are different from the actual values "
|
||||
"Step 2. If the IP and Access Code below are different from the actual values "
|
||||
"on your printer, please correct them."
|
||||
msgstr "2下記IPアドレスやアクセスコードが一致していない場合修正してください。"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 3. Please obtain the device SN from the printer side; it is usually "
|
||||
"found in the device information on the printer screen."
|
||||
msgstr ""
|
||||
|
||||
msgid "IP"
|
||||
msgstr "IP"
|
||||
@@ -8682,19 +8794,38 @@ msgstr "IP"
|
||||
msgid "Access Code"
|
||||
msgstr "アクセスコード"
|
||||
|
||||
msgid "Printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Where to find your printer's IP and Access Code?"
|
||||
msgstr "どこでプリンターのIPアドレスとアクセスコードを確認できますか?"
|
||||
|
||||
msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
"ステップ3: パケットロスとレイテンシを確認するために、IPアドレスに対してpingを"
|
||||
"実行します。"
|
||||
|
||||
msgid "Test"
|
||||
msgstr "テスト"
|
||||
msgid "Manual Setup"
|
||||
msgstr ""
|
||||
|
||||
msgid "IP and Access Code Verified! You may close the window"
|
||||
msgstr "IP and Access Code Verified! You may close the window"
|
||||
msgid "connecting..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to connect to printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to publish login request."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer has already been bound."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer mode is incorrect, please switch to LAN Only."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting to printer... The dialog will close later"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection failed, please double check IP and Access Code"
|
||||
msgstr "Connection failed, please double check IP and Access Code"
|
||||
@@ -9601,43 +9732,44 @@ msgstr ""
|
||||
msgid "Nowhere"
|
||||
msgstr ""
|
||||
|
||||
msgid "Force cooling for overhang and bridge"
|
||||
msgstr "オーバーハングとブリッジの冷却"
|
||||
msgid "Force cooling for overhangs and bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option to optimize part cooling fan speed for overhang and "
|
||||
"bridge to get better cooling"
|
||||
"Enable this option to allow adjustment of the part cooling fan speed for "
|
||||
"specifically for overhangs, internal and external bridges. Setting the fan "
|
||||
"speed specifically for these features can improve overall print quality and "
|
||||
"reduce warping."
|
||||
msgstr ""
|
||||
"この設定により、パーツ冷却ファンの回転速度を最適化を行います。オーバーハング"
|
||||
"やブリッジの冷却に有効的です。"
|
||||
|
||||
msgid "Fan speed for overhang"
|
||||
msgstr "オーバーハングの回転速度"
|
||||
msgid "Overhangs and external bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
"wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
"bridge can get better quality for these part"
|
||||
"Use this part cooling fan speed when printing bridges or overhang walls with "
|
||||
"an overhang threshold that exceeds the value set in the 'Overhangs cooling "
|
||||
"threshold' parameter above. Increasing the cooling specifically for "
|
||||
"overhangs and bridges can improve the overall print quality of these "
|
||||
"features.\n"
|
||||
"\n"
|
||||
"Please note, this fan speed is clamped on the lower end by the minimum fan "
|
||||
"speed threshold set above. It is also adjusted upwards up to the maximum fan "
|
||||
"speed threshold when the minimum layer time threshold is not met."
|
||||
msgstr ""
|
||||
"大きなオーバーハングやブリッジを造形する時にファンの回転速度。仕上がりが向上"
|
||||
"させる効果があります。"
|
||||
|
||||
msgid "Cooling overhang threshold"
|
||||
msgstr "オーバーハングの冷却閾値"
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force cooling fan to be specific speed when overhang degree of printed part "
|
||||
"exceeds this value. Expressed as percentage which indicates how much width "
|
||||
"of the line without support from lower layer. 0% means forcing cooling for "
|
||||
"all outer wall no matter how much overhang degree"
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
"percentage, indicating the portion of each line's width that is unsupported "
|
||||
"by the layer beneath it. Setting this value to 0% forces the cooling fan to "
|
||||
"run for all outer walls, regardless of the overhang degree."
|
||||
msgstr ""
|
||||
"Force cooling fan to be a specific speed when overhang degree of printed "
|
||||
"part exceeds this value. This is expressed as a percentage which indicates "
|
||||
"how much width of the line without support from lower layer. 0% means "
|
||||
"forcing cooling for all outer wall no matter the overhang degree."
|
||||
|
||||
msgid "Bridge infill direction"
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9648,10 +9780,44 @@ msgstr ""
|
||||
"ブリッジ角度。値が0の場合は自動計算となります。0°を使用したい場合は180を入力"
|
||||
"していください。"
|
||||
|
||||
msgid "Bridge density"
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Density of external bridges. 100% means solid bridge. Default is 100%."
|
||||
msgid ""
|
||||
"Internal bridging angle override. If left to zero, the bridging angle will "
|
||||
"be calculated automatically. Otherwise the provided angle will be used for "
|
||||
"internal bridges. Use 180°for zero angle.\n"
|
||||
"\n"
|
||||
"It is recommended to leave it at 0 unless there is a specific model need not "
|
||||
"to."
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
"Lower density external bridges can help improve reliability as there is more "
|
||||
"space for air to circulate around the extruded bridge, improving its cooling "
|
||||
"speed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
" Lower density internal bridges can help reduce top surface pillowing and "
|
||||
"improve internal bridge reliability as there is more space for air to "
|
||||
"circulate around the extruded bridge, improving its cooling speed. \n"
|
||||
"\n"
|
||||
"This option works particularly well when combined with the second internal "
|
||||
"bridge over infill option, further improving internal bridging structure "
|
||||
"before solid infill is extruded."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge flow ratio"
|
||||
@@ -9704,9 +9870,7 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Improve shell precision by adjusting outer wall spacing. This also improves "
|
||||
"layer consistency.\n"
|
||||
"Note: This setting will only take effect if the wall sequence is configured "
|
||||
"to Inner-Outer"
|
||||
"layer consistency."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
@@ -9936,12 +10100,24 @@ msgstr "互換性のあるデバイス"
|
||||
msgid "Compatible machine condition"
|
||||
msgstr "対応機種条件"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active printer "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "互換性のあるプロセスプロファイル"
|
||||
|
||||
msgid "Compatible process profiles condition"
|
||||
msgstr "互換性のあるプロセスプロファイル条件"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active print "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr "造形の順番を設定します、積層順かオブジェクト順にしてください"
|
||||
|
||||
@@ -10033,8 +10209,8 @@ msgstr ""
|
||||
"ブリッジが長くない場合は、サポートが無くても造形できます。フィラメントの消費"
|
||||
"量を減らします。"
|
||||
|
||||
msgid "Thick bridges"
|
||||
msgstr "厚いブリッジ"
|
||||
msgid "Thick external bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, bridges are more reliable, can bridge longer distances, but may "
|
||||
@@ -10053,36 +10229,86 @@ msgid ""
|
||||
"using large nozzles."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges (beta)"
|
||||
msgid "Extra bridge layers (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reducing pillowing on top surfaces in heavily slanted "
|
||||
"or curved models.\n"
|
||||
"This option enables the generation of an extra bridge layer over internal "
|
||||
"and/or external bridges.\n"
|
||||
"\n"
|
||||
"Extra bridge layers help improve bridge appearance and reliability, as the "
|
||||
"solid infill is better supported. This is especially useful in fast "
|
||||
"printers, where the bridge and solid infill speeds vary greatly. The extra "
|
||||
"bridge layer results in reduced pillowing on top surfaces, as well as "
|
||||
"reduced separation of the external bridge layer from its surrounding "
|
||||
"perimeters.\n"
|
||||
"\n"
|
||||
"It is generally recommended to set this to at least 'External bridge only', "
|
||||
"unless specific issues with the sliced model are found.\n"
|
||||
"\n"
|
||||
"Options:\n"
|
||||
"1. Disabled - does not generate second bridge layers. This is the default "
|
||||
"and is set for compatibility purposes.\n"
|
||||
"2. External bridge only - generates second bridge layers for external-facing "
|
||||
"bridges only. Please note that small bridges that are shorter or narrower "
|
||||
"than the set number of perimeters will be skipped as they would not benefit "
|
||||
"from a second bridge layer. If generated, the second bridge layer will be "
|
||||
"extruded parallel to the first bridge layer to reinforce the bridge "
|
||||
"strength.\n"
|
||||
"3. Internal bridge only - generates second bridge layers for internal "
|
||||
"bridges over sparse infill only. Please note that the internal bridges count "
|
||||
"towards the top shell layer count of your model. The second internal bridge "
|
||||
"layer will be extruded as close to perpendicular to the first as possible. "
|
||||
"If multiple regions in the same island, with varying bridge angles are "
|
||||
"present, the last region of that island will be selected as the angle "
|
||||
"reference.\n"
|
||||
"4. Apply to all - generates second bridge layers for both internal and "
|
||||
"external-facing bridges\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "無効"
|
||||
|
||||
msgid "External bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply to all"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reduce pillowing on top surfaces in heavily slanted or "
|
||||
"curved models.\n"
|
||||
"\n"
|
||||
"By default, small internal bridges are filtered out and the internal solid "
|
||||
"infill is printed directly over the sparse infill. This works well in most "
|
||||
"cases, speeding up printing without too much compromise on top surface "
|
||||
"quality. \n"
|
||||
"\n"
|
||||
"However, in heavily slanted or curved models especially where too low sparse "
|
||||
"infill density is used, this may result in curling of the unsupported solid "
|
||||
"infill, causing pillowing.\n"
|
||||
"However, in heavily slanted or curved models, especially where too low a "
|
||||
"sparse infill density is used, this may result in curling of the unsupported "
|
||||
"solid infill, causing pillowing.\n"
|
||||
"\n"
|
||||
"Disabling this option will print internal bridge layer over slightly "
|
||||
"unsupported internal solid infill. The options below control the amount of "
|
||||
"filtering, i.e. the amount of internal bridges created.\n"
|
||||
"Enabling limited filtering or no filtering will print internal bridge layer "
|
||||
"over slightly unsupported internal solid infill. The options below control "
|
||||
"the sensitivity of the filtering, i.e. they control where internal bridges "
|
||||
"are created.\n"
|
||||
"\n"
|
||||
"Filter - enable this option. This is the default behavior and works well in "
|
||||
"most cases.\n"
|
||||
"1. Filter - enables this option. This is the default behavior and works well "
|
||||
"in most cases.\n"
|
||||
"\n"
|
||||
"Limited filtering - creates internal bridges on heavily slanted surfaces, "
|
||||
"while avoiding creating unnecessary internal bridges. This works well for "
|
||||
"most difficult models.\n"
|
||||
"2. Limited filtering - creates internal bridges on heavily slanted surfaces "
|
||||
"while avoiding unnecessary bridges. This works well for most difficult "
|
||||
"models.\n"
|
||||
"\n"
|
||||
"No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models. "
|
||||
"However, in most cases it creates too many unnecessary bridges."
|
||||
"3. No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models; "
|
||||
"however, in most cases, it creates too many unnecessary bridges."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter"
|
||||
@@ -10854,6 +11080,9 @@ msgstr "スパース インフィルのパターンです。"
|
||||
msgid "Grid"
|
||||
msgstr "グリッド"
|
||||
|
||||
msgid "2D Lattice"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line"
|
||||
msgstr "直線"
|
||||
|
||||
@@ -10884,6 +11113,25 @@ msgstr "ライトニング"
|
||||
msgid "Cross Hatch"
|
||||
msgstr "Cross Hatch"
|
||||
|
||||
msgid "Quarter Cubic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 1"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the first set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 2"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the second set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill anchor length"
|
||||
msgstr ""
|
||||
|
||||
@@ -11063,10 +11311,24 @@ msgid "Support interface fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This fan speed is enforced during all support interfaces, to be able to "
|
||||
"weaken their bonding with a high fan speed.\n"
|
||||
"Set to -1 to disable this override.\n"
|
||||
"Can only be overridden by disable_fan_first_layers."
|
||||
"This part cooling fan speed is applied when printing support interfaces. "
|
||||
"Setting this parameter to a higher than regular speed reduces the layer "
|
||||
"binding strength between supports and the supported part, making them easier "
|
||||
"to separate.\n"
|
||||
"Set to -1 to disable it.\n"
|
||||
"This setting is overridden by disable_fan_first_layers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The part cooling fan speed used for all internal bridges. Set to -1 to use "
|
||||
"the overhang fan speed settings instead.\n"
|
||||
"\n"
|
||||
"Reducing the internal bridges fan speed, compared to your regular fan speed, "
|
||||
"can help reduce part warping due to excessive cooling applied over a large "
|
||||
"surface for a prolonged period of time."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -11107,6 +11369,59 @@ msgstr ""
|
||||
msgid "Whether to apply fuzzy skin on the first layer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise type"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Noise type to use for fuzzy skin generation.\n"
|
||||
"Classic: Classic uniform random noise.\n"
|
||||
"Perlin: Perlin noise, which gives a more consistent texture.\n"
|
||||
"Billow: Similar to perlin noise, but clumpier.\n"
|
||||
"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates "
|
||||
"marble-like textures.\n"
|
||||
"Voronoi: Divides the surface into voronoi cells, and displaces each one by a "
|
||||
"random amount. Creates a patchwork texture."
|
||||
msgstr ""
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "クラシック"
|
||||
|
||||
msgid "Perlin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billow"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ridged Multifractal"
|
||||
msgstr ""
|
||||
|
||||
msgid "Voronoi"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin feature size"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The base size of the coherent noise features, in mm. Higher values will "
|
||||
"result in larger features."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy Skin Noise Octaves"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The number of octaves of coherent noise to use. Higher values increase the "
|
||||
"detail of the noise, but also increase computation time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise persistence"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The decay rate for higher octaves of the coherent noise. Lower values will "
|
||||
"result in smoother noise."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out tiny gaps"
|
||||
msgstr "Filter out tiny gaps"
|
||||
|
||||
@@ -11507,6 +11822,14 @@ msgstr "アイロン時にライン間隔"
|
||||
msgid "The distance between the lines of ironing"
|
||||
msgstr "アイロン時の線間隔です。"
|
||||
|
||||
msgid "Ironing inset"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The distance to keep from the edges. A value of 0 sets this to half of the "
|
||||
"nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ironing speed"
|
||||
msgstr "アイロン時の移動速度"
|
||||
|
||||
@@ -11732,7 +12055,17 @@ msgid ""
|
||||
"Default value of 3 works well for most cases. If your printer is stuttering, "
|
||||
"increase this value to reduce the number of adjustments made\n"
|
||||
"\n"
|
||||
"Allowed values: 1-5"
|
||||
"Allowed values: 0.5-5"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply only on external features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Applies extrusion rate smoothing only on external perimeters and overhangs. "
|
||||
"This can help reduce artefacts due to sharp speed transitions on externally "
|
||||
"visible overhangs without impacting the print speed of features that will "
|
||||
"not be visible to the user."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum speed for part cooling fan"
|
||||
@@ -11760,9 +12093,9 @@ msgid "Min print speed"
|
||||
msgstr "最小造形速度"
|
||||
|
||||
msgid ""
|
||||
"The minimum printing speed that the printer will slow down to to attempt to "
|
||||
"maintain the minimum layer time above, when slow down for better layer "
|
||||
"cooling is enabled."
|
||||
"The minimum print speed to which the printer slows down to maintain the "
|
||||
"minimum layer time defined above when the slowdown for better layer cooling "
|
||||
"is enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Diameter of nozzle"
|
||||
@@ -12423,9 +12756,6 @@ msgid ""
|
||||
"with them. To avoid this, increase the skirt distance value.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "無効"
|
||||
|
||||
msgid "Enabled"
|
||||
msgstr "有効"
|
||||
|
||||
@@ -12684,22 +13014,22 @@ msgid "Enable support generation."
|
||||
msgstr "この設定によりサポート生成を有効になります。"
|
||||
|
||||
msgid ""
|
||||
"normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
"normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
"Normal (auto) and Tree (auto) is used to generate support automatically. If "
|
||||
"Normal (manual) or Tree (manual) is selected, only support enforcers are "
|
||||
"generated"
|
||||
msgstr "通常 (自動) と ツリー (自動) では自動でサポートを作成します。"
|
||||
msgstr ""
|
||||
|
||||
msgid "normal(auto)"
|
||||
msgstr "通常 (自動)"
|
||||
msgid "Normal (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(auto)"
|
||||
msgstr "ツリー (自動)"
|
||||
msgid "Tree (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "normal(manual)"
|
||||
msgstr "通常 (手動)"
|
||||
msgid "Normal (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(manual)"
|
||||
msgstr "ツリー (手動)"
|
||||
msgid "Tree (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support/object xy distance"
|
||||
msgstr "水平間隔"
|
||||
@@ -12906,6 +13236,15 @@ msgid ""
|
||||
"threshold."
|
||||
msgstr "オーバーハングの角度がこの閾値以下になる場合、サポートを生成します"
|
||||
|
||||
msgid "Threshold overlap"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If threshold angle is zero, support will be generated for overhangs whose "
|
||||
"overlap is below the threshold. The smaller this value is, the steeper the "
|
||||
"overhang that can be printed without support."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tree support branch angle"
|
||||
msgstr "ツリーサポート枝アングル"
|
||||
|
||||
@@ -13387,9 +13726,6 @@ msgstr ""
|
||||
"クラシックでは従来通りの壁面を生成しますが、Arachneでは押出線幅が可変になりま"
|
||||
"す。"
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "クラシック"
|
||||
|
||||
msgid "Arachne"
|
||||
msgstr "Arachne"
|
||||
|
||||
@@ -15314,6 +15650,9 @@ msgstr "Physical Printer"
|
||||
msgid "Print Host upload"
|
||||
msgstr "Print Host upload"
|
||||
|
||||
msgid "Test"
|
||||
msgstr "テスト"
|
||||
|
||||
msgid "Could not get a valid Printer Host reference"
|
||||
msgstr "Could not get a valid Printer Host reference"
|
||||
|
||||
@@ -16111,6 +16450,102 @@ msgstr ""
|
||||
"ABS, appropriately increasing the heatbed temperature can reduce the "
|
||||
"probability of warping?"
|
||||
|
||||
#~ msgid "Current Cabin humidity"
|
||||
#~ msgstr "Current Cabin humidity"
|
||||
|
||||
#~ msgid "Stopped."
|
||||
#~ msgstr "中止しました"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Connect failed [%d]!"
|
||||
#~ msgstr "接続に失敗しました (%d)"
|
||||
|
||||
#~ msgid "Initialize failed (Device connection not ready)!"
|
||||
#~ msgstr "Initialization failed (Device connection not ready)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Initialize failed (%s)!"
|
||||
#~ msgstr "初期化失敗 (%s)"
|
||||
|
||||
#~ msgid "LAN Connection Failed (Sending print file)"
|
||||
#~ msgstr "LAN接続失敗 (造形ファイル送信)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
#~ msgstr ""
|
||||
#~ "1Orca Slicerとプリンターが同一のLANに繋いでいること確認してください。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 2, if the IP and Access Code below are different from the actual "
|
||||
#~ "values on your printer, please correct them."
|
||||
#~ msgstr ""
|
||||
#~ "2下記IPアドレスやアクセスコードが一致していない場合修正してください。"
|
||||
|
||||
#~ msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
#~ msgstr ""
|
||||
#~ "ステップ3: パケットロスとレイテンシを確認するために、IPアドレスに対して"
|
||||
#~ "pingを実行します。"
|
||||
|
||||
#~ msgid "IP and Access Code Verified! You may close the window"
|
||||
#~ msgstr "IP and Access Code Verified! You may close the window"
|
||||
|
||||
#~ msgid "Force cooling for overhang and bridge"
|
||||
#~ msgstr "オーバーハングとブリッジの冷却"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable this option to optimize part cooling fan speed for overhang and "
|
||||
#~ "bridge to get better cooling"
|
||||
#~ msgstr ""
|
||||
#~ "この設定により、パーツ冷却ファンの回転速度を最適化を行います。オーバーハン"
|
||||
#~ "グやブリッジの冷却に有効的です。"
|
||||
|
||||
#~ msgid "Fan speed for overhang"
|
||||
#~ msgstr "オーバーハングの回転速度"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
#~ "wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
#~ "bridge can get better quality for these part"
|
||||
#~ msgstr ""
|
||||
#~ "大きなオーバーハングやブリッジを造形する時にファンの回転速度。仕上がりが向"
|
||||
#~ "上させる効果があります。"
|
||||
|
||||
#~ msgid "Cooling overhang threshold"
|
||||
#~ msgstr "オーバーハングの冷却閾値"
|
||||
|
||||
#, c-format
|
||||
#~ msgid ""
|
||||
#~ "Force cooling fan to be specific speed when overhang degree of printed "
|
||||
#~ "part exceeds this value. Expressed as percentage which indicates how much "
|
||||
#~ "width of the line without support from lower layer. 0% means forcing "
|
||||
#~ "cooling for all outer wall no matter how much overhang degree"
|
||||
#~ msgstr ""
|
||||
#~ "Force cooling fan to be a specific speed when overhang degree of printed "
|
||||
#~ "part exceeds this value. This is expressed as a percentage which "
|
||||
#~ "indicates how much width of the line without support from lower layer. "
|
||||
#~ "0% means forcing cooling for all outer wall no matter the overhang degree."
|
||||
|
||||
#~ msgid "Thick bridges"
|
||||
#~ msgstr "厚いブリッジ"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
#~ "normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
#~ "generated"
|
||||
#~ msgstr "通常 (自動) と ツリー (自動) では自動でサポートを作成します。"
|
||||
|
||||
#~ msgid "normal(auto)"
|
||||
#~ msgstr "通常 (自動)"
|
||||
|
||||
#~ msgid "tree(auto)"
|
||||
#~ msgstr "ツリー (自動)"
|
||||
|
||||
#~ msgid "normal(manual)"
|
||||
#~ msgstr "通常 (手動)"
|
||||
|
||||
#~ msgid "tree(manual)"
|
||||
#~ msgstr "ツリー (手動)"
|
||||
|
||||
#~ msgid "Unselect"
|
||||
#~ msgstr "選択解除"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -2821,9 +2821,6 @@ msgstr ""
|
||||
msgid "About %s"
|
||||
msgstr "Over %s"
|
||||
|
||||
msgid "Orca Slicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
|
||||
msgstr ""
|
||||
|
||||
@@ -2876,11 +2873,6 @@ msgstr "De invoerwaarde moet groter zijn dan %1% en kleiner dan %2%"
|
||||
msgid "SN"
|
||||
msgstr "SN"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr ""
|
||||
"Het instellen van AMS slot informatie tijdens het printen wordt niet "
|
||||
"ondersteund."
|
||||
|
||||
msgid "Factors of Flow Dynamics Calibration"
|
||||
msgstr "Factoren van Flow Dynamics Calibration"
|
||||
|
||||
@@ -2893,6 +2885,11 @@ msgstr "Factor K"
|
||||
msgid "Factor N"
|
||||
msgstr "Factor N"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr ""
|
||||
"Het instellen van AMS slot informatie tijdens het printen wordt niet "
|
||||
"ondersteund."
|
||||
|
||||
msgid "Setting Virtual slot information while printing is not supported"
|
||||
msgstr "Setting Virtual slot information while printing is not supported"
|
||||
|
||||
@@ -3015,8 +3012,8 @@ msgstr "AMS uitschakelen"
|
||||
msgid "Print with the filament mounted on the back of chassis"
|
||||
msgstr "Print met filament op een externe spoel"
|
||||
|
||||
msgid "Current Cabin humidity"
|
||||
msgstr "Current Cabin humidity"
|
||||
msgid "Current AMS humidity"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please change the desiccant when it is too wet. The indicator may not "
|
||||
@@ -5100,8 +5097,8 @@ msgstr ""
|
||||
msgid "The printer has been logged out and cannot connect."
|
||||
msgstr "De printer is afgemeld en kan geen verbinding maken."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Gestopt."
|
||||
msgid "Video Stopped."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to start liveview)"
|
||||
msgstr "LAN-verbinding mislukt (liveview niet gestart)"
|
||||
@@ -5192,10 +5189,6 @@ msgstr "Reload file list from printer."
|
||||
msgid "No printers."
|
||||
msgstr "Geen printers."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Connect failed [%d]!"
|
||||
msgstr "Verbinding mislukt [%d]!"
|
||||
|
||||
msgid "Loading file list..."
|
||||
msgstr "Bestandslijst laden..."
|
||||
|
||||
@@ -5205,9 +5198,6 @@ msgstr "Geen bestanden"
|
||||
msgid "Load failed"
|
||||
msgstr "Load failed"
|
||||
|
||||
msgid "Initialize failed (Device connection not ready)!"
|
||||
msgstr "Initialization failed (Device connection not ready)!"
|
||||
|
||||
msgid ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
@@ -5215,7 +5205,9 @@ msgstr ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
|
||||
msgid "Initialize failed (Storage unavailable, insert SD card.)!"
|
||||
msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -5224,10 +5216,6 @@ msgstr "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgid "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
msgstr "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed (%s)!"
|
||||
msgstr "Initialisatie is mislukt (%s)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "You are going to delete %u file from printer. Are you sure to continue?"
|
||||
msgid_plural ""
|
||||
@@ -5662,6 +5650,25 @@ msgstr "Laatste versie: "
|
||||
msgid "Not for now"
|
||||
msgstr "Not for now"
|
||||
|
||||
msgid "Server Exception"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The server is unable to respond. Please click the link below to check the "
|
||||
"server status."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If the server is in a fault state, you can temporarily use offline printing "
|
||||
"or local network printing."
|
||||
msgstr ""
|
||||
|
||||
msgid "How to use LAN only mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't show this dialog again"
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Mouse disconnected."
|
||||
msgstr "3D-muis losgekoppeld."
|
||||
|
||||
@@ -6398,6 +6405,10 @@ msgstr "Open als project"
|
||||
msgid "Import geometry only"
|
||||
msgstr "Alleen geometrische data importeren"
|
||||
|
||||
msgid ""
|
||||
"This option can be changed later in preferences, under 'Load Behaviour'."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one G-code file can be opened at the same time."
|
||||
msgstr "Er kan slechts 1 G-code bestand tegelijkertijd geopend worden."
|
||||
|
||||
@@ -6853,6 +6864,24 @@ msgstr "Koppel weblinks aan OrcaSlicer"
|
||||
msgid "Associate URLs to OrcaSlicer"
|
||||
msgstr "Koppel URL's aan OrcaSlicer"
|
||||
|
||||
msgid "Load All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ask When Relevant"
|
||||
msgstr ""
|
||||
|
||||
msgid "Always Ask"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum recent projects"
|
||||
msgstr "Maximale recente projecten"
|
||||
|
||||
@@ -7433,6 +7462,9 @@ msgstr "De naam van het apparaat wijzigen"
|
||||
msgid "Bind with Pin Code"
|
||||
msgstr "Koppelen met pincode"
|
||||
|
||||
msgid "Bind with Access Code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Send to Printer SD card"
|
||||
msgstr "Verzenden naar de MicroSD-kaart in de printer"
|
||||
|
||||
@@ -7744,6 +7776,75 @@ msgstr ""
|
||||
"door met de rechtermuisknop op de lege positie van de bouwplaat te klikken "
|
||||
"en „Add Primitive” ->\"Timelapse Wipe Tower” te kiezen."
|
||||
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Lijn dikte"
|
||||
|
||||
@@ -7841,6 +7942,12 @@ msgstr "Post-processing Scripts"
|
||||
msgid "Notes"
|
||||
msgstr "Opmerkingen"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Veelgebruikt"
|
||||
|
||||
@@ -8943,21 +9050,22 @@ msgstr "View Liveview"
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Bevestig en update het mondstuk"
|
||||
|
||||
msgid "LAN Connection Failed (Sending print file)"
|
||||
msgstr "LAN-verbinding mislukt (verzenden afdrukbestand)"
|
||||
|
||||
msgid ""
|
||||
"Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgid "Connect the printer using IP and access code"
|
||||
msgstr ""
|
||||
"Stap 1, bevestig dat Orca Slicer en uw printer zich in hetzelfde LAN "
|
||||
"bevinden."
|
||||
|
||||
msgid ""
|
||||
"Step 2, if the IP and Access Code below are different from the actual values "
|
||||
"Step 1. Please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 2. If the IP and Access Code below are different from the actual values "
|
||||
"on your printer, please correct them."
|
||||
msgstr ""
|
||||
"Stap 2, als het IP-adres en de toegangscode hieronder afwijken van de "
|
||||
"werkelijke waarden op uw printer, corrigeer ze dan."
|
||||
|
||||
msgid ""
|
||||
"Step 3. Please obtain the device SN from the printer side; it is usually "
|
||||
"found in the device information on the printer screen."
|
||||
msgstr ""
|
||||
|
||||
msgid "IP"
|
||||
msgstr "IP"
|
||||
@@ -8965,18 +9073,38 @@ msgstr "IP"
|
||||
msgid "Access Code"
|
||||
msgstr "Toegangscode"
|
||||
|
||||
msgid "Printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Where to find your printer's IP and Access Code?"
|
||||
msgstr "Waar vind je het IP-adres en de toegangscode van je printer?"
|
||||
|
||||
msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
"Stap 3: Ping het IP-adres om te controleren op pakketverlies en latentie."
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
msgid "Manual Setup"
|
||||
msgstr ""
|
||||
|
||||
msgid "IP and Access Code Verified! You may close the window"
|
||||
msgstr "IP en toegangscode geverifieerd! U kunt het venster sluiten"
|
||||
msgid "connecting..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to connect to printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to publish login request."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer has already been bound."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer mode is incorrect, please switch to LAN Only."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting to printer... The dialog will close later"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection failed, please double check IP and Access Code"
|
||||
msgstr "Verbinding mislukt, controleer IP en toegangscode opnieuw"
|
||||
@@ -9933,47 +10061,45 @@ msgstr "Boven- en onderoppervlakken"
|
||||
msgid "Nowhere"
|
||||
msgstr "Nergens"
|
||||
|
||||
msgid "Force cooling for overhang and bridge"
|
||||
msgstr "Forceer koeling voor overhangende delen en bruggen (bridge)"
|
||||
msgid "Force cooling for overhangs and bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option to optimize part cooling fan speed for overhang and "
|
||||
"bridge to get better cooling"
|
||||
"Enable this option to allow adjustment of the part cooling fan speed for "
|
||||
"specifically for overhangs, internal and external bridges. Setting the fan "
|
||||
"speed specifically for these features can improve overall print quality and "
|
||||
"reduce warping."
|
||||
msgstr ""
|
||||
"Schakel deze optie in om de snelheid van de koelventilator van de printkop "
|
||||
"te optimaliseren voor overhang en bruggen"
|
||||
|
||||
msgid "Fan speed for overhang"
|
||||
msgstr "Ventilator snelheid voor overhangende delen"
|
||||
msgid "Overhangs and external bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
"wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
"bridge can get better quality for these part"
|
||||
"Use this part cooling fan speed when printing bridges or overhang walls with "
|
||||
"an overhang threshold that exceeds the value set in the 'Overhangs cooling "
|
||||
"threshold' parameter above. Increasing the cooling specifically for "
|
||||
"overhangs and bridges can improve the overall print quality of these "
|
||||
"features.\n"
|
||||
"\n"
|
||||
"Please note, this fan speed is clamped on the lower end by the minimum fan "
|
||||
"speed threshold set above. It is also adjusted upwards up to the maximum fan "
|
||||
"speed threshold when the minimum layer time threshold is not met."
|
||||
msgstr ""
|
||||
"Forceer de koelventilator van de printkop om deze snelheid te hebben bij het "
|
||||
"afdrukken van een brug of overhangende muur met een grote overhanggraad. Het "
|
||||
"forceren van koeling voor overhang en brug kan een resulteren in een betere "
|
||||
"kwaliteit voor dit onderdeel"
|
||||
|
||||
msgid "Cooling overhang threshold"
|
||||
msgstr "Drempel voor overhang koeling"
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force cooling fan to be specific speed when overhang degree of printed part "
|
||||
"exceeds this value. Expressed as percentage which indicates how much width "
|
||||
"of the line without support from lower layer. 0% means forcing cooling for "
|
||||
"all outer wall no matter how much overhang degree"
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
"percentage, indicating the portion of each line's width that is unsupported "
|
||||
"by the layer beneath it. Setting this value to 0% forces the cooling fan to "
|
||||
"run for all outer walls, regardless of the overhang degree."
|
||||
msgstr ""
|
||||
"Dwingt de koelventilator tot een bepaalde snelheid wanneer de overhanggraad "
|
||||
"van het geprinte deel deze waarde overschrijdt. Dit wordt uitgedrukt als een "
|
||||
"percentage dat aangeeft hoe breed de lijn is zonder steun van de onderste "
|
||||
"laag. 0%% betekent koeling afdwingen voor de hele buitenwand, ongeacht de "
|
||||
"overhanggraad."
|
||||
|
||||
msgid "Bridge infill direction"
|
||||
msgstr "Bruginvulling richting"
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
@@ -9984,13 +10110,45 @@ msgstr ""
|
||||
"automatisch wordt berekend. Anders wordt de opgegeven hoek gebruikt voor "
|
||||
"externe bruggen. Gebruik 180° voor een hoek van nul."
|
||||
|
||||
msgid "Bridge density"
|
||||
msgstr "Brugdichtheid"
|
||||
|
||||
msgid "Density of external bridges. 100% means solid bridge. Default is 100%."
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Internal bridging angle override. If left to zero, the bridging angle will "
|
||||
"be calculated automatically. Otherwise the provided angle will be used for "
|
||||
"internal bridges. Use 180°for zero angle.\n"
|
||||
"\n"
|
||||
"It is recommended to leave it at 0 unless there is a specific model need not "
|
||||
"to."
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
"Lower density external bridges can help improve reliability as there is more "
|
||||
"space for air to circulate around the extruded bridge, improving its cooling "
|
||||
"speed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
" Lower density internal bridges can help reduce top surface pillowing and "
|
||||
"improve internal bridge reliability as there is more space for air to "
|
||||
"circulate around the extruded bridge, improving its cooling speed. \n"
|
||||
"\n"
|
||||
"This option works particularly well when combined with the second internal "
|
||||
"bridge over infill option, further improving internal bridging structure "
|
||||
"before solid infill is extruded."
|
||||
msgstr ""
|
||||
"Dichtheid van externe bruggen. 100% betekent massieve brug. Standaard is "
|
||||
"100%."
|
||||
|
||||
msgid "Bridge flow ratio"
|
||||
msgstr "Brugflow"
|
||||
@@ -10042,9 +10200,7 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Improve shell precision by adjusting outer wall spacing. This also improves "
|
||||
"layer consistency.\n"
|
||||
"Note: This setting will only take effect if the wall sequence is configured "
|
||||
"to Inner-Outer"
|
||||
"layer consistency."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
@@ -10276,12 +10432,24 @@ msgstr "opwaarts compatibele machine"
|
||||
msgid "Compatible machine condition"
|
||||
msgstr "Conditie van geschikte machine"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active printer "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Geschikte proces profielen"
|
||||
|
||||
msgid "Compatible process profiles condition"
|
||||
msgstr "Conditie van -geschikte proces profielen"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active print "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr ""
|
||||
"Hiermee wordt de afdrukvolgorde bepaald, zodat u kunt kiezen tussen laag "
|
||||
@@ -10383,8 +10551,8 @@ msgstr ""
|
||||
"ondersteuning (support) erg groot kan worden. Bruggen kunnen meestal direct "
|
||||
"zonder ondersteuning (support) worden afgedrukt als ze niet erg lang zijn."
|
||||
|
||||
msgid "Thick bridges"
|
||||
msgstr "Dikke bruggen"
|
||||
msgid "Thick external bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, bridges are more reliable, can bridge longer distances, but may "
|
||||
@@ -10405,36 +10573,86 @@ msgid ""
|
||||
"using large nozzles."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges (beta)"
|
||||
msgid "Extra bridge layers (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reducing pillowing on top surfaces in heavily slanted "
|
||||
"or curved models.\n"
|
||||
"This option enables the generation of an extra bridge layer over internal "
|
||||
"and/or external bridges.\n"
|
||||
"\n"
|
||||
"Extra bridge layers help improve bridge appearance and reliability, as the "
|
||||
"solid infill is better supported. This is especially useful in fast "
|
||||
"printers, where the bridge and solid infill speeds vary greatly. The extra "
|
||||
"bridge layer results in reduced pillowing on top surfaces, as well as "
|
||||
"reduced separation of the external bridge layer from its surrounding "
|
||||
"perimeters.\n"
|
||||
"\n"
|
||||
"It is generally recommended to set this to at least 'External bridge only', "
|
||||
"unless specific issues with the sliced model are found.\n"
|
||||
"\n"
|
||||
"Options:\n"
|
||||
"1. Disabled - does not generate second bridge layers. This is the default "
|
||||
"and is set for compatibility purposes.\n"
|
||||
"2. External bridge only - generates second bridge layers for external-facing "
|
||||
"bridges only. Please note that small bridges that are shorter or narrower "
|
||||
"than the set number of perimeters will be skipped as they would not benefit "
|
||||
"from a second bridge layer. If generated, the second bridge layer will be "
|
||||
"extruded parallel to the first bridge layer to reinforce the bridge "
|
||||
"strength.\n"
|
||||
"3. Internal bridge only - generates second bridge layers for internal "
|
||||
"bridges over sparse infill only. Please note that the internal bridges count "
|
||||
"towards the top shell layer count of your model. The second internal bridge "
|
||||
"layer will be extruded as close to perpendicular to the first as possible. "
|
||||
"If multiple regions in the same island, with varying bridge angles are "
|
||||
"present, the last region of that island will be selected as the angle "
|
||||
"reference.\n"
|
||||
"4. Apply to all - generates second bridge layers for both internal and "
|
||||
"external-facing bridges\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "Uit"
|
||||
|
||||
msgid "External bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply to all"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reduce pillowing on top surfaces in heavily slanted or "
|
||||
"curved models.\n"
|
||||
"\n"
|
||||
"By default, small internal bridges are filtered out and the internal solid "
|
||||
"infill is printed directly over the sparse infill. This works well in most "
|
||||
"cases, speeding up printing without too much compromise on top surface "
|
||||
"quality. \n"
|
||||
"\n"
|
||||
"However, in heavily slanted or curved models especially where too low sparse "
|
||||
"infill density is used, this may result in curling of the unsupported solid "
|
||||
"infill, causing pillowing.\n"
|
||||
"However, in heavily slanted or curved models, especially where too low a "
|
||||
"sparse infill density is used, this may result in curling of the unsupported "
|
||||
"solid infill, causing pillowing.\n"
|
||||
"\n"
|
||||
"Disabling this option will print internal bridge layer over slightly "
|
||||
"unsupported internal solid infill. The options below control the amount of "
|
||||
"filtering, i.e. the amount of internal bridges created.\n"
|
||||
"Enabling limited filtering or no filtering will print internal bridge layer "
|
||||
"over slightly unsupported internal solid infill. The options below control "
|
||||
"the sensitivity of the filtering, i.e. they control where internal bridges "
|
||||
"are created.\n"
|
||||
"\n"
|
||||
"Filter - enable this option. This is the default behavior and works well in "
|
||||
"most cases.\n"
|
||||
"1. Filter - enables this option. This is the default behavior and works well "
|
||||
"in most cases.\n"
|
||||
"\n"
|
||||
"Limited filtering - creates internal bridges on heavily slanted surfaces, "
|
||||
"while avoiding creating unnecessary internal bridges. This works well for "
|
||||
"most difficult models.\n"
|
||||
"2. Limited filtering - creates internal bridges on heavily slanted surfaces "
|
||||
"while avoiding unnecessary bridges. This works well for most difficult "
|
||||
"models.\n"
|
||||
"\n"
|
||||
"No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models. "
|
||||
"However, in most cases it creates too many unnecessary bridges."
|
||||
"3. No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models; "
|
||||
"however, in most cases, it creates too many unnecessary bridges."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter"
|
||||
@@ -11227,6 +11445,9 @@ msgstr "Dit is het lijnpatroon voor dunne interne vulling (infill)"
|
||||
msgid "Grid"
|
||||
msgstr "Rooster"
|
||||
|
||||
msgid "2D Lattice"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line"
|
||||
msgstr "Lijn"
|
||||
|
||||
@@ -11257,6 +11478,25 @@ msgstr "Lightning"
|
||||
msgid "Cross Hatch"
|
||||
msgstr "Cross Hatch"
|
||||
|
||||
msgid "Quarter Cubic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 1"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the first set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 2"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the second set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill anchor length"
|
||||
msgstr ""
|
||||
|
||||
@@ -11445,10 +11685,24 @@ msgid "Support interface fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This fan speed is enforced during all support interfaces, to be able to "
|
||||
"weaken their bonding with a high fan speed.\n"
|
||||
"Set to -1 to disable this override.\n"
|
||||
"Can only be overridden by disable_fan_first_layers."
|
||||
"This part cooling fan speed is applied when printing support interfaces. "
|
||||
"Setting this parameter to a higher than regular speed reduces the layer "
|
||||
"binding strength between supports and the supported part, making them easier "
|
||||
"to separate.\n"
|
||||
"Set to -1 to disable it.\n"
|
||||
"This setting is overridden by disable_fan_first_layers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The part cooling fan speed used for all internal bridges. Set to -1 to use "
|
||||
"the overhang fan speed settings instead.\n"
|
||||
"\n"
|
||||
"Reducing the internal bridges fan speed, compared to your regular fan speed, "
|
||||
"can help reduce part warping due to excessive cooling applied over a large "
|
||||
"surface for a prolonged period of time."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -11494,6 +11748,59 @@ msgstr ""
|
||||
msgid "Whether to apply fuzzy skin on the first layer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise type"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Noise type to use for fuzzy skin generation.\n"
|
||||
"Classic: Classic uniform random noise.\n"
|
||||
"Perlin: Perlin noise, which gives a more consistent texture.\n"
|
||||
"Billow: Similar to perlin noise, but clumpier.\n"
|
||||
"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates "
|
||||
"marble-like textures.\n"
|
||||
"Voronoi: Divides the surface into voronoi cells, and displaces each one by a "
|
||||
"random amount. Creates a patchwork texture."
|
||||
msgstr ""
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Klassiek"
|
||||
|
||||
msgid "Perlin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billow"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ridged Multifractal"
|
||||
msgstr ""
|
||||
|
||||
msgid "Voronoi"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin feature size"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The base size of the coherent noise features, in mm. Higher values will "
|
||||
"result in larger features."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy Skin Noise Octaves"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The number of octaves of coherent noise to use. Higher values increase the "
|
||||
"detail of the noise, but also increase computation time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise persistence"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The decay rate for higher octaves of the coherent noise. Lower values will "
|
||||
"result in smoother noise."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out tiny gaps"
|
||||
msgstr "Kleine openingen wegfilteren"
|
||||
|
||||
@@ -11908,6 +12215,14 @@ msgid "The distance between the lines of ironing"
|
||||
msgstr ""
|
||||
"Dit is de afstand voor de lijnen die gebruikt worden voor het strijken."
|
||||
|
||||
msgid "Ironing inset"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The distance to keep from the edges. A value of 0 sets this to half of the "
|
||||
"nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ironing speed"
|
||||
msgstr "Snelheid tijdens het strijken"
|
||||
|
||||
@@ -12139,7 +12454,17 @@ msgid ""
|
||||
"Default value of 3 works well for most cases. If your printer is stuttering, "
|
||||
"increase this value to reduce the number of adjustments made\n"
|
||||
"\n"
|
||||
"Allowed values: 1-5"
|
||||
"Allowed values: 0.5-5"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply only on external features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Applies extrusion rate smoothing only on external perimeters and overhangs. "
|
||||
"This can help reduce artefacts due to sharp speed transitions on externally "
|
||||
"visible overhangs without impacting the print speed of features that will "
|
||||
"not be visible to the user."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum speed for part cooling fan"
|
||||
@@ -12167,9 +12492,9 @@ msgid "Min print speed"
|
||||
msgstr "Minimale print snelheid"
|
||||
|
||||
msgid ""
|
||||
"The minimum printing speed that the printer will slow down to to attempt to "
|
||||
"maintain the minimum layer time above, when slow down for better layer "
|
||||
"cooling is enabled."
|
||||
"The minimum print speed to which the printer slows down to maintain the "
|
||||
"minimum layer time defined above when the slowdown for better layer cooling "
|
||||
"is enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Diameter of nozzle"
|
||||
@@ -12852,9 +13177,6 @@ msgid ""
|
||||
"with them. To avoid this, increase the skirt distance value.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "Uit"
|
||||
|
||||
msgid "Enabled"
|
||||
msgstr "Aan"
|
||||
|
||||
@@ -13127,25 +13449,22 @@ msgid "Enable support generation."
|
||||
msgstr "Dit maakt het genereren van support mogelijk."
|
||||
|
||||
msgid ""
|
||||
"normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
"normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
"Normal (auto) and Tree (auto) is used to generate support automatically. If "
|
||||
"Normal (manual) or Tree (manual) is selected, only support enforcers are "
|
||||
"generated"
|
||||
msgstr ""
|
||||
"normal(auto) en tree(auto) worden gebruikt om automatisch steun te "
|
||||
"genereren. Als normaal(handmatig) of tree(handmatig) is geselecteerd, worden "
|
||||
"alleen ondersteuningen handhavers gegenereerd."
|
||||
|
||||
msgid "normal(auto)"
|
||||
msgstr "Normaal (automatisch)"
|
||||
msgid "Normal (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(auto)"
|
||||
msgstr "tree(auto)"
|
||||
msgid "Tree (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "normal(manual)"
|
||||
msgstr "normaal (handmatig)"
|
||||
msgid "Normal (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(manual)"
|
||||
msgstr "tree (handmatig)"
|
||||
msgid "Tree (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support/object xy distance"
|
||||
msgstr "Support/object XY afstand"
|
||||
@@ -13368,6 +13687,15 @@ msgstr ""
|
||||
"Er zal ondersteuning support gegenereerd worden voor overhangende hoeken "
|
||||
"waarvan de hellingshoek lager is dan deze drempel."
|
||||
|
||||
msgid "Threshold overlap"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If threshold angle is zero, support will be generated for overhangs whose "
|
||||
"overlap is below the threshold. The smaller this value is, the steeper the "
|
||||
"overhang that can be printed without support."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tree support branch angle"
|
||||
msgstr "Tree support vertakkingshoek"
|
||||
|
||||
@@ -13862,9 +14190,6 @@ msgstr ""
|
||||
"en voor zeer dunne gebieden wordt gap-fill gebruikt. De Arachne generator "
|
||||
"produceert wanden met variabele extrusiebreedte."
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Klassiek"
|
||||
|
||||
msgid "Arachne"
|
||||
msgstr "Arachne"
|
||||
|
||||
@@ -15813,6 +16138,9 @@ msgstr "Fysieke printer"
|
||||
msgid "Print Host upload"
|
||||
msgstr "Host-upload afdrukken"
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
msgid "Could not get a valid Printer Host reference"
|
||||
msgstr "Kon geen geldige printerhostreferentie krijgen"
|
||||
|
||||
@@ -16677,6 +17005,121 @@ msgstr ""
|
||||
"kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het "
|
||||
"warmtebed de kans op kromtrekken kan verkleinen?"
|
||||
|
||||
#~ msgid "Current Cabin humidity"
|
||||
#~ msgstr "Current Cabin humidity"
|
||||
|
||||
#~ msgid "Stopped."
|
||||
#~ msgstr "Gestopt."
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Connect failed [%d]!"
|
||||
#~ msgstr "Verbinding mislukt [%d]!"
|
||||
|
||||
#~ msgid "Initialize failed (Device connection not ready)!"
|
||||
#~ msgstr "Initialization failed (Device connection not ready)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Initialize failed (%s)!"
|
||||
#~ msgstr "Initialisatie is mislukt (%s)!"
|
||||
|
||||
#~ msgid "LAN Connection Failed (Sending print file)"
|
||||
#~ msgstr "LAN-verbinding mislukt (verzenden afdrukbestand)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
#~ msgstr ""
|
||||
#~ "Stap 1, bevestig dat Orca Slicer en uw printer zich in hetzelfde LAN "
|
||||
#~ "bevinden."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 2, if the IP and Access Code below are different from the actual "
|
||||
#~ "values on your printer, please correct them."
|
||||
#~ msgstr ""
|
||||
#~ "Stap 2, als het IP-adres en de toegangscode hieronder afwijken van de "
|
||||
#~ "werkelijke waarden op uw printer, corrigeer ze dan."
|
||||
|
||||
#~ msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
#~ msgstr ""
|
||||
#~ "Stap 3: Ping het IP-adres om te controleren op pakketverlies en latentie."
|
||||
|
||||
#~ msgid "IP and Access Code Verified! You may close the window"
|
||||
#~ msgstr "IP en toegangscode geverifieerd! U kunt het venster sluiten"
|
||||
|
||||
#~ msgid "Force cooling for overhang and bridge"
|
||||
#~ msgstr "Forceer koeling voor overhangende delen en bruggen (bridge)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable this option to optimize part cooling fan speed for overhang and "
|
||||
#~ "bridge to get better cooling"
|
||||
#~ msgstr ""
|
||||
#~ "Schakel deze optie in om de snelheid van de koelventilator van de "
|
||||
#~ "printkop te optimaliseren voor overhang en bruggen"
|
||||
|
||||
#~ msgid "Fan speed for overhang"
|
||||
#~ msgstr "Ventilator snelheid voor overhangende delen"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
#~ "wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
#~ "bridge can get better quality for these part"
|
||||
#~ msgstr ""
|
||||
#~ "Forceer de koelventilator van de printkop om deze snelheid te hebben bij "
|
||||
#~ "het afdrukken van een brug of overhangende muur met een grote "
|
||||
#~ "overhanggraad. Het forceren van koeling voor overhang en brug kan een "
|
||||
#~ "resulteren in een betere kwaliteit voor dit onderdeel"
|
||||
|
||||
#~ msgid "Cooling overhang threshold"
|
||||
#~ msgstr "Drempel voor overhang koeling"
|
||||
|
||||
#, c-format
|
||||
#~ msgid ""
|
||||
#~ "Force cooling fan to be specific speed when overhang degree of printed "
|
||||
#~ "part exceeds this value. Expressed as percentage which indicates how much "
|
||||
#~ "width of the line without support from lower layer. 0% means forcing "
|
||||
#~ "cooling for all outer wall no matter how much overhang degree"
|
||||
#~ msgstr ""
|
||||
#~ "Dwingt de koelventilator tot een bepaalde snelheid wanneer de "
|
||||
#~ "overhanggraad van het geprinte deel deze waarde overschrijdt. Dit wordt "
|
||||
#~ "uitgedrukt als een percentage dat aangeeft hoe breed de lijn is zonder "
|
||||
#~ "steun van de onderste laag. 0%% betekent koeling afdwingen voor de hele "
|
||||
#~ "buitenwand, ongeacht de overhanggraad."
|
||||
|
||||
#~ msgid "Bridge infill direction"
|
||||
#~ msgstr "Bruginvulling richting"
|
||||
|
||||
#~ msgid "Bridge density"
|
||||
#~ msgstr "Brugdichtheid"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Density of external bridges. 100% means solid bridge. Default is 100%."
|
||||
#~ msgstr ""
|
||||
#~ "Dichtheid van externe bruggen. 100% betekent massieve brug. Standaard is "
|
||||
#~ "100%."
|
||||
|
||||
#~ msgid "Thick bridges"
|
||||
#~ msgstr "Dikke bruggen"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
#~ "normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
#~ "generated"
|
||||
#~ msgstr ""
|
||||
#~ "normal(auto) en tree(auto) worden gebruikt om automatisch steun te "
|
||||
#~ "genereren. Als normaal(handmatig) of tree(handmatig) is geselecteerd, "
|
||||
#~ "worden alleen ondersteuningen handhavers gegenereerd."
|
||||
|
||||
#~ msgid "normal(auto)"
|
||||
#~ msgstr "Normaal (automatisch)"
|
||||
|
||||
#~ msgid "tree(auto)"
|
||||
#~ msgstr "tree(auto)"
|
||||
|
||||
#~ msgid "normal(manual)"
|
||||
#~ msgstr "normaal (handmatig)"
|
||||
|
||||
#~ msgid "tree(manual)"
|
||||
#~ msgstr "tree (handmatig)"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "Schalen"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -2778,9 +2778,6 @@ msgstr ""
|
||||
msgid "About %s"
|
||||
msgstr "Om %s"
|
||||
|
||||
msgid "Orca Slicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
|
||||
msgstr ""
|
||||
|
||||
@@ -2833,9 +2830,6 @@ msgstr "Inmatningsvärdet ska vara större än %1% och mindre än %2%"
|
||||
msgid "SN"
|
||||
msgstr "SN"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "Inställning av AMS-facks information under utskrift stöds inte"
|
||||
|
||||
msgid "Factors of Flow Dynamics Calibration"
|
||||
msgstr "Faktorer för kalibrering av flödesdynamik"
|
||||
|
||||
@@ -2848,6 +2842,9 @@ msgstr "Faktor K"
|
||||
msgid "Factor N"
|
||||
msgstr "Faktor N"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "Inställning av AMS-facks information under utskrift stöds inte"
|
||||
|
||||
msgid "Setting Virtual slot information while printing is not supported"
|
||||
msgstr "Inställning av information om virtuell plats under utskrift stöds inte"
|
||||
|
||||
@@ -2969,8 +2966,8 @@ msgstr "Inaktivera AMS"
|
||||
msgid "Print with the filament mounted on the back of chassis"
|
||||
msgstr "Skriv ut med filament på en extern spole"
|
||||
|
||||
msgid "Current Cabin humidity"
|
||||
msgstr "Current Cabin humidity"
|
||||
msgid "Current AMS humidity"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please change the desiccant when it is too wet. The indicator may not "
|
||||
@@ -5028,8 +5025,8 @@ msgstr ""
|
||||
msgid "The printer has been logged out and cannot connect."
|
||||
msgstr "Printern har loggats ut och kan inte anslutas."
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "Avbruten."
|
||||
msgid "Video Stopped."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to start liveview)"
|
||||
msgstr "LAN-anslutning misslyckades (Det gick inte att starta liveview)"
|
||||
@@ -5120,10 +5117,6 @@ msgstr "Reload file list from printer."
|
||||
msgid "No printers."
|
||||
msgstr "Ingen printer."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Connect failed [%d]!"
|
||||
msgstr "Sammankoppling misslyckades [%d]"
|
||||
|
||||
msgid "Loading file list..."
|
||||
msgstr "Laddar fil lista..."
|
||||
|
||||
@@ -5133,9 +5126,6 @@ msgstr "Inga filer"
|
||||
msgid "Load failed"
|
||||
msgstr "Load failed"
|
||||
|
||||
msgid "Initialize failed (Device connection not ready)!"
|
||||
msgstr "Initieringen misslyckades (Enhets anslutningen är inte klar)!"
|
||||
|
||||
msgid ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
@@ -5143,7 +5133,9 @@ msgstr ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
|
||||
msgid "Initialize failed (Storage unavailable, insert SD card.)!"
|
||||
msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
@@ -5152,10 +5144,6 @@ msgstr "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgid "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
msgstr "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed (%s)!"
|
||||
msgstr "Initieringen misslyckades (%s)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "You are going to delete %u file from printer. Are you sure to continue?"
|
||||
msgid_plural ""
|
||||
@@ -5587,6 +5575,25 @@ msgstr "Senaste versionen: "
|
||||
msgid "Not for now"
|
||||
msgstr "Not for now"
|
||||
|
||||
msgid "Server Exception"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The server is unable to respond. Please click the link below to check the "
|
||||
"server status."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If the server is in a fault state, you can temporarily use offline printing "
|
||||
"or local network printing."
|
||||
msgstr ""
|
||||
|
||||
msgid "How to use LAN only mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't show this dialog again"
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Mouse disconnected."
|
||||
msgstr "3D mus bortkopplad."
|
||||
|
||||
@@ -6296,6 +6303,10 @@ msgstr "Öppna som projekt"
|
||||
msgid "Import geometry only"
|
||||
msgstr "Importera endast geometrin"
|
||||
|
||||
msgid ""
|
||||
"This option can be changed later in preferences, under 'Load Behaviour'."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one G-code file can be opened at the same time."
|
||||
msgstr "Endast en G-kod kan öppnas åt gången."
|
||||
|
||||
@@ -6713,6 +6724,24 @@ msgstr ""
|
||||
msgid "Associate URLs to OrcaSlicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ask When Relevant"
|
||||
msgstr ""
|
||||
|
||||
msgid "Always Ask"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum recent projects"
|
||||
msgstr "Maximalt antal nyligen genomförda projekt"
|
||||
|
||||
@@ -7286,6 +7315,9 @@ msgstr "Ändra enhetens namn"
|
||||
msgid "Bind with Pin Code"
|
||||
msgstr "Bind with Pin Code"
|
||||
|
||||
msgid "Bind with Access Code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Send to Printer SD card"
|
||||
msgstr "Skicka till skrivarens MicroSD-kort"
|
||||
|
||||
@@ -7585,6 +7617,75 @@ msgstr ""
|
||||
"genom att högerklicka på den tomma positionen på byggplattan och välja "
|
||||
"\"Lägg till Primitiv\"->\"Timelapse Wipe Tower\"."
|
||||
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Linjebredd"
|
||||
|
||||
@@ -7681,6 +7782,12 @@ msgstr "Skript för efterbehandling"
|
||||
msgid "Notes"
|
||||
msgstr "Notes"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "Återkommande"
|
||||
|
||||
@@ -8760,19 +8867,22 @@ msgstr "View Liveview"
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "Bekräfta och uppdatera nozzeln"
|
||||
|
||||
msgid "LAN Connection Failed (Sending print file)"
|
||||
msgstr "LAN-anslutning misslyckades (skickar utskriftsfil)"
|
||||
msgid "Connect the printer using IP and access code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr "Steg 1: Bekräfta att Orca Slicer och din skrivare finns på samma LAN."
|
||||
"Step 1. Please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 2, if the IP and Access Code below are different from the actual values "
|
||||
"Step 2. If the IP and Access Code below are different from the actual values "
|
||||
"on your printer, please correct them."
|
||||
msgstr ""
|
||||
"Steg 2, om IP- och åtkomst koden nedan skiljer sig från de faktiska värdena "
|
||||
"på skrivaren, korrigera dem."
|
||||
|
||||
msgid ""
|
||||
"Step 3. Please obtain the device SN from the printer side; it is usually "
|
||||
"found in the device information on the printer screen."
|
||||
msgstr ""
|
||||
|
||||
msgid "IP"
|
||||
msgstr "IP"
|
||||
@@ -8780,17 +8890,38 @@ msgstr "IP"
|
||||
msgid "Access Code"
|
||||
msgstr "Behörighetskod: "
|
||||
|
||||
msgid "Printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Where to find your printer's IP and Access Code?"
|
||||
msgstr "Var hittar du skrivarens IP- och åtkomstkod?"
|
||||
|
||||
msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgstr "Steg 3: Pinga IP-adressen för att kontrollera paketförlust och latens."
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
msgid "Manual Setup"
|
||||
msgstr ""
|
||||
|
||||
msgid "IP and Access Code Verified! You may close the window"
|
||||
msgstr "IP- och åtkomstkoder verifierade! Du kan stänga fönstret"
|
||||
msgid "connecting..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to connect to printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to publish login request."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer has already been bound."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer mode is incorrect, please switch to LAN Only."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting to printer... The dialog will close later"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection failed, please double check IP and Access Code"
|
||||
msgstr "Anslutningen misslyckades, kontrollera IP och åtkomstkod"
|
||||
@@ -9704,45 +9835,44 @@ msgstr ""
|
||||
msgid "Nowhere"
|
||||
msgstr ""
|
||||
|
||||
msgid "Force cooling for overhang and bridge"
|
||||
msgstr "Tvinga kylning av överhäng och bridge/bryggor"
|
||||
msgid "Force cooling for overhangs and bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Enable this option to optimize part cooling fan speed for overhang and "
|
||||
"bridge to get better cooling"
|
||||
"Enable this option to allow adjustment of the part cooling fan speed for "
|
||||
"specifically for overhangs, internal and external bridges. Setting the fan "
|
||||
"speed specifically for these features can improve overall print quality and "
|
||||
"reduce warping."
|
||||
msgstr ""
|
||||
"Aktivera detta val för att optimisera del kylningens hastighet för överhäng "
|
||||
"och bridge/bryggor"
|
||||
|
||||
msgid "Fan speed for overhang"
|
||||
msgstr "Fläkthastighet för överhäng"
|
||||
msgid "Overhangs and external bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
"wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
"bridge can get better quality for these part"
|
||||
"Use this part cooling fan speed when printing bridges or overhang walls with "
|
||||
"an overhang threshold that exceeds the value set in the 'Overhangs cooling "
|
||||
"threshold' parameter above. Increasing the cooling specifically for "
|
||||
"overhangs and bridges can improve the overall print quality of these "
|
||||
"features.\n"
|
||||
"\n"
|
||||
"Please note, this fan speed is clamped on the lower end by the minimum fan "
|
||||
"speed threshold set above. It is also adjusted upwards up to the maximum fan "
|
||||
"speed threshold when the minimum layer time threshold is not met."
|
||||
msgstr ""
|
||||
"Tvinga del kylningsfläkten att hålla denna hastighet när utskrift av bridge/"
|
||||
"bryggor eller överhäng som är större än överhängs graderna skrivs ut. "
|
||||
"Tvingande kylning för överhäng och bridge/bryggor kan ge bättre kvalitet på "
|
||||
"dessa delar"
|
||||
|
||||
msgid "Cooling overhang threshold"
|
||||
msgstr "Överhängs kylningens tröskel"
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"Force cooling fan to be specific speed when overhang degree of printed part "
|
||||
"exceeds this value. Expressed as percentage which indicates how much width "
|
||||
"of the line without support from lower layer. 0% means forcing cooling for "
|
||||
"all outer wall no matter how much overhang degree"
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
"percentage, indicating the portion of each line's width that is unsupported "
|
||||
"by the layer beneath it. Setting this value to 0% forces the cooling fan to "
|
||||
"run for all outer walls, regardless of the overhang degree."
|
||||
msgstr ""
|
||||
"Tvinga kylfläkten att vara en specifik hastighet när överhängs graden av "
|
||||
"objektets del överstiger detta värde. Detta uttrycks som en procentsats som "
|
||||
"anger hur mycket bredden på linjen utan stöd från det nedre lagret. 0%% "
|
||||
"betyder tvinga kylning för all yttervägg oavsett överhängs grad."
|
||||
|
||||
msgid "Bridge infill direction"
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -9754,10 +9884,44 @@ msgstr ""
|
||||
"automatiskt. Annars kommer den medföljande vinkeln att användas för extern "
|
||||
"bridging. Använd 180° för noll vinkel."
|
||||
|
||||
msgid "Bridge density"
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Density of external bridges. 100% means solid bridge. Default is 100%."
|
||||
msgid ""
|
||||
"Internal bridging angle override. If left to zero, the bridging angle will "
|
||||
"be calculated automatically. Otherwise the provided angle will be used for "
|
||||
"internal bridges. Use 180°for zero angle.\n"
|
||||
"\n"
|
||||
"It is recommended to leave it at 0 unless there is a specific model need not "
|
||||
"to."
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
"Lower density external bridges can help improve reliability as there is more "
|
||||
"space for air to circulate around the extruded bridge, improving its cooling "
|
||||
"speed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
" Lower density internal bridges can help reduce top surface pillowing and "
|
||||
"improve internal bridge reliability as there is more space for air to "
|
||||
"circulate around the extruded bridge, improving its cooling speed. \n"
|
||||
"\n"
|
||||
"This option works particularly well when combined with the second internal "
|
||||
"bridge over infill option, further improving internal bridging structure "
|
||||
"before solid infill is extruded."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge flow ratio"
|
||||
@@ -9810,9 +9974,7 @@ msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Improve shell precision by adjusting outer wall spacing. This also improves "
|
||||
"layer consistency.\n"
|
||||
"Note: This setting will only take effect if the wall sequence is configured "
|
||||
"to Inner-Outer"
|
||||
"layer consistency."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
@@ -10043,12 +10205,24 @@ msgstr "uppåt kompatibel maskin"
|
||||
msgid "Compatible machine condition"
|
||||
msgstr "Kompatibel maskin status"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active printer "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "Kompatibla process profiler"
|
||||
|
||||
msgid "Compatible process profiles condition"
|
||||
msgstr "Kompatibla process profilers status"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active print "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr "Utskrifts sekvens, lager för lager eller objekt för objekt"
|
||||
|
||||
@@ -10146,8 +10320,8 @@ msgstr ""
|
||||
"support. Bridges/Bryggor kan vanligtvis skrivas ut utan support om de inte "
|
||||
"är för långa avstånd"
|
||||
|
||||
msgid "Thick bridges"
|
||||
msgstr "Tjocka bridges"
|
||||
msgid "Thick external bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, bridges are more reliable, can bridge longer distances, but may "
|
||||
@@ -10167,36 +10341,86 @@ msgid ""
|
||||
"using large nozzles."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges (beta)"
|
||||
msgid "Extra bridge layers (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reducing pillowing on top surfaces in heavily slanted "
|
||||
"or curved models.\n"
|
||||
"This option enables the generation of an extra bridge layer over internal "
|
||||
"and/or external bridges.\n"
|
||||
"\n"
|
||||
"Extra bridge layers help improve bridge appearance and reliability, as the "
|
||||
"solid infill is better supported. This is especially useful in fast "
|
||||
"printers, where the bridge and solid infill speeds vary greatly. The extra "
|
||||
"bridge layer results in reduced pillowing on top surfaces, as well as "
|
||||
"reduced separation of the external bridge layer from its surrounding "
|
||||
"perimeters.\n"
|
||||
"\n"
|
||||
"It is generally recommended to set this to at least 'External bridge only', "
|
||||
"unless specific issues with the sliced model are found.\n"
|
||||
"\n"
|
||||
"Options:\n"
|
||||
"1. Disabled - does not generate second bridge layers. This is the default "
|
||||
"and is set for compatibility purposes.\n"
|
||||
"2. External bridge only - generates second bridge layers for external-facing "
|
||||
"bridges only. Please note that small bridges that are shorter or narrower "
|
||||
"than the set number of perimeters will be skipped as they would not benefit "
|
||||
"from a second bridge layer. If generated, the second bridge layer will be "
|
||||
"extruded parallel to the first bridge layer to reinforce the bridge "
|
||||
"strength.\n"
|
||||
"3. Internal bridge only - generates second bridge layers for internal "
|
||||
"bridges over sparse infill only. Please note that the internal bridges count "
|
||||
"towards the top shell layer count of your model. The second internal bridge "
|
||||
"layer will be extruded as close to perpendicular to the first as possible. "
|
||||
"If multiple regions in the same island, with varying bridge angles are "
|
||||
"present, the last region of that island will be selected as the angle "
|
||||
"reference.\n"
|
||||
"4. Apply to all - generates second bridge layers for both internal and "
|
||||
"external-facing bridges\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply to all"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reduce pillowing on top surfaces in heavily slanted or "
|
||||
"curved models.\n"
|
||||
"\n"
|
||||
"By default, small internal bridges are filtered out and the internal solid "
|
||||
"infill is printed directly over the sparse infill. This works well in most "
|
||||
"cases, speeding up printing without too much compromise on top surface "
|
||||
"quality. \n"
|
||||
"\n"
|
||||
"However, in heavily slanted or curved models especially where too low sparse "
|
||||
"infill density is used, this may result in curling of the unsupported solid "
|
||||
"infill, causing pillowing.\n"
|
||||
"However, in heavily slanted or curved models, especially where too low a "
|
||||
"sparse infill density is used, this may result in curling of the unsupported "
|
||||
"solid infill, causing pillowing.\n"
|
||||
"\n"
|
||||
"Disabling this option will print internal bridge layer over slightly "
|
||||
"unsupported internal solid infill. The options below control the amount of "
|
||||
"filtering, i.e. the amount of internal bridges created.\n"
|
||||
"Enabling limited filtering or no filtering will print internal bridge layer "
|
||||
"over slightly unsupported internal solid infill. The options below control "
|
||||
"the sensitivity of the filtering, i.e. they control where internal bridges "
|
||||
"are created.\n"
|
||||
"\n"
|
||||
"Filter - enable this option. This is the default behavior and works well in "
|
||||
"most cases.\n"
|
||||
"1. Filter - enables this option. This is the default behavior and works well "
|
||||
"in most cases.\n"
|
||||
"\n"
|
||||
"Limited filtering - creates internal bridges on heavily slanted surfaces, "
|
||||
"while avoiding creating unnecessary internal bridges. This works well for "
|
||||
"most difficult models.\n"
|
||||
"2. Limited filtering - creates internal bridges on heavily slanted surfaces "
|
||||
"while avoiding unnecessary bridges. This works well for most difficult "
|
||||
"models.\n"
|
||||
"\n"
|
||||
"No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models. "
|
||||
"However, in most cases it creates too many unnecessary bridges."
|
||||
"3. No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models; "
|
||||
"however, in most cases, it creates too many unnecessary bridges."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter"
|
||||
@@ -10971,6 +11195,9 @@ msgstr "Linjemönster för sparsam ifyllnad"
|
||||
msgid "Grid"
|
||||
msgstr "Grid"
|
||||
|
||||
msgid "2D Lattice"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line"
|
||||
msgstr "Linje"
|
||||
|
||||
@@ -11001,6 +11228,25 @@ msgstr "Blixt"
|
||||
msgid "Cross Hatch"
|
||||
msgstr "Cross Hatch"
|
||||
|
||||
msgid "Quarter Cubic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 1"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the first set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 2"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the second set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill anchor length"
|
||||
msgstr ""
|
||||
|
||||
@@ -11184,10 +11430,24 @@ msgid "Support interface fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This fan speed is enforced during all support interfaces, to be able to "
|
||||
"weaken their bonding with a high fan speed.\n"
|
||||
"Set to -1 to disable this override.\n"
|
||||
"Can only be overridden by disable_fan_first_layers."
|
||||
"This part cooling fan speed is applied when printing support interfaces. "
|
||||
"Setting this parameter to a higher than regular speed reduces the layer "
|
||||
"binding strength between supports and the supported part, making them easier "
|
||||
"to separate.\n"
|
||||
"Set to -1 to disable it.\n"
|
||||
"This setting is overridden by disable_fan_first_layers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The part cooling fan speed used for all internal bridges. Set to -1 to use "
|
||||
"the overhang fan speed settings instead.\n"
|
||||
"\n"
|
||||
"Reducing the internal bridges fan speed, compared to your regular fan speed, "
|
||||
"can help reduce part warping due to excessive cooling applied over a large "
|
||||
"surface for a prolonged period of time."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -11233,6 +11493,59 @@ msgstr ""
|
||||
msgid "Whether to apply fuzzy skin on the first layer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise type"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Noise type to use for fuzzy skin generation.\n"
|
||||
"Classic: Classic uniform random noise.\n"
|
||||
"Perlin: Perlin noise, which gives a more consistent texture.\n"
|
||||
"Billow: Similar to perlin noise, but clumpier.\n"
|
||||
"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates "
|
||||
"marble-like textures.\n"
|
||||
"Voronoi: Divides the surface into voronoi cells, and displaces each one by a "
|
||||
"random amount. Creates a patchwork texture."
|
||||
msgstr ""
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Klassisk"
|
||||
|
||||
msgid "Perlin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billow"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ridged Multifractal"
|
||||
msgstr ""
|
||||
|
||||
msgid "Voronoi"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin feature size"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The base size of the coherent noise features, in mm. Higher values will "
|
||||
"result in larger features."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy Skin Noise Octaves"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The number of octaves of coherent noise to use. Higher values increase the "
|
||||
"detail of the noise, but also increase computation time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise persistence"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The decay rate for higher octaves of the coherent noise. Lower values will "
|
||||
"result in smoother noise."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out tiny gaps"
|
||||
msgstr "Filtrera bort små luckor"
|
||||
|
||||
@@ -11642,6 +11955,14 @@ msgstr "Strykning linjens mellanrum"
|
||||
msgid "The distance between the lines of ironing"
|
||||
msgstr "Avståndet mellan linjerna när strykning utförs"
|
||||
|
||||
msgid "Ironing inset"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The distance to keep from the edges. A value of 0 sets this to half of the "
|
||||
"nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ironing speed"
|
||||
msgstr "Stryknings hastighet"
|
||||
|
||||
@@ -11871,7 +12192,17 @@ msgid ""
|
||||
"Default value of 3 works well for most cases. If your printer is stuttering, "
|
||||
"increase this value to reduce the number of adjustments made\n"
|
||||
"\n"
|
||||
"Allowed values: 1-5"
|
||||
"Allowed values: 0.5-5"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply only on external features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Applies extrusion rate smoothing only on external perimeters and overhangs. "
|
||||
"This can help reduce artefacts due to sharp speed transitions on externally "
|
||||
"visible overhangs without impacting the print speed of features that will "
|
||||
"not be visible to the user."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum speed for part cooling fan"
|
||||
@@ -11899,9 +12230,9 @@ msgid "Min print speed"
|
||||
msgstr "Min utskrifts hastighet"
|
||||
|
||||
msgid ""
|
||||
"The minimum printing speed that the printer will slow down to to attempt to "
|
||||
"maintain the minimum layer time above, when slow down for better layer "
|
||||
"cooling is enabled."
|
||||
"The minimum print speed to which the printer slows down to maintain the "
|
||||
"minimum layer time defined above when the slowdown for better layer cooling "
|
||||
"is enabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Diameter of nozzle"
|
||||
@@ -12556,9 +12887,6 @@ msgid ""
|
||||
"with them. To avoid this, increase the skirt distance value.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
@@ -12813,25 +13141,22 @@ msgid "Enable support generation."
|
||||
msgstr "Aktivera support generering."
|
||||
|
||||
msgid ""
|
||||
"normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
"normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
"Normal (auto) and Tree (auto) is used to generate support automatically. If "
|
||||
"Normal (manual) or Tree (manual) is selected, only support enforcers are "
|
||||
"generated"
|
||||
msgstr ""
|
||||
"normal(auto) och tree(auto) används för att generera support automatiskt. Om "
|
||||
"normal(manual) eller tree(manual) väljs, genereras endast support "
|
||||
"förstärkare."
|
||||
|
||||
msgid "normal(auto)"
|
||||
msgstr "normal (auto)"
|
||||
msgid "Normal (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(auto)"
|
||||
msgstr "träd(auto)"
|
||||
msgid "Tree (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "normal(manual)"
|
||||
msgstr "normal (manuell)"
|
||||
msgid "Normal (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(manual)"
|
||||
msgstr "tree (manuell)"
|
||||
msgid "Tree (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support/object xy distance"
|
||||
msgstr "Support/objekt xy distans"
|
||||
@@ -13048,6 +13373,15 @@ msgid ""
|
||||
"threshold."
|
||||
msgstr "Support skapas för överhäng vars sluttning är under denna gräns."
|
||||
|
||||
msgid "Threshold overlap"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If threshold angle is zero, support will be generated for overhangs whose "
|
||||
"overlap is below the threshold. The smaller this value is, the steeper the "
|
||||
"overhang that can be printed without support."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tree support branch angle"
|
||||
msgstr "Tree support grenarnas vinkel"
|
||||
|
||||
@@ -13527,9 +13861,6 @@ msgstr ""
|
||||
"bredd och för mycket tunna områden används gap-fill. Arachne-motorn "
|
||||
"producerar väggar med variabel extruderings bredd."
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "Klassisk"
|
||||
|
||||
msgid "Arachne"
|
||||
msgstr "Arachne"
|
||||
|
||||
@@ -15451,6 +15782,9 @@ msgstr "Fysisk printer"
|
||||
msgid "Print Host upload"
|
||||
msgstr "Uppladdning utskriftsvärd"
|
||||
|
||||
msgid "Test"
|
||||
msgstr "Test"
|
||||
|
||||
msgid "Could not get a valid Printer Host reference"
|
||||
msgstr "Det gick inte att hämta en giltig printer värdreferens"
|
||||
|
||||
@@ -16268,6 +16602,107 @@ msgstr ""
|
||||
"ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten "
|
||||
"för vridning."
|
||||
|
||||
#~ msgid "Current Cabin humidity"
|
||||
#~ msgstr "Current Cabin humidity"
|
||||
|
||||
#~ msgid "Stopped."
|
||||
#~ msgstr "Avbruten."
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Connect failed [%d]!"
|
||||
#~ msgstr "Sammankoppling misslyckades [%d]"
|
||||
|
||||
#~ msgid "Initialize failed (Device connection not ready)!"
|
||||
#~ msgstr "Initieringen misslyckades (Enhets anslutningen är inte klar)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Initialize failed (%s)!"
|
||||
#~ msgstr "Initieringen misslyckades (%s)!"
|
||||
|
||||
#~ msgid "LAN Connection Failed (Sending print file)"
|
||||
#~ msgstr "LAN-anslutning misslyckades (skickar utskriftsfil)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
#~ msgstr ""
|
||||
#~ "Steg 1: Bekräfta att Orca Slicer och din skrivare finns på samma LAN."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 2, if the IP and Access Code below are different from the actual "
|
||||
#~ "values on your printer, please correct them."
|
||||
#~ msgstr ""
|
||||
#~ "Steg 2, om IP- och åtkomst koden nedan skiljer sig från de faktiska "
|
||||
#~ "värdena på skrivaren, korrigera dem."
|
||||
|
||||
#~ msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
#~ msgstr ""
|
||||
#~ "Steg 3: Pinga IP-adressen för att kontrollera paketförlust och latens."
|
||||
|
||||
#~ msgid "IP and Access Code Verified! You may close the window"
|
||||
#~ msgstr "IP- och åtkomstkoder verifierade! Du kan stänga fönstret"
|
||||
|
||||
#~ msgid "Force cooling for overhang and bridge"
|
||||
#~ msgstr "Tvinga kylning av överhäng och bridge/bryggor"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable this option to optimize part cooling fan speed for overhang and "
|
||||
#~ "bridge to get better cooling"
|
||||
#~ msgstr ""
|
||||
#~ "Aktivera detta val för att optimisera del kylningens hastighet för "
|
||||
#~ "överhäng och bridge/bryggor"
|
||||
|
||||
#~ msgid "Fan speed for overhang"
|
||||
#~ msgstr "Fläkthastighet för överhäng"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
#~ "wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
#~ "bridge can get better quality for these part"
|
||||
#~ msgstr ""
|
||||
#~ "Tvinga del kylningsfläkten att hålla denna hastighet när utskrift av "
|
||||
#~ "bridge/bryggor eller överhäng som är större än överhängs graderna skrivs "
|
||||
#~ "ut. Tvingande kylning för överhäng och bridge/bryggor kan ge bättre "
|
||||
#~ "kvalitet på dessa delar"
|
||||
|
||||
#~ msgid "Cooling overhang threshold"
|
||||
#~ msgstr "Överhängs kylningens tröskel"
|
||||
|
||||
#, c-format
|
||||
#~ msgid ""
|
||||
#~ "Force cooling fan to be specific speed when overhang degree of printed "
|
||||
#~ "part exceeds this value. Expressed as percentage which indicates how much "
|
||||
#~ "width of the line without support from lower layer. 0% means forcing "
|
||||
#~ "cooling for all outer wall no matter how much overhang degree"
|
||||
#~ msgstr ""
|
||||
#~ "Tvinga kylfläkten att vara en specifik hastighet när överhängs graden av "
|
||||
#~ "objektets del överstiger detta värde. Detta uttrycks som en procentsats "
|
||||
#~ "som anger hur mycket bredden på linjen utan stöd från det nedre lagret. "
|
||||
#~ "0%% betyder tvinga kylning för all yttervägg oavsett överhängs grad."
|
||||
|
||||
#~ msgid "Thick bridges"
|
||||
#~ msgstr "Tjocka bridges"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
#~ "normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
#~ "generated"
|
||||
#~ msgstr ""
|
||||
#~ "normal(auto) och tree(auto) används för att generera support automatiskt. "
|
||||
#~ "Om normal(manual) eller tree(manual) väljs, genereras endast support "
|
||||
#~ "förstärkare."
|
||||
|
||||
#~ msgid "normal(auto)"
|
||||
#~ msgstr "normal (auto)"
|
||||
|
||||
#~ msgid "tree(auto)"
|
||||
#~ msgstr "träd(auto)"
|
||||
|
||||
#~ msgid "normal(manual)"
|
||||
#~ msgstr "normal (manuell)"
|
||||
|
||||
#~ msgid "tree(manual)"
|
||||
#~ msgstr "tree (manuell)"
|
||||
|
||||
#~ msgctxt "Verb"
|
||||
#~ msgid "Scale"
|
||||
#~ msgstr "Skala"
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Slic3rPE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
|
||||
"POT-Creation-Date: 2025-02-14 23:42+0800\n"
|
||||
"PO-Revision-Date: 2024-07-28 07:12+0000\n"
|
||||
"Last-Translator: Handle <mail@bysb.net>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -2746,9 +2746,6 @@ msgstr "本软件使用开源组件,其版权和其他所有权属于各自的
|
||||
msgid "About %s"
|
||||
msgstr "关于 %s"
|
||||
|
||||
msgid "Orca Slicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
|
||||
msgstr "OrcaSlicer基于BambuStudio、PrusaSlicer 以及SuperSlicer开发。"
|
||||
|
||||
@@ -2796,9 +2793,6 @@ msgstr "输入的范围应当在 %1% 和 %2% 之间"
|
||||
msgid "SN"
|
||||
msgstr "序列号"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "不支持在打印时修改AMS槽位信息"
|
||||
|
||||
msgid "Factors of Flow Dynamics Calibration"
|
||||
msgstr "动态流量校准系数"
|
||||
|
||||
@@ -2811,6 +2805,9 @@ msgstr "系数K"
|
||||
msgid "Factor N"
|
||||
msgstr "系数N"
|
||||
|
||||
msgid "Setting AMS slot information while printing is not supported"
|
||||
msgstr "不支持在打印时修改AMS槽位信息"
|
||||
|
||||
msgid "Setting Virtual slot information while printing is not supported"
|
||||
msgstr "不支持在打印时设置虚拟槽位信息"
|
||||
|
||||
@@ -2928,8 +2925,8 @@ msgstr "不启用AMS"
|
||||
msgid "Print with the filament mounted on the back of chassis"
|
||||
msgstr "使用机箱背后挂载的材料打印"
|
||||
|
||||
msgid "Current Cabin humidity"
|
||||
msgstr "当前舱内湿度"
|
||||
msgid "Current AMS humidity"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Please change the desiccant when it is too wet. The indicator may not "
|
||||
@@ -4941,8 +4938,8 @@ msgstr "检查网络后重试。如仍未恢复,可重启或更新打印机。
|
||||
msgid "The printer has been logged out and cannot connect."
|
||||
msgstr "打印机已注销,无法连接。"
|
||||
|
||||
msgid "Stopped."
|
||||
msgstr "已经停止。"
|
||||
msgid "Video Stopped."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to start liveview)"
|
||||
msgstr "局域网连接失败(无法启动直播)"
|
||||
@@ -5031,10 +5028,6 @@ msgstr "从打印机重新加载文件列表。"
|
||||
msgid "No printers."
|
||||
msgstr "未选择打印机"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Connect failed [%d]!"
|
||||
msgstr "连接失败 [%d]!"
|
||||
|
||||
msgid "Loading file list..."
|
||||
msgstr "加载文件列表..."
|
||||
|
||||
@@ -5044,16 +5037,15 @@ msgstr "文件列表为空"
|
||||
msgid "Load failed"
|
||||
msgstr "加载失败"
|
||||
|
||||
msgid "Initialize failed (Device connection not ready)!"
|
||||
msgstr "初始化失败(设备未连接)"
|
||||
|
||||
msgid ""
|
||||
"Browsing file in SD card is not supported in current firmware. Please update "
|
||||
"the printer firmware."
|
||||
msgstr "当前固件暂不支持查看SD卡中文件。请更新打印机固件后重试。"
|
||||
|
||||
msgid "Initialize failed (Storage unavailable, insert SD card.)!"
|
||||
msgstr "初始化失败(存储不可用,请插入 SD 卡)!"
|
||||
msgid ""
|
||||
"Please check if the SD card is inserted into the printer.\n"
|
||||
"If it still cannot be read, you can try formatting the SD card."
|
||||
msgstr ""
|
||||
|
||||
msgid "LAN Connection Failed (Failed to view sdcard)"
|
||||
msgstr "局域网连接失败(无法查看SD卡)"
|
||||
@@ -5061,10 +5053,6 @@ msgstr "局域网连接失败(无法查看SD卡)"
|
||||
msgid "Browsing file in SD card is not supported in LAN Only Mode."
|
||||
msgstr "局域网模式下暂不支持查看SD卡内文件。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Initialize failed (%s)!"
|
||||
msgstr "初始化失败(%s)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "You are going to delete %u file from printer. Are you sure to continue?"
|
||||
msgid_plural ""
|
||||
@@ -5481,6 +5469,25 @@ msgstr "最新版本:"
|
||||
msgid "Not for now"
|
||||
msgstr "暂不"
|
||||
|
||||
msgid "Server Exception"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The server is unable to respond. Please click the link below to check the "
|
||||
"server status."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If the server is in a fault state, you can temporarily use offline printing "
|
||||
"or local network printing."
|
||||
msgstr ""
|
||||
|
||||
msgid "How to use LAN only mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Don't show this dialog again"
|
||||
msgstr ""
|
||||
|
||||
msgid "3D Mouse disconnected."
|
||||
msgstr "3D鼠标断连。"
|
||||
|
||||
@@ -6152,6 +6159,10 @@ msgstr "按项目打开"
|
||||
msgid "Import geometry only"
|
||||
msgstr "仅导入模型数据"
|
||||
|
||||
msgid ""
|
||||
"This option can be changed later in preferences, under 'Load Behaviour'."
|
||||
msgstr ""
|
||||
|
||||
msgid "Only one G-code file can be opened at the same time."
|
||||
msgstr "只能同时打开一个G-code文件。"
|
||||
|
||||
@@ -6566,6 +6577,24 @@ msgstr ""
|
||||
msgid "Associate URLs to OrcaSlicer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ask When Relevant"
|
||||
msgstr ""
|
||||
|
||||
msgid "Always Ask"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Geometry Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Load Behaviour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Should printer/filament/process settings be loaded when opening a .3mf?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Maximum recent projects"
|
||||
msgstr "近期项目的最大数量"
|
||||
|
||||
@@ -7106,6 +7135,9 @@ msgstr "修改打印机名称"
|
||||
msgid "Bind with Pin Code"
|
||||
msgstr "通过Pin码绑定"
|
||||
|
||||
msgid "Bind with Access Code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Send to Printer SD card"
|
||||
msgstr "发送到打印机的SD卡"
|
||||
|
||||
@@ -7382,6 +7414,75 @@ msgstr ""
|
||||
"在录制无工具头延时摄影视频时,建议添加“延时摄影擦料塔”\n"
|
||||
"右键单击打印板的空白位置,选择“添加标准模型”->“延时摄影擦料塔”。"
|
||||
|
||||
msgid ""
|
||||
"A copy of the current system preset will be created, which will be detached "
|
||||
"from the system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The current custom preset will be detached from the parent system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Modifications to the current profile will be saved."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This action is not revertible.\n"
|
||||
"Do you want to proceed?"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detach preset"
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "This is a system preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from the default preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Current preset is inherited from"
|
||||
msgstr ""
|
||||
|
||||
msgid "It can't be deleted or modified."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Any modifications should be saved as a new preset inherited from this one."
|
||||
msgstr ""
|
||||
|
||||
msgid "To do that please specify a new name for the preset."
|
||||
msgstr ""
|
||||
|
||||
msgid "Additional information:"
|
||||
msgstr ""
|
||||
|
||||
msgid "vendor"
|
||||
msgstr ""
|
||||
|
||||
msgid "printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "default print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default filament profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA material profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "default SLA print profile"
|
||||
msgstr ""
|
||||
|
||||
msgid "full profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "symbolic profile name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "线宽"
|
||||
|
||||
@@ -7477,6 +7578,12 @@ msgstr "后处理脚本"
|
||||
msgid "Notes"
|
||||
msgstr "注释"
|
||||
|
||||
msgid "Dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Profile dependencies"
|
||||
msgstr ""
|
||||
|
||||
msgid "Frequent"
|
||||
msgstr "常用"
|
||||
|
||||
@@ -8531,17 +8638,22 @@ msgstr "查看LiveView"
|
||||
msgid "Confirm and Update Nozzle"
|
||||
msgstr "确认并更新喷嘴"
|
||||
|
||||
msgid "LAN Connection Failed (Sending print file)"
|
||||
msgstr "LAN连接失败 (发送打印文件)"
|
||||
msgid "Connect the printer using IP and access code"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr "第1步,请确认Orca Slicer和您的打印机在同一个LAN上。"
|
||||
"Step 1. Please confirm Orca Slicer and your printer are in the same LAN."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 2, if the IP and Access Code below are different from the actual values "
|
||||
"Step 2. If the IP and Access Code below are different from the actual values "
|
||||
"on your printer, please correct them."
|
||||
msgstr "步骤2, 如果下面的IP和访问码与打印机上的实际值不同,请输入正确的值。"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Step 3. Please obtain the device SN from the printer side; it is usually "
|
||||
"found in the device information on the printer screen."
|
||||
msgstr ""
|
||||
|
||||
msgid "IP"
|
||||
msgstr ""
|
||||
@@ -8549,17 +8661,38 @@ msgstr ""
|
||||
msgid "Access Code"
|
||||
msgstr "访问码"
|
||||
|
||||
msgid "Printer model"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer name"
|
||||
msgstr ""
|
||||
|
||||
msgid "Where to find your printer's IP and Access Code?"
|
||||
msgstr "在哪里可以找到打印机的IP和访问码?"
|
||||
|
||||
msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
msgstr "步骤3,请ping打印机的IP地址,以此检查丢包和延迟。"
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
msgid "Test"
|
||||
msgstr "测试"
|
||||
msgid "Manual Setup"
|
||||
msgstr ""
|
||||
|
||||
msgid "IP and Access Code Verified! You may close the window"
|
||||
msgstr "IP地址和访问码验证成功!您可以关闭此窗口。"
|
||||
msgid "connecting..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to connect to printer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to publish login request."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer has already been bound."
|
||||
msgstr ""
|
||||
|
||||
msgid "The printer mode is incorrect, please switch to LAN Only."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connecting to printer... The dialog will close later"
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection failed, please double check IP and Access Code"
|
||||
msgstr "连接失败,请再次检查IP地址和访问码。"
|
||||
@@ -9433,41 +9566,45 @@ msgstr "仅顶层和底层"
|
||||
msgid "Nowhere"
|
||||
msgstr "不填充"
|
||||
|
||||
msgid "Force cooling for overhang and bridge"
|
||||
msgstr "悬垂/桥接强制冷却"
|
||||
|
||||
msgid ""
|
||||
"Enable this option to optimize part cooling fan speed for overhang and "
|
||||
"bridge to get better cooling"
|
||||
msgstr "勾选这个选项将自动优化桥接和悬垂的风扇转速以获得更好的冷却"
|
||||
|
||||
msgid "Fan speed for overhang"
|
||||
msgstr "悬垂风扇速度"
|
||||
|
||||
msgid ""
|
||||
"Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
"wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
"bridge can get better quality for these part"
|
||||
msgid "Force cooling for overhangs and bridges"
|
||||
msgstr ""
|
||||
"当打印桥接和超过设定阈值的悬垂时,强制部件冷却风扇为设定的速度值。强制冷却能"
|
||||
"够使悬垂和桥接获得更好的打印质量"
|
||||
|
||||
msgid "Cooling overhang threshold"
|
||||
msgstr "冷却悬空阈值"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Force cooling fan to be specific speed when overhang degree of printed part "
|
||||
"exceeds this value. Expressed as percentage which indicates how much width "
|
||||
"of the line without support from lower layer. 0% means forcing cooling for "
|
||||
"all outer wall no matter how much overhang degree"
|
||||
"Enable this option to allow adjustment of the part cooling fan speed for "
|
||||
"specifically for overhangs, internal and external bridges. Setting the fan "
|
||||
"speed specifically for these features can improve overall print quality and "
|
||||
"reduce warping."
|
||||
msgstr ""
|
||||
"当打印件的悬空程度超过此值时,强制冷却风扇达到特定速度。用百分比表示,表明没"
|
||||
"有下层支撑的线的宽度是多少。0%%意味着无论悬垂程度如何,都要对所有外壁强制冷"
|
||||
"却。"
|
||||
|
||||
msgid "Bridge infill direction"
|
||||
msgstr "拉桥填充方向"
|
||||
msgid "Overhangs and external bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Use this part cooling fan speed when printing bridges or overhang walls with "
|
||||
"an overhang threshold that exceeds the value set in the 'Overhangs cooling "
|
||||
"threshold' parameter above. Increasing the cooling specifically for "
|
||||
"overhangs and bridges can improve the overall print quality of these "
|
||||
"features.\n"
|
||||
"\n"
|
||||
"Please note, this fan speed is clamped on the lower end by the minimum fan "
|
||||
"speed threshold set above. It is also adjusted upwards up to the maximum fan "
|
||||
"speed threshold when the minimum layer time threshold is not met."
|
||||
msgstr ""
|
||||
|
||||
msgid "Overhang cooling activation threshold"
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"When the overhang exceeds this specified threshold, force the cooling fan to "
|
||||
"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
|
||||
"percentage, indicating the portion of each line's width that is unsupported "
|
||||
"by the layer beneath it. Setting this value to 0% forces the cooling fan to "
|
||||
"run for all outer walls, regardless of the overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
||||
@@ -9477,11 +9614,45 @@ msgstr ""
|
||||
"搭桥角度覆盖。如果设置为零,该角度将自动计算。否则外部的桥接将用提供的值。"
|
||||
"180°表示0度。"
|
||||
|
||||
msgid "Bridge density"
|
||||
msgstr "搭桥密度"
|
||||
msgid "Internal bridge infill direction"
|
||||
msgstr ""
|
||||
|
||||
msgid "Density of external bridges. 100% means solid bridge. Default is 100%."
|
||||
msgstr "外部桥接的密度。100%意味着实心桥。默认值为100%。"
|
||||
msgid ""
|
||||
"Internal bridging angle override. If left to zero, the bridging angle will "
|
||||
"be calculated automatically. Otherwise the provided angle will be used for "
|
||||
"internal bridges. Use 180°for zero angle.\n"
|
||||
"\n"
|
||||
"It is recommended to leave it at 0 unless there is a specific model need not "
|
||||
"to."
|
||||
msgstr ""
|
||||
|
||||
msgid "External bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of external bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
"Lower density external bridges can help improve reliability as there is more "
|
||||
"space for air to circulate around the extruded bridge, improving its cooling "
|
||||
"speed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge density"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Controls the density (spacing) of internal bridge lines. 100% means solid "
|
||||
"bridge. Default is 100%.\n"
|
||||
"\n"
|
||||
" Lower density internal bridges can help reduce top surface pillowing and "
|
||||
"improve internal bridge reliability as there is more space for air to "
|
||||
"circulate around the extruded bridge, improving its cooling speed. \n"
|
||||
"\n"
|
||||
"This option works particularly well when combined with the second internal "
|
||||
"bridge over infill option, further improving internal bridging structure "
|
||||
"before solid infill is extruded."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge flow ratio"
|
||||
msgstr "桥接流量"
|
||||
@@ -9533,10 +9704,8 @@ msgstr "精准外墙尺寸"
|
||||
|
||||
msgid ""
|
||||
"Improve shell precision by adjusting outer wall spacing. This also improves "
|
||||
"layer consistency.\n"
|
||||
"Note: This setting will only take effect if the wall sequence is configured "
|
||||
"to Inner-Outer"
|
||||
msgstr ""
|
||||
"layer consistency."
|
||||
msgstr "优化外墙刀路以提高外墙精度。这个优化同时减少层纹"
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
msgstr "顶面单层墙"
|
||||
@@ -9789,12 +9958,24 @@ msgstr "向上兼容的机器"
|
||||
msgid "Compatible machine condition"
|
||||
msgstr "兼容的机器的条件"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active printer "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active printer profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Compatible process profiles"
|
||||
msgstr "兼容的切片配置"
|
||||
|
||||
msgid "Compatible process profiles condition"
|
||||
msgstr "兼容的切片配置的条件"
|
||||
|
||||
msgid ""
|
||||
"A boolean expression using the configuration values of an active print "
|
||||
"profile. If this expression evaluates to true, this profile is considered "
|
||||
"compatible with the active print profile."
|
||||
msgstr ""
|
||||
|
||||
msgid "Print sequence, layer by layer or object by object"
|
||||
msgstr "打印顺序,逐层打印或者逐件打印"
|
||||
|
||||
@@ -9885,8 +10066,8 @@ msgstr ""
|
||||
"不对整个桥接面进行支撑,否则支撑体会很大。不是很长的桥接通常可以无支撑直接打"
|
||||
"印。"
|
||||
|
||||
msgid "Thick bridges"
|
||||
msgstr "厚桥"
|
||||
msgid "Thick external bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If enabled, bridges are more reliable, can bridge longer distances, but may "
|
||||
@@ -9907,36 +10088,86 @@ msgstr ""
|
||||
"如果启用,将使用厚内部桥接。通常建议打开此功能。但是,如果您使用大喷嘴,请考"
|
||||
"虑关闭它。"
|
||||
|
||||
msgid "Filter out small internal bridges (beta)"
|
||||
msgstr "过滤细微内部桥接(试验)"
|
||||
msgid "Extra bridge layers (beta)"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reducing pillowing on top surfaces in heavily slanted "
|
||||
"or curved models.\n"
|
||||
"This option enables the generation of an extra bridge layer over internal "
|
||||
"and/or external bridges.\n"
|
||||
"\n"
|
||||
"Extra bridge layers help improve bridge appearance and reliability, as the "
|
||||
"solid infill is better supported. This is especially useful in fast "
|
||||
"printers, where the bridge and solid infill speeds vary greatly. The extra "
|
||||
"bridge layer results in reduced pillowing on top surfaces, as well as "
|
||||
"reduced separation of the external bridge layer from its surrounding "
|
||||
"perimeters.\n"
|
||||
"\n"
|
||||
"It is generally recommended to set this to at least 'External bridge only', "
|
||||
"unless specific issues with the sliced model are found.\n"
|
||||
"\n"
|
||||
"Options:\n"
|
||||
"1. Disabled - does not generate second bridge layers. This is the default "
|
||||
"and is set for compatibility purposes.\n"
|
||||
"2. External bridge only - generates second bridge layers for external-facing "
|
||||
"bridges only. Please note that small bridges that are shorter or narrower "
|
||||
"than the set number of perimeters will be skipped as they would not benefit "
|
||||
"from a second bridge layer. If generated, the second bridge layer will be "
|
||||
"extruded parallel to the first bridge layer to reinforce the bridge "
|
||||
"strength.\n"
|
||||
"3. Internal bridge only - generates second bridge layers for internal "
|
||||
"bridges over sparse infill only. Please note that the internal bridges count "
|
||||
"towards the top shell layer count of your model. The second internal bridge "
|
||||
"layer will be extruded as close to perpendicular to the first as possible. "
|
||||
"If multiple regions in the same island, with varying bridge angles are "
|
||||
"present, the last region of that island will be selected as the angle "
|
||||
"reference.\n"
|
||||
"4. Apply to all - generates second bridge layers for both internal and "
|
||||
"external-facing bridges\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "禁用"
|
||||
|
||||
msgid "External bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridge only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply to all"
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out small internal bridges"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option can help reduce pillowing on top surfaces in heavily slanted or "
|
||||
"curved models.\n"
|
||||
"\n"
|
||||
"By default, small internal bridges are filtered out and the internal solid "
|
||||
"infill is printed directly over the sparse infill. This works well in most "
|
||||
"cases, speeding up printing without too much compromise on top surface "
|
||||
"quality. \n"
|
||||
"\n"
|
||||
"However, in heavily slanted or curved models especially where too low sparse "
|
||||
"infill density is used, this may result in curling of the unsupported solid "
|
||||
"infill, causing pillowing.\n"
|
||||
"However, in heavily slanted or curved models, especially where too low a "
|
||||
"sparse infill density is used, this may result in curling of the unsupported "
|
||||
"solid infill, causing pillowing.\n"
|
||||
"\n"
|
||||
"Disabling this option will print internal bridge layer over slightly "
|
||||
"unsupported internal solid infill. The options below control the amount of "
|
||||
"filtering, i.e. the amount of internal bridges created.\n"
|
||||
"Enabling limited filtering or no filtering will print internal bridge layer "
|
||||
"over slightly unsupported internal solid infill. The options below control "
|
||||
"the sensitivity of the filtering, i.e. they control where internal bridges "
|
||||
"are created.\n"
|
||||
"\n"
|
||||
"Filter - enable this option. This is the default behavior and works well in "
|
||||
"most cases.\n"
|
||||
"1. Filter - enables this option. This is the default behavior and works well "
|
||||
"in most cases.\n"
|
||||
"\n"
|
||||
"Limited filtering - creates internal bridges on heavily slanted surfaces, "
|
||||
"while avoiding creating unnecessary internal bridges. This works well for "
|
||||
"most difficult models.\n"
|
||||
"2. Limited filtering - creates internal bridges on heavily slanted surfaces "
|
||||
"while avoiding unnecessary bridges. This works well for most difficult "
|
||||
"models.\n"
|
||||
"\n"
|
||||
"No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models. "
|
||||
"However, in most cases it creates too many unnecessary bridges."
|
||||
"3. No filtering - creates internal bridges on every potential internal "
|
||||
"overhang. This option is useful for heavily slanted top surface models; "
|
||||
"however, in most cases, it creates too many unnecessary bridges."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter"
|
||||
@@ -10746,6 +10977,9 @@ msgstr "内部稀疏填充的走线图案"
|
||||
msgid "Grid"
|
||||
msgstr "网格"
|
||||
|
||||
msgid "2D Lattice"
|
||||
msgstr ""
|
||||
|
||||
msgid "Line"
|
||||
msgstr "线"
|
||||
|
||||
@@ -10776,6 +11010,25 @@ msgstr "闪电"
|
||||
msgid "Cross Hatch"
|
||||
msgstr "交叉层叠"
|
||||
|
||||
msgid "Quarter Cubic"
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 1"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the first set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Lattice angle 2"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The angle of the second set of 2D lattice elements in the Z direction. Zero "
|
||||
"is vertical."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sparse infill anchor length"
|
||||
msgstr "稀疏填充锚线长度"
|
||||
|
||||
@@ -10967,11 +11220,25 @@ msgid "Support interface fan speed"
|
||||
msgstr "支撐接触面风扇"
|
||||
|
||||
msgid ""
|
||||
"This fan speed is enforced during all support interfaces, to be able to "
|
||||
"weaken their bonding with a high fan speed.\n"
|
||||
"Set to -1 to disable this override.\n"
|
||||
"Can only be overridden by disable_fan_first_layers."
|
||||
msgstr "此风扇速度在所有支撑接触层打印期间强制执行"
|
||||
"This part cooling fan speed is applied when printing support interfaces. "
|
||||
"Setting this parameter to a higher than regular speed reduces the layer "
|
||||
"binding strength between supports and the supported part, making them easier "
|
||||
"to separate.\n"
|
||||
"Set to -1 to disable it.\n"
|
||||
"This setting is overridden by disable_fan_first_layers."
|
||||
msgstr ""
|
||||
|
||||
msgid "Internal bridges fan speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The part cooling fan speed used for all internal bridges. Set to -1 to use "
|
||||
"the overhang fan speed settings instead.\n"
|
||||
"\n"
|
||||
"Reducing the internal bridges fan speed, compared to your regular fan speed, "
|
||||
"can help reduce part warping due to excessive cooling applied over a large "
|
||||
"surface for a prolonged period of time."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Randomly jitter while printing the wall, so that the surface has a rough "
|
||||
@@ -11009,6 +11276,59 @@ msgstr "绒毛表面应用至首层"
|
||||
msgid "Whether to apply fuzzy skin on the first layer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise type"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Noise type to use for fuzzy skin generation.\n"
|
||||
"Classic: Classic uniform random noise.\n"
|
||||
"Perlin: Perlin noise, which gives a more consistent texture.\n"
|
||||
"Billow: Similar to perlin noise, but clumpier.\n"
|
||||
"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates "
|
||||
"marble-like textures.\n"
|
||||
"Voronoi: Divides the surface into voronoi cells, and displaces each one by a "
|
||||
"random amount. Creates a patchwork texture."
|
||||
msgstr ""
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "经典"
|
||||
|
||||
msgid "Perlin"
|
||||
msgstr ""
|
||||
|
||||
msgid "Billow"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ridged Multifractal"
|
||||
msgstr ""
|
||||
|
||||
msgid "Voronoi"
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin feature size"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The base size of the coherent noise features, in mm. Higher values will "
|
||||
"result in larger features."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy Skin Noise Octaves"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The number of octaves of coherent noise to use. Higher values increase the "
|
||||
"detail of the noise, but also increase computation time."
|
||||
msgstr ""
|
||||
|
||||
msgid "Fuzzy skin noise persistence"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The decay rate for higher octaves of the coherent noise. Lower values will "
|
||||
"result in smoother noise."
|
||||
msgstr ""
|
||||
|
||||
msgid "Filter out tiny gaps"
|
||||
msgstr "忽略微小间隙"
|
||||
|
||||
@@ -11416,6 +11736,14 @@ msgstr "熨烫间距"
|
||||
msgid "The distance between the lines of ironing"
|
||||
msgstr "熨烫走线的间距"
|
||||
|
||||
msgid "Ironing inset"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The distance to keep from the edges. A value of 0 sets this to half of the "
|
||||
"nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ironing speed"
|
||||
msgstr "熨烫速度"
|
||||
|
||||
@@ -11660,7 +11988,17 @@ msgid ""
|
||||
"Default value of 3 works well for most cases. If your printer is stuttering, "
|
||||
"increase this value to reduce the number of adjustments made\n"
|
||||
"\n"
|
||||
"Allowed values: 1-5"
|
||||
"Allowed values: 0.5-5"
|
||||
msgstr ""
|
||||
|
||||
msgid "Apply only on external features"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Applies extrusion rate smoothing only on external perimeters and overhangs. "
|
||||
"This can help reduce artefacts due to sharp speed transitions on externally "
|
||||
"visible overhangs without impacting the print speed of features that will "
|
||||
"not be visible to the user."
|
||||
msgstr ""
|
||||
|
||||
msgid "Minimum speed for part cooling fan"
|
||||
@@ -11689,12 +12027,10 @@ msgid "Min print speed"
|
||||
msgstr "最小打印速度"
|
||||
|
||||
msgid ""
|
||||
"The minimum printing speed that the printer will slow down to to attempt to "
|
||||
"maintain the minimum layer time above, when slow down for better layer "
|
||||
"cooling is enabled."
|
||||
"The minimum print speed to which the printer slows down to maintain the "
|
||||
"minimum layer time defined above when the slowdown for better layer cooling "
|
||||
"is enabled."
|
||||
msgstr ""
|
||||
"在您启用“降低打印速度 以得到更好的冷却”选项时最小的打印速度,以尝试保持上方设"
|
||||
"置的最小层时间。"
|
||||
|
||||
msgid "Diameter of nozzle"
|
||||
msgstr "喷嘴直径"
|
||||
@@ -12358,9 +12694,6 @@ msgstr ""
|
||||
"注意:启用风挡后,skirt将会在距离模型'skirt距离'的地方打印。因此,如果brim启"
|
||||
"用,可能会与其相交。为了避免这种情况,增加skirt距离值。\n"
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "禁用"
|
||||
|
||||
msgid "Enabled"
|
||||
msgstr "启用"
|
||||
|
||||
@@ -12612,24 +12945,22 @@ msgid "Enable support generation."
|
||||
msgstr "开启支撑生成。"
|
||||
|
||||
msgid ""
|
||||
"normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
"normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
"Normal (auto) and Tree (auto) is used to generate support automatically. If "
|
||||
"Normal (manual) or Tree (manual) is selected, only support enforcers are "
|
||||
"generated"
|
||||
msgstr ""
|
||||
"普通(自动)和树状(自动)用于自动生成支撑体。如果选择普通(手动)或树状(手"
|
||||
"动),仅会在支撑强制面上生成支撑。"
|
||||
|
||||
msgid "normal(auto)"
|
||||
msgstr "普通(自动)"
|
||||
msgid "Normal (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(auto)"
|
||||
msgstr "树状(自动)"
|
||||
msgid "Tree (auto)"
|
||||
msgstr ""
|
||||
|
||||
msgid "normal(manual)"
|
||||
msgstr "普通(手动)"
|
||||
msgid "Normal (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "tree(manual)"
|
||||
msgstr "树状(手动)"
|
||||
msgid "Tree (manual)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Support/object xy distance"
|
||||
msgstr "支撑/模型xy间距"
|
||||
@@ -12834,6 +13165,15 @@ msgid ""
|
||||
"threshold."
|
||||
msgstr "将会为悬垂角度低于阈值的模型表面生成支撑。"
|
||||
|
||||
msgid "Threshold overlap"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"If threshold angle is zero, support will be generated for overhangs whose "
|
||||
"overlap is below the threshold. The smaller this value is, the steeper the "
|
||||
"overhang that can be printed without support."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tree support branch angle"
|
||||
msgstr "树状支撑分支角度"
|
||||
|
||||
@@ -13331,9 +13671,6 @@ msgstr ""
|
||||
"经典墙生成器产生的墙走线具有一致的挤出宽度,对狭窄区域使用填缝。Arachne引擎则"
|
||||
"产生变线宽的墙走线"
|
||||
|
||||
msgid "Classic"
|
||||
msgstr "经典"
|
||||
|
||||
msgid "Arachne"
|
||||
msgstr "Arachne"
|
||||
|
||||
@@ -15201,6 +15538,9 @@ msgstr "物理打印机"
|
||||
msgid "Print Host upload"
|
||||
msgstr "打印主机上传"
|
||||
|
||||
msgid "Test"
|
||||
msgstr "测试"
|
||||
|
||||
msgid "Could not get a valid Printer Host reference"
|
||||
msgstr "无法获取有效的打印机主机引用"
|
||||
|
||||
@@ -15986,6 +16326,128 @@ msgstr ""
|
||||
"避免翘曲\n"
|
||||
"您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。"
|
||||
|
||||
#~ msgid "Current Cabin humidity"
|
||||
#~ msgstr "当前舱内湿度"
|
||||
|
||||
#~ msgid "Stopped."
|
||||
#~ msgstr "已经停止。"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Connect failed [%d]!"
|
||||
#~ msgstr "连接失败 [%d]!"
|
||||
|
||||
#~ msgid "Initialize failed (Device connection not ready)!"
|
||||
#~ msgstr "初始化失败(设备未连接)"
|
||||
|
||||
#~ msgid "Initialize failed (Storage unavailable, insert SD card.)!"
|
||||
#~ msgstr "初始化失败(存储不可用,请插入 SD 卡)!"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Initialize failed (%s)!"
|
||||
#~ msgstr "初始化失败(%s)!"
|
||||
|
||||
#~ msgid "LAN Connection Failed (Sending print file)"
|
||||
#~ msgstr "LAN连接失败 (发送打印文件)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 1, please confirm Orca Slicer and your printer are in the same LAN."
|
||||
#~ msgstr "第1步,请确认Orca Slicer和您的打印机在同一个LAN上。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Step 2, if the IP and Access Code below are different from the actual "
|
||||
#~ "values on your printer, please correct them."
|
||||
#~ msgstr "步骤2, 如果下面的IP和访问码与打印机上的实际值不同,请输入正确的值。"
|
||||
|
||||
#~ msgid "Step 3: Ping the IP address to check for packet loss and latency."
|
||||
#~ msgstr "步骤3,请ping打印机的IP地址,以此检查丢包和延迟。"
|
||||
|
||||
#~ msgid "IP and Access Code Verified! You may close the window"
|
||||
#~ msgstr "IP地址和访问码验证成功!您可以关闭此窗口。"
|
||||
|
||||
#~ msgid "Force cooling for overhang and bridge"
|
||||
#~ msgstr "悬垂/桥接强制冷却"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Enable this option to optimize part cooling fan speed for overhang and "
|
||||
#~ "bridge to get better cooling"
|
||||
#~ msgstr "勾选这个选项将自动优化桥接和悬垂的风扇转速以获得更好的冷却"
|
||||
|
||||
#~ msgid "Fan speed for overhang"
|
||||
#~ msgstr "悬垂风扇速度"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Force part cooling fan to be this speed when printing bridge or overhang "
|
||||
#~ "wall which has large overhang degree. Forcing cooling for overhang and "
|
||||
#~ "bridge can get better quality for these part"
|
||||
#~ msgstr ""
|
||||
#~ "当打印桥接和超过设定阈值的悬垂时,强制部件冷却风扇为设定的速度值。强制冷却"
|
||||
#~ "能够使悬垂和桥接获得更好的打印质量"
|
||||
|
||||
#~ msgid "Cooling overhang threshold"
|
||||
#~ msgstr "冷却悬空阈值"
|
||||
|
||||
#, c-format
|
||||
#~ msgid ""
|
||||
#~ "Force cooling fan to be specific speed when overhang degree of printed "
|
||||
#~ "part exceeds this value. Expressed as percentage which indicates how much "
|
||||
#~ "width of the line without support from lower layer. 0% means forcing "
|
||||
#~ "cooling for all outer wall no matter how much overhang degree"
|
||||
#~ msgstr ""
|
||||
#~ "当打印件的悬空程度超过此值时,强制冷却风扇达到特定速度。用百分比表示,表明"
|
||||
#~ "没有下层支撑的线的宽度是多少。0%%意味着无论悬垂程度如何,都要对所有外壁强"
|
||||
#~ "制冷却。"
|
||||
|
||||
#~ msgid "Bridge infill direction"
|
||||
#~ msgstr "拉桥填充方向"
|
||||
|
||||
#~ msgid "Bridge density"
|
||||
#~ msgstr "搭桥密度"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Density of external bridges. 100% means solid bridge. Default is 100%."
|
||||
#~ msgstr "外部桥接的密度。100%意味着实心桥。默认值为100%。"
|
||||
|
||||
#~ msgid "Thick bridges"
|
||||
#~ msgstr "厚桥"
|
||||
|
||||
#~ msgid "Filter out small internal bridges (beta)"
|
||||
#~ msgstr "过滤细微内部桥接(试验)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This fan speed is enforced during all support interfaces, to be able to "
|
||||
#~ "weaken their bonding with a high fan speed.\n"
|
||||
#~ "Set to -1 to disable this override.\n"
|
||||
#~ "Can only be overridden by disable_fan_first_layers."
|
||||
#~ msgstr "此风扇速度在所有支撑接触层打印期间强制执行"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The minimum printing speed that the printer will slow down to to attempt "
|
||||
#~ "to maintain the minimum layer time above, when slow down for better layer "
|
||||
#~ "cooling is enabled."
|
||||
#~ msgstr ""
|
||||
#~ "在您启用“降低打印速度 以得到更好的冷却”选项时最小的打印速度,以尝试保持上"
|
||||
#~ "方设置的最小层时间。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "normal(auto) and tree(auto) is used to generate support automatically. If "
|
||||
#~ "normal(manual) or tree(manual) is selected, only support enforcers are "
|
||||
#~ "generated"
|
||||
#~ msgstr ""
|
||||
#~ "普通(自动)和树状(自动)用于自动生成支撑体。如果选择普通(手动)或树状"
|
||||
#~ "(手动),仅会在支撑强制面上生成支撑。"
|
||||
|
||||
#~ msgid "normal(auto)"
|
||||
#~ msgstr "普通(自动)"
|
||||
|
||||
#~ msgid "tree(auto)"
|
||||
#~ msgstr "树状(自动)"
|
||||
|
||||
#~ msgid "normal(manual)"
|
||||
#~ msgstr "普通(手动)"
|
||||
|
||||
#~ msgid "tree(manual)"
|
||||
#~ msgstr "树状(手动)"
|
||||
|
||||
#~ msgid "ShiftLeft mouse button"
|
||||
#~ msgstr "Shift + 鼠标左键"
|
||||
|
||||
@@ -16534,11 +16996,6 @@ 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 "无稀疏层(实验)"
|
||||
|
||||
|
||||
@@ -1,537 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="562"
|
||||
height="238"
|
||||
viewBox="0 0 562 238"
|
||||
fill="none"
|
||||
version="1.1"
|
||||
id="svg526"
|
||||
sodipodi:docname="BambuStudio_about.svg"
|
||||
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs530">
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath16">
|
||||
<path
|
||||
d="M 0,792 H 612 V 0 H 0 Z"
|
||||
id="path14" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="namedview528"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="12.179348"
|
||||
inkscape:cx="278.75055"
|
||||
inkscape:cy="104.93173"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1369"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg526" />
|
||||
<rect
|
||||
x="1"
|
||||
y="1"
|
||||
width="560"
|
||||
height="237"
|
||||
fill="#009688"
|
||||
id="rect366"
|
||||
style="fill:#4d4d4d;fill-opacity:1" />
|
||||
<g
|
||||
opacity="0.2"
|
||||
id="g408">
|
||||
<path
|
||||
d="M19.234 8.7434V25.4149L37.159 18.6717V2.00019L19.234 8.7434Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path368" />
|
||||
<path
|
||||
d="M19.2341 8.7434V25.4149L1 18.6717V2.00019L19.2341 8.7434Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path370" />
|
||||
<path
|
||||
d="M90.9363 8.7434V25.4149L73.0113 18.6717V2.00019L90.9363 8.7434Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path372" />
|
||||
<path
|
||||
d="M127.404 8.7434V25.4149L145.329 18.6717V2.00019L127.404 8.7434Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path374" />
|
||||
<path
|
||||
d="M19.2341 25.538V42.2238L1 35.4806V18.8091L19.2341 25.538Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path376" />
|
||||
<path
|
||||
d="M19.234 58.7326V75.8463L37.159 68.9302V51.8313L19.234 58.7326Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path378" />
|
||||
<path
|
||||
d="M55.3944 25.538V42.2238L73.0104 35.4806V18.8091L55.3944 25.538Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path380" />
|
||||
<path
|
||||
d="M90.9363 42.2787V58.7364L73.0113 52.0939V35.6219L90.9363 42.2787Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path382" />
|
||||
<path
|
||||
d="M90.9363 96.0424V112.5L73.0113 105.858V89.3856L90.9363 96.0424Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path384" />
|
||||
<path
|
||||
d="M55.3945 25.6388V42.524L37.1604 35.7089V18.8091L55.3945 25.6388Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path386" />
|
||||
<path
|
||||
d="M55.3945 42.3652V59.0366L37.1604 52.3078V35.6219L55.3945 42.3652Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path388" />
|
||||
<path
|
||||
d="M127.404 42.2787V58.7364L145.329 52.0939V35.6219L127.404 42.2787Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path390" />
|
||||
<path
|
||||
d="M163.251 25.538V42.2238L145.326 35.4806V18.8091L163.251 25.538Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path392" />
|
||||
<path
|
||||
d="M127.404 75.4718V92.357L145.329 85.5419V68.6422L127.404 75.4718Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path394" />
|
||||
<path
|
||||
d="M163.251 42.2233V59.337L145.326 52.4209V35.472L163.251 42.2233Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path396" />
|
||||
<path
|
||||
d="M90.9338 58.7326V75.8463L108.859 68.9302V51.8313L90.9338 58.7326Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path398" />
|
||||
<path
|
||||
d="M199.413 25.538V42.2238L181.179 35.4806V18.8091L199.413 25.538Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path400" />
|
||||
<path
|
||||
d="M127.401 25.538V42.2238L108.858 35.4806V18.8091L127.401 25.538Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path402" />
|
||||
<path
|
||||
d="M199.413 58.7326V75.8463L181.179 68.9302V51.8313L199.413 58.7326Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path404" />
|
||||
<path
|
||||
d="M163.253 8.65694V25.1147L181.178 18.4721V2.00019L163.253 8.65694Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path406" />
|
||||
</g>
|
||||
<g
|
||||
opacity="0.2"
|
||||
id="g458">
|
||||
<path
|
||||
d="M235.752 8.74321V25.4147L253.677 18.6715V2L235.752 8.74321Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path410" />
|
||||
<path
|
||||
d="M235.75 8.74321V25.4147L217.516 18.6715V2L235.75 8.74321Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path412" />
|
||||
<path
|
||||
d="M307.45 8.74321V25.4147L289.525 18.6715V2L307.45 8.74321Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path414" />
|
||||
<path
|
||||
d="M343.92 8.74321V25.4147L361.845 18.6715V2L343.92 8.74321Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path416" />
|
||||
<path
|
||||
d="M199.591 42.2785V58.7363L217.516 52.0937V35.6218L199.591 42.2785Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path418" />
|
||||
<path
|
||||
d="M235.75 25.5378V42.2236L217.516 35.4804V18.8089L235.75 25.5378Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path420" />
|
||||
<path
|
||||
d="M235.752 58.7325V75.8461L253.677 68.93V51.8311L235.752 58.7325Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path422" />
|
||||
<path
|
||||
d="M271.91 25.5378V42.2236L289.526 35.4804V18.8089L271.91 25.5378Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path424" />
|
||||
<path
|
||||
d="M307.45 42.2785V58.7363L289.525 52.0937V35.6218L307.45 42.2785Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path426" />
|
||||
<path
|
||||
d="M307.45 76.8426V93.3003L289.525 86.6577V70.1858L307.45 76.8426Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path428" />
|
||||
<path
|
||||
d="M271.908 25.6386V42.5238L253.674 35.7087V18.8089L271.908 25.6386Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path430" />
|
||||
<path
|
||||
d="M271.908 42.365V59.0365L253.674 52.3076V35.6218L271.908 42.365Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path432" />
|
||||
<path
|
||||
d="M343.92 42.2785V58.7363L361.845 52.0937V35.6218L343.92 42.2785Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path434" />
|
||||
<path
|
||||
d="M379.769 25.5378V42.2236L361.844 35.4804V18.8089L379.769 25.5378Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path436" />
|
||||
<path
|
||||
d="M343.92 75.4716V92.3568L361.845 85.5417V68.642L343.92 75.4716Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path438" />
|
||||
<path
|
||||
d="M379.769 42.2231V59.3368L361.844 52.4207V35.4719L379.769 42.2231Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path440" />
|
||||
<path
|
||||
d="M307.452 58.7325V75.8461L325.377 68.93V51.8311L307.452 58.7325Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path442" />
|
||||
<path
|
||||
d="M415.925 25.5378V42.2236L397.691 35.4804V18.8089L415.925 25.5378Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path444" />
|
||||
<path
|
||||
d="M379.771 58.7472V75.8461L397.696 68.9447V51.8311L379.771 58.7472Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path446" />
|
||||
<path
|
||||
d="M379.769 98.3847V115.484L397.694 108.582V91.4686L379.769 98.3847Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path448" />
|
||||
<path
|
||||
d="M343.917 25.5378V42.2236L325.374 35.4804V18.8089L343.917 25.5378Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path450" />
|
||||
<path
|
||||
d="M415.925 58.7325V75.8461L397.691 68.93V51.8311L415.925 58.7325Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path452" />
|
||||
<path
|
||||
d="M455.53 113.522V130.636L437.296 123.72V106.621L455.53 113.522Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path454" />
|
||||
<path
|
||||
d="M379.771 8.65675V25.1145L397.696 18.4719V2L379.771 8.65675Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path456" />
|
||||
</g>
|
||||
<g
|
||||
opacity="0.5"
|
||||
id="g470">
|
||||
<g
|
||||
opacity="0.2"
|
||||
id="g468">
|
||||
<path
|
||||
d="M452.919 8.74321V25.4147L434.685 18.6715V2L452.919 8.74321Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path460" />
|
||||
<path
|
||||
d="M416.76 42.2785V58.7363L434.685 52.0937V35.6218L416.76 42.2785Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path462" />
|
||||
<path
|
||||
d="M416.76 75.2345V91.6922L434.685 85.0496V68.5777L416.76 75.2345Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path464" />
|
||||
<path
|
||||
d="M452.919 25.5378V42.2236L434.685 35.4804V18.8089L452.919 25.5378Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path466" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
opacity="0.2"
|
||||
id="g498">
|
||||
<path
|
||||
d="M452.832 8.74321V25.4147L470.757 18.6715V2L452.832 8.74321Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path472" />
|
||||
<path
|
||||
d="M452.832 8.74321V25.4147L434.598 18.6715V2L452.832 8.74321Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path474" />
|
||||
<path
|
||||
d="M524.534 8.74321V25.4147L506.609 18.6715V2L524.534 8.74321Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path476" />
|
||||
<path
|
||||
d="M452.832 25.5378V42.2236L434.598 35.4804V18.8089L452.832 25.5378Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path478" />
|
||||
<path
|
||||
d="M452.832 58.7325V75.8461L470.757 68.93V51.8311L452.832 58.7325Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path480" />
|
||||
<path
|
||||
d="M488.992 25.5378V42.2236L506.608 35.4804V18.8089L488.992 25.5378Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path482" />
|
||||
<path
|
||||
d="M524.534 42.2785V58.7363L506.609 52.0937V35.6218L524.534 42.2785Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path484" />
|
||||
<path
|
||||
d="M524.534 96.0422V112.5L506.609 105.857V89.3854L524.534 96.0422Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path486" />
|
||||
<path
|
||||
d="M488.992 25.6386V42.5238L470.758 35.7087V18.8089L488.992 25.6386Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path488" />
|
||||
<path
|
||||
d="M488.992 42.365V59.0365L470.758 52.3076V35.6218L488.992 42.365Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path490" />
|
||||
<path
|
||||
d="M524.531 58.7325V75.8461L542.457 68.93V51.8311L524.531 58.7325Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path492" />
|
||||
<path
|
||||
d="M560.999 25.5378V42.2236L542.456 35.4804V18.8089L560.999 25.5378Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path494" />
|
||||
<path
|
||||
d="M560.999 77.5065V94.1923L542.456 87.4491V70.7776L560.999 77.5065Z"
|
||||
stroke="white"
|
||||
stroke-width="1.5"
|
||||
stroke-miterlimit="10"
|
||||
id="path496" />
|
||||
</g>
|
||||
<g
|
||||
id="g10"
|
||||
transform="matrix(0.07369611,0,0,-0.07369611,184.95608,133.90321)"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g12"
|
||||
clip-path="url(#clipPath16)">
|
||||
<g
|
||||
id="g18"
|
||||
transform="translate(59.7287,115.3517)">
|
||||
<path
|
||||
d="m 0,0 c 53.332,-53.285 126.698,-86.317 207.744,-86.646 164.049,-0.664 298.355,134.38 297.699,299.337 -0.324,81.496 -33.176,155.271 -86.17,208.899 z"
|
||||
style="fill:#292826;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path20" />
|
||||
</g>
|
||||
<g
|
||||
id="g22"
|
||||
transform="translate(479.0017,536.9419)">
|
||||
<path
|
||||
d="m 0,0 -419.273,-421.59 c 0.298,-0.298 0.606,-0.587 0.906,-0.884 146.894,74.925 348.023,206.579 486.003,316.297 C 52.756,-65.97 29.506,-29.859 0,0"
|
||||
style="fill:#009789;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path24" />
|
||||
</g>
|
||||
<g
|
||||
id="g26"
|
||||
transform="translate(397.0372,747)">
|
||||
<path
|
||||
d="m 0,0 c -163.742,0 -296.482,-133.473 -296.482,-298.121 0,-81.979 32.915,-156.223 86.172,-210.117 l 419.273,421.59 C 155.364,-33.096 81.529,0 0,0"
|
||||
style="fill:#292826;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path28" />
|
||||
</g>
|
||||
<g
|
||||
id="g30"
|
||||
transform="translate(397.0372,747)">
|
||||
<path
|
||||
d="m 0,0 c -56.714,0 -109.702,-16.022 -154.751,-43.796 -24.127,6.312 -54.061,11.37 -88.437,11.157 -59.938,-0.372 -108.713,-16.603 -141.822,-31.784 -8.218,-3.768 -6.898,-15.967 1.941,-17.829 21.801,-4.593 50.498,-14.324 78.883,-35.28 17.931,-13.238 31.574,-27.883 41.856,-41.597 -21.794,-41.504 -34.152,-88.793 -34.152,-138.992 0,-29.952 4.412,-58.865 12.586,-86.137 12.54,27.79 25.699,46.391 29.916,52.184 27.229,37.41 56.015,56.883 98.542,85.651 31.328,21.193 74.856,46.047 199.916,97.449 0,0 39.121,11.017 91.587,42.212 20.912,12.433 36.823,24.17 41.863,42.526 0.355,1.293 0.677,2.57 0.973,3.83 C 129.175,-22.506 67.208,0 0,0"
|
||||
style="fill:#262523;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path32" />
|
||||
</g>
|
||||
<g
|
||||
id="g34"
|
||||
transform="translate(446.5563,646.8041)">
|
||||
<path
|
||||
d="m 0,0 c 10.875,-19.229 -10.891,-52.305 -48.616,-73.879 -37.725,-21.573 -77.124,-23.474 -88,-4.245 -10.875,19.229 10.891,52.305 48.617,73.879 C -50.274,17.328 -10.875,19.229 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path36" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
aria-label="Orca"
|
||||
id="text835"
|
||||
style="font-size:31.8474px;fill:#f9f9f9;fill-opacity:0.8;fill-rule:evenodd;stroke:#1a1a1a;stroke-width:1.19308">
|
||||
<path
|
||||
d="m 246.33548,105.05624 q -3.12104,0 -5.47775,-0.95542 -2.32486,-0.95542 -3.6943,-2.86626 -1.33759,-1.942695 -1.46498,-4.777114 -0.0319,-1.305744 -0.0319,-2.770724 0,-1.46498 0.0319,-2.834419 0.12739,-2.802571 1.46498,-4.745262 1.33759,-1.942692 3.6943,-2.961809 2.35671,-1.019116 5.47775,-1.019116 3.12105,0 5.47775,1.019116 2.35671,1.019117 3.6943,2.961809 1.36944,1.942691 1.46498,4.745262 0.0637,1.369439 0.0637,2.834419 0,1.46498 -0.0637,2.770724 -0.12739,2.834419 -1.49683,4.777114 -1.33759,1.91084 -3.69429,2.86626 -2.32486,0.95542 -5.44591,0.95542 z m 0,-6.210239 q 1.05096,0 1.68791,-0.605101 0.63695,-0.636948 0.6688,-1.974538 0.0637,-1.369439 0.0637,-2.70703 0,-1.33759 -0.0637,-2.643334 -0.0319,-0.891727 -0.35032,-1.46498 -0.28663,-0.573253 -0.79619,-0.828033 -0.50956,-0.286626 -1.2102,-0.286626 -0.66879,0 -1.2102,0.286626 -0.50956,0.25478 -0.82803,0.828033 -0.28663,0.573253 -0.31848,1.46498 -0.0318,1.305744 -0.0318,2.643334 0,1.337591 0.0318,2.70703 0.0637,1.33759 0.6688,1.974538 0.63695,0.605101 1.68791,0.605101 z"
|
||||
style="font-weight:900;font-family:Rubik;-inkscape-font-specification:'Rubik Heavy';text-align:center;text-anchor:middle"
|
||||
id="path926" />
|
||||
<path
|
||||
d="m 260.4439,104.73777 q -0.35032,0 -0.6051,-0.25478 -0.25478,-0.25478 -0.25478,-0.6051 V 89.037002 q 0,-0.350322 0.25478,-0.605101 0.25478,-0.254779 0.6051,-0.254779 h 5.57329 q 0.35032,0 0.6051,0.254779 0.25478,0.254779 0.25478,0.605101 v 1.114659 q 1.01912,-0.891728 2.26117,-1.433133 1.27389,-0.541406 2.70703,-0.541406 h 1.52867 q 0.35032,0 0.6051,0.254779 0.25478,0.254779 0.25478,0.605101 v 4.968194 q 0,0.350321 -0.25478,0.605101 -0.25478,0.254779 -0.6051,0.254779 h -4.10831 q -0.95542,0 -1.43313,0.477711 -0.47772,0.477711 -0.47772,1.433133 v 7.10197 q 0,0.35032 -0.25477,0.6051 -0.25478,0.25478 -0.60511,0.25478 z"
|
||||
style="font-weight:900;font-family:Rubik;-inkscape-font-specification:'Rubik Heavy';text-align:center;text-anchor:middle"
|
||||
id="path928" />
|
||||
<path
|
||||
d="m 284.52052,105.05624 q -2.4204,0 -4.39494,-0.82803 -1.97454,-0.85988 -3.18474,-2.4841 -1.2102,-1.62421 -1.33759,-3.980921 -0.0319,-0.509558 -0.0319,-1.273896 0,-0.764337 0.0319,-1.305743 0.12739,-2.356708 1.30574,-3.980925 1.2102,-1.656065 3.18474,-2.484097 2.00639,-0.85988 4.42679,-0.85988 2.51595,0 4.26755,0.73249 1.78346,0.700643 2.86627,1.751607 1.11466,1.019117 1.62422,2.038234 0.5414,1.019116 0.57325,1.656064 0.0319,0.350322 -0.25478,0.605101 -0.25478,0.254779 -0.6051,0.254779 h -6.21024 q -0.35033,0 -0.57326,-0.159237 -0.19108,-0.191084 -0.35032,-0.477711 -0.22293,-0.445863 -0.47771,-0.700643 -0.22293,-0.254779 -0.70064,-0.254779 -0.73249,0 -0.98727,0.541406 -0.25478,0.541406 -0.28663,1.496828 -0.0319,1.369438 0,2.261165 0.0637,1.019117 0.28663,1.528676 0.25478,0.477711 0.98727,0.477711 0.57325,0 0.76434,-0.25478 0.22293,-0.254779 0.41401,-0.700642 0.12739,-0.286627 0.35032,-0.445864 0.22293,-0.191084 0.57326,-0.191084 h 6.21024 q 0.35032,0 0.6051,0.254779 0.28663,0.254779 0.25478,0.6051 -0.0319,0.414017 -0.35032,1.178352 -0.28663,0.73249 -0.95542,1.59237 -0.63695,0.85988 -1.71976,1.65607 -1.08282,0.76433 -2.64334,1.27389 -1.56052,0.47771 -3.66245,0.47771 z"
|
||||
style="font-weight:900;font-family:Rubik;-inkscape-font-specification:'Rubik Heavy';text-align:center;text-anchor:middle"
|
||||
id="path930" />
|
||||
<path
|
||||
d="m 301.1767,105.05624 q -1.8153,0 -3.21659,-0.66879 -1.40128,-0.6688 -2.19747,-1.8153 -0.76433,-1.14651 -0.76433,-2.579643 0,-2.32486 1.87899,-3.630603 1.91085,-1.337591 5.09559,-1.878997 l 3.37582,-0.541406 v -0.03185 q 0,-0.828033 -0.15924,-1.210201 -0.12738,-0.382169 -0.79618,-0.382169 -0.44586,0 -0.73249,0.191084 -0.25478,0.159237 -0.57325,0.477711 -0.35033,0.350322 -0.89173,0.350322 h -5.41406 q -0.31847,0 -0.5414,-0.191085 -0.19109,-0.191084 -0.15924,-0.509558 0.0319,-0.605101 0.50956,-1.401286 0.47771,-0.828032 1.46498,-1.59237 1.01911,-0.764337 2.57964,-1.273896 1.59237,-0.509558 3.82168,-0.509558 2.16563,0 3.758,0.477711 1.62422,0.445863 2.67518,1.337591 1.05096,0.859879 1.56052,2.165623 0.54141,1.273896 0.54141,2.898113 v 9.140204 q 0,0.35032 -0.25478,0.6051 -0.25478,0.25478 -0.6051,0.25478 h -5.5733 q -0.35032,0 -0.6051,-0.25478 -0.25478,-0.25478 -0.25478,-0.6051 v -0.89173 q -0.44586,0.63695 -1.1465,1.11466 -0.6688,0.44587 -1.52868,0.70064 -0.85988,0.25478 -1.84715,0.25478 z m 2.19747,-4.71341 q 0.63695,0 1.08281,-0.25478 0.47772,-0.25478 0.73249,-0.796185 0.25478,-0.573254 0.25478,-1.401286 v -0.03185 l -1.87899,0.414016 q -0.82804,0.191084 -1.11466,0.509558 -0.28663,0.318474 -0.28663,0.668796 0,0.222931 0.12739,0.445863 0.15924,0.191085 0.41402,0.318475 0.28662,0.12739 0.66879,0.12739 z"
|
||||
style="font-weight:900;font-family:Rubik;-inkscape-font-specification:'Rubik Heavy';text-align:center;text-anchor:middle"
|
||||
id="path932" />
|
||||
</g>
|
||||
<g
|
||||
aria-label="Slicer"
|
||||
id="text1443"
|
||||
style="font-size:22.8809px;text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:0.8;stroke:#1a1a1a;stroke-width:0.857176">
|
||||
<path
|
||||
d="m 244.8391,127.60037 q -2.53978,0 -4.18721,-0.68643 -1.64742,-0.68643 -2.47113,-1.80759 -0.82372,-1.12116 -0.86948,-2.37961 0,-0.20593 0.13729,-0.34322 0.16016,-0.16016 0.36609,-0.16016 h 4.34737 q 0.3661,0 0.54914,0.1144 0.20593,0.0915 0.43474,0.27457 0.22881,0.16017 0.45762,0.29745 0.25169,0.11441 0.54914,0.18305 0.32033,0.0458 0.68643,0.0458 0.77795,0 1.23557,-0.16016 0.48049,-0.18305 0.48049,-0.4805 0,-0.27457 -0.27457,-0.45762 -0.25169,-0.18305 -0.89235,-0.32033 -0.64067,-0.16017 -1.78471,-0.29745 -1.80759,-0.25169 -3.13468,-0.8466 -1.3271,-0.5949 -2.05929,-1.62454 -0.7093,-1.05252 -0.7093,-2.56266 0,-1.5559 0.86947,-2.74571 0.89236,-1.18981 2.44826,-1.85335 1.57878,-0.66355 3.66094,-0.66355 1.71607,0 3.04316,0.45762 1.32709,0.43474 2.24233,1.16692 0.91523,0.70931 1.39573,1.53302 0.4805,0.82372 0.50338,1.57879 0,0.20592 -0.16016,0.36609 -0.13729,0.13729 -0.32034,0.13729 h -4.57618 q -0.32033,0 -0.52626,-0.0915 -0.18304,-0.0915 -0.38897,-0.27457 -0.11441,-0.1144 -0.43474,-0.25169 -0.29745,-0.16016 -0.77795,-0.16016 -0.57202,0 -0.84659,0.18304 -0.25169,0.16017 -0.25169,0.45762 0,0.20593 0.20593,0.38898 0.20592,0.18304 0.75507,0.32033 0.54914,0.13728 1.57878,0.27457 2.28809,0.27457 3.66094,0.89235 1.39574,0.59491 2.01352,1.60167 0.64067,1.00676 0.64067,2.49402 0,1.6703 -1.00676,2.88299 -0.98388,1.21269 -2.69995,1.87623 -1.71607,0.64067 -3.88975,0.64067 z"
|
||||
style="font-weight:900;font-family:Rubik;-inkscape-font-specification:'Rubik Heavy'"
|
||||
id="path935" />
|
||||
<path
|
||||
d="m 254.49485,127.37156 q -0.25169,0 -0.43474,-0.18305 -0.18305,-0.18305 -0.18305,-0.43474 V 111.7439 q 0,-0.25169 0.18305,-0.43473 0.18305,-0.18305 0.43474,-0.18305 h 4.09568 q 0.25169,0 0.43474,0.18305 0.18304,0.18304 0.18304,0.43473 v 15.00987 q 0,0.25169 -0.18304,0.43474 -0.18305,0.18305 -0.43474,0.18305 z"
|
||||
style="font-weight:900;font-family:Rubik;-inkscape-font-specification:'Rubik Heavy'"
|
||||
id="path937" />
|
||||
<path
|
||||
d="m 263.12097,127.37156 q -0.25169,0 -0.43474,-0.18305 -0.18305,-0.18305 -0.18305,-0.43474 v -10.66249 q 0,-0.25169 0.18305,-0.43474 0.18305,-0.18305 0.43474,-0.18305 h 4.09568 q 0.25169,0 0.43473,0.18305 0.18305,0.18305 0.18305,0.43474 v 10.66249 q 0,0.25169 -0.18305,0.43474 -0.18304,0.18305 -0.43473,0.18305 z m 0.1144,-13.15652 q -0.25169,0 -0.43474,-0.18305 -0.18304,-0.18304 -0.18304,-0.43473 v -2.76859 q 0,-0.25169 0.18304,-0.43474 0.18305,-0.18305 0.43474,-0.18305 h 3.86687 q 0.25169,0 0.43474,0.18305 0.18305,0.18305 0.18305,0.43474 v 2.76859 q 0,0.25169 -0.18305,0.43473 -0.18305,0.18305 -0.43474,0.18305 z"
|
||||
style="font-weight:900;font-family:Rubik;-inkscape-font-specification:'Rubik Heavy'"
|
||||
id="path939" />
|
||||
<path
|
||||
d="m 276.14018,127.60037 q -1.73895,0 -3.15756,-0.59491 -1.41862,-0.61778 -2.28809,-1.78471 -0.86948,-1.16692 -0.961,-2.86011 -0.0229,-0.36609 -0.0229,-0.91523 0,-0.54915 0.0229,-0.93812 0.0915,-1.69319 0.93812,-2.86011 0.86947,-1.18981 2.28809,-1.78471 1.44149,-0.61779 3.18044,-0.61779 1.80759,0 3.06604,0.52626 1.28133,0.50338 2.05928,1.25845 0.80084,0.73219 1.16693,1.46438 0.38897,0.73219 0.41186,1.18981 0.0229,0.25169 -0.18305,0.43473 -0.18305,0.18305 -0.43474,0.18305 h -4.46177 q -0.25169,0 -0.41186,-0.1144 -0.13729,-0.13729 -0.25169,-0.34322 -0.16017,-0.32033 -0.34321,-0.50338 -0.16017,-0.18304 -0.50338,-0.18304 -0.52626,0 -0.70931,0.38897 -0.18305,0.38898 -0.20593,1.0754 -0.0229,0.98388 0,1.62455 0.0458,0.73219 0.20593,1.09828 0.18305,0.34321 0.70931,0.34321 0.41185,0 0.54914,-0.18304 0.16016,-0.18305 0.29745,-0.50338 0.0915,-0.20593 0.25169,-0.32034 0.16017,-0.13728 0.41186,-0.13728 h 4.46177 q 0.25169,0 0.43474,0.18305 0.20593,0.18304 0.18305,0.43473 -0.0229,0.29746 -0.25169,0.8466 -0.20593,0.52626 -0.68643,1.14404 -0.45762,0.61779 -1.23557,1.18981 -0.77795,0.54914 -1.89911,0.91523 -1.12117,0.34322 -2.63131,0.34322 z"
|
||||
style="font-weight:900;font-family:Rubik;-inkscape-font-specification:'Rubik Heavy'"
|
||||
id="path941" />
|
||||
<path
|
||||
d="m 290.46362,127.60037 q -2.9974,0 -4.78211,-1.46438 -1.76183,-1.48726 -1.76183,-4.69058 0,-0.0458 0,-0.0915 0,-0.0458 0,-0.0686 0.0458,-1.96776 0.8466,-3.31773 0.82371,-1.34997 2.26521,-2.0364 1.46437,-0.68643 3.40925,-0.68643 2.24233,0 3.68382,0.86948 1.4415,0.84659 2.12793,2.26521 0.70931,1.39573 0.70931,3.08892 v 0.68642 q 0,0.25169 -0.18305,0.43474 -0.18305,0.18305 -0.43474,0.18305 h -6.81851 q 0,0.0229 0,0.0458 0,0.0229 0,0.0686 0,0.45762 0.0686,0.77795 0.0915,0.29746 0.29745,0.45762 0.20593,0.16017 0.52626,0.16017 0.13728,0 0.22881,-0.0458 0.1144,-0.0458 0.20593,-0.13729 0.1144,-0.1144 0.2288,-0.22881 0.20593,-0.20593 0.34322,-0.25169 0.13728,-0.0686 0.41185,-0.0686 h 4.32449 q 0.22881,0 0.3661,0.13728 0.16016,0.13729 0.13728,0.3661 -0.0229,0.43474 -0.41185,1.05252 -0.3661,0.5949 -1.12117,1.16693 -0.75507,0.57202 -1.92199,0.96099 -1.16693,0.3661 -2.74571,0.3661 z m -0.93812,-7.68798 h 1.83048 v -0.0229 q 0,-0.50338 -0.11441,-0.82372 -0.0915,-0.32033 -0.29745,-0.45762 -0.20593,-0.16016 -0.50338,-0.16016 -0.29745,0 -0.50338,0.16016 -0.20593,0.13729 -0.32033,0.45762 -0.0915,0.32034 -0.0915,0.82372 z"
|
||||
style="font-weight:900;font-family:Rubik;-inkscape-font-specification:'Rubik Heavy'"
|
||||
id="path943" />
|
||||
<path
|
||||
d="m 299.18123,127.37156 q -0.25169,0 -0.43474,-0.18305 -0.18305,-0.18305 -0.18305,-0.43474 v -10.66249 q 0,-0.25169 0.18305,-0.43474 0.18305,-0.18305 0.43474,-0.18305 h 4.00415 q 0.25169,0 0.43474,0.18305 0.18305,0.18305 0.18305,0.43474 v 0.80083 q 0.73219,-0.64067 1.62454,-1.02964 0.91524,-0.38898 1.94488,-0.38898 h 1.09828 q 0.25169,0 0.43474,0.18305 0.18305,0.18305 0.18305,0.43474 v 3.56942 q 0,0.25169 -0.18305,0.43473 -0.18305,0.18305 -0.43474,0.18305 h -2.95163 q -0.68643,0 -1.02965,0.34321 -0.34321,0.34322 -0.34321,1.02964 v 5.10244 q 0,0.25169 -0.18305,0.43474 -0.18304,0.18305 -0.43473,0.18305 z"
|
||||
style="font-weight:900;font-family:Rubik;-inkscape-font-specification:'Rubik Heavy'"
|
||||
id="path945" />
|
||||
</g>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="560" height="125" viewBox="0 0 560 125"><rect id="b" x="20" y="123" width="520" height="2" style="fill:#009789;"/><g id="c"><g id="d"><rect x="20" y="21.22" width="80.56" height="80.56" rx="9.64" ry="9.64" style="fill:#e9e9e9;"/></g></g><g id="e"><path id="f" d="M37.42,84.6c4.49,4.48,10.66,7.26,17.48,7.29,13.8.06,25.1-11.3,25.04-25.18-.03-6.86-2.79-13.06-7.25-17.57l-35.27,35.46Z" style="fill:#292826;"/></g><g id="g"><path id="h" d="M72.69,49.14l-35.27,35.46s.05.05.08.07c12.36-6.3,29.28-17.38,40.88-26.61-1.25-3.38-3.21-6.42-5.69-8.93" style="fill:#009789;"/></g><g id="i"><path id="j" d="M65.8,31.11c-13.77,0-24.94,11.23-24.94,25.08,0,6.9,2.77,13.14,7.25,17.68l35.27-35.46c-4.51-4.5-10.72-7.29-17.58-7.29" style="fill:#292826;"/></g><g id="k"><path id="l" d="M65.8,31.11c-4.77,0-9.23,1.35-13.02,3.68-2.03-.53-4.55-.96-7.44-.94-5.04.03-9.14,1.4-11.93,2.67-.69.32-.58,1.34.16,1.5,1.83.39,4.25,1.2,6.64,2.97,1.51,1.11,2.66,2.35,3.52,3.5-1.83,3.49-2.87,7.47-2.87,11.69,0,2.52.37,4.95,1.06,7.25,1.05-2.34,2.16-3.9,2.52-4.39,2.29-3.15,4.71-4.79,8.29-7.2,2.64-1.78,6.3-3.87,16.82-8.2,0,0,3.29-.93,7.7-3.55,1.76-1.05,3.1-2.03,3.52-3.58.03-.11.06-.22.08-.32-4.18-3.19-9.4-5.08-15.05-5.08" style="fill:#262523;"/></g><g id="m"><path id="n" d="M69.96,39.54c.91,1.62-.92,4.4-4.09,6.21-3.17,1.81-6.49,1.97-7.4.36-.91-1.62.92-4.4,4.09-6.21,3.17-1.81,6.49-1.97,7.4-.36" style="fill:#fff;"/></g><path d="M163.44,69.66c-1.02,0-1.85.83-1.85,1.85v18.53c0,1.02.83,1.85,1.85,1.85s1.85-.83,1.85-1.85v-18.53c0-1.02-.83-1.85-1.85-1.85Z" style="fill:#949494;"/><path d="M212.05,69.66h-4.43c-6.13,0-11.12,4.99-11.12,11.12s4.99,11.12,11.12,11.12h4.43c1.02,0,1.85-.83,1.85-1.85s-.83-1.85-1.85-1.85h-4.43c-4.09,0-7.41-3.32-7.41-7.41s3.32-7.41,7.41-7.41h4.43c1.02,0,1.85-.83,1.85-1.85s-.83-1.85-1.85-1.85Z" style="fill:#949494;"/><path d="M212.05,78.93h-5.39c-1.02,0-1.85.83-1.85,1.85s.83,1.85,1.85,1.85h5.39c1.02,0,1.85-.83,1.85-1.85s-.83-1.85-1.85-1.85Z" style="fill:#949494;"/><path d="M126.43,91.89h-8.97c-1.02,0-1.84-.83-1.84-1.84s.82-1.84,1.84-1.84h8.97c1.54,0,2.8-1.25,2.8-2.8s-1.25-2.79-2.8-2.79h-4.34c-3.57,0-6.48-2.91-6.48-6.48s2.91-6.48,6.48-6.48h7.34c1.02,0,1.84.83,1.84,1.84s-.82,1.84-1.84,1.84h-7.34c-1.54,0-2.8,1.25-2.8,2.8s1.25,2.79,2.8,2.79h4.34c3.57,0,6.48,2.91,6.48,6.48s-2.91,6.48-6.48,6.48Z" style="fill:#949494;"/><path d="M187.05,86.96c-1.5.99-3.37,1.45-5.36,1.12-3.01-.51-5.44-2.9-6-5.89-.87-4.7,2.73-8.82,7.28-8.82,1.5,0,2.9.45,4.07,1.22.74.49,1.72.41,2.34-.22h0c.82-.82.71-2.19-.25-2.83-2.13-1.43-4.79-2.14-7.61-1.78-5.01.64-9.03,4.72-9.59,9.73-.76,6.7,4.49,12.41,11.04,12.41,2.25,0,4.34-.67,6.09-1.82.99-.65,1.16-2.04.32-2.88h0c-.63-.63-1.6-.71-2.34-.23Z" style="fill:#949494;"/><path d="M153.17,88.19h-5.35c-2.55,0-4.63-2.08-4.63-4.63v-12.04c0-1.02-.83-1.85-1.85-1.85s-1.85.83-1.85,1.85v12.04c0,4.6,3.74,8.34,8.34,8.34h5.35c1.02,0,1.85-.83,1.85-1.85s-.83-1.85-1.85-1.85Z" style="fill:#949494;"/><path d="M233.44,73.37h-1.85c-4.06,0-7.37,3.29-7.41,7.35v9.33c0,1.02-.83,1.85-1.85,1.85s-1.85-.83-1.85-1.85v-9.33c.04-6.1,5.01-11.05,11.11-11.05h1.85c1.02,0,1.85.83,1.85,1.85s-.83,1.85-1.85,1.85Z" style="fill:#949494;"/><path d="M130.5,35.69c5.68,0,10.31,4.62,10.31,10.31s-4.62,10.31-10.31,10.31-10.31-4.62-10.31-10.31,4.62-10.31,10.31-10.31M130.5,31.11c-8.22,0-14.89,6.67-14.89,14.89s6.67,14.89,14.89,14.89,14.89-6.67,14.89-14.89-6.67-14.89-14.89-14.89h0Z" style="fill:#009789;"/><path d="M233,31.11c-1.27,0-2.29,1.03-2.29,2.29v1.87c-2.68-2.57-6.3-4.16-10.31-4.16-8.22,0-14.89,6.67-14.89,14.89s6.67,14.89,14.89,14.89c4,0,7.63-1.59,10.31-4.16v1.87c0,1.27,1.03,2.29,2.29,2.29s2.29-1.03,2.29-2.29v-25.2c0-1.27-1.03-2.29-2.29-2.29ZM220.4,56.31c-5.68,0-10.31-4.62-10.31-10.31s4.62-10.31,10.31-10.31,10.31,4.62,10.31,10.31-4.62,10.31-10.31,10.31Z" style="fill:#009789;"/><path d="M169.15,31.11h-2.29c-8.22,0-14.89,6.67-14.89,14.89v12.6c0,1.27,1.03,2.29,2.29,2.29s2.29-1.03,2.29-2.29v-12.6c0-5.68,4.62-10.31,10.31-10.31h0s2.29,0,2.29,0c1.27,0,2.29-1.03,2.29-2.29s-1.03-2.29-2.29-2.29Z" style="fill:#009789;"/><path d="M196.61,54.5c-2,1.37-4.5,2.06-7.17,1.72-4.64-.59-8.37-4.38-8.9-9.03-.7-6.22,4.16-11.51,10.24-11.51,2.15,0,4.14.66,5.79,1.78.93.63,2.17.56,2.97-.24h0c1.03-1.03.84-2.72-.36-3.54-2.77-1.9-6.22-2.88-9.91-2.51-6.9.68-12.51,6.21-13.28,13.1-1.01,8.99,6.01,16.61,14.8,16.61,3.13,0,6.03-.96,8.42-2.61,1.19-.82,1.35-2.51.33-3.53h0c-.79-.79-2.01-.89-2.93-.26Z" style="fill:#009789;"/></svg>
|
||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 4.4 KiB |
1
resources/images/OrcaSlicer_about_dark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="560" height="125" viewBox="0 0 560 125"><rect id="b" x="20" y="123" width="520" height="2" style="fill:#009789;"/><g id="c"><rect id="d" x="20" y="21.22" width="80.56" height="80.56" rx="9.64" ry="9.64" style="fill:#949494;"/></g><g id="e"><path id="f" d="M37.42,84.6c4.49,4.48,10.66,7.26,17.48,7.29,13.8.06,25.1-11.3,25.04-25.18-.03-6.86-2.79-13.06-7.25-17.57l-35.27,35.46Z" style="fill:#292826;"/></g><g id="g"><path id="h" d="M72.69,49.14l-35.27,35.46s.05.05.08.07c12.36-6.3,29.28-17.38,40.88-26.61-1.25-3.38-3.21-6.42-5.69-8.93" style="fill:#009789;"/></g><g id="i"><path id="j" d="M65.8,31.11c-13.77,0-24.94,11.23-24.94,25.08,0,6.9,2.77,13.14,7.25,17.68l35.27-35.46c-4.51-4.5-10.72-7.29-17.58-7.29" style="fill:#292826;"/></g><g id="k"><path id="l" d="M65.8,31.11c-4.77,0-9.23,1.35-13.02,3.68-2.03-.53-4.55-.96-7.44-.94-5.04.03-9.14,1.4-11.93,2.67-.69.32-.58,1.34.16,1.5,1.83.39,4.25,1.2,6.64,2.97,1.51,1.11,2.66,2.35,3.52,3.5-1.83,3.49-2.87,7.47-2.87,11.69,0,2.52.37,4.95,1.06,7.25,1.05-2.34,2.16-3.9,2.52-4.39,2.29-3.15,4.71-4.79,8.29-7.2,2.64-1.78,6.3-3.87,16.82-8.2,0,0,3.29-.93,7.7-3.55,1.76-1.05,3.1-2.03,3.52-3.58.03-.11.06-.22.08-.32-4.18-3.19-9.4-5.08-15.05-5.08" style="fill:#262523;"/></g><g id="m"><path id="n" d="M69.96,39.54c.91,1.62-.92,4.4-4.09,6.21-3.17,1.81-6.49,1.97-7.4.36-.91-1.62.92-4.4,4.09-6.21,3.17-1.81,6.49-1.97,7.4-.36" style="fill:#949494;"/></g><path d="M163.44,69.66c-1.02,0-1.85.83-1.85,1.85v18.53c0,1.02.83,1.85,1.85,1.85s1.85-.83,1.85-1.85v-18.53c0-1.02-.83-1.85-1.85-1.85Z" style="fill:#949494;"/><path d="M212.05,69.66h-4.43c-6.13,0-11.12,4.99-11.12,11.12s4.99,11.12,11.12,11.12h4.43c1.02,0,1.85-.83,1.85-1.85s-.83-1.85-1.85-1.85h-4.43c-4.09,0-7.41-3.32-7.41-7.41s3.32-7.41,7.41-7.41h4.43c1.02,0,1.85-.83,1.85-1.85s-.83-1.85-1.85-1.85Z" style="fill:#949494;"/><path d="M212.05,78.93h-5.39c-1.02,0-1.85.83-1.85,1.85s.83,1.85,1.85,1.85h5.39c1.02,0,1.85-.83,1.85-1.85s-.83-1.85-1.85-1.85Z" style="fill:#949494;"/><path d="M126.43,91.89h-8.97c-1.02,0-1.84-.83-1.84-1.84s.82-1.84,1.84-1.84h8.97c1.54,0,2.8-1.25,2.8-2.8s-1.25-2.79-2.8-2.79h-4.34c-3.57,0-6.48-2.91-6.48-6.48s2.91-6.48,6.48-6.48h7.34c1.02,0,1.84.83,1.84,1.84s-.82,1.84-1.84,1.84h-7.34c-1.54,0-2.8,1.25-2.8,2.8s1.25,2.79,2.8,2.79h4.34c3.57,0,6.48,2.91,6.48,6.48s-2.91,6.48-6.48,6.48Z" style="fill:#949494;"/><path d="M187.05,86.96c-1.5.99-3.37,1.45-5.36,1.12-3.01-.51-5.44-2.9-6-5.89-.87-4.7,2.73-8.82,7.28-8.82,1.5,0,2.9.45,4.07,1.22.74.49,1.72.41,2.34-.22h0c.82-.82.71-2.19-.25-2.83-2.13-1.43-4.79-2.14-7.61-1.78-5.01.64-9.03,4.72-9.59,9.73-.76,6.7,4.49,12.41,11.04,12.41,2.25,0,4.34-.67,6.09-1.82.99-.65,1.16-2.04.32-2.88h0c-.63-.63-1.6-.71-2.34-.23Z" style="fill:#949494;"/><path d="M153.17,88.19h-5.35c-2.55,0-4.63-2.08-4.63-4.63v-12.04c0-1.02-.83-1.85-1.85-1.85s-1.85.83-1.85,1.85v12.04c0,4.6,3.74,8.34,8.34,8.34h5.35c1.02,0,1.85-.83,1.85-1.85s-.83-1.85-1.85-1.85Z" style="fill:#949494;"/><path d="M233.44,73.37h-1.85c-4.06,0-7.37,3.29-7.41,7.35v9.33c0,1.02-.83,1.85-1.85,1.85s-1.85-.83-1.85-1.85v-9.33c.04-6.1,5.01-11.05,11.11-11.05h1.85c1.02,0,1.85.83,1.85,1.85s-.83,1.85-1.85,1.85Z" style="fill:#949494;"/><path d="M130.5,35.69c5.68,0,10.31,4.62,10.31,10.31s-4.62,10.31-10.31,10.31-10.31-4.62-10.31-10.31,4.62-10.31,10.31-10.31M130.5,31.11c-8.22,0-14.89,6.67-14.89,14.89s6.67,14.89,14.89,14.89,14.89-6.67,14.89-14.89-6.67-14.89-14.89-14.89h0Z" style="fill:#009789;"/><path d="M233,31.11c-1.27,0-2.29,1.03-2.29,2.29v1.87c-2.68-2.57-6.3-4.16-10.31-4.16-8.22,0-14.89,6.67-14.89,14.89s6.67,14.89,14.89,14.89c4,0,7.63-1.59,10.31-4.16v1.87c0,1.27,1.03,2.29,2.29,2.29s2.29-1.03,2.29-2.29v-25.2c0-1.27-1.03-2.29-2.29-2.29ZM220.4,56.31c-5.68,0-10.31-4.62-10.31-10.31s4.62-10.31,10.31-10.31,10.31,4.62,10.31,10.31-4.62,10.31-10.31,10.31Z" style="fill:#009789;"/><path d="M169.15,31.11h-2.29c-8.22,0-14.89,6.67-14.89,14.89v12.6c0,1.27,1.03,2.29,2.29,2.29s2.29-1.03,2.29-2.29v-12.6c0-5.68,4.62-10.31,10.31-10.31h0s2.29,0,2.29,0c1.27,0,2.29-1.03,2.29-2.29s-1.03-2.29-2.29-2.29Z" style="fill:#009789;"/><path d="M196.61,54.5c-2,1.37-4.5,2.06-7.17,1.72-4.64-.59-8.37-4.38-8.9-9.03-.7-6.22,4.16-11.51,10.24-11.51,2.15,0,4.14.66,5.79,1.78.93.63,2.17.56,2.97-.24h0c1.03-1.03.84-2.72-.36-3.54-2.77-1.9-6.22-2.88-9.91-2.51-6.9.68-12.51,6.21-13.28,13.1-1.01,8.99,6.01,16.61,14.8,16.61,3.13,0,6.03-.96,8.42-2.61,1.19-.82,1.35-2.51.33-3.53h0c-.79-.79-2.01-.89-2.93-.26Z" style="fill:#009789;"/></svg>
|
||||
|
After Width: | Height: | Size: 4.4 KiB |
1
resources/images/param_2dlattice.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><polyline points="21.5 2.5 21.5 7.5 16.5 2.5 9.5 2.5 21.5 14.5 21.5 21.5 2.5 2.5 2.5 9.5 14.5 21.5 7.5 21.5 2.5 16.5 2.5 21.5" style="fill:none;stroke:#009688;stroke-linecap:square;stroke-linejoin:round"/><rect x="1.5" y="1.5" width="21" height="21" rx="2" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/></svg>
|
||||
|
After Width: | Height: | Size: 423 B |
108
resources/images/param_quartercubic.svg
Normal file
@@ -0,0 +1,108 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 6.3499998 6.3499998"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||
sodipodi:docname="param_quartercubic.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="31.678384"
|
||||
inkscape:cx="9.2016388"
|
||||
inkscape:cy="13.550773"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="g3735"
|
||||
showgrid="false"
|
||||
inkscape:window-width="3440"
|
||||
inkscape:window-height="1361"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
units="px" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(471.60224,-51.657005)">
|
||||
<g
|
||||
id="g3735"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-471.86548,51.920238)">
|
||||
<path
|
||||
style="fill:#949494;fill-opacity:1;stroke:#949494;stroke-width:0.65595609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 2.6869721,2.7931307 21.370006,21.252951"
|
||||
id="path4983"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path3713"
|
||||
d="M 17.436421,21.426712 2.6364216,6.6267129 m 4.8,14.7999991 -4.8,-4.8 M 16.436421,0.4267129 l 7.2,7.2 m -17.1999994,-7.2 17.1999994,17.1999991"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#009688;stroke-width:0.7937008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
id="path3715"
|
||||
d="M 14.752492,21.394569 2.6364216,9.2776059 M 23.48285,19.879391 4.1739216,0.66957 m 9.6232134,-0.086607 3.037826,2.9618941 6.823781,6.6997119"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#009688;stroke-width:0.7937008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:#949494;fill-opacity:1;stroke:#949494;stroke-width:0.65595609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 9.7429205,0.43681 23.684533,13.798665"
|
||||
id="path4983-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path3715-1"
|
||||
d="M 2.6374683,7.77313 9.7429205,0.43681 M 2.8040351,18.864878 20.992951,0.52555773 M 23.629234,9.7763932 12.204235,21.423716"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#009688;stroke-width:0.7937008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
id="path3713-0"
|
||||
d="M 2.6042413,10.559661 12.242993,0.67821811 M 23.658129,12.52874 15.20813,21.405022 M 23.332474,1.1732923 3.4398186,20.95627"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#009688;stroke-width:0.7937008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
id="path3721"
|
||||
d="M 4.6364216,0.4267129 H 21.636421 c 1.1,0 2,0.9 2,2 V 19.426712 c 0,1.1 -0.9,2 -2,2 H 4.6364216 c -1.1,0 -2,-0.9 -2,-2 V 2.4267129 c 0,-1.1 0.9,-2 2,-2 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#949494;stroke-width:0.89461362;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:#949494;fill-opacity:1;stroke:#949494;stroke-width:0.65595609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 2.5685844,13.016265 8.7276766,8.61607"
|
||||
id="path4983-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="480" height="480" viewBox="0 0 480 480"><rect x="168.974" y="80.544" width="142.052" height="142.052" rx="17" style="fill:#e9e9e9"/><path d="M199.693,192.309a43.716,43.716,0,0,0,30.813,12.851,44.266,44.266,0,0,0,31.375-75.382Z" style="fill:#292826"/><path d="M261.881,129.778l-62.188,62.531c.044.044.09.087.135.131,21.787-11.113,51.619-30.64,72.085-46.914a44.288,44.288,0,0,0-10.032-15.748" style="fill:#009789"/><path d="M249.723,97.98a44.268,44.268,0,0,0-31.193,75.383l62.187-62.531A43.712,43.712,0,0,0,249.723,97.98" style="fill:#292826"/><path d="M249.723,97.98a43.59,43.59,0,0,0-22.952,6.5,50.592,50.592,0,0,0-13.118-1.655,51.253,51.253,0,0,0-21.035,4.715,1.4,1.4,0,0,0,.288,2.644,29.994,29.994,0,0,1,17.908,11.4,44.554,44.554,0,0,0-3.2,33.391,44.117,44.117,0,0,1,4.438-7.74c4.038-5.549,8.308-8.437,14.616-12.7,4.646-3.143,11.1-6.83,29.652-14.454a63.117,63.117,0,0,0,13.584-6.261c3.1-1.844,5.462-3.585,6.209-6.307q.079-.288.144-.568a43.612,43.612,0,0,0-26.535-8.96" style="fill:#262523"/><path d="M257.068,112.841c1.613,2.853-1.615,7.758-7.211,10.958s-11.439,3.482-13.052.63,1.615-7.758,7.211-10.958,11.439-3.482,13.052-.63" style="fill:#fff"/><path d="M225.746,278.771a2.2,2.2,0,0,0-2.2,2.2v21.99a2.2,2.2,0,0,0,4.4,0V280.97A2.2,2.2,0,0,0,225.746,278.771Z" style="fill:#949494"/><path d="M283.441,278.771h-5.255a13.194,13.194,0,0,0,0,26.388h5.255a2.2,2.2,0,1,0,0-4.4h-5.255a8.8,8.8,0,1,1,0-17.592h5.255a2.2,2.2,0,0,0,0-4.4Z" style="fill:#949494"/><path d="M283.441,289.766h-6.392a2.2,2.2,0,1,0,0,4.4h6.392a2.2,2.2,0,1,0,0-4.4Z" style="fill:#949494"/><path d="M181.812,305.159H171.16a2.187,2.187,0,0,1,0-4.373h10.652a3.318,3.318,0,1,0,0-6.635h-5.148a7.691,7.691,0,0,1,0-15.381h8.706a2.187,2.187,0,0,1,0,4.373h-8.706a3.318,3.318,0,1,0,0,6.635h5.148a7.691,7.691,0,0,1,0,15.381Z" style="fill:#949494"/><path d="M253.771,299.308a8.8,8.8,0,1,1-.01-14.692,2.205,2.205,0,0,0,2.783-.262h0a2.192,2.192,0,0,0-.294-3.363,13.194,13.194,0,1,0-.085,22,2.213,2.213,0,0,0,.38-3.418l0,0A2.2,2.2,0,0,0,253.771,299.308Z" style="fill:#949494"/><path d="M213.55,300.761H207.2a5.5,5.5,0,0,1-5.5-5.5V280.969a2.2,2.2,0,1,0-4.4,0v14.294a9.907,9.907,0,0,0,9.895,9.9h6.355a2.2,2.2,0,1,0,0-4.4Z" style="fill:#949494"/><path d="M308.827,283.169h-2.2a8.8,8.8,0,0,0-8.792,8.719V302.96a2.2,2.2,0,0,1-4.4,0V291.888a13.207,13.207,0,0,1,13.19-13.117h2.2a2.2,2.2,0,1,1,0,4.4Z" style="fill:#949494"/><path d="M186.65,238.448a12.236,12.236,0,1,1-12.236,12.235,12.25,12.25,0,0,1,12.236-12.235m0-5.441a17.676,17.676,0,1,0,17.676,17.676,17.676,17.676,0,0,0-17.676-17.676Z" style="fill:#949494"/><path d="M308.306,233.007a2.72,2.72,0,0,0-2.72,2.721v2.218a17.676,17.676,0,1,0,0,25.475v2.218a2.72,2.72,0,1,0,5.44,0V235.728A2.72,2.72,0,0,0,308.306,233.007ZM293.35,262.919a12.236,12.236,0,1,1,12.236-12.236A12.25,12.25,0,0,1,293.35,262.919Z" style="fill:#949494"/><path d="M232.518,233.007H229.8a17.676,17.676,0,0,0-17.676,17.676v14.956a2.72,2.72,0,1,0,5.44,0V250.683A12.25,12.25,0,0,1,229.8,238.448h2.72a2.721,2.721,0,0,0,0-5.441Z" style="fill:#949494"/><path d="M265.11,260.773a12.235,12.235,0,1,1-.04-20.207,2.757,2.757,0,0,0,3.52-.279h0a2.74,2.74,0,0,0-.433-4.207,17.676,17.676,0,1,0,.036,29.182,2.732,2.732,0,0,0,.4-4.185l0,0A2.724,2.724,0,0,0,265.11,260.773Z" style="fill:#949494"/></svg>
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="480" height="480" viewBox="0 0 480 480"><g id="b"><g id="c"><rect x="168.97" y="80.54" width="142.05" height="142.05" rx="17" ry="17" style="fill:#e9e9e9;"/></g></g><g id="d"><path id="e" d="M199.69,192.31c7.91,7.9,18.79,12.8,30.81,12.85,24.33.1,44.25-19.93,44.16-44.4-.05-12.09-4.92-23.03-12.78-30.98l-62.19,62.53Z" style="fill:#292826;"/></g><g id="f"><path id="g" d="M261.88,129.78l-62.19,62.53s.09.09.13.13c21.79-11.11,51.62-30.64,72.08-46.91-2.21-5.96-5.66-11.32-10.03-15.75" style="fill:#009789;"/></g><g id="h"><path id="i" d="M249.72,97.98c-24.29,0-43.97,19.8-43.97,44.22,0,12.16,4.88,23.17,12.78,31.16l62.19-62.53c-7.95-7.94-18.9-12.85-30.99-12.85" style="fill:#292826;"/></g><g id="j"><path id="k" d="M249.72,97.98c-8.41,0-16.27,2.38-22.95,6.5-3.58-.94-8.02-1.69-13.12-1.65-8.89.06-16.12,2.46-21.04,4.71-1.22.56-1.02,2.37.29,2.64,3.23.68,7.49,2.12,11.7,5.23,2.66,1.96,4.68,4.14,6.21,6.17-3.23,6.16-5.07,13.17-5.07,20.62,0,4.44.65,8.73,1.87,12.78,1.86-4.12,3.81-6.88,4.44-7.74,4.04-5.55,8.31-8.44,14.62-12.7,4.65-3.14,11.1-6.83,29.65-14.45,0,0,5.8-1.63,13.58-6.26,3.1-1.84,5.46-3.58,6.21-6.31.05-.19.1-.38.14-.57-7.38-5.62-16.57-8.96-26.53-8.96" style="fill:#262523;"/></g><g id="l"><path id="m" d="M257.07,112.84c1.61,2.85-1.62,7.76-7.21,10.96-5.6,3.2-11.44,3.48-13.05.63-1.61-2.85,1.62-7.76,7.21-10.96,5.6-3.2,11.44-3.48,13.05-.63" style="fill:#fff;"/></g><path d="M225.75,278.77c-1.21,0-2.2.98-2.2,2.2v21.99c0,1.21.98,2.2,2.2,2.2s2.2-.98,2.2-2.2v-21.99c0-1.21-.98-2.2-2.2-2.2Z" style="fill:#949494;"/><path d="M283.44,278.77h-5.26c-7.27,0-13.19,5.92-13.19,13.19s5.92,13.19,13.19,13.19h5.26c1.21,0,2.2-.98,2.2-2.2s-.98-2.2-2.2-2.2h-5.26c-4.85,0-8.8-3.95-8.8-8.8s3.95-8.8,8.8-8.8h5.26c1.21,0,2.2-.98,2.2-2.2s-.98-2.2-2.2-2.2Z" style="fill:#949494;"/><path d="M283.44,289.77h-6.39c-1.21,0-2.2.98-2.2,2.2s.98,2.2,2.2,2.2h6.39c1.21,0,2.2-.98,2.2-2.2s-.98-2.2-2.2-2.2Z" style="fill:#949494;"/><path d="M181.81,305.16h-10.65c-1.21,0-2.19-.98-2.19-2.19s.98-2.19,2.19-2.19h10.65c1.83,0,3.32-1.49,3.32-3.32s-1.49-3.32-3.32-3.32h-5.15c-4.24,0-7.69-3.45-7.69-7.69s3.45-7.69,7.69-7.69h8.71c1.21,0,2.19.98,2.19,2.19s-.98,2.19-2.19,2.19h-8.71c-1.83,0-3.32,1.49-3.32,3.32s1.49,3.32,3.32,3.32h5.15c4.24,0,7.69,3.45,7.69,7.69s-3.45,7.69-7.69,7.69Z" style="fill:#949494;"/><path d="M253.77,299.31c-1.78,1.17-4,1.72-6.36,1.32-3.57-.6-6.46-3.44-7.12-7-1.03-5.58,3.24-10.47,8.64-10.47,1.78,0,3.44.53,4.83,1.45.88.58,2.04.48,2.78-.26h0c.97-.97.84-2.6-.29-3.36-2.53-1.7-5.68-2.54-9.04-2.11-5.94.76-10.71,5.6-11.39,11.55-.9,7.96,5.33,14.73,13.11,14.73,2.67,0,5.15-.8,7.23-2.16,1.18-.78,1.38-2.42.38-3.42h0c-.74-.74-1.9-.85-2.77-.27Z" style="fill:#949494;"/><path d="M213.55,300.76h-6.35c-3.03,0-5.5-2.47-5.5-5.5v-14.29c0-1.21-.98-2.2-2.2-2.2s-2.2.98-2.2,2.2v14.29c0,5.46,4.44,9.9,9.9,9.9h6.35c1.21,0,2.2-.98,2.2-2.2s-.98-2.2-2.2-2.2Z" style="fill:#949494;"/><path d="M308.83,283.17h-2.2c-4.82,0-8.75,3.9-8.79,8.72v11.07c0,1.21-.98,2.2-2.2,2.2s-2.2-.98-2.2-2.2v-11.07c.04-7.24,5.94-13.12,13.19-13.12h2.2c1.21,0,2.2.98,2.2,2.2s-.98,2.2-2.2,2.2Z" style="fill:#949494;"/><path d="M186.65,238.45c6.75,0,12.24,5.49,12.24,12.24s-5.49,12.24-12.24,12.24-12.24-5.49-12.24-12.24,5.49-12.24,12.24-12.24M186.65,233.01c-9.76,0-17.68,7.91-17.68,17.68s7.91,17.68,17.68,17.68,17.68-7.91,17.68-17.68-7.91-17.68-17.68-17.68h0Z" style="fill:#009789;"/><path d="M308.31,233.01c-1.5,0-2.72,1.22-2.72,2.72v2.22c-3.18-3.05-7.48-4.94-12.24-4.94-9.76,0-17.68,7.91-17.68,17.68s7.91,17.68,17.68,17.68c4.75,0,9.06-1.89,12.24-4.94v2.22c0,1.5,1.22,2.72,2.72,2.72s2.72-1.22,2.72-2.72v-29.91c0-1.5-1.22-2.72-2.72-2.72ZM293.35,262.92c-6.75,0-12.24-5.49-12.24-12.24s5.49-12.24,12.24-12.24,12.24,5.49,12.24,12.24-5.49,12.24-12.24,12.24Z" style="fill:#009789;"/><path d="M232.52,233.01h-2.72c-9.76,0-17.68,7.91-17.68,17.68v14.96c0,1.5,1.22,2.72,2.72,2.72s2.72-1.22,2.72-2.72v-14.96c0-6.75,5.49-12.24,12.24-12.24h0s2.72,0,2.72,0c1.5,0,2.72-1.22,2.72-2.72s-1.22-2.72-2.72-2.72Z" style="fill:#009789;"/><path d="M265.11,260.77c-2.37,1.63-5.34,2.45-8.51,2.04-5.51-.7-9.94-5.19-10.56-10.71-.84-7.38,4.94-13.66,12.16-13.66,2.55,0,4.91.78,6.87,2.12,1.1.75,2.57.67,3.52-.28h0c1.22-1.22.99-3.23-.43-4.21-3.29-2.25-7.39-3.42-11.77-2.98-8.19.81-14.84,7.37-15.76,15.55-1.19,10.67,7.13,19.71,17.56,19.71,3.71,0,7.15-1.14,10-3.1,1.41-.97,1.61-2.98.4-4.19h0c-.93-.93-2.39-1.05-3.48-.3Z" style="fill:#009789;"/></svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 4.3 KiB |
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="480" height="480" viewBox="0 0 480 480"><rect x="168.974" y="78.742" width="142.052" height="142.052" rx="17" style="fill:#949494"/><path d="M225.746,276.969a2.2,2.2,0,0,0-2.2,2.2v21.989a2.2,2.2,0,0,0,4.4,0V279.168A2.2,2.2,0,0,0,225.746,276.969Z" style="fill:#949494"/><path d="M283.441,276.969h-5.255a13.194,13.194,0,0,0,0,26.387h5.255a2.2,2.2,0,1,0,0-4.4h-5.255a8.8,8.8,0,1,1,0-17.591h5.255a2.2,2.2,0,0,0,0-4.4Z" style="fill:#949494"/><path d="M283.441,287.964h-6.392a2.2,2.2,0,1,0,0,4.4h6.392a2.2,2.2,0,1,0,0-4.4Z" style="fill:#949494"/><path d="M181.812,303.356H171.16a2.187,2.187,0,0,1,0-4.373h10.652a3.317,3.317,0,1,0,0-6.634h-5.148a7.691,7.691,0,0,1,0-15.381h8.706a2.187,2.187,0,0,1,0,4.373h-8.706a3.318,3.318,0,1,0,0,6.635h5.148a7.69,7.69,0,1,1,0,15.38Z" style="fill:#949494"/><path d="M199.693,190.506a43.712,43.712,0,0,0,30.813,12.852,44.267,44.267,0,0,0,31.375-75.383Z" style="fill:#292826"/><path d="M261.881,127.975l-62.188,62.531c.044.044.09.087.135.131,21.787-11.113,51.619-30.64,72.085-46.913a44.3,44.3,0,0,0-10.032-15.749" style="fill:#009789"/><path d="M249.723,96.178a44.268,44.268,0,0,0-31.193,75.383l62.187-62.531a43.712,43.712,0,0,0-30.994-12.852" style="fill:#292826"/><path d="M249.723,96.178a43.581,43.581,0,0,0-22.952,6.5,50.549,50.549,0,0,0-13.118-1.655,51.271,51.271,0,0,0-21.035,4.714,1.4,1.4,0,0,0,.288,2.645,29.987,29.987,0,0,1,17.908,11.4,44.556,44.556,0,0,0-3.2,33.392,44.117,44.117,0,0,1,4.438-7.74c4.038-5.549,8.308-8.437,14.616-12.7,4.646-3.144,11.1-6.83,29.652-14.454a63.117,63.117,0,0,0,13.584-6.261c3.1-1.844,5.462-3.585,6.209-6.307q.079-.288.144-.569a43.617,43.617,0,0,0-26.535-8.959" style="fill:#262523"/><path d="M257.068,111.039c1.613,2.852-1.615,7.758-7.211,10.958s-11.439,3.482-13.052.63,1.615-7.758,7.211-10.958,11.439-3.482,13.052-.63" style="fill:#949494"/><path d="M253.771,297.505a8.8,8.8,0,1,1-.01-14.692,2.207,2.207,0,0,0,2.783-.261h0a2.192,2.192,0,0,0-.294-3.363,13.193,13.193,0,1,0-.085,22,2.213,2.213,0,0,0,.38-3.418l0,0A2.2,2.2,0,0,0,253.771,297.505Z" style="fill:#949494"/><path d="M213.55,298.958H207.2a5.5,5.5,0,0,1-5.5-5.5V279.167a2.2,2.2,0,0,0-4.4,0v14.294a9.906,9.906,0,0,0,9.895,9.895h6.355a2.2,2.2,0,1,0,0-4.4Z" style="fill:#949494"/><path d="M308.827,281.367h-2.2a8.8,8.8,0,0,0-8.792,8.719v11.071a2.2,2.2,0,0,1-4.4,0V290.086a13.206,13.206,0,0,1,13.19-13.117h2.2a2.2,2.2,0,0,1,0,4.4Z" style="fill:#949494"/><path d="M186.65,236.645a12.236,12.236,0,1,1-12.236,12.236,12.25,12.25,0,0,1,12.236-12.236m0-5.44a17.676,17.676,0,1,0,17.676,17.676,17.676,17.676,0,0,0-17.676-17.676Z" style="fill:#949494"/><path d="M308.306,231.205a2.72,2.72,0,0,0-2.72,2.72v2.218a17.676,17.676,0,1,0,0,25.476v2.218a2.72,2.72,0,0,0,5.44,0V233.925A2.72,2.72,0,0,0,308.306,231.205ZM293.35,261.117a12.236,12.236,0,1,1,12.236-12.236A12.25,12.25,0,0,1,293.35,261.117Z" style="fill:#949494"/><path d="M232.518,231.205H229.8a17.676,17.676,0,0,0-17.676,17.676v14.956a2.72,2.72,0,0,0,5.44,0V248.881A12.25,12.25,0,0,1,229.8,236.645h2.72a2.72,2.72,0,0,0,0-5.44Z" style="fill:#949494"/><path d="M265.11,258.971a12.236,12.236,0,1,1-.04-20.207,2.757,2.757,0,0,0,3.52-.279h0a2.74,2.74,0,0,0-.433-4.207,17.676,17.676,0,1,0,.036,29.182,2.733,2.733,0,0,0,.4-4.186h0A2.723,2.723,0,0,0,265.11,258.971Z" style="fill:#949494"/></svg>
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="480" height="480" viewBox="0 0 480 480"><g id="b"><rect id="c" x="168.97" y="78.74" width="142.05" height="142.05" rx="17" ry="17" style="fill:#949494;"/></g><path d="M225.75,276.97c-1.21,0-2.2.98-2.2,2.2v21.99c0,1.21.98,2.2,2.2,2.2s2.2-.98,2.2-2.2v-21.99c0-1.21-.98-2.2-2.2-2.2Z" style="fill:#949494;"/><path d="M283.44,276.97h-5.26c-7.27,0-13.19,5.92-13.19,13.19s5.92,13.19,13.19,13.19h5.26c1.21,0,2.2-.98,2.2-2.2s-.98-2.2-2.2-2.2h-5.26c-4.85,0-8.8-3.95-8.8-8.8s3.95-8.8,8.8-8.8h5.26c1.21,0,2.2-.98,2.2-2.2s-.98-2.2-2.2-2.2Z" style="fill:#949494;"/><path d="M283.44,287.96h-6.39c-1.21,0-2.2.98-2.2,2.2s.98,2.2,2.2,2.2h6.39c1.21,0,2.2-.98,2.2-2.2s-.98-2.2-2.2-2.2Z" style="fill:#949494;"/><path d="M181.81,303.36h-10.65c-1.21,0-2.19-.98-2.19-2.19s.98-2.19,2.19-2.19h10.65c1.83,0,3.32-1.49,3.32-3.32s-1.49-3.32-3.32-3.32h-5.15c-4.24,0-7.69-3.45-7.69-7.69s3.45-7.69,7.69-7.69h8.71c1.21,0,2.19.98,2.19,2.19s-.98,2.19-2.19,2.19h-8.71c-1.83,0-3.32,1.49-3.32,3.32s1.49,3.32,3.32,3.32h5.15c4.24,0,7.69,3.45,7.69,7.69s-3.45,7.69-7.69,7.69Z" style="fill:#949494;"/><g id="d"><path id="e" d="M199.69,190.51c7.91,7.9,18.79,12.8,30.81,12.85,24.33.1,44.25-19.93,44.16-44.4-.05-12.09-4.92-23.03-12.78-30.98l-62.19,62.53Z" style="fill:#292826;"/></g><g id="f"><path id="g" d="M261.88,127.98l-62.19,62.53s.09.09.13.13c21.79-11.11,51.62-30.64,72.08-46.91-2.21-5.96-5.66-11.32-10.03-15.75" style="fill:#009789;"/></g><g id="h"><path id="i" d="M249.72,96.18c-24.29,0-43.97,19.8-43.97,44.22,0,12.16,4.88,23.17,12.78,31.16l62.19-62.53c-7.95-7.94-18.9-12.85-30.99-12.85" style="fill:#292826;"/></g><g id="j"><path id="k" d="M249.72,96.18c-8.41,0-16.27,2.38-22.95,6.5-3.58-.94-8.02-1.69-13.12-1.65-8.89.06-16.12,2.46-21.04,4.71-1.22.56-1.02,2.37.29,2.64,3.23.68,7.49,2.12,11.7,5.23,2.66,1.96,4.68,4.14,6.21,6.17-3.23,6.16-5.07,13.17-5.07,20.62,0,4.44.65,8.73,1.87,12.78,1.86-4.12,3.81-6.88,4.44-7.74,4.04-5.55,8.31-8.44,14.62-12.7,4.65-3.14,11.1-6.83,29.65-14.45,0,0,5.8-1.63,13.58-6.26,3.1-1.84,5.46-3.58,6.21-6.31.05-.19.1-.38.14-.57-7.38-5.62-16.57-8.96-26.53-8.96" style="fill:#262523;"/></g><g id="l"><path id="m" d="M257.07,111.04c1.61,2.85-1.62,7.76-7.21,10.96-5.6,3.2-11.44,3.48-13.05.63-1.61-2.85,1.62-7.76,7.21-10.96,5.6-3.2,11.44-3.48,13.05-.63" style="fill:#949494;"/></g><path d="M253.77,297.51c-1.78,1.17-4,1.72-6.36,1.32-3.57-.6-6.46-3.44-7.12-7-1.03-5.58,3.24-10.47,8.64-10.47,1.78,0,3.44.53,4.83,1.45.88.58,2.04.48,2.78-.26h0c.97-.97.84-2.6-.29-3.36-2.53-1.7-5.68-2.54-9.04-2.11-5.94.76-10.71,5.6-11.39,11.55-.9,7.96,5.33,14.73,13.11,14.73,2.67,0,5.15-.8,7.23-2.16,1.18-.78,1.38-2.42.38-3.42h0c-.74-.74-1.9-.85-2.77-.27Z" style="fill:#949494;"/><path d="M213.55,298.96h-6.35c-3.03,0-5.5-2.47-5.5-5.5v-14.29c0-1.21-.98-2.2-2.2-2.2s-2.2.98-2.2,2.2v14.29c0,5.46,4.44,9.9,9.9,9.9h6.35c1.21,0,2.2-.98,2.2-2.2s-.98-2.2-2.2-2.2Z" style="fill:#949494;"/><path d="M308.83,281.37h-2.2c-4.82,0-8.75,3.9-8.79,8.72v11.07c0,1.21-.98,2.2-2.2,2.2s-2.2-.98-2.2-2.2v-11.07c.04-7.24,5.94-13.12,13.19-13.12h2.2c1.21,0,2.2.98,2.2,2.2s-.98,2.2-2.2,2.2Z" style="fill:#949494;"/><path d="M186.65,236.65c6.75,0,12.24,5.49,12.24,12.24s-5.49,12.24-12.24,12.24-12.24-5.49-12.24-12.24,5.49-12.24,12.24-12.24M186.65,231.21c-9.76,0-17.68,7.91-17.68,17.68s7.91,17.68,17.68,17.68,17.68-7.91,17.68-17.68-7.91-17.68-17.68-17.68h0Z" style="fill:#009789;"/><path d="M308.31,231.21c-1.5,0-2.72,1.22-2.72,2.72v2.22c-3.18-3.05-7.48-4.94-12.24-4.94-9.76,0-17.68,7.91-17.68,17.68s7.91,17.68,17.68,17.68c4.75,0,9.06-1.89,12.24-4.94v2.22c0,1.5,1.22,2.72,2.72,2.72s2.72-1.22,2.72-2.72v-29.91c0-1.5-1.22-2.72-2.72-2.72ZM293.35,261.12c-6.75,0-12.24-5.49-12.24-12.24s5.49-12.24,12.24-12.24,12.24,5.49,12.24,12.24-5.49,12.24-12.24,12.24Z" style="fill:#009789;"/><path d="M232.52,231.21h-2.72c-9.76,0-17.68,7.91-17.68,17.68v14.96c0,1.5,1.22,2.72,2.72,2.72s2.72-1.22,2.72-2.72v-14.96c0-6.75,5.49-12.24,12.24-12.24h0s2.72,0,2.72,0c1.5,0,2.72-1.22,2.72-2.72s-1.22-2.72-2.72-2.72Z" style="fill:#009789;"/><path d="M265.11,258.97c-2.37,1.63-5.34,2.45-8.51,2.04-5.51-.7-9.94-5.19-10.56-10.71-.84-7.38,4.94-13.66,12.16-13.66,2.55,0,4.91.78,6.87,2.12,1.1.75,2.57.67,3.52-.28h0c1.22-1.22.99-3.23-.43-4.21-3.29-2.25-7.39-3.42-11.77-2.98-8.19.81-14.84,7.37-15.76,15.55-1.19,10.67,7.13,19.71,17.56,19.71,3.71,0,7.15-1.14,10-3.1,1.41-.97,1.61-2.98.4-4.19h0c-.93-.93-2.39-1.05-3.48-.3Z" style="fill:#009789;"/></svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 4.3 KiB |
19
resources/images/toolbar_brimears.svg
Normal file
|
After Width: | Height: | Size: 194 KiB |
19
resources/images/toolbar_brimears_dark.svg
Normal file
|
After Width: | Height: | Size: 149 KiB |
@@ -6,10 +6,10 @@
|
||||
"resolution_supported": [ "720p", "1080p" ],
|
||||
"virtual_camera": "enabled",
|
||||
"liveview": {
|
||||
"remote": "enabled"
|
||||
"remote": "tutk"
|
||||
},
|
||||
"file": {
|
||||
"remote": "enabled",
|
||||
"remote": "tutk",
|
||||
"model_download": "enabled"
|
||||
}
|
||||
},
|
||||
|
||||
@@ -6,10 +6,10 @@
|
||||
"resolution_supported": [ "720p", "1080p" ],
|
||||
"virtual_camera": "enabled",
|
||||
"liveview": {
|
||||
"remote": "enabled"
|
||||
"remote": "tutk"
|
||||
},
|
||||
"file": {
|
||||
"remote": "enabled",
|
||||
"remote": "tutk",
|
||||
"model_download": "enabled"
|
||||
}
|
||||
},
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"liveview": {
|
||||
"remote": "enabled"
|
||||
"remote": "tutk"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -79,7 +79,7 @@
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"file": {
|
||||
"remote": "enabled"
|
||||
"remote": "tutk"
|
||||
}
|
||||
},
|
||||
"support_user_preset":true
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"liveview": {
|
||||
"remote": "enabled"
|
||||
"remote": "tutk"
|
||||
}
|
||||
},
|
||||
"support_mqtt_alive":true,
|
||||
@@ -71,7 +71,7 @@
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"file": {
|
||||
"remote": "enabled"
|
||||
"remote": "tutk"
|
||||
}
|
||||
},
|
||||
"support_user_preset":true
|
||||
|
||||
@@ -6,10 +6,10 @@
|
||||
"resolution_supported": [ "720p", "1080p" ],
|
||||
"virtual_camera": "enabled",
|
||||
"liveview": {
|
||||
"remote": "enabled"
|
||||
"remote": "tutk"
|
||||
},
|
||||
"file": {
|
||||
"remote": "enabled",
|
||||
"remote": "tutk",
|
||||
"model_download": "enabled"
|
||||
}
|
||||
},
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"resolution_supported": [ "720p" ],
|
||||
"liveview": {
|
||||
"local": "local",
|
||||
"remote": "enabled"
|
||||
"remote": "tutk"
|
||||
}
|
||||
},
|
||||
"support_motor_noise_cali":true,
|
||||
@@ -53,7 +53,7 @@
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"file": {
|
||||
"remote": "enabled"
|
||||
"remote": "tutk"
|
||||
}
|
||||
},
|
||||
"support_user_preset":true
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"resolution_supported": [ "720p" ],
|
||||
"liveview": {
|
||||
"local": "local",
|
||||
"remote": "enabled"
|
||||
"remote": "tutk"
|
||||
}
|
||||
},
|
||||
"support_motor_noise_cali":true,
|
||||
@@ -53,7 +53,7 @@
|
||||
"print": {
|
||||
"ipcam": {
|
||||
"file": {
|
||||
"remote": "enabled"
|
||||
"remote": "tutk"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
01.08.03.01
|
||||
01.10.00.01
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP017",
|
||||
"name": "0.20mm Optimal 0.6 nozzle @Anker.json",
|
||||
"name": "0.20mm Optimal 0.6 nozzle @Anker",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_anker_common_0_6",
|
||||
"instantiation": "true",
|
||||
|
||||
@@ -46,10 +46,10 @@
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"35"
|
||||
"90"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"35"
|
||||
"90"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
@@ -247,6 +247,6 @@
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"55"
|
||||
"90"
|
||||
]
|
||||
}
|
||||
@@ -46,10 +46,10 @@
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"35"
|
||||
"100"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"35"
|
||||
"100"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
@@ -247,9 +247,9 @@
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"55"
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"55"
|
||||
"100"
|
||||
]
|
||||
}
|
||||
@@ -91,9 +91,6 @@
|
||||
"filament_cost": [
|
||||
"0"
|
||||
],
|
||||
"filament_density": [
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"80"
|
||||
],
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"12"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
"250"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Anycubic Kobra S1 0.4 nozzle"
|
||||
@@ -46,10 +46,10 @@
|
||||
"70"
|
||||
],
|
||||
"cool_plate_temp": [
|
||||
"35"
|
||||
"55"
|
||||
],
|
||||
"cool_plate_temp_initial_layer": [
|
||||
"35"
|
||||
"55"
|
||||
],
|
||||
"default_filament_colour": [
|
||||
""
|
||||
@@ -202,13 +202,13 @@
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
"70"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
"70"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230"
|
||||
"250"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"260"
|
||||
@@ -247,9 +247,9 @@
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"55"
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"55"
|
||||
"70"
|
||||
]
|
||||
}
|
||||
@@ -91,9 +91,6 @@
|
||||
"filament_cost": [
|
||||
"0"
|
||||
],
|
||||
"filament_density": [
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"80"
|
||||
],
|
||||
|
||||
@@ -91,9 +91,6 @@
|
||||
"filament_cost": [
|
||||
"0"
|
||||
],
|
||||
"filament_density": [
|
||||
"0"
|
||||
],
|
||||
"filament_deretraction_speed": [
|
||||
"25"
|
||||
],
|
||||
|
||||
@@ -106,9 +106,9 @@
|
||||
"default_filament_profile": [
|
||||
"Anycubic Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting]\nM104 S[nozzle_temperature_initial_layer] ; set extruder temp\nM140 S[bed_temperature_initial_layer_single] ; set bed temp\nG28 ; home all\nG1 Y1.0 Z0.3 F1000 ; move print head up\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp\nM109 S[nozzle_temperature_initial_layer] ; wait for extruder temp\nG92 E0.0\n; initial load\nG1 X205.0 E19 F1000\nG1 Y1.6\nG1 X5.0 E19 F1000\nG92 E0.0\n; intro line\nG1 Y2.0 Z0.2 F1000\nG1 X65.0 E9.0 F1000\nG1 X105.0 E12.5 F1000\nG92 E0.0",
|
||||
"machine_end_gcode": "G1 E-1.0 F2100 ; retract\nG92 E0.0\nG1{if max_layer_z < printable_height} Z{z_offset+min(max_layer_z+30, printable_height)}{endif} E-34.0 F720 ; move print head up & retract filament\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y105 F3000 ; park print head\nM84 ; disable motors",
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 P[machine_max_acceleration_extruding] R[machine_max_acceleration_retracting] T[machine_max_acceleration_travel]\nM104 S[nozzle_temperature_initial_layer] ; set extruder temp\nM140 S[bed_temperature_initial_layer_single] ; set bed temp\nG28 ; home all\nG1 Y1.0 Z0.3 F{travel_speed*60} ; move print head up\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp\nM109 S[nozzle_temperature_initial_layer] ; wait for extruder temp\nG92 E0.0\n; initial load\nG1 X205.0 E19 F1000\nG1 Y1.6\nG1 X5.0 E19 F1000\nG92 E0.0\n; intro line\nG1 Y2.0 Z0.2 F1000\nG1 X65.0 E9.0 F1000\nG1 X105.0 E12.5 F1000\nG92 E0.0",
|
||||
"machine_end_gcode": "G1 E-1.0 F2100 ; retract\nG92 E0.0\nG1 X0{if max_layer_z < printable_height} Z{z_offset+min(max_layer_z+30, printable_height)}{endif} E-34.0 F{travel_speed*60} ; move print head up & retract filament\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y105 F{travel_speed*60} ; park print head\nM84 ; disable motors",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n\n",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"scan_first_layer": "0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -110,8 +110,8 @@
|
||||
"default_filament_profile": [
|
||||
"Anycubic Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting]\nM104 S[nozzle_temperature_initial_layer] ; set extruder temp\nM140 S[bed_temperature_initial_layer_single] ; set bed temp\nG28 ; home all\nG1 Y1.0 Z0.3 F1000 ; move print head up\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp\nM109 S[nozzle_temperature_initial_layer] ; wait for extruder temp\nG92 E0.0\n; initial load\nG1 X205.0 E19 F1000\nG1 Y1.6\nG1 X5.0 E19 F1000\nG92 E0.0\n; intro line\nG1 Y2.0 Z0.2 F1000\nG1 X65.0 E9.0 F1000\nG1 X105.0 E12.5 F1000\nG92 E0.0",
|
||||
"machine_end_gcode": "G1 E-1.0 F2100 ; retract\nG92 E0.0\nG1{if max_layer_z < printable_height} Z{z_offset+min(max_layer_z+30, printable_height)}{endif} E-34.0 F720 ; move print head up & retract filament\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y105 F3000 ; park print head\nM84 ; disable motors",
|
||||
"machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 P[machine_max_acceleration_extruding] R[machine_max_acceleration_retracting] T[machine_max_acceleration_travel]\nM104 S[nozzle_temperature_initial_layer] ; set extruder temp\nM140 S[bed_temperature_initial_layer_single] ; set bed temp\nG28 ; home all\nG1 Y1.0 Z0.3 F{travel_speed*60} ; move print head up\nM190 S[bed_temperature_initial_layer_single] ; wait for bed temp\nM109 S[nozzle_temperature_initial_layer] ; wait for extruder temp\nG92 E0.0\n; initial load\nG1 X205.0 E19 F1000\nG1 Y1.6\nG1 X5.0 E19 F1000\nG92 E0.0\n; intro line\nG1 Y2.0 Z0.2 F1000\nG1 X65.0 E9.0 F1000\nG1 X105.0 E12.5 F1000\nG92 E0.0",
|
||||
"machine_end_gcode": "G1 E-1.0 F2100 ; retract\nG92 E0.0\nG1 X0{if max_layer_z < printable_height} Z{z_offset+min(max_layer_z+30, printable_height)}{endif} E-34.0 F{travel_speed*60} ; move print head up & retract filament\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y105 F{travel_speed*60} ; park print head\nM84 ; disable motors",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n\n",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"scan_first_layer": "0"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Bambulab",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "01.10.00.26",
|
||||
"version": "01.10.00.33",
|
||||
"force_update": "0",
|
||||
"description": "the initial version of BBL configurations",
|
||||
"machine_model_list": [
|
||||
@@ -713,31 +713,31 @@
|
||||
"name": "Bambu Support W @base",
|
||||
"sub_path": "filament/Bambu Support W @base.json"
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "SUNLU PLA Matte @base",
|
||||
"sub_path": "filament/SUNLU/SUNLU PLA Matte @base.json"
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "SUNLU PLA+ @base",
|
||||
"sub_path": "filament/SUNLU/SUNLU PLA+ @base.json"
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "SUNLU PLA+ 2.0 @base",
|
||||
"sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @base.json"
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "SUNLU Silk PLA+ @base",
|
||||
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @base.json"
|
||||
},
|
||||
{
|
||||
"name": "SUNLU Marble PLA @base",
|
||||
"name": "SUNLU PLA Marble @base",
|
||||
"sub_path": "filament/SUNLU/SUNLU Marble PLA @base.json"
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "SUNLU Wood PLA @base",
|
||||
"sub_path": "filament/SUNLU/SUNLU Wood PLA @base.json"
|
||||
},
|
||||
{
|
||||
{
|
||||
"name": "SUNLU PETG @base",
|
||||
"sub_path": "filament/SUNLU/SUNLU PETG @base.json"
|
||||
},
|
||||
@@ -809,6 +809,14 @@
|
||||
"name": "Bambu Support For PLA/PETG @base",
|
||||
"sub_path": "filament/Bambu Support For PLA-PETG @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Wood @base",
|
||||
"sub_path": "filament/Bambu PLA Wood @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Silk+ @base",
|
||||
"sub_path": "filament/Bambu PLA Silk+ @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu TPU 95A @base",
|
||||
"sub_path": "filament/Bambu TPU 95A @base.json"
|
||||
@@ -913,6 +921,10 @@
|
||||
"name": "Generic PC @base",
|
||||
"sub_path": "filament/Generic PC @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @base",
|
||||
"sub_path": "filament/Bambu PC FR @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic ASA @base",
|
||||
"sub_path": "filament/Generic ASA @base.json"
|
||||
@@ -1466,23 +1478,23 @@
|
||||
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "SUNLU Marble PLA @BBL X1C",
|
||||
"name": "SUNLU PLA Marble @BBL X1C",
|
||||
"sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "SUNLU Marble PLA @BBL X1",
|
||||
"name": "SUNLU PLA Marble @BBL X1",
|
||||
"sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "SUNLU Marble PLA @BBL P1P",
|
||||
"name": "SUNLU PLA Marble @BBL P1P",
|
||||
"sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "SUNLU Marble PLA @BBL A1M",
|
||||
"name": "SUNLU PLA Marble @BBL A1M",
|
||||
"sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "SUNLU Marble PLA @BBL A1",
|
||||
"name": "SUNLU PLA Marble @BBL A1",
|
||||
"sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL A1.json"
|
||||
},
|
||||
{
|
||||
@@ -1977,6 +1989,66 @@
|
||||
"name": "Bambu Support For PLA/PETG @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu Support For PLA-PETG @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Wood @BBL X1C",
|
||||
"sub_path": "filament/Bambu PLA Wood @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Wood @BBL X1C 0.8 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Wood @BBL X1C 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Wood @BBL X1",
|
||||
"sub_path": "filament/Bambu PLA Wood @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Wood @BBL P1P",
|
||||
"sub_path": "filament/Bambu PLA Wood @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Wood @BBL A1",
|
||||
"sub_path": "filament/Bambu PLA Wood @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Wood @BBL A1M",
|
||||
"sub_path": "filament/Bambu PLA Wood @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Silk+ @BBL X1C",
|
||||
"sub_path": "filament/Bambu PLA Silk+ @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Silk+ @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Silk+ @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Silk+ @BBL X1",
|
||||
"sub_path": "filament/Bambu PLA Silk+ @BBL X1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Silk+ @BBL P1P",
|
||||
"sub_path": "filament/Bambu PLA Silk+ @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Silk+ @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Silk+ @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Silk+ @BBL A1",
|
||||
"sub_path": "filament/Bambu PLA Silk+ @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Silk+ @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Silk+ @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Silk+ @BBL A1M",
|
||||
"sub_path": "filament/Bambu PLA Silk+ @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Silk+ @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Silk+ @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu TPU 95A @BBL X1C",
|
||||
"sub_path": "filament/Bambu TPU 95A @BBL X1C.json"
|
||||
@@ -2217,6 +2289,18 @@
|
||||
"name": "Bambu PETG Translucent @BBL A1",
|
||||
"sub_path": "filament/Bambu PETG Translucent @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PETG Translucent @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PETG Translucent @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PETG Translucent @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PETG Translucent @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PETG Translucent @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PETG Translucent @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PETG HF @BBL X1C",
|
||||
"sub_path": "filament/Bambu PETG HF @BBL X1C.json"
|
||||
@@ -2453,6 +2537,70 @@
|
||||
"name": "Generic PC @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/Generic PC @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL X1C",
|
||||
"sub_path": "filament/Bambu PC FR @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL X1C 0.6 nozzle",
|
||||
"sub_path": "filament/Bambu PC FR @BBL X1C 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL X1C 0.8 nozzle",
|
||||
"sub_path": "filament/Bambu PC FR @BBL X1C 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PC FR @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL P1S",
|
||||
"sub_path": "filament/Bambu PC FR @BBL P1S.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL P1S 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PC FR @BBL P1S 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL P1S 0.6 nozzle",
|
||||
"sub_path": "filament/Bambu PC FR @BBL P1S 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL P1S 0.8 nozzle",
|
||||
"sub_path": "filament/Bambu PC FR @BBL P1S 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL P1P",
|
||||
"sub_path": "filament/Bambu PC FR @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PC FR @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL X1E",
|
||||
"sub_path": "filament/Bambu PC FR @BBL X1E.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL X1E 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PC FR @BBL X1E 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL X1E 0.6 nozzle",
|
||||
"sub_path": "filament/Bambu PC FR @BBL X1E 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL X1E 0.8 nozzle",
|
||||
"sub_path": "filament/Bambu PC FR @BBL X1E 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL A1",
|
||||
"sub_path": "filament/Bambu PC FR @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PC FR @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PC FR @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic ASA @0.2 nozzle",
|
||||
"sub_path": "filament/Generic ASA @0.2 nozzle.json"
|
||||
|
||||
|
Before Width: | Height: | Size: 279 KiB After Width: | Height: | Size: 10 KiB |
@@ -70,6 +70,36 @@
|
||||
"cli_safe_speed_x": "0,0",
|
||||
"cli_safe_speed_y": "0,0",
|
||||
"cli_safe_speed_z": "0,0"
|
||||
},
|
||||
"downward_check": {
|
||||
"Bambu Lab A1 mini 0.2 nozzle": [
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
"Bambu Lab P1P 0.2 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab X1E 0.2 nozzle",
|
||||
"Bambu Lab X1 0.2 nozzle"
|
||||
],
|
||||
"Bambu Lab A1 mini 0.4 nozzle": [
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
],
|
||||
"Bambu Lab A1 mini 0.6 nozzle": [
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle"
|
||||
],
|
||||
"Bambu Lab A1 mini 0.8 nozzle": [
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
},
|
||||
"Bambu Lab X1": {
|
||||
|
||||
@@ -5,6 +5,12 @@
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_03",
|
||||
"instantiation": "true",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
@@ -14,6 +20,18 @@
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.2 nozzle"
|
||||
]
|
||||
|
||||
@@ -5,6 +5,12 @@
|
||||
"from": "system",
|
||||
"setting_id": "GFSB01_04",
|
||||
"instantiation": "true",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"25"
|
||||
],
|
||||
@@ -17,6 +23,18 @@
|
||||
"filament_retraction_speed": [
|
||||
"0.4"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"V"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.6 nozzle"
|
||||
]
|
||||
|
||||
@@ -6,6 +6,12 @@
|
||||
"filament_id": "GFB01",
|
||||
"instantiation": "false",
|
||||
"description": "When printing this filament, there's a risk of warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"35"
|
||||
],
|
||||
@@ -24,6 +30,12 @@
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"270"
|
||||
],
|
||||
@@ -32,5 +44,11 @@
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
]
|
||||
}
|
||||
@@ -5,6 +5,12 @@
|
||||
"from": "system",
|
||||
"filament_id": "GFB51",
|
||||
"instantiation": "false",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"25"
|
||||
],
|
||||
@@ -26,6 +32,12 @@
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"275"
|
||||
],
|
||||
@@ -40,5 +52,11 @@
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"108"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_15",
|
||||
"instantiation": "true",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
40
resources/profiles/BBL/filament/Bambu PC FR @BBL A1.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL A1",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_14",
|
||||
"instantiation": "true",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL P1P 0.2 nozzle",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_09",
|
||||
"instantiation": "true",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
40
resources/profiles/BBL/filament/Bambu PC FR @BBL P1P.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL P1P",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_08",
|
||||
"instantiation": "true",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"20"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"0"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL P1S 0.2 nozzle",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_05",
|
||||
"instantiation": "true",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL P1S 0.6 nozzle",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_06",
|
||||
"instantiation": "true",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL P1S 0.8 nozzle",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_07",
|
||||
"instantiation": "true",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
35
resources/profiles/BBL/filament/Bambu PC FR @BBL P1S.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL P1S",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_04",
|
||||
"instantiation": "true",
|
||||
"eng_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"100"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1S 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL X1C 0.2 nozzle",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_03",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab X1 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL X1C 0.6 nozzle",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_01",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL X1C 0.8 nozzle",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_02",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
18
resources/profiles/BBL/filament/Bambu PC FR @BBL X1C.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL X1C",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_00",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL X1E 0.2 nozzle",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_11",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL X1E 0.6 nozzle",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_12",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL X1E 0.8 nozzle",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_13",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"260"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
20
resources/profiles/BBL/filament/Bambu PC FR @BBL X1E.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @BBL X1E",
|
||||
"inherits": "Bambu PC FR @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSC01_10",
|
||||
"instantiation": "true",
|
||||
"chamber_temperatures": [
|
||||
"60"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1E 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
20
resources/profiles/BBL/filament/Bambu PC FR @base.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PC FR @base",
|
||||
"inherits": "fdm_filament_pc",
|
||||
"from": "system",
|
||||
"filament_id": "GFC01",
|
||||
"instantiation": "false",
|
||||
"filament_cost": [
|
||||
"0"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.19"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.94"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PETG Translucent @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu PETG Translucent @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSG01_10",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.3"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PETG Translucent @BBL A1M 0.2 nozzle",
|
||||
"inherits": "Bambu PETG Translucent @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSG01_09",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.3"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PETG Translucent @BBL X1C 0.2 nozzle",
|
||||
"inherits": "Bambu PETG Translucent @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSG01_07",
|
||||
"instantiation": "true",
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"1"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.3"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1P 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab X1E 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -11,6 +11,9 @@
|
||||
"filament_density": [
|
||||
"1.26"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
]
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Silk+ @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Silk+ @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA06_06",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
43
resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1.json
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Silk+ @BBL A1",
|
||||
"inherits": "Bambu PLA Silk+ @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA06_05",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Silk+ @BBL A1M 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Silk+ @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA06_08",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Silk+ @BBL A1M",
|
||||
"inherits": "Bambu PLA Silk+ @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA06_07",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Silk+ @BBL P1P 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Silk+ @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA06_04",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.2 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Silk+ @BBL P1P",
|
||||
"inherits": "Bambu PLA Silk+ @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA06_03",
|
||||
"instantiation": "true",
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
22
resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Silk+ @BBL X1",
|
||||
"inherits": "Bambu PLA Silk+ @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA06_02",
|
||||
"instantiation": "true",
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Silk+ @BBL X1C 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Silk+ @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA06_01",
|
||||
"instantiation": "true",
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"supertack_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.2 nozzle",
|
||||
"Bambu Lab X1 0.2 nozzle",
|
||||
"Bambu Lab P1S 0.2 nozzle",
|
||||
"Bambu Lab X1E 0.2 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Silk+ @BBL X1C",
|
||||
"inherits": "Bambu PLA Silk+ @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA06_00",
|
||||
"instantiation": "true",
|
||||
"supertack_plate_temp": [
|
||||
"35"
|
||||
],
|
||||
"supertack_plate_temp_initial_layer": [
|
||||
"35"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
]
|
||||
}
|
||||
36
resources/profiles/BBL/filament/Bambu PLA Silk+ @base.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Silk+ @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"filament_id": "GFA06",
|
||||
"instantiation": "false",
|
||||
"description": "To make the prints get higher gloss, please dry the filament before use, and set the outer wall speed to be 40 to 60 mm/s when slicing.",
|
||||
"filament_cost": [
|
||||
"29.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.27"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_scarf_height": [
|
||||
"5%"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"all"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"230"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
]
|
||||
}
|
||||
40
resources/profiles/BBL/filament/Bambu PLA Wood @BBL A1.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Wood @BBL A1",
|
||||
"inherits": "Bambu PLA Wood @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA16_04",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"6"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
"Bambu Lab A1 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
]
|
||||
}
|
||||
40
resources/profiles/BBL/filament/Bambu PLA Wood @BBL A1M.json
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Wood @BBL A1M",
|
||||
"inherits": "Bambu PLA Wood @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA16_05",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"60"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"60"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"6"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
"Bambu Lab A1 mini 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
]
|
||||
}
|
||||
37
resources/profiles/BBL/filament/Bambu PLA Wood @BBL P1P.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Wood @BBL P1P",
|
||||
"inherits": "Bambu PLA Wood @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA16_03",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"65"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"65"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab P1P 0.4 nozzle",
|
||||
"Bambu Lab P1P 0.6 nozzle",
|
||||
"Bambu Lab P1P 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
]
|
||||
}
|
||||
19
resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Wood @BBL X1",
|
||||
"inherits": "Bambu PLA Wood @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA16_02",
|
||||
"instantiation": "true",
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Wood @BBL X1C 0.8 nozzle",
|
||||
"inherits": "Bambu PLA Wood @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA16_01",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
16
resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Wood @BBL X1C",
|
||||
"inherits": "Bambu PLA Wood @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA16_00",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.4 nozzle",
|
||||
"Bambu Lab X1 Carbon 0.6 nozzle",
|
||||
"Bambu Lab P1S 0.4 nozzle",
|
||||
"Bambu Lab P1S 0.6 nozzle",
|
||||
"Bambu Lab X1E 0.4 nozzle",
|
||||
"Bambu Lab X1E 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
35
resources/profiles/BBL/filament/Bambu PLA Wood @base.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Wood @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"filament_id": "GFA16",
|
||||
"instantiation": "false",
|
||||
"filament_cost": [
|
||||
"24.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.21"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_long_retractions_when_cut": [
|
||||
"1"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"18"
|
||||
],
|
||||
"filament_retraction_distances_when_cut": [
|
||||
"18"
|
||||
],
|
||||
"filament_scarf_seam_type": [
|
||||
"none"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
]
|
||||
}
|
||||
@@ -5,6 +5,9 @@
|
||||
"from": "system",
|
||||
"setting_id": "GFSU02_02",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 0.4 nozzle",
|
||||
"Bambu Lab A1 0.6 nozzle",
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
"from": "system",
|
||||
"setting_id": "GFSU02_03",
|
||||
"instantiation": "true",
|
||||
"fan_max_speed": [
|
||||
"40"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab A1 mini 0.4 nozzle",
|
||||
"Bambu Lab A1 mini 0.6 nozzle",
|
||||
|
||||