mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-10 23:38:41 -07:00
Merge branch 'main' into enh-update-wxwidgets
This commit is contained in:
commit
62d689b03e
163 changed files with 4674 additions and 2270 deletions
25
.github/workflows/orca_bot.yml
vendored
Normal file
25
.github/workflows/orca_bot.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: Orca bot
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
|
||||
jobs:
|
||||
close-issues:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: actions/stale@v5
|
||||
with:
|
||||
days-before-issue-stale: 90
|
||||
days-before-issue-close: 14
|
||||
operations-per-run: 1000
|
||||
stale-issue-label: "stale"
|
||||
stale-issue-message: "GitHub bot: this issue is stale because it has been open for 90 days with no activity."
|
||||
close-issue-message: "GitHub bot: This issue was closed because it has been inactive for 14 days since being marked as stale."
|
||||
days-before-pr-stale: -1
|
||||
days-before-pr-close: -1
|
||||
remove-issue-stale-when-updated: true
|
||||
remove-pr-stale-when-updated: true
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
@ -1 +1,35 @@
|
|||
WIP
|
||||
OrcaSlicer use `M106 P2` command to control auxiliary cooling fan.
|
||||
|
||||
If you are using Klipper, you can define a `M106` macro to control the both normal part cooling fan and auxiliary fan and exhuast fan.
|
||||
Below is a reference configuration for Klipper.
|
||||
*Note: Don't forget to change the pin name to the actual pin name you are using in the configuration*
|
||||
|
||||
```
|
||||
# instead of using [fan], we define the default part cooling fan with [fan_generic] here
|
||||
# this is the default part cooling fan
|
||||
[fan_generic fan0]
|
||||
pin: PA7
|
||||
cycle_time: 0.01
|
||||
hardware_pwm: false
|
||||
|
||||
# this is the auxiliary fan
|
||||
# comment out it if you don't have auxiliary fan
|
||||
[fan_generic fan2]
|
||||
pin: PA8
|
||||
cycle_time: 0.01
|
||||
hardware_pwm: false
|
||||
|
||||
# this is the exhaust fan
|
||||
# comment out it if you don't have exhaust fan
|
||||
[fan_generic fan3]
|
||||
pin: PA9
|
||||
cycle_time: 0.01
|
||||
hardware_pwm: false
|
||||
|
||||
[gcode_macro M106]
|
||||
gcode:
|
||||
{% set fan = 'fan' + (params.P|int if params.P is defined else 0)|string %}
|
||||
{% set speed = (params.S|int if params.S is defined else 255) %}
|
||||
SET_FAN_SPEED FAN={fan} SPEED={speed}
|
||||
|
||||
```
|
||||
|
|
|
|||
|
|
@ -1 +1,50 @@
|
|||
WIP...
|
||||
OrcaSlicer use `M141/M191` command to control active chamber heater.
|
||||
|
||||
If `Activate temperature control` is checked, OrcaSlicer will insert `M191` command at the beginning of the gcode(before `Machine G-code`).
|
||||

|
||||
*Note: If the machine is equipped with an auxiliary fan, OrcaSlicer will automatically activate the fan during the heating period to help circulate air in the chamber.*
|
||||
|
||||
|
||||
There are two chamber temperature variables available that we can use in `Machine G-code` to control the chamber temperature, if you prefer:
|
||||
To access the chamber temperature set in the first filament, use:
|
||||
`M191 S{chamber_temperature[0]}`
|
||||
To use the overall chamber temperature, which is the highest chamber temperature set across all filaments, use:
|
||||
`M191 S{overall_chamber_temperature}`
|
||||
|
||||
|
||||
--------------------------Klipper--------------------------
|
||||
If you are using Klipper, you can define these macros to control the active chamber heater.
|
||||
Bellow is a reference configuration for Klipper.
|
||||
*Note: Don't forget to change the pin name/values to the actual values you are using in the configuration*
|
||||
|
||||
```
|
||||
[heater_generic chamber_heater]
|
||||
heater_pin:PB10
|
||||
max_power:1.0
|
||||
# Note: here the temperature sensor should be the sensor you are using for chamber temperature, not the PTC sensor
|
||||
sensor_type:NTC 100K MGB18-104F39050L32
|
||||
sensor_pin:PA1
|
||||
control = pid
|
||||
pid_Kp = 63.418
|
||||
pid_ki = 0.960
|
||||
pid_kd = 1244.716
|
||||
min_temp:0
|
||||
max_temp:70
|
||||
|
||||
[gcode_macro M141]
|
||||
gcode:
|
||||
SET_HEATER_TEMPERATURE HEATER=chamber_heater TARGET={params.S|default(0)}
|
||||
|
||||
[gcode_macro M191]
|
||||
gcode:
|
||||
{% set s = params.S|float %}
|
||||
{% if s == 0 %}
|
||||
# If target temperature is 0, do nothing
|
||||
M117 Chamber heating cancelled
|
||||
{% else %}
|
||||
SET_HEATER_TEMPERATURE HEATER=chamber_heater TARGET={s}
|
||||
TEMPERATURE_WAIT SENSOR="heater_generic chamber_heater" MINIMUM={s-1} MAXIMUM={s+1}
|
||||
M117 Chamber at target temperature
|
||||
{% endif %}
|
||||
|
||||
```
|
||||
|
|
@ -1 +1,35 @@
|
|||
WIP
|
||||
OrcaSlicer use `M106 P3` command to control air-filtration/exhuast fan.
|
||||
|
||||
If you are using Klipper, you can define a `M106` macro to control the both normal part cooling fan and auxiliary fan and exhuast fan.
|
||||
Below is a reference configuration for Klipper.
|
||||
*Note: Don't forget to change the pin name to the actual pin name you are using in the configuration*
|
||||
|
||||
```
|
||||
# instead of using [fan], we define the default part cooling fan with [fan_generic] here
|
||||
# this is the default part cooling fan
|
||||
[fan_generic fan0]
|
||||
pin: PA7
|
||||
cycle_time: 0.01
|
||||
hardware_pwm: false
|
||||
|
||||
# this is the auxiliary fan
|
||||
# comment out it if you don't have auxiliary fan
|
||||
[fan_generic fan2]
|
||||
pin: PA8
|
||||
cycle_time: 0.01
|
||||
hardware_pwm: false
|
||||
|
||||
# this is the exhaust fan
|
||||
# comment out it if you don't have exhaust fan
|
||||
[fan_generic fan3]
|
||||
pin: PA9
|
||||
cycle_time: 0.01
|
||||
hardware_pwm: false
|
||||
|
||||
[gcode_macro M106]
|
||||
gcode:
|
||||
{% set fan = 'fan' + (params.P|int if params.P is defined else 0)|string %}
|
||||
{% set speed = (params.S|int if params.S is defined else 255) %}
|
||||
SET_FAN_SPEED FAN={fan} SPEED={speed}
|
||||
|
||||
```
|
||||
|
|
|
|||
BIN
doc/images/activate_chamber_heater.jpg
Normal file
BIN
doc/images/activate_chamber_heater.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+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"
|
||||
|
|
@ -489,27 +489,12 @@ msgstr ""
|
|||
msgid "Remove selection"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr ""
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr ""
|
||||
|
||||
msgid "Font"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr ""
|
||||
|
||||
msgid "Input text"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr ""
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -521,12 +506,24 @@ msgid ""
|
|||
"depth"
|
||||
msgstr ""
|
||||
|
||||
msgid "Input text"
|
||||
msgstr ""
|
||||
|
||||
msgid "Surface"
|
||||
msgstr ""
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr ""
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr ""
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -608,11 +605,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -638,6 +630,13 @@ msgstr ""
|
|||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5769,6 +5768,9 @@ msgstr ""
|
|||
msgid "Change filament G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -7408,6 +7410,14 @@ msgstr ""
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -9432,6 +9442,9 @@ msgid ""
|
|||
"tool change"
|
||||
msgstr ""
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -9727,6 +9740,15 @@ msgid ""
|
|||
"itself. It's expressed as a percentage over nozzle diameter"
|
||||
msgstr ""
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"PO-Revision-Date: 2023-09-30 15:15+0200\n"
|
||||
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -497,27 +497,12 @@ msgstr "Malování pozice švu"
|
|||
msgid "Remove selection"
|
||||
msgstr "Odebrat výběr"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + pohyb myši nahoru nebo dolů"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Otočit text"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Tvar textu"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Písmo"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Tloušťka"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Vložit text"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Vloženo"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Mezera v textu"
|
||||
|
||||
|
|
@ -531,12 +516,24 @@ msgstr ""
|
|||
"Vloženo\n"
|
||||
"hloubka"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Vložit text"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Povrch"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Vodorovný text"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + pohyb myši nahoru nebo dolů"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Otočit text"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Tvar textu"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -628,13 +625,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr "WebView2 Runtime"
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
"Konfigurační soubor OrcaSlicer může být poškozen a nelze jej analyzovat."
|
||||
"Smažte soubor a zkuste to znovu."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -662,6 +652,17 @@ msgstr "Toto je nejnovější verze."
|
|||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
"Soubor konfigurace programu OrcaSlicer může být poškozen a nelze ho analyzovat.\n"
|
||||
"OrcaSlicer se pokusil znovu vytvořit konfigurační soubor.\n"
|
||||
"Všimněte si, že nastavení aplikace bude ztraceno, ale profily tiskárny "
|
||||
"nebudou ovlivněny."
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Obnovit"
|
||||
|
||||
|
|
@ -1787,10 +1788,10 @@ msgid "An SD card needs to be inserted before printing via LAN."
|
|||
msgstr "Před tiskem přes LAN je třeba vložit SD kartu."
|
||||
|
||||
msgid "Sending gcode file over LAN"
|
||||
msgstr "Odesílání souboru gcode přes LAN"
|
||||
msgstr "Odesílání souboru gkód přes LAN"
|
||||
|
||||
msgid "Sending gcode file to sdcard"
|
||||
msgstr "Odesílání souboru gcode na sdcard"
|
||||
msgstr "Odesílání souboru gkód na sd kartu"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Successfully sent. Close current page in %s s"
|
||||
|
|
@ -2181,7 +2182,7 @@ msgid ""
|
|||
"(Currently supporting automatic supply of consumables with the same brand, "
|
||||
"material type, and color)"
|
||||
msgstr ""
|
||||
"Pokud v AMS existují dva identické filameny, bude povolena záloha AMS "
|
||||
"Pokud v AMS existují dva identické filamenty, bude povolena záloha AMS "
|
||||
"filamentu. \n"
|
||||
"(Aktuálně podporuje automatické doplňování spotřebního materiálu stejné "
|
||||
"značky, typu materiálu a barvy)"
|
||||
|
|
@ -2333,7 +2334,7 @@ msgid ""
|
|||
"Error message: %1%.\n"
|
||||
"Source file %2%."
|
||||
msgstr ""
|
||||
"Soubor gcode se nepodařilo uložit.\n"
|
||||
"Soubor gkód se nepodařilo uložit.\n"
|
||||
"Chybová zpráva: %1%.\n"
|
||||
"Zdrojový soubor %2%."
|
||||
|
||||
|
|
@ -2524,7 +2525,7 @@ msgstr ""
|
|||
"typ časosběru je tradiční."
|
||||
|
||||
msgid " But machines with I3 structure will not generate timelapse videos."
|
||||
msgstr " Ale stroje s I3 strukturou nevytvoří timelapse videa."
|
||||
msgstr " Ale stroje s I3 strukturou nevytvářejí časosběrná videa."
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
|
|
@ -2645,7 +2646,7 @@ msgid "Calibrating the micro lida"
|
|||
msgstr "Kalibrace mikro lida"
|
||||
|
||||
msgid "Calibrating extrusion flow"
|
||||
msgstr "Kalibrace extruze průtpku"
|
||||
msgstr "Kalibrace extruze průtoku"
|
||||
|
||||
msgid "Paused due to nozzle temperature malfunction"
|
||||
msgstr "Pozastaveno kvůli poruše teploty trysky"
|
||||
|
|
@ -3449,7 +3450,7 @@ msgid "Export current sliced file"
|
|||
msgstr "Exportovat aktuální Slicovaný soubor"
|
||||
|
||||
msgid "Export all plate sliced file"
|
||||
msgstr "Exportovat všechny soubor slicované na pdložce"
|
||||
msgstr "Exportovat všechny soubor slicované na podložce"
|
||||
|
||||
msgid "Export G-code"
|
||||
msgstr "Exportovat G-kód"
|
||||
|
|
@ -4132,7 +4133,7 @@ msgid " upload config prase failed\n"
|
|||
msgstr " nahrávání konfigurace se nepodařilo zpracovat\n"
|
||||
|
||||
msgid " No corresponding storage bucket\n"
|
||||
msgstr " Žádný odpovídající úložný bucket\n"
|
||||
msgstr " Žádný odpovídající úložný prostor\n"
|
||||
|
||||
msgid " can not be opened\n"
|
||||
msgstr " nelze otevřít\n"
|
||||
|
|
@ -4366,7 +4367,7 @@ msgid ""
|
|||
"The application cannot run normally because OpenGL version is lower than "
|
||||
"2.0.\n"
|
||||
msgstr ""
|
||||
"Aplikace nemůže běžet normálně, protože máte nižší verzi OpenGLnež 2.0.\n"
|
||||
"Aplikace nemůže běžet normálně, protože máte nižší verzi OpenGL než 2.0.\n"
|
||||
|
||||
msgid "Please upgrade your graphics card driver."
|
||||
msgstr "Prosím aktualizujte ovladač grafické karty."
|
||||
|
|
@ -4808,7 +4809,7 @@ msgid ""
|
|||
"The loaded file contains gcode only, Can not enter the Prepare page"
|
||||
msgstr ""
|
||||
"Režim pouze náhled:\n"
|
||||
"Načtený soubor obsahuje pouze gcode, nelze vstoupit na stránku Příprava"
|
||||
"Načtený soubor obsahuje pouze gkód, nelze vstoupit na stránku Příprava"
|
||||
|
||||
msgid "You can keep the modified presets to the new project or discard them"
|
||||
msgstr "Upravené předvolby si můžete ponechat pro nový projekt nebo je zahodit"
|
||||
|
|
@ -4914,7 +4915,7 @@ msgid "The following characters are not allowed by a FAT file system:"
|
|||
msgstr "Následující znaky nejsou v souborovém systému FAT povoleny:"
|
||||
|
||||
msgid "Save Sliced file as:"
|
||||
msgstr "Uložit Slicované soubor jako:"
|
||||
msgstr "Uložit Slicovaný soubor jako:"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
|
|
@ -4932,7 +4933,7 @@ msgstr ""
|
|||
"kladné části."
|
||||
|
||||
msgid "Is the printer ready? Is the print sheet in place, empty and clean?"
|
||||
msgstr "Je tiskarna připravená k tisku? Je podložka prázdná a čistá?"
|
||||
msgstr "Je tiskárna připravená k tisku? Je podložka prázdná a čistá?"
|
||||
|
||||
msgid "Upload and Print"
|
||||
msgstr "Nahrát a Tisknout"
|
||||
|
|
@ -6204,6 +6205,9 @@ msgstr "Časosběrný G-kód"
|
|||
msgid "Change filament G-code"
|
||||
msgstr "G-kód Změny filamentu"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr "Změnit G-kód pro úlohu extruze"
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "G-kód Pauzy"
|
||||
|
||||
|
|
@ -6226,7 +6230,7 @@ msgid "Jerk limitation"
|
|||
msgstr "Omezení Jerk-Ryv"
|
||||
|
||||
msgid "Single extruder multimaterial setup"
|
||||
msgstr "Nastavení multimaterialu s jedním extruderem"
|
||||
msgstr "Nastavení multimateriálu s jedním extruderem"
|
||||
|
||||
msgid "Wipe tower"
|
||||
msgstr "Čistící věž"
|
||||
|
|
@ -6558,7 +6562,7 @@ msgid "Login"
|
|||
msgstr "Přihlášení"
|
||||
|
||||
msgid "The configuration package is changed in previous Config Guide"
|
||||
msgstr "Konfigurační balíček byl změněn v předchozím Config Guide"
|
||||
msgstr "Konfigurační balíček byl změněn v předchozím průvodci konfigurací"
|
||||
|
||||
msgid "Configuration package changed"
|
||||
msgstr "Konfigurační balíček změněn"
|
||||
|
|
@ -8059,6 +8063,16 @@ msgstr "Konec G-kód po dokončení celého tisku"
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "Konec G-kód po dokončení tisku tohoto filamentu"
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "Zajistit tloušťku svislých stěn"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Přidá plnou výplň u šikmých ploch pro garanci tloušťky svislých stěn "
|
||||
"(vrchních a spodních plných vrstev)"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Vzor horního povrchu"
|
||||
|
||||
|
|
@ -8211,7 +8225,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Materiál může mít objemovou změnu po přepnutí mezi roztaveným a krystalickým "
|
||||
"stavem. Toto nastavení proporcionálně změní veškerý vytlačovací tok tohoto "
|
||||
"filamentu v gcode. Doporučený rozsah hodnot je mezi 0,95 a 1,05. Možná "
|
||||
"filamentu v gkódu. Doporučený rozsah hodnot je mezi 0,95 a 1,05. Možná "
|
||||
"můžete tuto hodnotu vyladit, abyste získali pěkně rovný povrch, když dochází "
|
||||
"k mírnému přetečení nebo podtečení"
|
||||
|
||||
|
|
@ -8313,7 +8327,7 @@ msgid ""
|
|||
"Filament diameter is used to calculate extrusion in gcode, so it's important "
|
||||
"and should be accurate"
|
||||
msgstr ""
|
||||
"Průměr filamentu se používá k výpočtu vytlačování v gcode, takže je důležitý "
|
||||
"Průměr filamentu se používá k výpočtu extruze v gkódu, takže je důležitý "
|
||||
"a měl by být přesný"
|
||||
|
||||
msgid "Shrinkage"
|
||||
|
|
@ -8327,7 +8341,7 @@ msgid ""
|
|||
"Be sure to allow enough space between objects, as this compensation is done "
|
||||
"after the checks."
|
||||
msgstr ""
|
||||
"Zadejte procento smrštění, které filament získá po ochlazení (94% pokud "
|
||||
"Zadejte procento smrštění, které filament získá po ochlazení (94% i pokud "
|
||||
"naměříte 94mm místo 100mm). Část bude pro kompenzaci zmenšena v xy. Bere se "
|
||||
"v úvahu pouze filamentu použit pro obvod.\n"
|
||||
"Ujistěte se aby byl mezi objekty dostatek prostoru, protože tato kompenzace "
|
||||
|
|
@ -8421,7 +8435,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Doba, po kterou firmware tiskárny (nebo jednotka Multi Material 2.0) zavádí "
|
||||
"nový filament během jeho výměny (při provádění kódu T). Tento čas je přidán "
|
||||
"k celkové době tisku pomocí G-code odhadovače tiskového času."
|
||||
"k celkové době tisku pomocí G-kódu odhadovače tiskového času."
|
||||
|
||||
msgid "Ramming parameters"
|
||||
msgstr "Parametry rapidní extruze"
|
||||
|
|
@ -8440,7 +8454,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Doba, po kterou firmware tiskárny (nebo jednotka Multi Material 2.0) vysouvá "
|
||||
"filament během jeho výměny (při provádění kódu T). Tento čas je přidán k "
|
||||
"celkové době tisku pomocí G-code odhadovače tiskového času."
|
||||
"celkové době tisku pomocí G-kódu odhadovače tiskového času."
|
||||
|
||||
msgid "Enable ramming for multitool setups"
|
||||
msgstr "Povolení rapidní extruze tiskárny s více nástroji"
|
||||
|
|
@ -9027,7 +9041,7 @@ msgid "G-code flavor"
|
|||
msgstr "Druh G-kódu"
|
||||
|
||||
msgid "What kind of gcode the printer is compatible with"
|
||||
msgstr "S jakým typem gcode je tiskárna kompatibilní"
|
||||
msgstr "S jakým typem gkódu je tiskárna kompatibilní"
|
||||
|
||||
msgid "Klipper"
|
||||
msgstr "Klipper"
|
||||
|
|
@ -9145,7 +9159,7 @@ msgid ""
|
|||
"layer height. Too high value results in overextrusion on the surface"
|
||||
msgstr ""
|
||||
"Množství materiálu, které se má vytlačit během žehlení. V poměru k průtoku "
|
||||
"normální výšky vrstvy. Příliš vysoká hodnota vede k nadměrnému vytlačování "
|
||||
"normální výšky vrstvy. Příliš vysoká hodnota vede k nadměrné extruzi "
|
||||
"na povrchu"
|
||||
|
||||
msgid "Ironing line spacing"
|
||||
|
|
@ -9171,7 +9185,7 @@ msgstr ""
|
|||
"použije výchozí metodu."
|
||||
|
||||
msgid "This gcode part is inserted at every layer change after lift z"
|
||||
msgstr "Tato část gcode je vložena při každé změně vrstvy po zvednutí z"
|
||||
msgstr "Tato část gkódu je vložena při každé změně vrstvy po zvednutí z"
|
||||
|
||||
msgid "Supports silent mode"
|
||||
msgstr "Podporuje tichý režim"
|
||||
|
|
@ -9188,7 +9202,7 @@ msgid ""
|
|||
"pause G-code in gcode viewer"
|
||||
msgstr ""
|
||||
"Tento G-kód bude použit jako kód pro pozastavený tisk. Uživatel může vložit "
|
||||
"pauzu G-kód do prohlížeče gcode"
|
||||
"pauzu G-kód do prohlížeče gkódu"
|
||||
|
||||
msgid "This G-code will be used as a custom code"
|
||||
msgstr "Tento G-kód bude použit jako vlastní kód"
|
||||
|
|
@ -9317,7 +9331,7 @@ msgstr ""
|
|||
"maximální výšky vrstvy při povolení adaptivní výšky vrstvy"
|
||||
|
||||
msgid "Extrusion rate smoothing"
|
||||
msgstr "Zjemňování extruze"
|
||||
msgstr "Vyhlazení rychlosti extruze"
|
||||
|
||||
msgid ""
|
||||
"This parameter smooths out sudden extrusion rate changes that happen when "
|
||||
|
|
@ -9347,32 +9361,30 @@ msgid ""
|
|||
"\n"
|
||||
"Note: this parameter disables arc fitting."
|
||||
msgstr ""
|
||||
"Tento parametr zjemňuje náhlé změny extruzního toku, ke kterým dochází při "
|
||||
"přechodu tiskárny z tisku s vysokým průtokem (vysokou rychlostí/větší "
|
||||
"šířkou) extruze na tisk s nižším průtokem (nižší rychlostí/menší šířkou) "
|
||||
"extruze a obráceně.\n"
|
||||
"Tato hodnota vyhlazuje náhlé změny extruzní rychlosti, které nastávají, když "
|
||||
"tiskárna přechází z extruze s vysokým průtokem (vysoká rychlost/větší šířka) "
|
||||
"na extruzi s nižším průtokem (nižší rychlost/menší šířka) a naopak.\n"
|
||||
"\n"
|
||||
"Definuje maximální rychlost, jakou se může objemový průtok extrudovaný v mm3/"
|
||||
"s měnit v čase. Vyšší hodnoty znamenají, že jsou povoleny vyšší změny "
|
||||
"Definuje maximální rychlost, kterou může objemový průtok extrudovaného materiálu "
|
||||
"v mm3/s měnit v čase. Vyšší hodnoty znamenají, že jsou povoleny větší změny "
|
||||
"extruzní rychlosti, což vede k rychlejším přechodům rychlosti.\n"
|
||||
"\n"
|
||||
"Hodnota 0 tuto funkci vypíná. \n"
|
||||
"Hodnota 0 funkci zakáže. \n"
|
||||
"\n"
|
||||
"Pro tiskárny s vysokou rychlostí a vysokým průtokem přímého pohonu (např. "
|
||||
"Bambu lab nebo Voron) tato hodnota obvykle není potřebná. Avšak v některých "
|
||||
"případech, kdy se rychlosti prvků velmi liší, může poskytnout marginální "
|
||||
"přínos. Například při agresivním zpomalení kvůli přesahům. V těchto "
|
||||
"případech se doporučuje vysoká hodnota kolem 300-350 mm3/s2, protože to "
|
||||
"umožní právě dostatečné zjemnění pro pomoc předstihu tlaku (PA) k dosažení "
|
||||
"plynulejšího přechodu průtoku.\n"
|
||||
"Pro tiskárny s přímým pohonem a vysokou rychlostí a průtokem (např. Bambu lab "
|
||||
"nebo Voron) tato hodnota obvykle není potřebná. Nicméně v některých případech, "
|
||||
"kde se rychlosti funkcí výrazně liší, může poskytnout marginální přínos. "
|
||||
"Například při agresivních zpomaleních způsobených přesahy. V těchto případech "
|
||||
"se doporučuje vysoká hodnota kolem 300-350 mm3/s2, protože to umožňuje dostatečné "
|
||||
"vyhlazení pro pomoc při dosažení plynulejšího přechodu tlaku při extruzi.\n"
|
||||
"\n"
|
||||
"Pro pomalejší tiskárny bez předstihu tlaku (PA) by měla být hodnota "
|
||||
"nastavena mnohem nižší. Pro extrudery s přímým pohonem je dobrým výchozím "
|
||||
"bodem hodnota 10-15 mm3/s2 a pro styl Bowden 5-10 mm3/s2. \n"
|
||||
"Pro pomalejší tiskárny bez tlakového předstihu by měla být hodnota nastavena "
|
||||
"mnohem nižší. Pro přímé pohony je hodnota 10-15 mm3/s2 dobrým výchozím bodem, "
|
||||
"a pro styl Bowden 5-10 mm3/s2. \n"
|
||||
"\n"
|
||||
"Tato funkce je známá jako Pressure Equalizer v Prusa slicer.\n"
|
||||
"Tato funkce je známa jako Pressure Equalizer v programu Prusa Slicer.\n"
|
||||
"\n"
|
||||
"Poznámka: Tento parametr vypíná arc fitting."
|
||||
"Poznámka: Tato hodnota zakazuje obloukové přizpůsobení."
|
||||
|
||||
msgid "mm³/s²"
|
||||
msgstr "mm³/s²"
|
||||
|
|
@ -9659,7 +9671,7 @@ msgid ""
|
|||
"resolution and more time to slice"
|
||||
msgstr ""
|
||||
"Cesta G-kódu se generuje po zjednodušení obrysu modelu, aby se předešlo "
|
||||
"příliš velkému počtu bodů a Linek gcode v souboru gcode. Menší hodnota "
|
||||
"příliš velkému počtu bodů a Linek gkódu v souboru gkód. Menší hodnota "
|
||||
"znamená vyšší rozlišení a více času na slicování"
|
||||
|
||||
msgid "Travel distance threshold"
|
||||
|
|
@ -9670,7 +9682,7 @@ msgid ""
|
|||
"threshold"
|
||||
msgstr ""
|
||||
"Spusťte retrakci pouze tehdy, když je dráha jízdy delší než tato hraniční "
|
||||
"hohnota"
|
||||
"hodnota"
|
||||
|
||||
msgid "Retract amount before wipe"
|
||||
msgstr "Délka retrakce před očištěním"
|
||||
|
|
@ -9827,7 +9839,7 @@ msgid "Random"
|
|||
msgstr "Náhodný"
|
||||
|
||||
msgid "Staggered inner seams"
|
||||
msgstr "Posunuté vnitřní švy"
|
||||
msgstr "Odstupňované vnitřní švy"
|
||||
|
||||
msgid ""
|
||||
"This option causes the inner seams to be shifted backwards based on their "
|
||||
|
|
@ -9858,9 +9870,9 @@ msgid ""
|
|||
"if a wipe action is executed immediately following an outer wall extrusion, "
|
||||
"the speed of the outer wall extrusion will be utilized for the wipe action."
|
||||
msgstr ""
|
||||
"Rychlost čištění je určena rychlostí aktuální role vytlačování, např. pokud "
|
||||
"je činnost čištění provedena bezprostředně po vytlačování vnější stěny, "
|
||||
"rychlost vytlačování vnější stěny bude využita pro činnost čištění."
|
||||
"Rychlost čištění je určena rychlostí aktuální role extruze, např. pokud "
|
||||
"je činnost čištění provedena bezprostředně po extruzi vnější stěny, "
|
||||
"rychlost extruze vnější stěny bude využita pro činnost čištění."
|
||||
|
||||
msgid "Wipe on loops"
|
||||
msgstr "Čistit na smyčce"
|
||||
|
|
@ -9869,7 +9881,7 @@ msgid ""
|
|||
"To minimize the visibility of the seam in a closed loop extrusion, a small "
|
||||
"inward movement is executed before the extruder leaves the loop."
|
||||
msgstr ""
|
||||
"Aby byla minimalizována viditelnost švu při vytlačování s uzavřenou smyčkou, "
|
||||
"Aby byla minimalizována viditelnost švu při extruzi s uzavřenou smyčkou, "
|
||||
"je proveden malý pohyb dovnitř předtím, než vytlačovací stroj opustí smyčku."
|
||||
|
||||
msgid "Wipe speed"
|
||||
|
|
@ -9915,7 +9927,7 @@ msgid ""
|
|||
"The printing speed in exported gcode will be slowed down, when the estimated "
|
||||
"layer time is shorter than this value, to get better cooling for these layers"
|
||||
msgstr ""
|
||||
"Rychlost tisku v exportovaném kódu gcode se zpomalí, když je odhadovaná doba "
|
||||
"Rychlost tisku v exportovaném kódu gkód se zpomalí, když je odhadovaná doba "
|
||||
"vrstvy kratší než tato hodnota, aby se dosáhlo lepšího chlazení pro tyto "
|
||||
"vrstvy"
|
||||
|
||||
|
|
@ -10079,7 +10091,7 @@ msgid ""
|
|||
"print bed, set this to -0.3 (or fix your endstop)."
|
||||
msgstr ""
|
||||
"Tato hodnota bude přidána (nebo odečtena) ze všech souřadnic Z ve výstupním "
|
||||
"G-code. Používá se ke kompenzování špatné pozice endstopu Z. Například pokud "
|
||||
"G-kódu. Používá se ke kompenzování špatné pozice endstopu Z. Například pokud "
|
||||
"endstop 0 skutečně ponechá trysku 0,3 mm daleko od tiskové podložky, "
|
||||
"nastavte hodnotu -0,3 (nebo dolaďte svůj koncový doraz)."
|
||||
|
||||
|
|
@ -10273,7 +10285,7 @@ msgstr ""
|
|||
"ušetří materiál a sníží poškození objektu.\n"
|
||||
"Pro stromovou podpěru, tenký a organický styl bude agresivněji slučovat "
|
||||
"větve a ušetří mnoho materiálu (výchozí organický), zatímco hybridní styl "
|
||||
"vytvoří podobnou strukturu jako běžná podpěra pod velkými plochými převiy."
|
||||
"vytvoří podobnou strukturu jako běžná podpěra pod velkými plochými převisy."
|
||||
|
||||
msgid "Snug"
|
||||
msgstr "Přiléhavý"
|
||||
|
|
@ -10380,7 +10392,7 @@ msgstr ""
|
|||
"automaticky vypočítány"
|
||||
|
||||
msgid "Tree support brim width"
|
||||
msgstr "Šířka Limce podpěr stromů"
|
||||
msgstr "Šířka Límce podpěr stromů"
|
||||
|
||||
msgid "Distance from tree branch to the outermost brim line"
|
||||
msgstr "Vzdálenost od větve stromu k nejvzdálenější linii Límce"
|
||||
|
|
@ -10396,7 +10408,7 @@ msgid "Tree support branch diameter"
|
|||
msgstr "Průměr větve podpěr stromů"
|
||||
|
||||
msgid "This setting determines the initial diameter of support nodes."
|
||||
msgstr "Toto nastavení určuje počáteční průměr uzlů poděry."
|
||||
msgstr "Toto nastavení určuje počáteční průměr uzlů podpěr."
|
||||
|
||||
#. TRN PrintSettings: #lmFIXME
|
||||
msgid "Branch Diameter Angle"
|
||||
|
|
@ -10491,9 +10503,12 @@ msgid ""
|
|||
"This gcode is inserted when change filament, including T command to trigger "
|
||||
"tool change"
|
||||
msgstr ""
|
||||
"Tento gcode se vloží při výměně filamentu, včetně příkazu T ke spuštění "
|
||||
"Tento gkód se vloží při výměně filamentu, včetně příkazu T ke spuštění "
|
||||
"výměny nástroje"
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr "Tento G-kód je vložen při změně role extruze"
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10545,7 +10560,7 @@ msgid ""
|
|||
"Move nozzle along the last extrusion path when retracting to clean leaked "
|
||||
"material on nozzle. This can minimize blob when print new part after travel"
|
||||
msgstr ""
|
||||
"Při zasouvání přesuňte trysku podél poslední dráhy vytlačování, abyste "
|
||||
"Při retrakci přesuňte trysku podél poslední dráhy extruze, abyste "
|
||||
"vyčistili uniklý materiál na trysce. To může minimalizovat skvrny při tisku "
|
||||
"nového dílu po cestě"
|
||||
|
||||
|
|
@ -10762,9 +10777,9 @@ msgid ""
|
|||
"Wipe tower is only compatible with relative mode. It is always enabled on "
|
||||
"BambuLab printers. Default is checked"
|
||||
msgstr ""
|
||||
"Při použití volby \"label_objects\" se doporučuje relativní vytlačování. "
|
||||
"Při použití volby \"label_objects\" se doporučuje relativní extruzi. "
|
||||
"Některé extrudery fungují lépe, když je tato možnost odškrtnuta (režim "
|
||||
"absolutního vytlačování). Čistící věž je kompatibilní pouze s relativním "
|
||||
"absolutní extruze). Čistící věž je kompatibilní pouze s relativním "
|
||||
"režimem. Na tiskárnách BambuLab je vždy povolen. Výchozí je zaškrtnuto"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -10795,7 +10810,7 @@ msgstr ""
|
|||
"Vyjadřuje se jako procento průměru trysky"
|
||||
|
||||
msgid "Wall transitioning filter margin"
|
||||
msgstr "Okraj filtru přechodu stěny"
|
||||
msgstr "Filtr přechodového rozpětí stěny"
|
||||
|
||||
msgid ""
|
||||
"Prevent transitioning back and forth between one extra wall and one less. "
|
||||
|
|
@ -10830,7 +10845,7 @@ msgstr ""
|
|||
"mezery nebo přečnívat"
|
||||
|
||||
msgid "Wall distribution count"
|
||||
msgstr "Počet rozložení stěn"
|
||||
msgstr "Počet ovlivněných stěn"
|
||||
|
||||
msgid ""
|
||||
"The number of walls, counted from the center, over which the variation needs "
|
||||
|
|
@ -10879,6 +10894,18 @@ msgstr ""
|
|||
"stejně tlustá jako prvek samotný. Vyjadřuje se jako procento nad průměr "
|
||||
"trysky"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Detekovat úzkou vnitřní plnou výplň"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"Tato možnost automaticky rozpozná úzkou vnitřní plnou výplňovou oblast. Je-"
|
||||
"li povolena, bude pro oblast použit soustředný vzor, aby se urychlil tisk. V "
|
||||
"opačném případě se ve výchozím nastavení použije přímočarý vzor."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "neplatná hodnota "
|
||||
|
||||
|
|
@ -10935,7 +10962,7 @@ msgid "Update the configs values of 3mf to latest."
|
|||
msgstr "Aktualizujte konfigurační hodnoty 3mf na nejnovější."
|
||||
|
||||
msgid "Load default filaments"
|
||||
msgstr "Načíst výchozí filameny"
|
||||
msgstr "Načíst výchozí filamenty"
|
||||
|
||||
msgid "Load first filament as default for those not loaded"
|
||||
msgstr "Načíst první filament jako výchozí pro ty, které nebyly načteny"
|
||||
|
|
@ -11377,7 +11404,7 @@ msgid ""
|
|||
"3. If the max volumetric speed or print temperature is changed in the "
|
||||
"filament setting."
|
||||
msgstr ""
|
||||
"Nyní jsme přidali automatickou kalibraci pro různé filameny, která je plně "
|
||||
"Nyní jsme přidali automatickou kalibraci pro různé filamenty, která je plně "
|
||||
"automatizovaná a výsledek bude uložen do tiskárny pro budoucí použití. "
|
||||
"Kalibraci musíte provést pouze v následujících omezených případech:\n"
|
||||
"1. Pokud použijete nový filament jiné značky/modelu nebo je filament vlhký;\n"
|
||||
|
|
@ -11725,7 +11752,7 @@ msgid "Success to get history result"
|
|||
msgstr "Úspěšně načtený historický výsledek kalibrace dynamiky průtoku"
|
||||
|
||||
msgid "Refreshing the historical Flow Dynamics Calibration records"
|
||||
msgstr "Aktualizace historických záznamů kalibrace dynamiky průtpku probíhá"
|
||||
msgstr "Aktualizace historických záznamů kalibrace dynamiky průtoku probíhá"
|
||||
|
||||
msgid "Action"
|
||||
msgstr "Akce"
|
||||
|
|
@ -11746,7 +11773,7 @@ msgid "Service name"
|
|||
msgstr "Název služby"
|
||||
|
||||
msgid "OctoPrint version"
|
||||
msgstr "Service name"
|
||||
msgstr "Verze OctoPrintu"
|
||||
|
||||
msgid "Searching for devices"
|
||||
msgstr "Vyhledávání zařízení"
|
||||
|
|
@ -12346,6 +12373,16 @@ msgstr ""
|
|||
"při tisku filamentu s nižší teplotou a vyšší teplotě uzavřeného prostoru. "
|
||||
"Další informace naleznete ve Wiki."
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Vloženo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
|
||||
#~ "parsed.Please delete the file and try again."
|
||||
#~ msgstr ""
|
||||
#~ "Konfigurační soubor OrcaSlicer může být poškozen a nelze jej analyzovat."
|
||||
#~ "Smažte soubor a zkuste to znovu."
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Online modely"
|
||||
|
||||
|
|
@ -12396,16 +12433,6 @@ msgstr ""
|
|||
#~ "Teplota podložky překračuje teplotu vitrifikace filamentu. Prosím. Před "
|
||||
#~ "tiskem otevřete přední dvířka tiskárny, aby nedošlo k ucpání trysky."
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "Zajistit tloušťku svislých stěn"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Přidá plnou výplň u šikmých ploch pro garanci tloušťky svislých stěn "
|
||||
#~ "(vrchních a spodních plných vrstev)"
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "Teplota vitrifikace"
|
||||
|
||||
|
|
@ -12436,18 +12463,6 @@ msgstr ""
|
|||
#~ "touto rychlostí během tisku kromě prvních několika vrstev, které nejsou "
|
||||
#~ "definovány žádnými chladicími vrstvami"
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Detekovat úzkou vnitřní plnou výplň"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "Tato možnost automaticky rozpozná úzkou vnitřní plnou výplňovou oblast. "
|
||||
#~ "Je-li povolena, bude pro oblast použit soustředný vzor, aby se urychlil "
|
||||
#~ "tisk. V opačném případě se ve výchozím nastavení použije přímočarý vzor."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Filter out gaps smaller than the threshold specified. This setting won't "
|
||||
#~ "affect top/bottom layers"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 11:25+0100\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -148,7 +148,7 @@ msgid "Bucket fill"
|
|||
msgstr "Flächenfüllung"
|
||||
|
||||
msgid "Height range"
|
||||
msgstr "Höhenreichweite"
|
||||
msgstr "Höhenbereich"
|
||||
|
||||
msgid "Ctrl + Shift + Enter"
|
||||
msgstr "Strg + Umschalt + Eingabetaste"
|
||||
|
|
@ -163,7 +163,7 @@ msgid "Triangle"
|
|||
msgstr "Dreieck"
|
||||
|
||||
msgid "Height Range"
|
||||
msgstr "Höhenreichweite"
|
||||
msgstr "Höhenbereich"
|
||||
|
||||
msgid "Vertical"
|
||||
msgstr "Vertikal"
|
||||
|
|
@ -494,27 +494,12 @@ msgstr "Naht aufmalen"
|
|||
msgid "Remove selection"
|
||||
msgstr "Auswahl entfernen"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Umschalttaste + Mausbewegung nach oben oder unten"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Text drehen"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Text zufügen"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Schiftart"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Dicke"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Text eingeben"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Eingebettet"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Textabstand"
|
||||
|
||||
|
|
@ -528,12 +513,24 @@ msgstr ""
|
|||
"Eingebettete\n"
|
||||
"Tiefe"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Text eingeben"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Oberfläche"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Horizontaler Text"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Umschalttaste + Mausbewegung nach oben oder unten"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Text drehen"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Text zufügen"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Strg +"
|
||||
|
||||
|
|
@ -627,14 +624,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr "WebView2-Runtime"
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
"Die OrcaSlicer-Konfigurationsdatei ist möglicherweise beschädigt und kann "
|
||||
"nicht geladen werden. Bitte löschen Sie die Datei und versuchen Sie es "
|
||||
"erneut."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -664,6 +653,18 @@ msgstr "Dies ist die neueste Version."
|
|||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
"Die OrcaSlicer-Konfigurationsdatei ist möglicherweise beschädigt und kann "
|
||||
"nicht analysiert werden.\n"
|
||||
"OrcaSlicer hat versucht, die Konfigurationsdatei neu zu erstellen.\n"
|
||||
"Bitte beachten Sie, dass die Anwendungseinstellungen verloren gehen, die "
|
||||
"Druckerprofile jedoch nicht betroffen sind."
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Wiederaufbau"
|
||||
|
||||
|
|
@ -3222,7 +3223,7 @@ msgstr "Volumen:"
|
|||
msgid "Size:"
|
||||
msgstr "Größe:"
|
||||
|
||||
#, c-format, boost-format
|
||||
#, boost-format
|
||||
msgid ""
|
||||
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
|
||||
"separate the conflicted objects farther (%s <-> %s)."
|
||||
|
|
@ -6063,13 +6064,13 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Wenn Sie einen Zeitraffer ohne Werkzeugkopf aufnehmen, wird empfohlen, einen "
|
||||
"\"Timelapse Wischturm\" hinzuzufügen, indem Sie mit der rechten Maustaste "
|
||||
"auf die leere Position der Bauplatte klicken und \"Primitiv hinzufügen\"->"
|
||||
"\"Timelapse Wischturm\" wählen."
|
||||
"auf die leere Position der Bauplatte klicken und \"Primitiv hinzufügen\"-"
|
||||
">\"Timelapse Wischturm\" wählen."
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Breite der Linie"
|
||||
|
|
@ -6352,6 +6353,9 @@ msgstr "Zeitraffer G-Code"
|
|||
msgid "Change filament G-code"
|
||||
msgstr "Filamentwechsel G-Code"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr "Ändere den G-Code der Extrusionsart"
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "Pausen G-Code"
|
||||
|
||||
|
|
@ -8267,6 +8271,16 @@ msgstr "End G-Code nach dem fertigstellen des Drucks hinzufügen."
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "End-G-Code hinzufügen, wenn der Druck dieses Filaments beenden ist."
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "Sicherstellung der vertikalen Wanddicke"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"In der Nähe von schrägen Flächen massive Füllungen hinzufügen, um die "
|
||||
"vertikale Wanddicke zu gewährleisten (obere + untere massive Schichten)."
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Muster der Oberfläche"
|
||||
|
||||
|
|
@ -9017,13 +9031,13 @@ msgstr "Volle Lüfterdrehzahl ab Schicht"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Die Lüftergeschwindigkeit wird linear von Null bei der Schicht"
|
||||
"\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
|
||||
"Die Lüftergeschwindigkeit wird linear von Null bei der "
|
||||
"Schicht\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
|
||||
"\"full_fan_speed_layer\" erhöht. \"full_fan_speed_layer\" wird ignoriert, "
|
||||
"wenn es niedriger ist als \"close_fan_the_first_x_layers\",in diesem Fall "
|
||||
"läuft der Lüfter bei Schicht \"close_fan_the_first_x_layers\"+ 1 mit maximal "
|
||||
|
|
@ -10794,6 +10808,9 @@ msgstr ""
|
|||
"Dieser G-Code wird beim Filamentwechsel eingefügt, einschließlich des T-"
|
||||
"Befehls zum Auslösen des Werkzeugwechsels"
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr "Dieser G-Code wird beim Wechsel der Extrusionsart eingefügt"
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -11194,6 +11211,19 @@ msgstr ""
|
|||
"Dicke des Features, wird die Wand so dick wie das Feature selbst. Wird als "
|
||||
"Prozentsatz des Düsendurchmessers angegeben."
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Erkennen einer schmalen internen soliden Füllung"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"Mit dieser Option wird ein schmaler innerer Füllbereich automatisch erkannt. "
|
||||
"Wenn diese Option aktiviert ist, wird ein konzentrisches Muster für den "
|
||||
"Bereich verwendet, um den Druck zu beschleunigen. Andernfalls wird "
|
||||
"standardmäßig ein geradliniges Muster verwendet."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "Ungültiger Wert"
|
||||
|
||||
|
|
@ -12700,6 +12730,17 @@ msgstr ""
|
|||
"höherer Gehäusetemperatur verringern. Weitere Informationen dazu finden Sie "
|
||||
"in der Wiki."
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Eingebettet"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
|
||||
#~ "parsed.Please delete the file and try again."
|
||||
#~ msgstr ""
|
||||
#~ "Die OrcaSlicer-Konfigurationsdatei ist möglicherweise beschädigt und kann "
|
||||
#~ "nicht geladen werden. Bitte löschen Sie die Datei und versuchen Sie es "
|
||||
#~ "erneut."
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Online-Modelle"
|
||||
|
||||
|
|
@ -12757,16 +12798,6 @@ msgstr ""
|
|||
#~ msgid "Activate for better air filtration"
|
||||
#~ msgstr "Aktivieren Sie die Luftfilterung für eine bessere Luftfiltration"
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "Sicherstellung der vertikalen Wanddicke"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "In der Nähe von schrägen Flächen massive Füllungen hinzufügen, um die "
|
||||
#~ "vertikale Wanddicke zu gewährleisten (obere + untere massive Schichten)."
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "Verglasungstemperatur"
|
||||
|
||||
|
|
@ -12802,19 +12833,6 @@ msgstr ""
|
|||
#~ "läuft während des Drucks mit dieser Geschwindigkeit, mit Ausnahme der "
|
||||
#~ "ersten Schichten, für die keine Kühlung vorgesehen ist."
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Erkennen einer schmalen internen soliden Füllung"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "Mit dieser Option wird ein schmaler innerer Füllbereich automatisch "
|
||||
#~ "erkannt. Wenn diese Option aktiviert ist, wird ein konzentrisches Muster "
|
||||
#~ "für den Bereich verwendet, um den Druck zu beschleunigen. Andernfalls "
|
||||
#~ "wird standardmäßig ein geradliniges Muster verwendet."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Filter out gaps smaller than the threshold specified. This setting won't "
|
||||
#~ "affect top/bottom layers"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
|
||||
"X-Generator: Poedit 3.3.2\n"
|
||||
"X-Generator: Poedit 3.4.1\n"
|
||||
|
||||
msgid "Supports Painting"
|
||||
msgstr "Support Painting"
|
||||
|
|
@ -491,27 +491,12 @@ msgstr "Seam painting"
|
|||
msgid "Remove selection"
|
||||
msgstr "Remove selection"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Mouse move up or dowm"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotate text"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Text shape"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Font"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Thickness"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Input text"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Embedded"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Text Gap"
|
||||
|
||||
|
|
@ -523,12 +508,24 @@ msgid ""
|
|||
"depth"
|
||||
msgstr "Embedded depth"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Input text"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Surface"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Horizontal text"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Mouse move up or dowm"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotate text"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Text shape"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -612,11 +609,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -644,6 +636,13 @@ msgstr "This is the newest version."
|
|||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Rebuild"
|
||||
|
||||
|
|
@ -4081,7 +4080,7 @@ msgid "Upload failed\n"
|
|||
msgstr ""
|
||||
|
||||
msgid "obtaining instance_id failed\n"
|
||||
msgstr ""
|
||||
msgstr "Obtaining instance_id failed\n"
|
||||
|
||||
msgid ""
|
||||
"Your comment result cannot be uploaded due to some reasons. As follows:\n"
|
||||
|
|
@ -4661,7 +4660,7 @@ msgid "Please select a file"
|
|||
msgstr "Please select a file"
|
||||
|
||||
msgid "Do you want to replace it"
|
||||
msgstr ""
|
||||
msgstr "Do you want to replace it?"
|
||||
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
|
@ -5810,13 +5809,13 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
|
||||
msgid "Line width"
|
||||
msgstr "Line width"
|
||||
|
|
@ -6088,6 +6087,9 @@ msgstr ""
|
|||
msgid "Change filament G-code"
|
||||
msgstr "Change filament G-code"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "Pause G-code"
|
||||
|
||||
|
|
@ -7882,6 +7884,16 @@ msgstr "Add end G-Code when finishing the entire print."
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "Add end G-code when finishing the printing of this filament."
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "Ensure vertical shell thickness"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)."
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Top surface pattern"
|
||||
|
||||
|
|
@ -8531,10 +8543,10 @@ msgstr "Full fan speed at layer"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
|
||||
msgid "Support interface fan speed"
|
||||
|
|
@ -9704,21 +9716,21 @@ msgid ""
|
|||
"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(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)"
|
||||
msgstr "Normal(auto)"
|
||||
|
||||
msgid "tree(auto)"
|
||||
msgstr "tree(auto)"
|
||||
msgstr "Tree(auto)"
|
||||
|
||||
msgid "normal(manual)"
|
||||
msgstr "normal(manual)"
|
||||
msgstr "Normal(manual)"
|
||||
|
||||
msgid "tree(manual)"
|
||||
msgstr "tree(manual)"
|
||||
msgstr "Tree(manual)"
|
||||
|
||||
msgid "Support/object xy distance"
|
||||
msgstr "Support/object xy distance"
|
||||
|
|
@ -10072,6 +10084,9 @@ msgstr ""
|
|||
"This G-code is inserted when filament is changed, including T commands to "
|
||||
"trigger tool change."
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10432,6 +10447,18 @@ msgstr ""
|
|||
"thickness of the feature, the wall will become as thick as the feature "
|
||||
"itself. It's expressed as a percentage over nozzle diameter"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Detect narrow internal solid infill"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"This option will auto-detect narrow internal solid infill areas. If enabled, "
|
||||
"the concentric pattern will be used for the area to speed up printing. "
|
||||
"Otherwise, the rectilinear pattern will be used by default."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "invalid value "
|
||||
|
||||
|
|
@ -11691,6 +11718,9 @@ msgid ""
|
|||
"temperature. More info about this in the Wiki."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Embedded"
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Online Models"
|
||||
|
||||
|
|
@ -11707,16 +11737,6 @@ msgstr ""
|
|||
#~ "The bed temperature exceeds filament's vitrification temperature. Please "
|
||||
#~ "open the front door of printer before printing to avoid nozzle clogs."
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "Ensure vertical shell thickness"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)."
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "Temperature of vitrification"
|
||||
|
||||
|
|
@ -11739,18 +11759,6 @@ msgstr ""
|
|||
#~ "run at this speed during printing except for during the first several "
|
||||
#~ "layers which may be set to have no part cooling."
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Detect narrow internal solid infill"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "This option will auto-detect narrow internal solid infill areas. If "
|
||||
#~ "enabled, the concentric pattern will be used for the area to speed up "
|
||||
#~ "printing. Otherwise, the rectilinear pattern will be used by default."
|
||||
|
||||
#~ msgid "Empty layers around bottom are replaced by nearest normal layers."
|
||||
#~ msgstr "Empty layers around bottom are replaced by nearest normal layers."
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Carlos Fco. Caruncho Serrano <puzzlero@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -254,7 +254,7 @@ msgid "%"
|
|||
msgstr "%"
|
||||
|
||||
msgid "uniform scale"
|
||||
msgstr "escala uniforme"
|
||||
msgstr "Escala uniforme"
|
||||
|
||||
msgid "Left click"
|
||||
msgstr "Click izquierdo"
|
||||
|
|
@ -494,27 +494,12 @@ msgstr "Pintar costura"
|
|||
msgid "Remove selection"
|
||||
msgstr "Borrar selección"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Mover ratón arriba u abajo"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotar texto"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Forma de texto"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Fuente"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Grosor"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Texto de entrada"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Integrado"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Espacio de texto"
|
||||
|
||||
|
|
@ -528,12 +513,24 @@ msgstr ""
|
|||
"Profundidad\n"
|
||||
"Integrada"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Texto de entrada"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Superficie"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Texto horizontal"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Mover ratón arriba u abajo"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotar texto"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Forma de texto"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -634,22 +631,13 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr "Tiempo de ejecución de WebView2"
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
"El archivo de configuración de OrcaSlicer puede estar dañado y no puede ser "
|
||||
"procesado. Por favor borre el archivo e inténtelo otra vez."
|
||||
|
||||
# msgid "OrcaSlicer configuration file may be corrupted and is not abled to be parsed.Please delete the file and try again."
|
||||
# msgstr "Es posible que el archivo de configuración de OrcaSlicer esté dañado y no pueda ser procesado. Por favor, borre el archivo e inténtelo de nuevo."
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
"Do you want to continue?"
|
||||
msgstr ""
|
||||
"%s\n"
|
||||
"¿Quiere continuar?"
|
||||
"¿Quieres continuar?"
|
||||
|
||||
msgid "Remember my choice"
|
||||
msgstr "Recordar mi selección"
|
||||
|
|
@ -671,6 +659,18 @@ msgstr "Esta es la versión más reciente."
|
|||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
"El archivo de configuración de OrcaSlicer puede estar dañado y no puede ser "
|
||||
"analizado.\n"
|
||||
"OrcaSlicer ha intentado recrear el archivo de configuración.\n"
|
||||
"Tenga en cuenta que se perderán los ajustes de la aplicación, pero los "
|
||||
"perfiles de impresora no se verán afectados."
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Reconstruir"
|
||||
|
||||
|
|
@ -842,10 +842,10 @@ msgid "Add modifier"
|
|||
msgstr "Añadir modificador"
|
||||
|
||||
msgid "Add support blocker"
|
||||
msgstr "Añadir bloqueo soportes"
|
||||
msgstr "Añadir bloqueo de soportes"
|
||||
|
||||
msgid "Add support enforcer"
|
||||
msgstr "Añadir forzado de soportes"
|
||||
msgstr "Añadir refuerzo de soportes"
|
||||
|
||||
msgid "Select settings"
|
||||
msgstr "Seleccione los ajustes"
|
||||
|
|
@ -905,10 +905,10 @@ msgid "Set as individual objects"
|
|||
msgstr "Ajustar como objetos individuales"
|
||||
|
||||
msgid "Fill bed with copies"
|
||||
msgstr "Fill bed with copies"
|
||||
msgstr "Llenar la cama de copias"
|
||||
|
||||
msgid "Fill the remaining area of bed with copies of the selected object"
|
||||
msgstr "Fill the remaining area of bed with copies of the selected object"
|
||||
msgstr "Llena el resto del área de la cama con copias del objeto seleccionado"
|
||||
|
||||
msgid "Printable"
|
||||
msgstr "Imprimible"
|
||||
|
|
@ -966,7 +966,7 @@ msgid "Flush into objects' support"
|
|||
msgstr "Purgar en los soportes de objetos"
|
||||
|
||||
msgid "Edit in Parameter Table"
|
||||
msgstr "Editar en la Tabla de Parámetro"
|
||||
msgstr "Editar en la Tabla de Parámetros"
|
||||
|
||||
msgid "Convert from inch"
|
||||
msgstr "Convertir desde pulgadas"
|
||||
|
|
@ -4816,7 +4816,7 @@ msgid "Please select a file"
|
|||
msgstr "Por favor, seleccione un archivo"
|
||||
|
||||
msgid "Do you want to replace it"
|
||||
msgstr "¿Quiere reemplazarlo?"
|
||||
msgstr "¿Desea reemplazarlo?"
|
||||
|
||||
msgid "Message"
|
||||
msgstr "Mensaje"
|
||||
|
|
@ -5146,13 +5146,13 @@ msgid "Units"
|
|||
msgstr "Unidades"
|
||||
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
msgstr "Página de Inicio"
|
||||
|
||||
msgid "Default Page"
|
||||
msgstr ""
|
||||
msgstr "Página por defecto"
|
||||
|
||||
msgid "Set the page opened on startup."
|
||||
msgstr ""
|
||||
msgstr "Establece la página que se abre al inicio."
|
||||
|
||||
msgid "Zoom to mouse position"
|
||||
msgstr "Hacer zoom en la posición del ratón"
|
||||
|
|
@ -5169,14 +5169,14 @@ msgstr "Usar cámara libre"
|
|||
|
||||
msgid "If enabled, use free camera. If not enabled, use constrained camera."
|
||||
msgstr ""
|
||||
"Si está activada, usa la cámara libre. Si no está activada, usa la cámara "
|
||||
"restringida"
|
||||
"Si está activada, utiliza la cámara libre. Si no está activada, utiliza la "
|
||||
"cámara restringida."
|
||||
|
||||
msgid "Show splash screen"
|
||||
msgstr ""
|
||||
msgstr "Mostrar pantalla de inicio"
|
||||
|
||||
msgid "Show the splash screen during startup."
|
||||
msgstr ""
|
||||
msgstr "Muestra la página de bienvenida al iniciar."
|
||||
|
||||
msgid "Show \"Tip of the day\" notification after start"
|
||||
msgstr "Mostrar la notificación \"Consejo del Día\" después de empezar"
|
||||
|
|
@ -6010,8 +6010,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Cuando grabamos timelapse sin cabezal de impresión, es recomendable añadir "
|
||||
"un \"Torre de Purga de Intervalo\" \n"
|
||||
|
|
@ -6300,6 +6300,9 @@ msgstr "Timelapse G-code"
|
|||
msgid "Change filament G-code"
|
||||
msgstr "G-Code para el cambio de filamento"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr "Cambiar el rol de extrusión Código G"
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "G-Code de pausa"
|
||||
|
||||
|
|
@ -8205,6 +8208,16 @@ msgstr "Finalizar el G-Code cuando termine la impresión completa"
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "Terminar el G-Code cuando se termine de imprimir este filamento"
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "Detección de paredes delgadas"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Añadir relleno sólido al lado de capas inclinadas para garantizar el grosor "
|
||||
"de carcasa vertical (capas sólidas superior+inferior)"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Patrón de relleno superior"
|
||||
|
||||
|
|
@ -8954,10 +8967,10 @@ msgstr "Velocidad máxima del ventilador en la capa"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"La velocidad de ventilador se incrementará linealmente de cero a "
|
||||
"\"close_fan_the_first_x_layers\" al máximo de capa \"full_fan_speed_layer\". "
|
||||
|
|
@ -9178,14 +9191,14 @@ msgstr ""
|
|||
"Ajústelo a 0 para desactivarlo."
|
||||
|
||||
msgid "Time cost"
|
||||
msgstr "Coste dinerario por hora"
|
||||
|
||||
msgid "The printer cost per hour"
|
||||
msgstr ""
|
||||
"La cantidad de dinero que cuesta la impresión que vamos a realizar por hora. "
|
||||
"Podemos calcular el coste dependiendo de la potencia de la impresora, el "
|
||||
"coste del filamento, etc."
|
||||
|
||||
msgid "The printer cost per hour"
|
||||
msgstr "Coste por hora de la impresión"
|
||||
|
||||
msgid "money/h"
|
||||
msgstr "dinero/hora"
|
||||
|
||||
|
|
@ -10732,8 +10745,11 @@ msgid ""
|
|||
"This gcode is inserted when change filament, including T command to trigger "
|
||||
"tool change"
|
||||
msgstr ""
|
||||
"Este G-Code se inserta cuando se cambia de filamento, incluyendo el comando "
|
||||
"T para activar el cambio de herramienta"
|
||||
"Este gcode se inserta al cambiar de filamento, incluyendo el comando T para "
|
||||
"activar el cambio de herramienta"
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr "Este gcode se inserta cuando se cambia el rol de extrusión"
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
|
|
@ -11135,6 +11151,19 @@ msgstr ""
|
|||
"propia característica. Se expresa en porcentaje sobre el diámetro de la "
|
||||
"boquilla"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Detección de pequeños rellenos sólidos"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"Esta opción detectará automáticamente el área de relleno sólido interno "
|
||||
"estrecho. Si se activa, se utilizará un patrón concéntrico para el área para "
|
||||
"acelerar la impresión. De lo contrario, se utilizará por defecto un patrón "
|
||||
"rectilíneo."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "valor inválido "
|
||||
|
||||
|
|
@ -11678,12 +11707,12 @@ msgstr ""
|
|||
"wiki.\n"
|
||||
"\n"
|
||||
"Normalmente la calibración es innecesaria. Cuando se inicia una impresión de "
|
||||
"un solo color/material, con la opción \"Calibración de la dinámica de caudal"
|
||||
"\" marcada en el menú de inicio de impresión, la impresora seguirá el método "
|
||||
"antiguo, calibrar el filamento antes de la impresión; Cuando se inicia una "
|
||||
"impresión de varios colores/materiales, la impresora utilizará el parámetro "
|
||||
"de compensación por defecto para el filamento durante cada cambio de "
|
||||
"filamento que tendrá un buen resultado en la mayoría de los casos.\n"
|
||||
"un solo color/material, con la opción \"Calibración de la dinámica de "
|
||||
"caudal\" marcada en el menú de inicio de impresión, la impresora seguirá el "
|
||||
"método antiguo, calibrar el filamento antes de la impresión; Cuando se "
|
||||
"inicia una impresión de varios colores/materiales, la impresora utilizará el "
|
||||
"parámetro de compensación por defecto para el filamento durante cada cambio "
|
||||
"de filamento que tendrá un buen resultado en la mayoría de los casos.\n"
|
||||
"\n"
|
||||
"Tenga en cuenta que hay algunos casos en los que el resultado de la "
|
||||
"calibración no es fiable: el uso de una placa de textura para hacer la "
|
||||
|
|
@ -12635,6 +12664,20 @@ msgstr ""
|
|||
"extrusor/hotend al imprimir filamento de baja temperatura con una "
|
||||
"temperatura de carcasa más alta. Más información sobre esto en la Wiki."
|
||||
|
||||
#~ msgid "The minimum printing speed when slow down for cooling"
|
||||
#~ msgstr ""
|
||||
#~ "La velocidad mínima de impresión cuando se ralentiza para el refrigeración"
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Integrado"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
|
||||
#~ "parsed.Please delete the file and try again."
|
||||
#~ msgstr ""
|
||||
#~ "El archivo de configuración de OrcaSlicer puede estar dañado y no puede "
|
||||
#~ "ser procesado. Por favor borre el archivo e inténtelo otra vez."
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Modelos En Línea"
|
||||
|
||||
|
|
@ -12691,10 +12734,6 @@ msgstr ""
|
|||
#~ msgstr ""
|
||||
#~ "Paso 1: confirme que Bambu Studio y su impresora estén en la misma LAN."
|
||||
|
||||
#~ msgid "The minimum printing speed when slow down for cooling"
|
||||
#~ msgstr ""
|
||||
#~ "La velocidad mínima de impresión cuando se ralentiza para el refrigeración"
|
||||
|
||||
#~ msgid "Empty layers around bottom are replaced by nearest normal layers."
|
||||
#~ msgstr ""
|
||||
#~ "Las capas vacías del fondo se sustituyen por las capas normales más "
|
||||
|
|
@ -12725,16 +12764,6 @@ msgstr ""
|
|||
#~ "filamento. Por favor, abra la puerta frontal de la impresora antes de "
|
||||
#~ "imprimir para evitar atascos en la boquilla."
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "Detección de paredes delgadas"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Añadir relleno sólido al lado de capas inclinadas para garantizar el "
|
||||
#~ "grosor de carcasa vertical (capas sólidas superior+inferior)"
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "Temperatura de vitrificación"
|
||||
|
||||
|
|
@ -12759,19 +12788,6 @@ msgstr ""
|
|||
#~ "funcionará a esta velocidad durante la impresión, excepto en las primeras "
|
||||
#~ "capas, que se define por la ausencia de capas de refrigeración"
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Detección de pequeños rellenos sólidos"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "Esta opción detectará automáticamente el área de relleno sólido interno "
|
||||
#~ "estrecho. Si se activa, se utilizará un patrón concéntrico para el área "
|
||||
#~ "para acelerar la impresión. De lo contrario, se utilizará por defecto un "
|
||||
#~ "patrón rectilíneo."
|
||||
|
||||
#~ msgid "Cali"
|
||||
#~ msgstr "Cali"
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Guislain Cyril\n"
|
||||
|
|
@ -498,27 +498,12 @@ msgstr "Peindre la couture"
|
|||
msgid "Remove selection"
|
||||
msgstr "Supprimer la sélection"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Déplacement de la souris vers le haut ou le bas"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotation du texte"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Forme du texte"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Police"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Épaisseur"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Texte"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Intégré"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Espacement du texte"
|
||||
|
||||
|
|
@ -532,12 +517,24 @@ msgstr ""
|
|||
"Profondeur\n"
|
||||
"intégrée"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Texte"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Surface"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Texte horizontal"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Déplacement de la souris vers le haut ou le bas"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotation du texte"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Forme du texte"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -633,13 +630,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
"Le fichier de configuration de Orca Slicer est peut-être corrompu et ne peut "
|
||||
"pas être analysé. Veuillez supprimer le fichier et réessayer."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -667,6 +657,13 @@ msgstr "Il s'agit de la version la plus récente."
|
|||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Reconstruire"
|
||||
|
||||
|
|
@ -6312,6 +6309,9 @@ msgstr "G-code de Time lapse"
|
|||
msgid "Change filament G-code"
|
||||
msgstr "G-code de changement de filament"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "G-code de mise en pause"
|
||||
|
||||
|
|
@ -8187,6 +8187,16 @@ msgstr "G-code lorsque l'ensemble de l'impression est terminée"
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "G-code lorsque l'impression de ce filament est terminée"
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "Veiller à l'épaisseur verticale de la coque"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Ajouter un remplissage solide près des surfaces en pente pour garantir "
|
||||
"l'épaisseur verticale de la coque (couches solides supérieures + inférieures)"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Motif des surfaces supérieures"
|
||||
|
||||
|
|
@ -10554,6 +10564,9 @@ msgstr ""
|
|||
"Ce gcode est inséré lors du changement de filament, y compris la commande T "
|
||||
"pour déclencher le changement d'outil"
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10932,6 +10945,18 @@ msgstr ""
|
|||
"aussi épaisse que celle du modèle. Elle est exprimée en pourcentage sur le "
|
||||
"diamètre de la buse"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Détecter un remplissage solide étroit"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"Cette option détectera automatiquement les zones de remplissage solides "
|
||||
"étroits. Si activé, un motif concentrique sera utilisé pour les zones afin "
|
||||
"d'accélérer l'impression. Sinon, le motif rectiligne est utilisé par défaut."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "valeur invalide "
|
||||
|
||||
|
|
@ -12303,6 +12328,16 @@ msgid ""
|
|||
"temperature. More info about this in the Wiki."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Intégré"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
|
||||
#~ "parsed.Please delete the file and try again."
|
||||
#~ msgstr ""
|
||||
#~ "Le fichier de configuration de Orca Slicer est peut-être corrompu et ne "
|
||||
#~ "peut pas être analysé. Veuillez supprimer le fichier et réessayer."
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Modèles en ligne"
|
||||
|
||||
|
|
@ -12337,17 +12372,6 @@ msgstr ""
|
|||
#~ "filament. Veuillez ouvrir la porte avant de l'imprimante avant d'imprimer "
|
||||
#~ "pour éviter que la buse ne se bouche."
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "Veiller à l'épaisseur verticale de la coque"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Ajouter un remplissage solide près des surfaces en pente pour garantir "
|
||||
#~ "l'épaisseur verticale de la coque (couches solides supérieures + "
|
||||
#~ "inférieures)"
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "Température de vitrification"
|
||||
|
||||
|
|
@ -12372,19 +12396,6 @@ msgstr ""
|
|||
#~ "auxiliaire fonctionnera à cette vitesse pendant l'impression, à "
|
||||
#~ "l'exception des premières couches définies sans refroidissement"
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Détecter un remplissage solide étroit"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "Cette option détectera automatiquement les zones de remplissage solides "
|
||||
#~ "étroits. Si activé, un motif concentrique sera utilisé pour les zones "
|
||||
#~ "afin d'accélérer l'impression. Sinon, le motif rectiligne est utilisé par "
|
||||
#~ "défaut."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Bed temperature for layers except the initial one. Value 0 means the "
|
||||
#~ "filament does not support to print on the High Temp"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -490,27 +490,12 @@ msgstr "Varratfestés"
|
|||
msgid "Remove selection"
|
||||
msgstr "Kijelölés törlése"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Mouse move up or dowm"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotate text"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Szöveg alakja"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Betűtípus"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Vastagság"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Szöveg"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Embedded"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Text Gap"
|
||||
|
||||
|
|
@ -522,12 +507,24 @@ msgid ""
|
|||
"depth"
|
||||
msgstr "Embedded depth"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Szöveg"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Surface"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Horizontal text"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Mouse move up or dowm"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotate text"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Szöveg alakja"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -613,11 +610,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -645,6 +637,13 @@ msgstr "Ez a legújabb verzió."
|
|||
msgid "Info"
|
||||
msgstr "Infó"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Újraindítás"
|
||||
|
||||
|
|
@ -6134,6 +6133,9 @@ msgstr ""
|
|||
msgid "Change filament G-code"
|
||||
msgstr "Filament csere G-kód"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "Szünet G-kód"
|
||||
|
||||
|
|
@ -7953,6 +7955,16 @@ msgstr "Befejező G-kód az egész nyomtatás befejezésekor"
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "Befejező G-kód a filament nyomtatásának befejezésekor"
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "Függőleges héjvastagság biztosítása"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"A függőleges héjvastagság biztosítása érdekében szilárd kitöltést alkalmaz a "
|
||||
"lejtős felületek közelében."
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Felső felület mintázata"
|
||||
|
||||
|
|
@ -10162,6 +10174,9 @@ msgstr ""
|
|||
"Ez a G-kód kerül beillesztésre, amikor a filament csere történik, beleértve "
|
||||
"a szerszámváltást indító T parancsokat is."
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10524,6 +10539,19 @@ msgstr ""
|
|||
"mint a nyomtatandó elem vastagsága, akkor a fal olyan vastag lesz, mint maga "
|
||||
"a nyomtatott elem. A fúvóka átmérőjének százalékában van kifejezve"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Keskeny belső szilárd kitöltés felismerése"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"Ez a beállítás automatikusan felismeri a keskeny belső tömör kitöltési "
|
||||
"területeket. Ha engedélyezve van, a nyomtatás felgyorsítása érdekében ezen a "
|
||||
"területen a koncentrikus mintát fogja használni. Ellenkező esetben "
|
||||
"alapértelmezés szerint az egyenes vonalú mintát használja."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "invalid value "
|
||||
|
||||
|
|
@ -11856,6 +11884,9 @@ msgid ""
|
|||
"temperature. More info about this in the Wiki."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Embedded"
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Online Models"
|
||||
|
||||
|
|
@ -11873,16 +11904,6 @@ msgstr ""
|
|||
#~ "Kérjük, hogy a nyomtatás során tartsd nyitva a nyomtatót, vagy csökkentsd "
|
||||
#~ "az asztalhőmérsékletet."
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "Függőleges héjvastagság biztosítása"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "A függőleges héjvastagság biztosítása érdekében szilárd kitöltést "
|
||||
#~ "alkalmaz a lejtős felületek közelében."
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "Üvegesedési hőmérséklet"
|
||||
|
||||
|
|
@ -11907,19 +11928,6 @@ msgstr ""
|
|||
#~ "ezen a fordulatszámon fog működni a nyomtatás során, kivéve az első "
|
||||
#~ "néhány réteget, amelynél kikapcsolt hűtés van megadva"
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Keskeny belső szilárd kitöltés felismerése"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "Ez a beállítás automatikusan felismeri a keskeny belső tömör kitöltési "
|
||||
#~ "területeket. Ha engedélyezve van, a nyomtatás felgyorsítása érdekében "
|
||||
#~ "ezen a területen a koncentrikus mintát fogja használni. Ellenkező esetben "
|
||||
#~ "alapértelmezés szerint az egyenes vonalú mintát használja."
|
||||
|
||||
#~ msgid "Empty layers around bottom are replaced by nearest normal layers."
|
||||
#~ msgstr "Az alsó üres rétegeket a legközelebbi normál rétegek váltják fel."
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -489,27 +489,12 @@ msgstr "Pittura giunzione"
|
|||
msgid "Remove selection"
|
||||
msgstr "Rimuovi selezione"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Sposta il mouse verso l'alto o il basso"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Ruota testo"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Formato testo"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Font"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Spessore"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Inserisci testo"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Integrato"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Gap testo"
|
||||
|
||||
|
|
@ -521,12 +506,24 @@ msgid ""
|
|||
"depth"
|
||||
msgstr "Profondità integrata"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Inserisci testo"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Superficie"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Testo orizzontale"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Sposta il mouse verso l'alto o il basso"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Ruota testo"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Formato testo"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -610,11 +607,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -642,6 +634,13 @@ msgstr "This is the newest version."
|
|||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Rebuild"
|
||||
|
||||
|
|
@ -6125,6 +6124,9 @@ msgstr ""
|
|||
msgid "Change filament G-code"
|
||||
msgstr "Change filament G-code"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "Pause G-code"
|
||||
|
||||
|
|
@ -7931,6 +7933,17 @@ msgstr "Add end G-Code when finishing the entire print."
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "Add end G-code when finishing the printing of this filament."
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "Garantisci spessore verticale del guscio"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Aggiunge un riempimento solido in prossimità delle superfici inclinate per "
|
||||
"garantire lo spessore verticale del guscio (layers solidi superiori e "
|
||||
"inferiori)."
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Top surface pattern"
|
||||
|
||||
|
|
@ -10131,6 +10144,9 @@ msgstr ""
|
|||
"This G-code is inserted when filament is changed, including T commands to "
|
||||
"trigger tool change."
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10499,6 +10515,18 @@ msgstr ""
|
|||
"spessa quanto l'elemento stesso. È espresso in percentuale rispetto al "
|
||||
"diametro del nozzle"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Detect narrow internal solid infill"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"This option will auto-detect narrow internal solid infill areas. If enabled, "
|
||||
"the concentric pattern will be used for the area to speed up printing. "
|
||||
"Otherwise, the rectilinear pattern will be used by default."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "Valore non valido"
|
||||
|
||||
|
|
@ -11837,6 +11865,9 @@ msgid ""
|
|||
"temperature. More info about this in the Wiki."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Integrato"
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Modelli Online"
|
||||
|
||||
|
|
@ -11854,17 +11885,6 @@ msgstr ""
|
|||
#~ "filamento. Aprire lo sportello anteriore della stampante prima di "
|
||||
#~ "stampare per evitare l'intasamento del nozzle."
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "Garantisci spessore verticale del guscio"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Aggiunge un riempimento solido in prossimità delle superfici inclinate "
|
||||
#~ "per garantire lo spessore verticale del guscio (layers solidi superiori e "
|
||||
#~ "inferiori)."
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "Temperature of vitrification"
|
||||
|
||||
|
|
@ -11887,18 +11907,6 @@ msgstr ""
|
|||
#~ "run at this speed during printing except for during the first several "
|
||||
#~ "layers which may be set to have no part cooling."
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Detect narrow internal solid infill"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "This option will auto-detect narrow internal solid infill areas. If "
|
||||
#~ "enabled, the concentric pattern will be used for the area to speed up "
|
||||
#~ "printing. Otherwise, the rectilinear pattern will be used by default."
|
||||
|
||||
#~ msgid "Empty layers around bottom are replaced by nearest normal layers."
|
||||
#~ msgstr "Empty layers around bottom are replaced by nearest normal layers."
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -489,27 +489,12 @@ msgstr "継ぎ目ペイント"
|
|||
msgid "Remove selection"
|
||||
msgstr "選択を削除"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Mouse move up or dowm"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotate text"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "文字形状"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "フォント"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "太さ"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "テキスト"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Embedded"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Text Gap"
|
||||
|
||||
|
|
@ -521,12 +506,24 @@ msgid ""
|
|||
"depth"
|
||||
msgstr "Embedded depth"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "テキスト"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Surface"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Horizontal text"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Mouse move up or dowm"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotate text"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "文字形状"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -608,11 +605,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -640,6 +632,13 @@ msgstr "最新バージョンです。"
|
|||
msgid "Info"
|
||||
msgstr "情報"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "再構築"
|
||||
|
||||
|
|
@ -5975,6 +5974,9 @@ msgstr ""
|
|||
msgid "Change filament G-code"
|
||||
msgstr "フィラメント変更G-code"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "G-codeを一時停止"
|
||||
|
||||
|
|
@ -7702,6 +7704,14 @@ msgstr "造形完了時のG-codeを追加"
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "このフィラメントを使用終わった時のG-codeを追加"
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "壁の厚さを確保"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr "傾斜面にソリッドインフィルを追加"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "トップ面パターン"
|
||||
|
||||
|
|
@ -9815,6 +9825,9 @@ msgid ""
|
|||
"tool change"
|
||||
msgstr "フィラメントを切り替える直後に実行するG-codeです。"
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10153,6 +10166,18 @@ msgstr ""
|
|||
"thickness of the feature, the wall will become as thick as the feature "
|
||||
"itself. It's expressed as a percentage over nozzle diameter"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "薄いソリッド インフィル検出"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"ソリッド インフィル領域に狭い部分があるか検出します。その設定を有効にする場"
|
||||
"合、狭い領域は同心パターンを使用し、それ以外の領域は、直線パターンを使用しま"
|
||||
"す。"
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "invalid value "
|
||||
|
||||
|
|
@ -11461,6 +11486,9 @@ msgid ""
|
|||
"temperature. More info about this in the Wiki."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Embedded"
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Online Models"
|
||||
|
||||
|
|
@ -11477,14 +11505,6 @@ msgstr ""
|
|||
#~ "ベッド温度がフィラメントの軟化温度より高いです、ノズル詰まりが発生する可能"
|
||||
#~ "性があります。ベッド温度を下げるか、プリンタのドアを開けてください。"
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "壁の厚さを確保"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr "傾斜面にソリッドインフィルを追加"
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "軟化温度"
|
||||
|
||||
|
|
@ -11504,18 +11524,6 @@ msgstr ""
|
|||
#~ "cooling layers"
|
||||
#~ msgstr "補助パーツ冷却ファンの回転速度です。"
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "薄いソリッド インフィル検出"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "ソリッド インフィル領域に狭い部分があるか検出します。その設定を有効にする"
|
||||
#~ "場合、狭い領域は同心パターンを使用し、それ以外の領域は、直線パターンを使用"
|
||||
#~ "します。"
|
||||
|
||||
#~ msgid "Empty layers around bottom are replaced by nearest normal layers."
|
||||
#~ msgstr "底面との隙間があります、レイヤーを入れ替えました"
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"PO-Revision-Date: 2023-10-26 16:47+0900\n"
|
||||
"Last-Translator: Hotsolidinfill\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -495,27 +495,12 @@ msgstr "솔기 칠하기"
|
|||
msgid "Remove selection"
|
||||
msgstr "선택 삭제"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + 마우스 위 or 아래"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "텍스트 회전"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "텍스트 모양"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "글꼴"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "두께"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "텍스트 입력"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "매입"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "글자 간격"
|
||||
|
||||
|
|
@ -529,12 +514,24 @@ msgstr ""
|
|||
"내장\n"
|
||||
"깊이"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "텍스트 입력"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "표면"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "가로 텍스트"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + 마우스 위 or 아래"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "텍스트 회전"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "텍스트 모양"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -623,13 +620,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr "WebView2 런타임"
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
"OrcaSlicer 구성 파일이 손상되어 구문 분석할 수 없습니다. 파일을 삭제하고 다"
|
||||
"시 시도하십시오."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -657,6 +647,13 @@ msgstr "최신 버전입니다."
|
|||
msgid "Info"
|
||||
msgstr "정보"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "재빌드"
|
||||
|
||||
|
|
@ -6096,6 +6093,9 @@ msgstr "타임랩스 G코드"
|
|||
msgid "Change filament G-code"
|
||||
msgstr "필라멘트 교체 G코드"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "일시정지 G코드"
|
||||
|
||||
|
|
@ -7916,6 +7916,16 @@ msgstr "전체 출력이 끝날때의 End G-code"
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "이 필라멘트의 출력이 끝날때의 End G-code"
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "수직 쉘 두께 확보"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"경사진 표면 근처에 꽉찬 내부 채움을 추가하여 수직 쉘 두께를 보장합니다(상단"
|
||||
"+하단 꽉찬 레이어)"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "상단 표면 패턴"
|
||||
|
||||
|
|
@ -10277,6 +10287,9 @@ msgstr ""
|
|||
"이 G코드는 도구 변경을 유발하는 T 명령을 포함하여 필라멘트를 변경할 때 삽입됩"
|
||||
"니다"
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10646,6 +10659,18 @@ msgstr ""
|
|||
"비가 형상의 두께보다 얇은 경우 벽은 형상 자체만큼 두꺼워집니다. 노즐 직경에 "
|
||||
"대한 백분율로 표시됩니다"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "좁은 내부 꽉찬 내부 채움 감지"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"이 옵션은 좁은 내부 꽉찬 내부 채움 영역을 자동으로 감지합니다. 활성화하면 출"
|
||||
"력 속도를 높이기 위해 해당 영역에 동심 패턴이 사용됩니다. 그렇지 않으면 직선 "
|
||||
"패턴이 기본적으로 사용됩니다."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "잘못된 값 "
|
||||
|
||||
|
|
@ -12088,6 +12113,16 @@ msgstr ""
|
|||
"기/핫엔드가 막힐 가능성을 줄일 수 있습니다. 이에 대한 자세한 내용은 Wiki에서 "
|
||||
"확인하세요."
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "매입"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
|
||||
#~ "parsed.Please delete the file and try again."
|
||||
#~ msgstr ""
|
||||
#~ "OrcaSlicer 구성 파일이 손상되어 구문 분석할 수 없습니다. 파일을 삭제하고 "
|
||||
#~ "다시 시도하십시오."
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "온라인 모델"
|
||||
|
||||
|
|
@ -12140,16 +12175,6 @@ msgstr ""
|
|||
#~ msgid "Activate for better air filtration"
|
||||
#~ msgstr "더 나은 공기 여과를 위해 활성화하세요"
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "수직 쉘 두께 확보"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "경사진 표면 근처에 꽉찬 내부 채움을 추가하여 수직 쉘 두께를 보장합니다(상"
|
||||
#~ "단+하단 꽉찬 레이어)"
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "유리 전이 온도"
|
||||
|
||||
|
|
@ -12178,18 +12203,6 @@ msgstr ""
|
|||
#~ "보조 출력 냉각 팬의 속도입니다. 냉각 중지 레이어로 정의된 처음 몇 개의 레"
|
||||
#~ "이어를 제외하고 출력 중에 보조 팬이 이 속도로 작동됩니다"
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "좁은 내부 꽉찬 내부 채움 감지"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "이 옵션은 좁은 내부 꽉찬 내부 채움 영역을 자동으로 감지합니다. 활성화하면 "
|
||||
#~ "출력 속도를 높이기 위해 해당 영역에 동심 패턴이 사용됩니다. 그렇지 않으면 "
|
||||
#~ "직선 패턴이 기본적으로 사용됩니다."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Filter out gaps smaller than the threshold specified. This setting won't "
|
||||
#~ "affect top/bottom layers"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -492,28 +492,12 @@ msgstr "Naad schilderen"
|
|||
msgid "Remove selection"
|
||||
msgstr "Selectie verwijderen"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Muis op of neer"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Draai tekst"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Tekstvorm"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Lettertype"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Dikte"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Tekst invoeren"
|
||||
|
||||
# Source and destination string both English but don't match!
|
||||
msgid "Embeded"
|
||||
msgstr "Embedded"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Tekstruimte"
|
||||
|
||||
|
|
@ -525,12 +509,24 @@ msgid ""
|
|||
"depth"
|
||||
msgstr "Embedded depth"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Tekst invoeren"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Oppervlak"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Horizontale tekst"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Muis op of neer"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Draai tekst"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Tekstvorm"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -623,13 +619,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr "WebView2 Runtime"
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
"OrcaSlicer configuratiebestand is mogelijks corrupt, en kan niet verwerkt "
|
||||
"worden.Verwijder het configuratiebestand en probeer het opnieuw."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -658,6 +647,13 @@ msgstr "Dit is de nieuwste versie."
|
|||
msgid "Info"
|
||||
msgstr "Informatie"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Herbouwen"
|
||||
|
||||
|
|
@ -6207,6 +6203,9 @@ msgstr ""
|
|||
msgid "Change filament G-code"
|
||||
msgstr "Filament G-code aanpassen"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "Pauzeer G-code"
|
||||
|
||||
|
|
@ -8045,6 +8044,16 @@ msgid "End G-code when finish the printing of this filament"
|
|||
msgstr ""
|
||||
"Voeg een eind G-code toe bij het afronden van het printen van dit filament."
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "Zorg voor een verticale schaaldikte"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Voeg dichte vulling toe in de buurt van hellende oppervlakken om de "
|
||||
"verticale schaaldikte te garanderen (boven+onder vaste lagen)."
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Patroon bovenvlak"
|
||||
|
||||
|
|
@ -10276,6 +10285,9 @@ msgstr ""
|
|||
"Deze G-code wordt ingevoegd wanneer filament wordt vervangen, inclusief T-"
|
||||
"commando's om gereedschapswissel te activeren."
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10645,6 +10657,19 @@ msgstr ""
|
|||
"van het element, wordt de muur net zo dik als het object zelf. Dit wordt "
|
||||
"uitgedrukt als een percentage ten opzichte van de diameter van de nozzle"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Detecteer dichte interne solide vulling (infill)"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"Deze optie detecteert automatisch smalle interne solide opvul (infill) "
|
||||
"gebieden. Indien ingeschakeld, wordt het concentrische patroon gebruikt voor "
|
||||
"het gebied om het afdrukken te versnellen. Anders wordt standaard het "
|
||||
"rechtlijnige patroon gebruikt."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "invalid value "
|
||||
|
||||
|
|
@ -11977,6 +12002,17 @@ msgid ""
|
|||
"temperature. More info about this in the Wiki."
|
||||
msgstr ""
|
||||
|
||||
# Source and destination string both English but don't match!
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Embedded"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
|
||||
#~ "parsed.Please delete the file and try again."
|
||||
#~ msgstr ""
|
||||
#~ "OrcaSlicer configuratiebestand is mogelijks corrupt, en kan niet verwerkt "
|
||||
#~ "worden.Verwijder het configuratiebestand en probeer het opnieuw."
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Online Models"
|
||||
|
||||
|
|
@ -11994,16 +12030,6 @@ msgstr ""
|
|||
#~ "filament. Open de voorkdeur van de printer voor het printen om "
|
||||
#~ "verstopping van de nozzles te voorkomen."
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "Zorg voor een verticale schaaldikte"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Voeg dichte vulling toe in de buurt van hellende oppervlakken om de "
|
||||
#~ "verticale schaaldikte te garanderen (boven+onder vaste lagen)."
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "Temperatuur van verglazing"
|
||||
|
||||
|
|
@ -12028,19 +12054,6 @@ msgstr ""
|
|||
#~ "op deze snelheid tijdens het afdrukken, behalve de eerste paar lagen, die "
|
||||
#~ "worden gedefinieerd door geen koellagen"
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Detecteer dichte interne solide vulling (infill)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "Deze optie detecteert automatisch smalle interne solide opvul (infill) "
|
||||
#~ "gebieden. Indien ingeschakeld, wordt het concentrische patroon gebruikt "
|
||||
#~ "voor het gebied om het afdrukken te versnellen. Anders wordt standaard "
|
||||
#~ "het rechtlijnige patroon gebruikt."
|
||||
|
||||
#~ msgid "Empty layers around bottom are replaced by nearest normal layers."
|
||||
#~ msgstr ""
|
||||
#~ "Lege lagen in de buurt van de bodem worden vervangen door de "
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer V1.8.0 beta1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"PO-Revision-Date: 2023-10-31 14:13+0700\n"
|
||||
"Last-Translator: Andylg <andylg@yandex.ru>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -498,27 +498,12 @@ msgstr "Рисование шва"
|
|||
msgid "Remove selection"
|
||||
msgstr "Удаление выделенного"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Мышь вверх или вниз"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Поворот текста"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Форма текста"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Шрифт"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Толщина"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Введите текст"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Проникновение"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr ""
|
||||
"Межбуквенный \n"
|
||||
|
|
@ -534,12 +519,24 @@ msgstr ""
|
|||
"Глубина\n"
|
||||
"проникновения"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Введите текст"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "На поверхности"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Горизонтальный текст"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Мышь вверх или вниз"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Поворот текста"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Форма текста"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -630,13 +627,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr "WebView2 Runtime"
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
"Возможно, файл конфигурации OrcaSlicer повреждён и не может быть обработан. "
|
||||
"Пожалуйста, удалите файл и повторите попытку."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -665,6 +655,13 @@ msgstr "У вас стоит самая последняя версия."
|
|||
msgid "Info"
|
||||
msgstr "Информация"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Пересоздание"
|
||||
|
||||
|
|
@ -6313,6 +6310,9 @@ msgstr "G-код таймлапса"
|
|||
msgid "Change filament G-code"
|
||||
msgstr "G-код выполняемый при смене прутка"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "G-код паузы печати"
|
||||
|
||||
|
|
@ -8217,6 +8217,16 @@ msgstr "Завершающий G-код при окончании всей пе
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "Завершающий G-код при окончании печати этой пластиковой нитью."
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Добавление сплошного заполнения вблизи наклонных поверхностей для "
|
||||
"обеспечения вертикальной толщины оболочки (верхний+нижний сплошные слои)."
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Шаблон заполнения верхней поверхности"
|
||||
|
||||
|
|
@ -10747,6 +10757,9 @@ msgstr ""
|
|||
"Этот G-код вставляется при смене материала, включая команду T для запуска "
|
||||
"смены инструмента."
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -11155,6 +11168,19 @@ msgstr ""
|
|||
"элемента. Если задано в процентах, то значение вычисляться относительно "
|
||||
"диаметра сопла."
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Обнаруживать узкую область сплошного заполнения"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"Этот параметр автоматически определяет узкую внутреннюю область сплошного "
|
||||
"заполнения. Если включено, для ускорения печати будет использоваться "
|
||||
"концентрический шаблон. В противном случае по умолчанию используется "
|
||||
"прямолинейный шаблон."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "недопустимое значение "
|
||||
|
||||
|
|
@ -12647,6 +12673,16 @@ msgstr ""
|
|||
"камере, открытие дверцы принтера снижает вероятность засорения экструдера/"
|
||||
"хотэнда. Более подробную информацию читайте на вики-сайте."
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Проникновение"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
|
||||
#~ "parsed.Please delete the file and try again."
|
||||
#~ msgstr ""
|
||||
#~ "Возможно, файл конфигурации OrcaSlicer повреждён и не может быть "
|
||||
#~ "обработан. Пожалуйста, удалите файл и повторите попытку."
|
||||
|
||||
#~ msgid "AMS %s"
|
||||
#~ msgstr "АСПП №%s"
|
||||
|
||||
|
|
@ -12883,13 +12919,6 @@ msgstr ""
|
|||
#~ "Шаг 1. Пожалуйста, убедитесь, что Bambu Studio и ваш принтер находятся в "
|
||||
#~ "одной локальной сети."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Добавление сплошного заполнения вблизи наклонных поверхностей для "
|
||||
#~ "обеспечения вертикальной толщины оболочки (верхний+нижний сплошные слои)."
|
||||
|
||||
#~ msgid "Internal bridge support thickness"
|
||||
#~ msgstr "Толщина поддержки внутреннего моста"
|
||||
|
||||
|
|
@ -12992,19 +13021,6 @@ msgstr ""
|
|||
#~ "низкая температура последующих слоёв может привести к отрыву модели от "
|
||||
#~ "стола."
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Обнаруживать узкую область сплошного заполнения"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "Этот параметр автоматически определяет узкую внутреннюю область сплошного "
|
||||
#~ "заполнения. Если включено, для ускорения печати будет использоваться "
|
||||
#~ "концентрический шаблон. В противном случае по умолчанию используется "
|
||||
#~ "прямолинейный шаблон."
|
||||
|
||||
#~ msgid "Orient the model"
|
||||
#~ msgstr "Ориентация модели"
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -489,27 +489,12 @@ msgstr "Målning av sömmar"
|
|||
msgid "Remove selection"
|
||||
msgstr "Ta bort val"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Mus flytta uppåt eller nedåt"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotera text"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Text form"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Typsnitt"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Tjocklek"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Skriv in text"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Inbäddad"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Text mellanrum"
|
||||
|
||||
|
|
@ -521,12 +506,24 @@ msgid ""
|
|||
"depth"
|
||||
msgstr "Inbäddat djup"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Skriv in text"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Yta"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Vågrät text"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Mus flytta uppåt eller nedåt"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Rotera text"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Text form"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl +"
|
||||
|
||||
|
|
@ -609,11 +606,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -641,6 +633,13 @@ msgstr "Det är den senaste versionen."
|
|||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Återskapa"
|
||||
|
||||
|
|
@ -6110,6 +6109,9 @@ msgstr ""
|
|||
msgid "Change filament G-code"
|
||||
msgstr "Byta filament G-kod"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "Paus G-kod"
|
||||
|
||||
|
|
@ -7895,6 +7897,16 @@ msgstr "Lägg till slut G-kod när utskriften har avslutas"
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "Lägg till slut G-kod när utskriften har avslutas med detta filament"
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "Säkerställ vertikal skaltjocklek"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Lägg till massiv fyllning nära sluttande ytor för att garantera den "
|
||||
"vertikala skal tjockleken (topp+bottenfasta lager)."
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Topp ytans mönster"
|
||||
|
||||
|
|
@ -10087,6 +10099,9 @@ msgstr ""
|
|||
"G-koden sätts in vid filament byte, inklusive T kommando som aktiverar "
|
||||
"verktygs byte"
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10447,6 +10462,19 @@ msgstr ""
|
|||
"elementet blir väggen lika tjock som själva elementet. Den uttrycks i "
|
||||
"procent av nozzel diametern."
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Upptäck tight inre solid ifyllnad"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"Detta val kommer att auto upptäcka tight inre solid ifyllnads område. Om "
|
||||
"aktiverat kommer det koncentriska mönstret att användas för området för att "
|
||||
"påskynda utskriften. Annars kommer mönstret med räta linjer att användas som "
|
||||
"standard."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "ogiltigt värde "
|
||||
|
||||
|
|
@ -11781,6 +11809,9 @@ msgid ""
|
|||
"temperature. More info about this in the Wiki."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Inbäddad"
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Online modeller"
|
||||
|
||||
|
|
@ -11798,16 +11829,6 @@ msgstr ""
|
|||
#~ "Öppna skrivarens främre dörr innan du skriver ut för att undvika att "
|
||||
#~ "nozzeln täpps till."
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "Säkerställ vertikal skaltjocklek"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Lägg till massiv fyllning nära sluttande ytor för att garantera den "
|
||||
#~ "vertikala skal tjockleken (topp+bottenfasta lager)."
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "Kristalliserings temperatur"
|
||||
|
||||
|
|
@ -11830,19 +11851,6 @@ msgstr ""
|
|||
#~ "denna hastighet under utskrift förutom de lager som definieras som inga "
|
||||
#~ "kyl lager"
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Upptäck tight inre solid ifyllnad"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "Detta val kommer att auto upptäcka tight inre solid ifyllnads område. Om "
|
||||
#~ "aktiverat kommer det koncentriska mönstret att användas för området för "
|
||||
#~ "att påskynda utskriften. Annars kommer mönstret med räta linjer att "
|
||||
#~ "användas som standard."
|
||||
|
||||
#~ msgid "Empty layers around bottom are replaced by nearest normal layers."
|
||||
#~ msgstr "Tomma lager runt botten ersätts med närmast normala lager."
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"PO-Revision-Date: 2023-10-07 12:57+0300\n"
|
||||
"Last-Translator: Sadri Ercan\n"
|
||||
"Language-Team: Türkçe\n"
|
||||
|
|
@ -497,27 +497,12 @@ msgstr "Dikiş boyama"
|
|||
msgid "Remove selection"
|
||||
msgstr "Seçimi kaldır"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Fare yukarı veya aşağı hareket ettirir"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Metni döndür"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Metin şekli"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Yazı tipi"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Kalınlık"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Giriş metni"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Gömülü"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Metin Boşluğu"
|
||||
|
||||
|
|
@ -531,12 +516,24 @@ msgstr ""
|
|||
"Gömülü\n"
|
||||
"derinlik"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Giriş metni"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Yüzey"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Yatay metin"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + Fare yukarı veya aşağı hareket ettirir"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Metni döndür"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Metin şekli"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -626,13 +623,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr "WebView2 Çalışma Zamanı"
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
"OrcaSlicer yapılandırma dosyası bozulmuş olabilir ve ayrıştırılması mümkün "
|
||||
"olmayabilir. Lütfen dosyayı silin ve tekrar deneyin."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -660,6 +650,13 @@ msgstr "Bu en yeni versiyondur."
|
|||
msgid "Info"
|
||||
msgstr "Bilgi"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Yeniden yükleniyor"
|
||||
|
||||
|
|
@ -6190,6 +6187,9 @@ msgstr "Time lapse G-code"
|
|||
msgid "Change filament G-code"
|
||||
msgstr "Filament değişimi G-kod"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "Duraklatma G-Kod"
|
||||
|
||||
|
|
@ -8047,6 +8047,16 @@ msgstr "Tüm yazdırmayı tamamladığında çalışacak olan G Kodu"
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "Bu filament ile baskı bittiğinde çalışacak G kodu"
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "Dikey kabuk kalınlığını onayla"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına katı "
|
||||
"dolgu ekleyin (üst + alt katı katmanlar)"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Üst katman deseni"
|
||||
|
||||
|
|
@ -10465,6 +10475,9 @@ msgstr ""
|
|||
"Bu gcode, takım değişimini tetiklemek için T komutu da dahil olmak üzere "
|
||||
"filament değiştirildiğinde eklenir"
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10848,6 +10861,18 @@ msgstr ""
|
|||
"duvar, özelliğin kendisi kadar kalın olacaktır. Nozul çapına göre yüzde "
|
||||
"olarak ifade edilir"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Dar iç katı dolguyu tespit et"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"Bu seçenek dar dahili katı dolgu alanını otomatik olarak algılayacaktır. "
|
||||
"Etkinleştirilirse, yazdırmayı hızlandırmak amacıyla alanda eşmerkezli desen "
|
||||
"kullanılacaktır. Aksi takdirde varsayılan olarak doğrusal desen kullanılır."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "geçersiz değer "
|
||||
|
||||
|
|
@ -12308,6 +12333,16 @@ msgid ""
|
|||
"temperature. More info about this in the Wiki."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Gömülü"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
|
||||
#~ "parsed.Please delete the file and try again."
|
||||
#~ msgstr ""
|
||||
#~ "OrcaSlicer yapılandırma dosyası bozulmuş olabilir ve ayrıştırılması "
|
||||
#~ "mümkün olmayabilir. Lütfen dosyayı silin ve tekrar deneyin."
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "Çevrimiçi Modeller"
|
||||
|
||||
|
|
@ -12363,16 +12398,6 @@ msgstr ""
|
|||
#~ msgid "Activate for better air filtration"
|
||||
#~ msgstr "Daha iyi hava filtrelemesi için etkinleştirin"
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "Dikey kabuk kalınlığını onayla"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına "
|
||||
#~ "katı dolgu ekleyin (üst + alt katı katmanlar)"
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "Yumuşama sıcaklığı"
|
||||
|
||||
|
|
@ -12405,19 +12430,6 @@ msgstr ""
|
|||
#~ "bulunmadığı ilk birkaç katman dışında, yazdırma sırasında bu hızda "
|
||||
#~ "çalışacaktır"
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Dar iç katı dolguyu tespit et"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "Bu seçenek dar dahili katı dolgu alanını otomatik olarak algılayacaktır. "
|
||||
#~ "Etkinleştirilirse, yazdırmayı hızlandırmak amacıyla alanda eşmerkezli "
|
||||
#~ "desen kullanılacaktır. Aksi takdirde varsayılan olarak doğrusal desen "
|
||||
#~ "kullanılır."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Filter out gaps smaller than the threshold specified. This setting won't "
|
||||
#~ "affect top/bottom layers"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"PO-Revision-Date: 2023-08-10 20:25-0400\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -495,27 +495,12 @@ msgstr "Малювання шва"
|
|||
msgid "Remove selection"
|
||||
msgstr "Видалити виділення"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + переміщення миші вгору або вниз"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Повернути текст"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Форма тексту"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "Шрифт"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "Товщина"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Введення тексту"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "Вбудовано"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "Пробіл у тексті"
|
||||
|
||||
|
|
@ -527,12 +512,24 @@ msgid ""
|
|||
"depth"
|
||||
msgstr "Вбудована глибина"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "Введення тексту"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "Поверхня"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "Горизонтальний текст"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + переміщення миші вгору або вниз"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "Повернути текст"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "Форма тексту"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr "Ctrl+"
|
||||
|
||||
|
|
@ -621,13 +618,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
"Файл конфігурації OrcaSlicer може бути пошкоджений і не підлягає розбору. "
|
||||
"Видаліть файл і спробуйте ще раз."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -653,6 +643,13 @@ msgstr "Це найновіша версія."
|
|||
msgid "Info"
|
||||
msgstr "Інформація"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "Відновити"
|
||||
|
||||
|
|
@ -6153,6 +6150,9 @@ msgstr ""
|
|||
msgid "Change filament G-code"
|
||||
msgstr "G-code Зміни філаменту"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "G-code Паузи"
|
||||
|
||||
|
|
@ -7964,6 +7964,16 @@ msgstr "Завершальний G-code, коли закінчити весь д
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "Завершальний G-code, коли закінчите друк цієї нитки"
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "Забезпечення вертикальної товщини оболонки"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Додавання заповнення твердого тіла поблизу похилих поверхонь для Гарантії "
|
||||
"товщини вертикальної оболонки (верхній + нижній шари твердого тіла)"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Малюнок верхньої поверхні"
|
||||
|
||||
|
|
@ -10269,6 +10279,9 @@ msgstr ""
|
|||
"Цей gcode вставляється при зміні філаменту, включаючи команду T для запуску "
|
||||
"зміни інструменту"
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10621,6 +10634,19 @@ msgstr ""
|
|||
"елемента, то товщина периметра дорівнюватиме товщині самого елемента. Він "
|
||||
"виражається у відсотках від діаметра сопла"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "Виявлення вузького внутрішнього заповнення твердим тілом"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"Ця опція автоматично визначає вузьку внутрішню область заповненнятвердого "
|
||||
"тіла. Якщо цей параметр увімкнено, для прискорення друку області "
|
||||
"використовуватиметься концентричний візерунок. Інакше за умовчанням "
|
||||
"Використовується прямолінійний малюнок."
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "неправильне значення "
|
||||
|
||||
|
|
@ -11970,6 +11996,16 @@ msgid ""
|
|||
"temperature. More info about this in the Wiki."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "Вбудовано"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
|
||||
#~ "parsed.Please delete the file and try again."
|
||||
#~ msgstr ""
|
||||
#~ "Файл конфігурації OrcaSlicer може бути пошкоджений і не підлягає розбору. "
|
||||
#~ "Видаліть файл і спробуйте ще раз."
|
||||
|
||||
#~ msgid "The minimum printing speed when slow down for cooling"
|
||||
#~ msgstr "Мінімальна швидкість друку при уповільненні для охолодження"
|
||||
|
||||
|
|
@ -11981,16 +12017,6 @@ msgstr ""
|
|||
#~ "відчиняйте передні дверцята принтера перед печаткою, щоб уникнути "
|
||||
#~ "засмічення сопла."
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "Забезпечення вертикальної товщини оболонки"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Додавання заповнення твердого тіла поблизу похилих поверхонь для Гарантії "
|
||||
#~ "товщини вертикальної оболонки (верхній + нижній шари твердого тіла)"
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "Температура склування"
|
||||
|
||||
|
|
@ -12015,19 +12041,6 @@ msgstr ""
|
|||
#~ "ДопоміжнийВентилятор буде працювати з такою швидкістю під час друку, за "
|
||||
#~ "винятком перших кількох шарів, які не визначаються шарами охолодження"
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "Виявлення вузького внутрішнього заповнення твердим тілом"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "Ця опція автоматично визначає вузьку внутрішню область заповненнятвердого "
|
||||
#~ "тіла. Якщо цей параметр увімкнено, для прискорення друку області "
|
||||
#~ "використовуватиметься концентричний візерунок. Інакше за умовчанням "
|
||||
#~ "Використовується прямолінійний малюнок."
|
||||
|
||||
#~ msgid "Empty layers around bottom are replaced by nearest normal layers."
|
||||
#~ msgstr ""
|
||||
#~ "Порожні шари навколо дна замінюються найближчими нормальними шарами."
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Slic3rPE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-11-04 14:18+0800\n"
|
||||
"POT-Creation-Date: 2023-11-10 14:54+0800\n"
|
||||
"PO-Revision-Date: 2023-04-01 13:21+0800\n"
|
||||
"Last-Translator: SoftFever <softfeverever@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -491,27 +491,12 @@ msgstr "Z缝绘制"
|
|||
msgid "Remove selection"
|
||||
msgstr "移除绘制"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + 鼠标上移或下移"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "旋转文字"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "文本形状"
|
||||
|
||||
msgid "Font"
|
||||
msgstr "字体"
|
||||
|
||||
msgid "Thickness"
|
||||
msgstr "厚度"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "输入文本"
|
||||
|
||||
msgid "Embeded"
|
||||
msgstr "嵌入的"
|
||||
|
||||
msgid "Text Gap"
|
||||
msgstr "文字间距"
|
||||
|
||||
|
|
@ -523,12 +508,24 @@ msgid ""
|
|||
"depth"
|
||||
msgstr "内嵌深度"
|
||||
|
||||
msgid "Input text"
|
||||
msgstr "输入文本"
|
||||
|
||||
msgid "Surface"
|
||||
msgstr "附着曲面"
|
||||
|
||||
msgid "Horizontal text"
|
||||
msgstr "水平文字"
|
||||
|
||||
msgid "Shift + Mouse move up or dowm"
|
||||
msgstr "Shift + 鼠标上移或下移"
|
||||
|
||||
msgid "Rotate text"
|
||||
msgstr "旋转文字"
|
||||
|
||||
msgid "Text shape"
|
||||
msgstr "文本形状"
|
||||
|
||||
msgid "Ctrl+"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -614,12 +611,6 @@ msgstr ""
|
|||
msgid "WebView2 Runtime"
|
||||
msgstr "WebView2 运行库"
|
||||
|
||||
msgid ""
|
||||
"OrcaSlicer configuration file may be corrupted and is not abled to be parsed."
|
||||
"Please delete the file and try again."
|
||||
msgstr ""
|
||||
"OrcaSlicer 配置文件可能已损坏而无法解析。请删除此文件并重新启动OrcaSlicer。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"%s\n"
|
||||
|
|
@ -645,6 +636,13 @@ msgstr "已经是最新版本。"
|
|||
msgid "Info"
|
||||
msgstr "信息"
|
||||
|
||||
msgid ""
|
||||
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
|
||||
"OrcaSlicer has attempted to recreate the configuration file.\n"
|
||||
"Please note, application settings will be lost, but printer profiles will "
|
||||
"not be affected."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild"
|
||||
msgstr "重新构建"
|
||||
|
||||
|
|
@ -5925,6 +5923,9 @@ msgstr "延时摄影G-code"
|
|||
msgid "Change filament G-code"
|
||||
msgstr "耗材丝更换G-code"
|
||||
|
||||
msgid "Change extrusion role G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pause G-code"
|
||||
msgstr "暂停 G-code"
|
||||
|
||||
|
|
@ -7636,6 +7637,14 @@ msgstr "所有打印结束时的结尾G-code"
|
|||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "结束使用该耗材打印时的结尾G-code"
|
||||
|
||||
msgid "Ensure vertical shell thickness"
|
||||
msgstr "确保垂直外壳厚度"
|
||||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr "在斜面表面附近添加实心填充,以保证垂直外壳厚度(顶部+底部实心层)"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "顶面图案"
|
||||
|
||||
|
|
@ -9796,6 +9805,9 @@ msgid ""
|
|||
"tool change"
|
||||
msgstr "换料时插入的G-code,包括T命令。"
|
||||
|
||||
msgid "This gcode is inserted when the extrusion role is changed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Line width for top surfaces. If expressed as a %, it will be computed over "
|
||||
"the nozzle diameter."
|
||||
|
|
@ -10141,6 +10153,17 @@ msgstr ""
|
|||
"用于替换模型细小特征(根据最小特征尺寸)的墙线宽。如果墙最小线宽小于最小特征"
|
||||
"的厚度,则墙将变得和特征本身一样厚。参数值表示为相对喷嘴直径的百分比"
|
||||
|
||||
msgid "Detect narrow internal solid infill"
|
||||
msgstr "识别狭窄内部实心填充"
|
||||
|
||||
msgid ""
|
||||
"This option will auto detect narrow internal solid infill area. If enabled, "
|
||||
"concentric pattern will be used for the area to speed printing up. "
|
||||
"Otherwise, rectilinear pattern is used defaultly."
|
||||
msgstr ""
|
||||
"此选项用于自动识别内部狭窄的实心填充。开启后,将对狭窄实心区域使用同心填充加"
|
||||
"快打印速度。否则使用默认的直线填充。"
|
||||
|
||||
msgid "invalid value "
|
||||
msgstr "非法的值 "
|
||||
|
||||
|
|
@ -11522,6 +11545,16 @@ msgid ""
|
|||
"temperature. More info about this in the Wiki."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Embeded"
|
||||
#~ msgstr "嵌入的"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
|
||||
#~ "parsed.Please delete the file and try again."
|
||||
#~ msgstr ""
|
||||
#~ "OrcaSlicer 配置文件可能已损坏而无法解析。请删除此文件并重新启动"
|
||||
#~ "OrcaSlicer。"
|
||||
|
||||
#~ msgid "Online Models"
|
||||
#~ msgstr "在线模型"
|
||||
|
||||
|
|
@ -11567,14 +11600,6 @@ msgstr ""
|
|||
#~ msgid "Activate for better air filtration"
|
||||
#~ msgstr "激活以获得更好的空气过滤"
|
||||
|
||||
#~ msgid "Ensure vertical shell thickness"
|
||||
#~ msgstr "确保垂直外壳厚度"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr "在斜面表面附近添加实心填充,以保证垂直外壳厚度(顶部+底部实心层)"
|
||||
|
||||
#~ msgid "Temperature of vitrificaiton"
|
||||
#~ msgstr "软化温度"
|
||||
|
||||
|
|
@ -11601,17 +11626,6 @@ msgstr ""
|
|||
#~ "辅助部件冷却风扇的转速。辅助部件冷却风扇将一直运行在该速度,除了设置的无需"
|
||||
#~ "冷却的前若干层"
|
||||
|
||||
#~ msgid "Detect narrow internal solid infill"
|
||||
#~ msgstr "识别狭窄内部实心填充"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This option will auto detect narrow internal solid infill area. If "
|
||||
#~ "enabled, concentric pattern will be used for the area to speed printing "
|
||||
#~ "up. Otherwise, rectilinear pattern is used defaultly."
|
||||
#~ msgstr ""
|
||||
#~ "此选项用于自动识别内部狭窄的实心填充。开启后,将对狭窄实心区域使用同心填充"
|
||||
#~ "加快打印速度。否则使用默认的直线填充。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Filter out gaps smaller than the threshold specified. This setting won't "
|
||||
#~ "affect top/bottom layers"
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -8,5 +8,8 @@
|
|||
"bed_model": "M5-CE-bed.stl",
|
||||
"bed_texture": "M5-CE-texture.svg",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Anker Generic ABS;Anker Generic PLA;Anker Generic PLA-CF;Anker Generic PETG;Anker Generic TPU;Anker Generic ASA;Anker Generic PVA"
|
||||
"default_materials": "Anker Generic ABS;Anker Generic PLA;Anker Generic PLA-CF;Anker Generic PETG;Anker Generic TPU;Anker Generic ASA;Anker Generic PVA",
|
||||
"retraction_length": [
|
||||
"1.5"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,5 +8,8 @@
|
|||
"bed_model": "M5C-CE-bed.stl",
|
||||
"bed_texture": "M5-CE-texture.svg",
|
||||
"hotend_model": "",
|
||||
"default_materials": "Anker Generic ABS;Anker Generic PLA;Anker Generic PLA-CF;Anker Generic PETG;Anker Generic TPU;Anker Generic ASA;Anker Generic PVA;Anker Generic PC;Anker Generic PA;Anker Generic PA-CF"
|
||||
"default_materials": "Anker Generic ABS;Anker Generic PLA;Anker Generic PLA-CF;Anker Generic PETG;Anker Generic TPU;Anker Generic ASA;Anker Generic PVA;Anker Generic PC;Anker Generic PA;Anker Generic PA-CF",
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"name": "fdm_machine_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"gcode_flavor": "marlin",
|
||||
"gcode_flavor": "marlin2",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n\n",
|
||||
"machine_start_gcode": "M4899 T3 ; Enable v3 jerk and S-curve acceleration \nM104 Sfirst_layer_temperature[0] ; Set hotend temp\nM190 S{first_layer_bed_temperature[0]} ; set and wait for bed temp to stabilize\nM109 S{first_layer_temperature[0]} ; set final nozzle temp to stabilize\nG28 ;Home",
|
||||
"machine_end_gcode": "M104 S0\nM140 S0\n;Retract the filament\nG92 E1\nG1 E-1 F300\nG28 X0 Y0\nM84",
|
||||
|
|
@ -88,9 +88,6 @@
|
|||
"retract_when_changing_layer": [
|
||||
"0"
|
||||
],
|
||||
"retraction_length": [
|
||||
"1.5"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"2"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -81,6 +81,6 @@
|
|||
"retraction_speed": [
|
||||
"70"
|
||||
],
|
||||
"machine_start_gcode": "; BIQU B1 Start G-code\nM117 Getting the bed up to temp!\nM140 S{material_bed_temperature_layer_0}; Set Heat Bed temperature\nM190 S{material_bed_temperature_layer_0}; Wait for Heat Bed temperature\nM117 Getting the extruder up to temp!\nM104 S{material_print_temperature_layer_0}; Set Extruder temperature\nG92 E0; Reset Extruder\nM117 Homing axes\nG28; Home all axes\nM109 S{material_print_temperature_layer_0}; Wait for Extruder temperature\nG1 Z2.0 F3000; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X4.1 Y20 Z0.3 F5000.0; Move to start position\nM117 Purging\nG1 X4.1 Y200.0 Z0.3 F1500.0 E15; Draw the first line\nG1 X4.4 Y200.0 Z0.3 F5000.0; Move to side a little\nG1 X4.4 Y20 Z0.3 F1500.0 E30; Draw the second line\nG92 E0; Reset Extruder\nM117 Lets make\nG1 Z2.0 F3000; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0; Move over to prevent blob squish",
|
||||
"machine_end_gcode": ";BIQU B1 Default End Gcode\nG91;Relative positioning\nG1 E-2 F2700;Retract a bit\nG1 E-2 Z0.2 F2400;Retract a bit more and raise Z\nG1 X5 Y5 F3000;Wipe out\nG1 Z10;Raise Z by 10mm\nG90;Return to absolute positioning\nG1 X0 Y{machine_depth};\nM106 S0;Turn-off fan\nM104 S0;Turn-off hotend\nM140 S0;Turn-off bed\nM84 X Y E;Disable all steppers but Z"
|
||||
"machine_start_gcode": "; BIQU B1 Start G-code\nM117 Getting the bed up to temp!\nM140 S[first_layer_bed_temperature]; Set Heat Bed temperature\nM190 S[first_layer_bed_temperature]; Wait for Heat Bed temperature\nM117 Getting the extruder up to temp!\nM104 S[first_layer_temperature]; Set Extruder temperature\nG92 E0; Reset Extruder\nM117 Homing axes\nG28; Home all axes\nM109 S[first_layer_temperature]; Wait for Extruder temperature\nG1 Z2.0 F3000; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X4.1 Y20 Z0.3 F5000.0; Move to start position\nM117 Purging\nG1 X4.1 Y200.0 Z0.3 F1500.0 E15; Draw the first line\nG1 X4.4 Y200.0 Z0.3 F5000.0; Move to side a little\nG1 X4.4 Y20 Z0.3 F1500.0 E30; Draw the second line\nG92 E0; Reset Extruder\nM117 Lets make\nG1 Z2.0 F3000; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.3 F5000.0; Move over to prevent blob squish",
|
||||
"machine_end_gcode": ";BIQU B1 Default End Gcode\nG91;Relative positioning\nG1 E-2 F2700;Retract a bit\nG1 E-2 Z0.2 F2400;Retract a bit more and raise Z\nG1 X5 Y5 F3000;Wipe out\nG1 Z10;Raise Z by 10mm\nG90;Return to absolute positioning\nG1 X0 Y{print_bed_max[1]};\nM106 S0;Turn-off fan\nM104 S0;Turn-off hotend\nM140 S0;Turn-off bed\nM84 X Y E;Disable all steppers but Z"
|
||||
}
|
||||
|
|
@ -81,6 +81,6 @@
|
|||
"retraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"machine_start_gcode": "; BIQU BX Start G-code\n;M117 Initial homing sequence; Home so that the probe is positioned to heat\nG28\nM117 Probe heating position\nG0 X65 Y5 Z1; Move the probe to the heating position.\nM117 Getting the heaters up to temp!\nM104 S140; Set Extruder temperature, no wait\nM140 S60; Set Heat Bed temperature\nM190 S60; Wait for Heat Bed temperature\nM117 Waiting for probe to warm; Wait another 90s for the probe to absorb heat.\nG4 S90\nM117 Post warming re-home\nG28; Home all axes again after warming\nM117 Z-Dance of my people\nG34\nM117 ABL Probing\nG29\nM900 K0 L0 T0;Edit the K and L values if you have calibrated a k factor for your filament\nM900 T0 S0\nG1 Z2.0 F3000; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X4.1 Y10 Z0.3 F5000.0; Move to start position\nM117 Getting the extruder up to temp\nM140 S{material_bed_temperature_layer_0}; Set Heat Bed temperature\nM104 S{material_print_temperature_layer_0}; Set Extruder temperature\nM109 S{material_print_temperature_layer_0}; Wait for Extruder temperature\nM190 S{material_bed_temperature_layer_0}; Wait for Heat Bed temperature\nG92 E0; Reset Extruder\nM117 Purging\nG1 X4.1 Y200.0 Z0.3 F1500.0 E15; Draw the first line\nG1 X4.4 Y200.0 Z0.3 F5000.0; Move to side a little\nG1 X4.4 Y20 Z0.3 F1500.0 E30; Draw the second line\nG92 E0; Reset Extruder\nM117 Lets make\nG1 X8 Y20 Z0.3 F5000.0; Move over to prevent blob squish",
|
||||
"machine_end_gcode": "; BIQU BX Default End Gcode\nG91;Relative positioning\nG1 E-2 F2700;Retract a bit\nG1 E-2 Z0.2 F2400;Retract a bit more and raise Z\nG1 X5 Y5 F3000;Wipe out\nG1 Z10;Raise Z by 10mm\nG90;Return to absolute positioning\nG1 X0 Y{machine_depth};TaDaaaa\nM106 S0;Turn-off fan\nM104 S0;Turn-off hotend\nM140 S0;Turn-off bed\nM84 X Y E;Disable all steppers but Z"
|
||||
"machine_start_gcode": "; BIQU BX Start G-code\n;M117 Initial homing sequence; Home so that the probe is positioned to heat\nG28\nM117 Probe heating position\nG0 X65 Y5 Z1; Move the probe to the heating position.\nM117 Getting the heaters up to temp!\nM104 S140; Set Extruder temperature, no wait\nM140 S60; Set Heat Bed temperature\nM190 S60; Wait for Heat Bed temperature\nM117 Waiting for probe to warm; Wait another 90s for the probe to absorb heat.\nG4 S90\nM117 Post warming re-home\nG28; Home all axes again after warming\nM117 Z-Dance of my people\nG34\nM117 ABL Probing\nG29\nM900 K0 L0 T0;Edit the K and L values if you have calibrated a k factor for your filament\nM900 T0 S0\nG1 Z2.0 F3000; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X4.1 Y10 Z0.3 F5000.0; Move to start position\nM117 Getting the extruder up to temp\nM140 S[first_layer_bed_temperature]; Set Heat Bed temperature\nM104 S[first_layer_temperature]; Set Extruder temperature\nM109 S[first_layer_temperature]; Wait for Extruder temperature\nM190 S[first_layer_bed_temperature]; Wait for Heat Bed temperature\nG92 E0; Reset Extruder\nM117 Purging\nG1 X4.1 Y200.0 Z0.3 F1500.0 E15; Draw the first line\nG1 X4.4 Y200.0 Z0.3 F5000.0; Move to side a little\nG1 X4.4 Y20 Z0.3 F1500.0 E30; Draw the second line\nG92 E0; Reset Extruder\nM117 Lets make\nG1 X8 Y20 Z0.3 F5000.0; Move over to prevent blob squish",
|
||||
"machine_end_gcode": "; BIQU BX Default End Gcode\nG91;Relative positioning\nG1 E-2 F2700;Retract a bit\nG1 E-2 Z0.2 F2400;Retract a bit more and raise Z\nG1 X5 Y5 F3000;Wipe out\nG1 Z10;Raise Z by 10mm\nG90;Return to absolute positioning\nG1 X0 Y{print_bed_max[1]};TaDaaaa\nM106 S0;Turn-off fan\nM104 S0;Turn-off hotend\nM140 S0;Turn-off bed\nM84 X Y E;Disable all steppers but Z"
|
||||
}
|
||||
|
|
@ -187,10 +187,10 @@
|
|||
"0"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"45"
|
||||
"55"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"45"
|
||||
"50"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"220"
|
||||
|
|
|
|||
|
|
@ -190,10 +190,10 @@
|
|||
"full_fan_speed_layer": [
|
||||
"0"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"55"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"50"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
|
|
|
|||
|
|
@ -13,10 +13,10 @@
|
|||
"12"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"45"
|
||||
"55"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"45"
|
||||
"50"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"8"
|
||||
|
|
|
|||
|
|
@ -13,10 +13,10 @@
|
|||
"25"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"45"
|
||||
"55"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"45"
|
||||
"50"
|
||||
],
|
||||
"slow_down_layer_time": [
|
||||
"6"
|
||||
|
|
|
|||
|
|
@ -71,13 +71,13 @@
|
|||
"; filament end gcode \n"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.95"
|
||||
"1"
|
||||
],
|
||||
"filament_is_support": [
|
||||
"0"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"5"
|
||||
"3.5"
|
||||
],
|
||||
"filament_minimal_purge_on_wipe_tower": [
|
||||
"15"
|
||||
|
|
@ -92,7 +92,7 @@
|
|||
"nil"
|
||||
],
|
||||
"filament_retraction_length": [
|
||||
"0.4"
|
||||
"1.2"
|
||||
],
|
||||
"filament_retraction_minimum_travel": [
|
||||
"nil"
|
||||
|
|
@ -140,7 +140,7 @@
|
|||
"45"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"230"
|
||||
"235"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"235"
|
||||
|
|
@ -158,7 +158,7 @@
|
|||
"50%"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.025"
|
||||
"0.035"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
|
|
@ -173,7 +173,7 @@
|
|||
"8"
|
||||
],
|
||||
"slow_down_min_speed": [
|
||||
"15"
|
||||
"20"
|
||||
],
|
||||
"support_material_interface_fan_speed": [
|
||||
"100"
|
||||
|
|
|
|||
|
|
@ -44,9 +44,9 @@
|
|||
"z_hop": [ "0.4" ],
|
||||
"single_extruder_multi_material": "0",
|
||||
"change_filament_gcode": "",
|
||||
"machine_pause_gcode": "",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [ "Flashforge Generic PLA" ],
|
||||
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.25 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0",
|
||||
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.25 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0",
|
||||
"machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nG28\nM104 S0 ; turn off temperature\nM84 ; disble motors",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
|
|
|
|||
|
|
@ -44,9 +44,9 @@
|
|||
"z_hop": [ "0.4" ],
|
||||
"single_extruder_multi_material": "0",
|
||||
"change_filament_gcode": "",
|
||||
"machine_pause_gcode": "",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [ "Flashforge Generic PLA" ],
|
||||
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.25 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0",
|
||||
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.25 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0",
|
||||
"machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nG28\nM104 S0 ; turn off temperature\nM84 ; disble motors",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
|
|
|
|||
|
|
@ -44,9 +44,9 @@
|
|||
"z_hop": [ "0.4" ],
|
||||
"single_extruder_multi_material": "0",
|
||||
"change_filament_gcode": "",
|
||||
"machine_pause_gcode": "",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [ "Flashforge Generic PLA" ],
|
||||
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.25 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0",
|
||||
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.25 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0",
|
||||
"machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nG28\nM104 S0 ; turn off temperature\nM84 ; disble motors",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
|
|
|
|||
|
|
@ -44,9 +44,9 @@
|
|||
"z_hop": [ "0.4" ],
|
||||
"single_extruder_multi_material": "0",
|
||||
"change_filament_gcode": "",
|
||||
"machine_pause_gcode": "",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [ "Flashforge Generic PLA" ],
|
||||
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG90\nM83\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.25 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0",
|
||||
"machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM104 S[nozzle_temperature_initial_layer]\nG1 Z5 F6000\nG1 E-1.5 F600\nG1 E12 F800\nG1 X85 Y110 Z0.25 F1200\nG1 X-110 E15 F2400\nG1 Y0 E4 F2400\nG1 X-109.6 F2400\nG1 Y110 E5 F2400\nG92 E0",
|
||||
"machine_end_gcode": "G1 E-3 F3600\nG0 X50 Y50 F30000\nG28\nM104 S0 ; turn off temperature\nM84 ; disble motors",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
|
|
|
|||
|
|
@ -119,7 +119,7 @@
|
|||
"silent_mode": "0",
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "",
|
||||
"machine_pause_gcode": "M25 ;pause print",
|
||||
"machine_pause_gcode": "M25",
|
||||
"wipe": [
|
||||
"1"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -120,7 +120,7 @@
|
|||
"silent_mode": "0",
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "",
|
||||
"machine_pause_gcode": "PAUSE\n",
|
||||
"machine_pause_gcode": "M25",
|
||||
"wipe": [
|
||||
"1"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@
|
|||
"seam_position": "aligned",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
"skirt_loops": "1",
|
||||
"minimum_sparse_infill_area": "15",
|
||||
"internal_solid_infill_line_width": "0.42",
|
||||
"spiral_mode": "0",
|
||||
|
|
@ -87,7 +87,7 @@
|
|||
"top_surface_pattern": "monotonicline",
|
||||
"top_surface_line_width": "0.42",
|
||||
"top_shell_layers": "3",
|
||||
"top_shell_thickness": "0",
|
||||
"top_shell_thickness": "0.6",
|
||||
"initial_layer_speed": "50",
|
||||
"initial_layer_infill_speed": "80",
|
||||
"outer_wall_speed": "200",
|
||||
|
|
@ -109,8 +109,8 @@
|
|||
"print_flow_ratio": "0.98",
|
||||
"only_one_wall_top": "1",
|
||||
"slow_down_layers": "1",
|
||||
"small_perimeter_speed": "0",
|
||||
"overhang_speed_classic": "1",
|
||||
"small_perimeter_speed": "50%",
|
||||
"overhang_speed_classic": "0",
|
||||
"internal_bridge_speed": "50",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"internal_solid_infill_acceleration": "7000",
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@
|
|||
"seam_position": "aligned",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
"skirt_loops": "1",
|
||||
"minimum_sparse_infill_area": "15",
|
||||
"internal_solid_infill_line_width": "0.42",
|
||||
"spiral_mode": "0",
|
||||
|
|
@ -87,7 +87,7 @@
|
|||
"top_surface_pattern": "monotonicline",
|
||||
"top_surface_line_width": "0.42",
|
||||
"top_shell_layers": "3",
|
||||
"top_shell_thickness": "0",
|
||||
"top_shell_thickness": "0.6",
|
||||
"initial_layer_speed": "50",
|
||||
"initial_layer_infill_speed": "80",
|
||||
"outer_wall_speed": "200",
|
||||
|
|
@ -109,8 +109,8 @@
|
|||
"print_flow_ratio": "0.98",
|
||||
"only_one_wall_top": "1",
|
||||
"slow_down_layers": "1",
|
||||
"small_perimeter_speed": "0",
|
||||
"overhang_speed_classic": "1",
|
||||
"small_perimeter_speed": "50%",
|
||||
"overhang_speed_classic": "0",
|
||||
"internal_bridge_speed": "50",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"internal_solid_infill_acceleration": "7000",
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@
|
|||
"seam_position": "aligned",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
"skirt_loops": "1",
|
||||
"minimum_sparse_infill_area": "15",
|
||||
"internal_solid_infill_line_width": "0.62",
|
||||
"spiral_mode": "0",
|
||||
|
|
@ -87,7 +87,7 @@
|
|||
"top_surface_pattern": "monotonicline",
|
||||
"top_surface_line_width": "0.62",
|
||||
"top_shell_layers": "3",
|
||||
"top_shell_thickness": "0",
|
||||
"top_shell_thickness": "0.6",
|
||||
"initial_layer_speed": "45",
|
||||
"initial_layer_infill_speed": "65",
|
||||
"outer_wall_speed": "120",
|
||||
|
|
@ -106,8 +106,8 @@
|
|||
"exclude_object": "0",
|
||||
"wall_generator": "classic",
|
||||
"only_one_wall_top": "1",
|
||||
"small_perimeter_speed": "0",
|
||||
"overhang_speed_classic": "1",
|
||||
"small_perimeter_speed": "50%",
|
||||
"overhang_speed_classic": "0",
|
||||
"internal_bridge_speed": "50",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"internal_solid_infill_acceleration": "7000",
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@
|
|||
"overhang_2_4_speed": "40",
|
||||
"overhang_3_4_speed": "20",
|
||||
"overhang_4_4_speed": "10",
|
||||
"overhang_speed_classic": "1",
|
||||
"overhang_speed_classic": "0",
|
||||
"post_process": [],
|
||||
"precise_outer_wall": "0",
|
||||
"prime_tower_brim_width": "3",
|
||||
|
|
@ -130,12 +130,11 @@
|
|||
"single_extruder_multi_material_priming": "1",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
"skirt_speed": "0",
|
||||
"skirt_loops": "1",
|
||||
"slice_closing_radius": "0.049",
|
||||
"slicing_mode": "regular",
|
||||
"slow_down_layers": "1",
|
||||
"small_perimeter_speed": "0",
|
||||
"small_perimeter_speed": "50%",
|
||||
"small_perimeter_threshold": "0",
|
||||
"solid_infill_filament": "1",
|
||||
"sparse_infill_acceleration": "100%",
|
||||
|
|
@ -174,7 +173,7 @@
|
|||
"thick_bridges": "0",
|
||||
"timelapse_type": "0",
|
||||
"top_shell_layers": "3",
|
||||
"top_shell_thickness": "0",
|
||||
"top_shell_thickness": "0.6",
|
||||
"top_solid_infill_flow_ratio": "1",
|
||||
"top_surface_acceleration": "2000",
|
||||
"top_surface_jerk": "9",
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
"seam_position": "aligned",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"skirt_loops": "0",
|
||||
"skirt_loops": "1",
|
||||
"minimum_sparse_infill_area": "15",
|
||||
"internal_solid_infill_line_width": "0.4",
|
||||
"spiral_mode": "0",
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
"default_acceleration": "1000",
|
||||
"detect_overhang_wall": "1",
|
||||
"detect_thin_wall": "0",
|
||||
"draft_shield": "0",
|
||||
"draft_shield": "disabled",
|
||||
"enable_overhang_speed": "1",
|
||||
"enable_prime_tower": "1",
|
||||
"enable_support": "0",
|
||||
|
|
|
|||
|
|
@ -11,6 +11,12 @@
|
|||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"15"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.021"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
|
|
|
|||
|
|
@ -36,6 +36,12 @@
|
|||
"full_fan_speed_layer": [
|
||||
"2"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.01"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
"Qidi X-Max 0.4 nozzle",
|
||||
|
|
|
|||
|
|
@ -18,8 +18,14 @@
|
|||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.03"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\nM141 S55\n{if (bed_temperature[current_extruder] >90)||(bed_temperature_initial_layer[current_extruder] >90)}M106 P3 S0\n{elsif(bed_temperature[current_extruder] >70)||(bed_temperature_initial_layer[current_extruder] >70)}M106 P3 S153\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{endif}"
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >90)||(bed_temperature_initial_layer[current_extruder] >90)}M106 P3 S0\n{elsif(bed_temperature[current_extruder] >70)||(bed_temperature_initial_layer[current_extruder] >70)}M106 P3 S153\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{endif}"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
|
|
|
|||
|
|
@ -7,13 +7,19 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_filament_pc",
|
||||
"filament_max_volumetric_speed": [
|
||||
"16"
|
||||
"5"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.94"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >90)||(bed_temperature_initial_layer[current_extruder] >90)}M106 P3 S0\n{elsif(bed_temperature[current_extruder] >70)||(bed_temperature_initial_layer[current_extruder] >70)}M106 P3 S153\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{endif}"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.04"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
|
|
|
|||
|
|
@ -38,6 +38,12 @@
|
|||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"9"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.042"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
|
|
|
|||
|
|
@ -14,6 +14,12 @@
|
|||
],
|
||||
"slow_down_layer_time": [
|
||||
"5"
|
||||
],
|
||||
"enable_pressure_advance": [
|
||||
"1"
|
||||
],
|
||||
"pressure_advance": [
|
||||
"0.032"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Qidi X-Plus 0.4 nozzle",
|
||||
|
|
|
|||
|
|
@ -8,25 +8,25 @@
|
|||
"0"
|
||||
],
|
||||
"eng_plate_temp" : [
|
||||
"110"
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp" : [
|
||||
"110"
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp" : [
|
||||
"110"
|
||||
"100"
|
||||
],
|
||||
"cool_plate_temp_initial_layer" : [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer" : [
|
||||
"110"
|
||||
"100"
|
||||
],
|
||||
"hot_plate_temp_initial_layer" : [
|
||||
"110"
|
||||
"100"
|
||||
],
|
||||
"textured_plate_temp_initial_layer" : [
|
||||
"110"
|
||||
"100"
|
||||
],
|
||||
"slow_down_for_layer_cooling": [
|
||||
"1"
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
"20"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"270"
|
||||
"250"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
|
|
@ -65,10 +65,10 @@
|
|||
"25%"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"60"
|
||||
"80"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"280"
|
||||
"250"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"120"
|
||||
|
|
|
|||
|
|
@ -65,7 +65,10 @@
|
|||
"50%"
|
||||
],
|
||||
"close_fan_the_first_x_layers": [
|
||||
"1"
|
||||
"2"
|
||||
],
|
||||
"full_fan_speed_layer": [
|
||||
"4"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"220"
|
||||
|
|
|
|||
|
|
@ -113,5 +113,6 @@
|
|||
"internal_bridge_speed": "50",
|
||||
"internal_solid_infill_pattern": "monotonic",
|
||||
"initial_layer_travel_speed": "50%",
|
||||
"notes": "If you want to use Orca's chamber temperature control feature, check that printer.cfg has added the following M191 macro.\nTo add it: go to Fluidd web interface--configuration, copy the following code to the bottom of the printer.cfg document, SAVE&RESATART \n\n[gcode_macro M191]\ngcode:\n #Parameters\n {% set s = params.S|float %}\n \n M141 {% for p in params %}{'%s%s' % (p, params[p])}{% endfor %} ; Set hotend temp\n {% if s != 0 %}\n TEMPERATURE_WAIT SENSOR=\"heater_generic hot\" MINIMUM={s} MAXIMUM={s+1} ; Wait for hotend temp (within 1 degree)\n {% endif %}"
|
||||
"filter_out_gap_fill": "2",
|
||||
"notes": "If you want to use Orca's chamber temperature control feature, check that printer.cfg has added the following M191 macro.\nTo add it: go to Fluidd web interface--configuration, copy the following code to the top of the printer.cfg document, SAVE&RESATART \n\n[gcode_macro M191]\ngcode:\n #Parameters\n {% set s = params.S|float %}\n \n M141 {% for p in params %}{'%s%s' % (p, params[p])}{% endfor %} ; Set hotend temp\n {% if s != 0 %}\n TEMPERATURE_WAIT SENSOR=\"heater_generic hot\" MINIMUM={s} MAXIMUM={s+1} ; Wait for hotend temp (within 1 degree)\n {% endif %}"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,28 +8,28 @@
|
|||
"printer_model": "Snapmaker J1",
|
||||
"default_print_profile": "0.20mm 0.6 Standard @Snapmaker J1",
|
||||
"retraction_minimum_travel": [
|
||||
"3"
|
||||
"3"
|
||||
],
|
||||
"thumbnails": [
|
||||
"400x400"
|
||||
"400x400"
|
||||
],
|
||||
"z_hop_types": [
|
||||
"Auto Lift"
|
||||
"Auto Lift"
|
||||
],
|
||||
"z_lift_type": [
|
||||
"SpiralLift"
|
||||
"SpiralLift"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"bed_exclude_area": [
|
||||
"0x0"
|
||||
"0x0"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"324x0",
|
||||
"324x200",
|
||||
"0x200"
|
||||
"0x0",
|
||||
"324x0",
|
||||
"324x200",
|
||||
"0x200"
|
||||
],
|
||||
"printable_height": "200",
|
||||
"machine_start_gcode": ";***** Snapmaker J1\n;***** Update : 20221222\n;***** Printer : [printer_preset]\n;***** Profile : [print_preset]\nM593 P1 X F35.7 \nM593 P1 Y F33.7 \nM355 S1 P16 ;------------OPTIONAL ;dim led \nM83 ;absolute extrusion mode\nM140 S[first_layer_bed_temperature] ;Start Warming Bed\nT[initial_extruder] ;switch to initial extruder\n{if total_toolchanges < 1}; Preheat one extruder (just one used)\nM104 S160 ;preheat nozzle\n{else}; Preheat both extruders used\nM104 S160 T0 ;preheat T0\nM104 S160 T1 ;preheat T1\n{endif}\nG28 ; home all axes\nG90 ;absolute positioning\nG1 Z0.8 F1800\nM201 X5000 Y5000 Z500 E5000\nM205 V5\nM900 T0 K0.02\nM900 T1 K0.02\nM190 S[first_layer_bed_temperature] ; C3 W2 Wait For Bed Temperature\n{if total_toolchanges < 1}; Heat one extruder\nM104 S[first_layer_temperature]\nM109 S[first_layer_temperature] ;Wait for Hotend Temperature\n{else}; Heat both extruders\nM104 T0 S{first_layer_temperature[0]}\nM104 T1 S{first_layer_temperature[1]}\nM109 T0 S{first_layer_temperature[0]} ;Wait for Hotend Temperature\nM109 T1 S{first_layer_temperature[1]} ;Wait for Hotend Temperature\n{endif}\n;\n{if 1==1} ;-----------OPTIONAL ;led effect\n M355 S1 P32\n G4 S1\n M355 S1 P48\n G4 S1\n M355 S1 P64\n G4 S1\n M355 S1 P96\n G4 S1\n M355 S1 P128\n G4 S1\n M355 S1 P255\n{endif}\n;\nG92 E0\n;\n{if total_toolchanges > 0 or initial_extruder == 0}; Purge line T0\nT0\nG92 E0\nG1 F1200 X5 Z0.5\nG1 F600 X100 E20\nG1 F600 Z2\nG92 E0\nG1 F1200 E-6\nG0 X-20 F12000 ; park T0\n{endif}\n{if total_toolchanges > 0 or initial_extruder == 1}; Purge line T1\nT1\nG92 E0\nG1 F1200 X295 Z0.5\nG1 F600 X200 E20\nG1 F600 Z2\nG92 E0\nG1 F1200 E-6\nG0 X350 F12000 ; park T1 (old 345)\n{endif}\n;End Start Gcode J1\n",
|
||||
|
|
@ -65,5 +65,6 @@
|
|||
],
|
||||
"scan_first_layer": "0",
|
||||
"nozzle_type": "hardened_steel",
|
||||
"auxiliary_fan": "0"
|
||||
"auxiliary_fan": "0",
|
||||
"printer_variant": "0.6"
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Voron",
|
||||
"version": "01.06.05.02",
|
||||
"version": "01.06.05.03",
|
||||
"force_update": "0",
|
||||
"description": "Voron configurations",
|
||||
"machine_model_list": [
|
||||
|
|
@ -382,21 +382,141 @@
|
|||
"name": "Voron Trident 250 0.4 nozzle",
|
||||
"sub_path": "machine/Voron Trident 250 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 250 0.15 nozzle",
|
||||
"sub_path": "machine/Voron Trident 250 0.15 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 250 0.2 nozzle",
|
||||
"sub_path": "machine/Voron Trident 250 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 250 0.25 nozzle",
|
||||
"sub_path": "machine/Voron Trident 250 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 250 0.6 nozzle",
|
||||
"sub_path": "machine/Voron Trident 250 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 250 0.8 nozzle",
|
||||
"sub_path": "machine/Voron Trident 250 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 250 1.0 nozzle",
|
||||
"sub_path": "machine/Voron Trident 250 1.0 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 300 0.4 nozzle",
|
||||
"sub_path": "machine/Voron Trident 300 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 300 0.15 nozzle",
|
||||
"sub_path": "machine/Voron Trident 300 0.15 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 300 0.2 nozzle",
|
||||
"sub_path": "machine/Voron Trident 300 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 300 0.25 nozzle",
|
||||
"sub_path": "machine/Voron Trident 300 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 300 0.6 nozzle",
|
||||
"sub_path": "machine/Voron Trident 300 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 300 0.8 nozzle",
|
||||
"sub_path": "machine/Voron Trident 300 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 300 1.0 nozzle",
|
||||
"sub_path": "machine/Voron Trident 300 1.0 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 350 0.4 nozzle",
|
||||
"sub_path": "machine/Voron Trident 350 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 350 0.15 nozzle",
|
||||
"sub_path": "machine/Voron Trident 350 0.15 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 350 0.2 nozzle",
|
||||
"sub_path": "machine/Voron Trident 350 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 350 0.25 nozzle",
|
||||
"sub_path": "machine/Voron Trident 350 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 350 0.6 nozzle",
|
||||
"sub_path": "machine/Voron Trident 350 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 350 0.8 nozzle",
|
||||
"sub_path": "machine/Voron Trident 350 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Trident 350 1.0 nozzle",
|
||||
"sub_path": "machine/Voron Trident 350 1.0 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1 0.4 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1 0.15 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 0.15 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1 0.2 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1 0.25 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1 0.6 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1 0.8 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron 0.1 1.0 nozzle",
|
||||
"sub_path": "machine/Voron 0.1 1.0 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Switchwire 250 0.4 nozzle",
|
||||
"sub_path": "machine/Voron Switchwire 250 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Switchwire 250 0.15 nozzle",
|
||||
"sub_path": "machine/Voron Switchwire 250 0.15 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Switchwire 250 0.2 nozzle",
|
||||
"sub_path": "machine/Voron Switchwire 250 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Switchwire 250 0.25 nozzle",
|
||||
"sub_path": "machine/Voron Switchwire 250 0.25 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Switchwire 250 0.6 nozzle",
|
||||
"sub_path": "machine/Voron Switchwire 250 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Switchwire 250 0.8 nozzle",
|
||||
"sub_path": "machine/Voron Switchwire 250 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Voron Switchwire 250 1.0 nozzle",
|
||||
"sub_path": "machine/Voron Switchwire 250 1.0 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,8 +35,39 @@
|
|||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
"Voron Switchwire 250 0.4 nozzle",
|
||||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,30 +13,61 @@
|
|||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
"Voron Switchwire 250 0.4 nozzle",
|
||||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,30 +19,61 @@
|
|||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
"Voron Switchwire 250 0.4 nozzle",
|
||||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,30 +16,61 @@
|
|||
"12"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
"Voron Switchwire 250 0.4 nozzle",
|
||||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,30 +13,61 @@
|
|||
"0.94"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
"Voron Switchwire 250 0.4 nozzle",
|
||||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,30 +43,62 @@
|
|||
"; filament start gcode\n"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
"Voron Switchwire 250 0.4 nozzle",
|
||||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -19,30 +19,62 @@
|
|||
"7"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
"Voron Switchwire 250 0.4 nozzle",
|
||||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -16,30 +16,62 @@
|
|||
"8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
"Voron Switchwire 250 0.4 nozzle",
|
||||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,30 +19,62 @@
|
|||
"10"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
"Voron Switchwire 250 0.4 nozzle",
|
||||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -10,30 +10,62 @@
|
|||
"3.2"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron 0.1 0.4 nozzle"
|
||||
"Voron 2.4 250 0.4 nozzle",
|
||||
"Voron 2.4 250 0.15 nozzle",
|
||||
"Voron 2.4 250 0.2 nozzle",
|
||||
"Voron 2.4 250 0.25 nozzle",
|
||||
"Voron 2.4 250 0.6 nozzle",
|
||||
"Voron 2.4 250 0.8 nozzle",
|
||||
"Voron 2.4 250 1.0 nozzle",
|
||||
"Voron 2.4 300 0.4 nozzle",
|
||||
"Voron 2.4 300 0.15 nozzle",
|
||||
"Voron 2.4 300 0.2 nozzle",
|
||||
"Voron 2.4 300 0.25 nozzle",
|
||||
"Voron 2.4 300 0.6 nozzle",
|
||||
"Voron 2.4 300 0.8 nozzle",
|
||||
"Voron 2.4 300 1.0 nozzle",
|
||||
"Voron 2.4 350 0.4 nozzle",
|
||||
"Voron 2.4 350 0.15 nozzle",
|
||||
"Voron 2.4 350 0.2 nozzle",
|
||||
"Voron 2.4 350 0.25 nozzle",
|
||||
"Voron 2.4 350 0.6 nozzle",
|
||||
"Voron 2.4 350 0.8 nozzle",
|
||||
"Voron 2.4 350 1.0 nozzle",
|
||||
"Voron Trident 250 0.4 nozzle",
|
||||
"Voron Trident 250 0.15 nozzle",
|
||||
"Voron Trident 250 0.2 nozzle",
|
||||
"Voron Trident 250 0.25 nozzle",
|
||||
"Voron Trident 250 0.6 nozzle",
|
||||
"Voron Trident 250 0.8 nozzle",
|
||||
"Voron Trident 250 1.0 nozzle",
|
||||
"Voron Trident 300 0.4 nozzle",
|
||||
"Voron Trident 300 0.15 nozzle",
|
||||
"Voron Trident 300 0.2 nozzle",
|
||||
"Voron Trident 300 0.25 nozzle",
|
||||
"Voron Trident 300 0.6 nozzle",
|
||||
"Voron Trident 300 0.8 nozzle",
|
||||
"Voron Trident 300 1.0 nozzle",
|
||||
"Voron Trident 350 0.4 nozzle",
|
||||
"Voron Trident 350 0.15 nozzle",
|
||||
"Voron Trident 350 0.2 nozzle",
|
||||
"Voron Trident 350 0.25 nozzle",
|
||||
"Voron Trident 350 0.6 nozzle",
|
||||
"Voron Trident 350 0.8 nozzle",
|
||||
"Voron Trident 350 1.0 nozzle",
|
||||
"Voron 0.1 0.4 nozzle",
|
||||
"Voron 0.1 0.15 nozzle",
|
||||
"Voron 0.1 0.2 nozzle",
|
||||
"Voron 0.1 0.25 nozzle",
|
||||
"Voron 0.1 0.6 nozzle",
|
||||
"Voron 0.1 0.8 nozzle",
|
||||
"Voron 0.1 1.0 nozzle",
|
||||
"Voron Switchwire 250 0.4 nozzle",
|
||||
"Voron Switchwire 250 0.15 nozzle",
|
||||
"Voron Switchwire 250 0.2 nozzle",
|
||||
"Voron Switchwire 250 0.25 nozzle",
|
||||
"Voron Switchwire 250 0.6 nozzle",
|
||||
"Voron Switchwire 250 0.8 nozzle",
|
||||
"Voron Switchwire 250 1.0 nozzle"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
29
resources/profiles/Voron/machine/Voron 0.1 0.15 nozzle.json
Normal file
29
resources/profiles/Voron/machine/Voron 0.1 0.15 nozzle.json
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM002",
|
||||
"name": "Voron 0.1 0.15 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 0.1",
|
||||
"default_print_profile": "0.09mm Standard 0.15 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.12"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.04"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.15"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"120x0",
|
||||
"120x120",
|
||||
"0x120"
|
||||
],
|
||||
"printable_height": "120",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"printer_variant": "0.15"
|
||||
}
|
||||
29
resources/profiles/Voron/machine/Voron 0.1 0.2 nozzle.json
Normal file
29
resources/profiles/Voron/machine/Voron 0.1 0.2 nozzle.json
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM002",
|
||||
"name": "Voron 0.1 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 0.1",
|
||||
"default_print_profile": "0.10mm Standard 0.2 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.16"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.05"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"120x0",
|
||||
"120x120",
|
||||
"0x120"
|
||||
],
|
||||
"printable_height": "120",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"printer_variant": "0.2"
|
||||
}
|
||||
29
resources/profiles/Voron/machine/Voron 0.1 0.25 nozzle.json
Normal file
29
resources/profiles/Voron/machine/Voron 0.1 0.25 nozzle.json
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM002",
|
||||
"name": "Voron 0.1 0.25 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 0.1",
|
||||
"default_print_profile": "0.10mm Standard 0.25 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.20"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.06"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.25"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"120x0",
|
||||
"120x120",
|
||||
"0x120"
|
||||
],
|
||||
"printable_height": "120",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"printer_variant": "0.25"
|
||||
}
|
||||
|
|
@ -7,6 +7,12 @@
|
|||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 0.1",
|
||||
"default_print_profile": "0.20mm Standard @Voron",
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.10"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
|
|
|
|||
29
resources/profiles/Voron/machine/Voron 0.1 0.6 nozzle.json
Normal file
29
resources/profiles/Voron/machine/Voron 0.1 0.6 nozzle.json
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM003",
|
||||
"name": "Voron 0.1 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 0.1",
|
||||
"default_print_profile": "0.30mm Standard 0.6 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.15"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"120x0",
|
||||
"120x120",
|
||||
"0x120"
|
||||
],
|
||||
"printable_height": "120",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"printer_variant": "0.6"
|
||||
}
|
||||
29
resources/profiles/Voron/machine/Voron 0.1 0.8 nozzle.json
Normal file
29
resources/profiles/Voron/machine/Voron 0.1 0.8 nozzle.json
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM004",
|
||||
"name": "Voron 0.1 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 0.1",
|
||||
"default_print_profile": "0.40mm Standard 0.8 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.64"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.2"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"120x0",
|
||||
"120x120",
|
||||
"0x120"
|
||||
],
|
||||
"printable_height": "120",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"printer_variant": "0.8"
|
||||
}
|
||||
29
resources/profiles/Voron/machine/Voron 0.1 1.0 nozzle.json
Normal file
29
resources/profiles/Voron/machine/Voron 0.1 1.0 nozzle.json
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM004",
|
||||
"name": "Voron 0.1 1.0 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 0.1",
|
||||
"default_print_profile": "0.50mm Standard 1.0 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.80"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.25"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"1.0"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"120x0",
|
||||
"120x120",
|
||||
"0x120"
|
||||
],
|
||||
"printable_height": "120",
|
||||
"nozzle_type": "undefine",
|
||||
"auxiliary_fan": "0",
|
||||
"printer_variant": "1.0"
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"type": "machine_model",
|
||||
"name": "Voron 0.1",
|
||||
"model_id": "Voron0",
|
||||
"nozzle_diameter": "0.4",
|
||||
"nozzle_diameter": "0.4;0.15;0.2;0.25;0.6;0.8;1.0",
|
||||
"machine_tech": "FFF",
|
||||
"family": "VoronDesign",
|
||||
"bed_model": "",
|
||||
|
|
|
|||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 250",
|
||||
"default_print_profile": "0.09mm Standard 0.15 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.2"
|
||||
"0.2"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.04"
|
||||
"0.04"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.15"
|
||||
"nozzle_diameter": [
|
||||
"0.15"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
],
|
||||
"printable_height": "225"
|
||||
}
|
||||
|
||||
"printable_height": "225",
|
||||
"printer_variant": "0.15"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 250",
|
||||
"default_print_profile": "0.10mm Standard 0.2 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.20"
|
||||
"0.20"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.06"
|
||||
"0.06"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
],
|
||||
"printable_height": "225"
|
||||
}
|
||||
|
||||
"printable_height": "225",
|
||||
"printer_variant": "0.2"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 250",
|
||||
"default_print_profile": "0.10mm Standard 0.25 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.25"
|
||||
"0.25"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.06"
|
||||
"0.06"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.25"
|
||||
"nozzle_diameter": [
|
||||
"0.25"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
],
|
||||
"printable_height": "225"
|
||||
}
|
||||
|
||||
"printable_height": "225",
|
||||
"printer_variant": "0.25"
|
||||
}
|
||||
|
|
@ -6,6 +6,13 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 250",
|
||||
"default_print_profile": "0.20mm Standard @Voron",
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.10"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 250",
|
||||
"default_print_profile": "0.30mm Standard 0.6 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.45"
|
||||
"0.45"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.15"
|
||||
"0.15"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
],
|
||||
"printable_height": "225"
|
||||
}
|
||||
|
||||
"printable_height": "225",
|
||||
"printer_variant": "0.6"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 250",
|
||||
"default_print_profile": "0.40mm Standard 0.8 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.6"
|
||||
"0.6"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.20"
|
||||
"0.20"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
],
|
||||
"printable_height": "225"
|
||||
}
|
||||
|
||||
"printable_height": "225",
|
||||
"printer_variant": "0.8"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 250",
|
||||
"default_print_profile": "0.50mm Standard 1.0 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.9"
|
||||
"0.9"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.25"
|
||||
"0.25"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"1.0"
|
||||
"nozzle_diameter": [
|
||||
"1.0"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x250",
|
||||
"0x250"
|
||||
],
|
||||
"printable_height": "225"
|
||||
}
|
||||
|
||||
"printable_height": "225",
|
||||
"printer_variant": "1.0"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 300",
|
||||
"default_print_profile": "0.09mm Standard 0.15 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.2"
|
||||
"0.2"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.04"
|
||||
"0.04"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.15"
|
||||
"nozzle_diameter": [
|
||||
"0.15"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "2755"
|
||||
}
|
||||
|
||||
"printable_height": "2755",
|
||||
"printer_variant": "0.15"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 300",
|
||||
"default_print_profile": "0.10mm Standard 0.2 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.2"
|
||||
"0.2"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.06"
|
||||
"0.06"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "2755"
|
||||
}
|
||||
|
||||
"printable_height": "2755",
|
||||
"printer_variant": "0.2"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 300",
|
||||
"default_print_profile": "0.10mm Standard 0.25 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.25"
|
||||
"0.25"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.06"
|
||||
"0.06"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.25"
|
||||
"nozzle_diameter": [
|
||||
"0.25"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "2755"
|
||||
}
|
||||
|
||||
"printable_height": "2755",
|
||||
"printer_variant": "0.25"
|
||||
}
|
||||
|
|
@ -6,6 +6,13 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 300",
|
||||
"default_print_profile": "0.20mm Standard @Voron",
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.10"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 300",
|
||||
"default_print_profile": "0.30mm Standard 0.6 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.45"
|
||||
"0.45"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.15"
|
||||
"0.15"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "275"
|
||||
}
|
||||
|
||||
"printable_height": "275",
|
||||
"printer_variant": "0.6"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 300",
|
||||
"default_print_profile": "0.40mm Standard 0.8 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.6"
|
||||
"0.6"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.20"
|
||||
"0.20"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "275"
|
||||
}
|
||||
|
||||
"printable_height": "275",
|
||||
"printer_variant": "0.8"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 300",
|
||||
"default_print_profile": "0.50mm Standard 1.0 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.9"
|
||||
"0.9"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.25"
|
||||
"0.25"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"1.0"
|
||||
"nozzle_diameter": [
|
||||
"1.0"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
"0x0",
|
||||
"300x0",
|
||||
"300x300",
|
||||
"0x300"
|
||||
],
|
||||
"printable_height": "275"
|
||||
}
|
||||
|
||||
"printable_height": "275",
|
||||
"printer_variant": "1.0"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 350",
|
||||
"default_print_profile": "0.09mm Standard 0.15 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.2"
|
||||
"0.2"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.04"
|
||||
"0.04"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.15"
|
||||
"nozzle_diameter": [
|
||||
"0.15"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
],
|
||||
"printable_height": "325"
|
||||
}
|
||||
|
||||
"printable_height": "325",
|
||||
"printer_variant": "0.15"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 350",
|
||||
"default_print_profile": "0.10mm Standard 0.2 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.2"
|
||||
"0.2"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.06"
|
||||
"0.06"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
],
|
||||
"printable_height": "325"
|
||||
}
|
||||
|
||||
"printable_height": "325",
|
||||
"printer_variant": "0.2"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 350",
|
||||
"default_print_profile": "0.10mm Standard 0.25 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.25"
|
||||
"0.25"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.06"
|
||||
"0.06"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.25"
|
||||
"nozzle_diameter": [
|
||||
"0.25"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
],
|
||||
"printable_height": "325"
|
||||
}
|
||||
|
||||
"printable_height": "325",
|
||||
"printer_variant": "0.25"
|
||||
}
|
||||
|
|
@ -6,6 +6,13 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 350",
|
||||
"default_print_profile": "0.20mm Standard @Voron",
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.10"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 350",
|
||||
"default_print_profile": "0.30mm Standard 0.6 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.45"
|
||||
"0.45"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.15"
|
||||
"0.15"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
],
|
||||
"printable_height": "325"
|
||||
}
|
||||
|
||||
"printable_height": "325",
|
||||
"printer_variant": "0.6"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 350",
|
||||
"default_print_profile": "0.40mm Standard 0.8 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.6"
|
||||
"0.6"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.20"
|
||||
"0.20"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
],
|
||||
"printable_height": "325"
|
||||
}
|
||||
|
||||
"printable_height": "325",
|
||||
"printer_variant": "0.8"
|
||||
}
|
||||
|
|
@ -6,21 +6,22 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron 2.4 350",
|
||||
"default_print_profile": "0.50mm Standard 1.0 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.9"
|
||||
"0.9"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.25"
|
||||
"0.25"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"1.0"
|
||||
"nozzle_diameter": [
|
||||
"1.0"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
"0x0",
|
||||
"350x0",
|
||||
"350x350",
|
||||
"0x350"
|
||||
],
|
||||
"printable_height": "325"
|
||||
}
|
||||
|
||||
"printable_height": "325",
|
||||
"printer_variant": "1.0"
|
||||
}
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM002",
|
||||
"name": "Voron Switchwire 250 0.15 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron Switchwire 250",
|
||||
"default_print_profile": "0.09mm Standard 0.15 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.12"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.04"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.15"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x210",
|
||||
"0x210"
|
||||
],
|
||||
"printable_height": "240",
|
||||
"printer_variant": "0.15"
|
||||
}
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM002",
|
||||
"name": "Voron Switchwire 250 0.2 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron Switchwire 250",
|
||||
"default_print_profile": "0.10mm Standard 0.2 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.16"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.05"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.2"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x210",
|
||||
"0x210"
|
||||
],
|
||||
"printable_height": "240",
|
||||
"printer_variant": "0.2"
|
||||
}
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM002",
|
||||
"name": "Voron Switchwire 250 0.25 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron Switchwire 250",
|
||||
"default_print_profile": "0.10mm Standard 0.25 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.20"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.06"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.25"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x210",
|
||||
"0x210"
|
||||
],
|
||||
"printable_height": "240",
|
||||
"printer_variant": "0.25"
|
||||
}
|
||||
|
|
@ -6,6 +6,13 @@
|
|||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron Switchwire 250",
|
||||
"default_print_profile": "0.20mm Standard @Voron",
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.10"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM003",
|
||||
"name": "Voron Switchwire 250 0.6 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron Switchwire 250",
|
||||
"default_print_profile": "0.30mm Standard 0.6 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.15"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x210",
|
||||
"0x210"
|
||||
],
|
||||
"printable_height": "240",
|
||||
"printer_variant": "0.6"
|
||||
}
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM004",
|
||||
"name": "Voron Switchwire 250 0.8 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_klipper_common",
|
||||
"printer_model": "Voron Switchwire 250",
|
||||
"default_print_profile": "0.40mm Standard 0.8 nozzle @Voron",
|
||||
"max_layer_height": [
|
||||
"0.64"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.2"
|
||||
],
|
||||
"nozzle_diameter": [
|
||||
"0.8"
|
||||
],
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"250x0",
|
||||
"250x210",
|
||||
"0x210"
|
||||
],
|
||||
"printable_height": "240",
|
||||
"printer_variant": "0.8"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue