Merge branch 'main' into feature/wipetower-option

This commit is contained in:
SoftFever
2026-03-16 17:41:00 +08:00
committed by GitHub
135 changed files with 930 additions and 437 deletions

View File

@@ -15,12 +15,11 @@ on:
default: 'warning' default: 'warning'
permissions: permissions:
pull-requests: write
contents: read contents: read
jobs: jobs:
check_translation: check_profiles:
name: Check profiles name: Check profiles
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
steps: steps:
@@ -62,11 +61,11 @@ jobs:
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 2>&1 | tee ${{ runner.temp }}/validate_custom.log ./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 2>&1 | tee ${{ runner.temp }}/validate_custom.log
exit ${PIPESTATUS[0]} exit ${PIPESTATUS[0]}
- name: Post error comment on PR - name: Prepare comment artifact
if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
env:
GH_TOKEN: ${{ github.token }}
run: | run: |
mkdir -p ${{ runner.temp }}/profile-check-results
{ {
echo "## :x: Profile Validation Errors" echo "## :x: Profile Validation Errors"
echo "" echo ""
@@ -100,16 +99,20 @@ jobs:
echo "---" echo "---"
echo "*Please fix the above errors and push a new commit.*" echo "*Please fix the above errors and push a new commit.*"
} > ${{ runner.temp }}/pr_comment.md } > ${{ runner.temp }}/profile-check-results/pr_comment.md
gh pr comment ${{ github.event.pull_request.number }} --body-file ${{ runner.temp }}/pr_comment.md echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt
- name: Upload comment artifact
if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
uses: actions/upload-artifact@v4
with:
name: profile-check-results
path: ${{ runner.temp }}/profile-check-results/
retention-days: 1
- name: Fail if any check failed - name: Fail if any check failed
if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
run: | run: |
echo "One or more profile checks failed. See above for details." echo "One or more profile checks failed. See above for details."
exit 1 exit 1

View File

@@ -0,0 +1,46 @@
name: Post profile check comment
# NOTE: The workflow name in the 'workflows' filter below must match the 'name'
# field in check_profiles.yml exactly. If that name changes, update it here too.
on:
workflow_run:
workflows: ["Check profiles"]
types:
- completed
permissions:
pull-requests: write
jobs:
post_comment:
name: Post PR comment
runs-on: ubuntu-24.04
if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'failure' }}
steps:
- name: Download artifact
id: download
uses: actions/download-artifact@v4
continue-on-error: true
with:
name: profile-check-results
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ github.token }}
- name: Post comment on PR
if: ${{ steps.download.outcome == 'success' }}
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }}
run: |
if [ ! -f pr_number.txt ] || [ ! -f pr_comment.md ]; then
echo "No comment artifact found, skipping."
exit 0
fi
PR_NUMBER=$(cat pr_number.txt)
if ! [[ "$PR_NUMBER" =~ ^[0-9]+$ ]]; then
echo "Invalid PR number: $PR_NUMBER"
exit 1
fi
gh pr comment "$PR_NUMBER" --body-file pr_comment.md

1
.gitignore vendored
View File

@@ -45,3 +45,4 @@ test.js
.clangd .clangd
internal_docs/ internal_docs/
*.flatpak *.flatpak
/flatpak-repo/

View File

@@ -493,7 +493,8 @@ if (APPLE)
endif () endif ()
if(MSVC) if(MSVC)
# 添加编译选项,忽略警告 C4305 (格式转换截断) # Ignore truncating casts in initializers & constructors
# https://learn.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-1-c4305
add_compile_options(/wd4305) add_compile_options(/wd4305)
endif() endif()

View File

@@ -13699,7 +13699,7 @@ msgstr ""
msgid "Topmost surface" msgid "Topmost surface"
msgstr "" msgstr ""
msgid "All solid layer" msgid "All solid layers"
msgstr "" msgstr ""
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -14125,7 +14125,7 @@ msgid ""
"conical material. A value of 0 will fill all the holes in the model base." "conical material. A value of 0 will fill all the holes in the model base."
msgstr "" msgstr ""
msgid "Detect overhang wall" msgid "Detect overhang walls"
msgstr "" msgstr ""
#, possible-c-format, possible-boost-format #, possible-c-format, possible-boost-format
@@ -14675,7 +14675,7 @@ msgid "Minimum sparse infill threshold"
msgstr "" msgstr ""
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
@@ -15281,12 +15281,12 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "" msgstr ""
msgid "Detect thin wall" msgid "Detect thin walls"
msgstr "" msgstr ""
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
msgid "" msgid ""
@@ -15748,7 +15748,7 @@ msgid ""
"itself. It's expressed as a percentage over nozzle diameter." "itself. It's expressed as a percentage over nozzle diameter."
msgstr "" msgstr ""
msgid "Detect narrow internal solid infill" msgid "Detect narrow internal solid infills"
msgstr "" msgstr ""
msgid "" msgid ""

View File

@@ -15335,7 +15335,8 @@ msgstr "Totes les superfícies superiors"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Només la última superfície superior" msgstr "Només la última superfície superior"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Tota la capa sòlida" msgstr "Tota la capa sòlida"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -15862,7 +15863,8 @@ msgstr ""
"Àrea màxima d'un forat a la base del model abans que s'ompli amb material " "Àrea màxima d'un forat a la base del model abans que s'ompli amb material "
"cònic. Un valor de 0 omplirà tots els forats de la base del model." "cònic. Un valor de 0 omplirà tots els forats de la base del model."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Detectar voladís de perímetre" msgstr "Detectar voladís de perímetre"
#, c-format, boost-format #, c-format, boost-format
@@ -16560,8 +16562,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Llindar mínim de farciment poc dens" msgstr "Llindar mínim de farciment poc dens"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"L'àrea de farciment poc dens que sigui més petita que el valor del llindar " "L'àrea de farciment poc dens que sigui més petita que el valor del llindar "
@@ -17321,12 +17324,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Temperatura del broquet per les capes després de l'inicial" msgstr "Temperatura del broquet per les capes després de l'inicial"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Detectar perímetres prims" msgstr "Detectar perímetres prims"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Detecta un perímetre prim que no pugui contenir dues línies d'amplada. I " "Detecta un perímetre prim que no pugui contenir dues línies d'amplada. I "
"utilitzar una sola línia per imprimir. Potser no s'imprimeix gaire bé, " "utilitzar una sola línia per imprimir. Potser no s'imprimeix gaire bé, "
@@ -17940,7 +17945,8 @@ msgstr ""
"fina que el gruix de l'element el perímetre esdevindrà tan gruixut com el " "fina que el gruix de l'element el perímetre esdevindrà tan gruixut com el "
"propi element. S'expressa en percentatge sobre el diàmetre del broquet" "propi element. S'expressa en percentatge sobre el diàmetre del broquet"
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Detectar de farciment sòlid intern estret" msgstr "Detectar de farciment sòlid intern estret"
msgid "" msgid ""

View File

@@ -14975,7 +14975,8 @@ msgstr "Horní povrchy"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Nejvyšší povrch" msgstr "Nejvyšší povrch"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Všechny pevné vrstvy" msgstr "Všechny pevné vrstvy"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -15464,7 +15465,8 @@ msgstr ""
"Maximální plocha otvoru ve spodní části modelu, než bude vyplněn kuželovitým " "Maximální plocha otvoru ve spodní části modelu, než bude vyplněn kuželovitým "
"materiálem. Hodnota 0 vyplní všechny otvory ve spodní části modelu." "materiálem. Hodnota 0 vyplní všechny otvory ve spodní části modelu."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Detekovat převislou stěnu" msgstr "Detekovat převislou stěnu"
#, c-format, boost-format #, c-format, boost-format
@@ -16143,8 +16145,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Minimální práh řídké výplně" msgstr "Minimální práh řídké výplně"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"Oblast řídké výplně menší než prahová hodnota bude nahrazena vnitřní plnou " "Oblast řídké výplně menší než prahová hodnota bude nahrazena vnitřní plnou "
@@ -16867,12 +16870,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Teplota trysky pro vrstvy po úvodní vrstvě." msgstr "Teplota trysky pro vrstvy po úvodní vrstvě."
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Detekovat tenkou stěnu" msgstr "Detekovat tenkou stěnu"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Detekovat tenkou stěnu, do které se nevejdou dvě šířky čáry. A použít pro " "Detekovat tenkou stěnu, do které se nevejdou dvě šířky čáry. A použít pro "
"tisk pouze jednu čáru. Tisk nemusí být zcela kvalitní, protože nejde o " "tisk pouze jednu čáru. Tisk nemusí být zcela kvalitní, protože nejde o "
@@ -17476,7 +17481,8 @@ msgstr ""
"modelu. Pokud je minimální šířka stěny menší než tloušťka prvku, bude stěna " "modelu. Pokud je minimální šířka stěny menší než tloušťka prvku, bude stěna "
"tak silná, jako je samotný prvek. Je vyjádřena jako procento průměru trysky." "tak silná, jako je samotný prvek. Je vyjádřena jako procento průměru trysky."
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Detekovat úzkou vnitřní plnou výplň" msgstr "Detekovat úzkou vnitřní plnou výplň"
msgid "" msgid ""

View File

@@ -16128,7 +16128,8 @@ msgstr "Obere Oberflächen"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Oberste Oberfläche" msgstr "Oberste Oberfläche"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Alle soliden Schichten" msgstr "Alle soliden Schichten"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -16661,7 +16662,8 @@ msgstr ""
"konischem Material gefüllt wird. Ein Wert von 0 füllt alle Löcher in der " "konischem Material gefüllt wird. Ein Wert von 0 füllt alle Löcher in der "
"Basis des Modells." "Basis des Modells."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Erkennen von Wandüberhängen" msgstr "Erkennen von Wandüberhängen"
#, c-format, boost-format #, c-format, boost-format
@@ -17370,8 +17372,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Mindestschwelle für Füllung" msgstr "Mindestschwelle für Füllung"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"Innere Füllbereiche, die kleiner als dieser Wert sind, werden durch massive " "Innere Füllbereiche, die kleiner als dieser Wert sind, werden durch massive "
@@ -18165,12 +18168,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Düsentemperatur nach der ersten Schicht" msgstr "Düsentemperatur nach der ersten Schicht"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Dünne Wand erkennen" msgstr "Dünne Wand erkennen"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Erkennt dünne Wände, die keine zwei Linienbreiten enthalten können. Und " "Erkennt dünne Wände, die keine zwei Linienbreiten enthalten können. Und "
"verwendet eine einzelne Linie zum Drucken. Diese wird vielleicht nicht sehr " "verwendet eine einzelne Linie zum Drucken. Diese wird vielleicht nicht sehr "
@@ -18823,7 +18828,8 @@ msgstr ""
"Dicke des Features, wird die Wand so dick wie das Feature selbst. Wird als " "Dicke des Features, wird die Wand so dick wie das Feature selbst. Wird als "
"Prozentsatz des Düsendurchmessers angegeben." "Prozentsatz des Düsendurchmessers angegeben."
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Erkennen einer schmalen internen soliden Füllung" msgstr "Erkennen einer schmalen internen soliden Füllung"
msgid "" msgid ""

View File

@@ -14006,8 +14006,8 @@ msgstr "All top surfaces"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Topmost surface only" msgstr "Topmost surface only"
msgid "All solid layer" msgid "All solid layers"
msgstr "All solid layers" msgstr ""
msgid "Ironing Pattern" msgid "Ironing Pattern"
msgstr "" msgstr ""
@@ -14444,8 +14444,8 @@ msgid ""
"conical material. A value of 0 will fill all the holes in the model base." "conical material. A value of 0 will fill all the holes in the model base."
msgstr "" msgstr ""
msgid "Detect overhang wall" msgid "Detect overhang walls"
msgstr "Detect overhang walls" msgstr ""
#, c-format, boost-format #, c-format, boost-format
msgid "" msgid ""
@@ -15008,7 +15008,7 @@ msgid "Minimum sparse infill threshold"
msgstr "" msgstr ""
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"Sparse infill areas which are smaller than this threshold value are replaced " "Sparse infill areas which are smaller than this threshold value are replaced "
@@ -15641,12 +15641,12 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Nozzle temperature after the first layer" msgstr "Nozzle temperature after the first layer"
msgid "Detect thin wall" msgid "Detect thin walls"
msgstr "Detect thin walls" msgstr ""
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"This detects thin walls which cant contain two lines and uses a single line " "This detects thin walls which cant contain two lines and uses a single line "
"to print. It may not print as well because its not a closed loop." "to print. It may not print as well because its not a closed loop."
@@ -16148,7 +16148,7 @@ msgid ""
"itself. It's expressed as a percentage over nozzle diameter." "itself. It's expressed as a percentage over nozzle diameter."
msgstr "" msgstr ""
msgid "Detect narrow internal solid infill" msgid "Detect narrow internal solid infills"
msgstr "" msgstr ""
msgid "" msgid ""
@@ -16170,7 +16170,7 @@ msgid " not in range "
msgstr "" msgstr ""
msgid "Export 3MF" msgid "Export 3MF"
msgstr "Export 3mf" msgstr ""
msgid "Export project as 3MF." msgid "Export project as 3MF."
msgstr "This exports the project as a 3MF file." msgstr "This exports the project as a 3MF file."

View File

@@ -16065,7 +16065,8 @@ msgstr "Todas las superficies superiores"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Sólo la superficie superior" msgstr "Sólo la superficie superior"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Todas la capas sólidas" msgstr "Todas la capas sólidas"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -16617,7 +16618,7 @@ msgstr ""
"material cónico. El valor 0 llenará todos los orificios en la base del " "material cónico. El valor 0 llenará todos los orificios en la base del "
"modelo." "modelo."
msgid "Detect overhang wall" msgid "Detect overhang walls"
msgstr "Detectar perímetros en voladizo" msgstr "Detectar perímetros en voladizo"
#, c-format, boost-format #, c-format, boost-format
@@ -17325,8 +17326,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Umbral de área mínima de relleno de baja densidad" msgstr "Umbral de área mínima de relleno de baja densidad"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"El área de relleno de baja densidad que es menor que este valor de umbral se " "El área de relleno de baja densidad que es menor que este valor de umbral se "
@@ -18117,12 +18119,12 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Temperatura de la boquilla después de la primera capa." msgstr "Temperatura de la boquilla después de la primera capa."
msgid "Detect thin wall" msgid "Detect thin walls"
msgstr "Detección de perímetros delgados" msgstr "Detección de perímetros delgados"
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Detectar los perímetros delgados que no pueden contener dos líneas de ancho, " "Detectar los perímetros delgados que no pueden contener dos líneas de ancho, "
"y utilizar una sola línea para imprimir. Tal vez no se imprima muy bien, " "y utilizar una sola línea para imprimir. Tal vez no se imprima muy bien, "
@@ -18777,7 +18779,8 @@ msgstr ""
"propia característica. Se expresa en porcentaje en base al diámetro de la " "propia característica. Se expresa en porcentaje en base al diámetro de la "
"boquilla." "boquilla."
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Detección de relleno interno estrecho" msgstr "Detección de relleno interno estrecho"
msgid "" msgid ""

View File

@@ -15465,7 +15465,8 @@ msgstr "Surfaces supérieures"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Surface la plus élevée" msgstr "Surface la plus élevée"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Toutes les couches pleines" msgstr "Toutes les couches pleines"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -16001,7 +16002,8 @@ msgstr ""
"par un matériau conique. Une valeur de 0 remplira tous les trous dans la " "par un matériau conique. Une valeur de 0 remplira tous les trous dans la "
"base du modèle." "base du modèle."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Détecter une paroi en surplomb" msgstr "Détecter une paroi en surplomb"
#, c-format, boost-format #, c-format, boost-format
@@ -16704,8 +16706,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Seuil minimum de remplissage" msgstr "Seuil minimum de remplissage"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"La zone de remplissage inférieure à la valeur seuil est remplacée par un " "La zone de remplissage inférieure à la valeur seuil est remplacée par un "
@@ -17475,12 +17478,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Température de la buse pour les couches après la première" msgstr "Température de la buse pour les couches après la première"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Détecter les parois fines" msgstr "Détecter les parois fines"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Détecte les parois fines qui ne peuvent pas contenir deux largeurs de ligne. " "Détecte les parois fines qui ne peuvent pas contenir deux largeurs de ligne. "
"Et utilisez une seule ligne pour imprimer. Peut ne pas être très bien " "Et utilisez une seule ligne pour imprimer. Peut ne pas être très bien "
@@ -18098,7 +18103,8 @@ msgstr ""
"l'élément lui-même. Elle est exprimée en pourcentage par rapport au diamètre " "l'élément lui-même. Elle est exprimée en pourcentage par rapport au diamètre "
"de la buse" "de la buse"
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Détecter un remplissage plein interne étroit" msgstr "Détecter un remplissage plein interne étroit"
msgid "" msgid ""

View File

@@ -15675,7 +15675,8 @@ msgstr "Felső felületek"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Legfelső felület" msgstr "Legfelső felület"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Összes szilárd réteg" msgstr "Összes szilárd réteg"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -16205,7 +16206,8 @@ msgstr ""
"A modell alján lévő lyuk maximális területe, mielőtt kúpos anyag töltené " "A modell alján lévő lyuk maximális területe, mielőtt kúpos anyag töltené "
"ki. A 0 érték a modellalap összes lyukát kitölti." "ki. A 0 érték a modellalap összes lyukát kitölti."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Túlnyúló fal felismerése" msgstr "Túlnyúló fal felismerése"
#, c-format, boost-format #, c-format, boost-format
@@ -16902,8 +16904,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Ritkás kitöltés küszöbértéke" msgstr "Ritkás kitöltés küszöbértéke"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"A küszöbérték alatti ritkás kitöltési terület belső szilárd kitöltéssel " "A küszöbérték alatti ritkás kitöltési terület belső szilárd kitöltéssel "
@@ -17680,12 +17683,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Fúvóka hőmérséklete az első réteg után" msgstr "Fúvóka hőmérséklete az első réteg után"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Vékony fal felismerése" msgstr "Vékony fal felismerése"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Felismeri a vékony falat, amit nem lehet két vonalnyi szélességgel " "Felismeri a vékony falat, amit nem lehet két vonalnyi szélességgel "
"nyomtatni, és egyetlen vonallal nyomtatja" "nyomtatni, és egyetlen vonallal nyomtatja"
@@ -18319,7 +18324,8 @@ msgstr ""
"mint a nyomtatandó elem vastagsága, akkor a fal olyan vastag lesz, mint maga " "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" "a nyomtatott elem. A fúvóka átmérőjének százalékában van kifejezve"
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Keskeny belső szilárd kitöltés felismerése" msgstr "Keskeny belső szilárd kitöltés felismerése"
msgid "" msgid ""

View File

@@ -15411,7 +15411,7 @@ msgstr "Superfici superiori"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Superficie superiore più alta" msgstr "Superficie superiore più alta"
msgid "All solid layer" msgid "All solid layers"
msgstr "Tutti gli strati solidi" msgstr "Tutti gli strati solidi"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -15945,7 +15945,8 @@ msgstr ""
"una forma conica. Un valore pari a 0 riempirà tutti i fori nella base del " "una forma conica. Un valore pari a 0 riempirà tutti i fori nella base del "
"modello." "modello."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Rileva parete sporgente" msgstr "Rileva parete sporgente"
#, c-format, boost-format #, c-format, boost-format
@@ -16651,8 +16652,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Soglia minima riempimento sparso" msgstr "Soglia minima riempimento sparso"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"L'area del riempimento sparso che è inferiore al valore di soglia, viene " "L'area del riempimento sparso che è inferiore al valore di soglia, viene "
@@ -17422,12 +17424,13 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Temperatura dell'ugello per gli strati successivi a quello iniziale." msgstr "Temperatura dell'ugello per gli strati successivi a quello iniziale."
msgid "Detect thin wall" msgid "Detect thin walls"
msgstr "Rileva pareti sottili" msgstr "Rileva pareti sottili"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Rileva le pareti sottili che non possono contenere due linee di larghezza, " "Rileva le pareti sottili che non possono contenere due linee di larghezza, "
"utilizzandone quindi una sola per la stampa. Potrebbe non essere stampato " "utilizzandone quindi una sola per la stampa. Potrebbe non essere stampato "
@@ -18044,7 +18047,8 @@ msgstr ""
"spessa quanto l'elemento stesso. Questo valore è espresso come percentuale " "spessa quanto l'elemento stesso. Questo valore è espresso come percentuale "
"rispetto al diametro dell'ugello." "rispetto al diametro dell'ugello."
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Rileva riempimento solido interno stretto" msgstr "Rileva riempimento solido interno stretto"
msgid "" msgid ""

View File

@@ -14082,7 +14082,8 @@ msgstr "全てのトップ面"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "最上部のみ" msgstr "最上部のみ"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "全てのソリッド積層" msgstr "全てのソリッド積層"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -14525,7 +14526,8 @@ msgid ""
"conical material. A value of 0 will fill all the holes in the model base." "conical material. A value of 0 will fill all the holes in the model base."
msgstr "" msgstr ""
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "オーバーハングを検出" msgstr "オーバーハングを検出"
#, c-format, boost-format #, c-format, boost-format
@@ -15097,8 +15099,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "スパース インフィルの下閾値" msgstr "スパース インフィルの下閾値"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"スパース インフィルの面積がこの値以下の場合、ソリッド インフィルに変換されま" "スパース インフィルの面積がこの値以下の場合、ソリッド インフィルに変換されま"
@@ -15743,12 +15746,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "1層目後のズル温度" msgstr "1層目後のズル温度"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "薄い壁を検出" msgstr "薄い壁を検出"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"2ラインの入らない薄い壁面を検出し、1ラインで造形します。仕上がりが悪くなり可" "2ラインの入らない薄い壁面を検出し、1ラインで造形します。仕上がりが悪くなり可"
"能性があります。" "能性があります。"
@@ -16251,7 +16256,8 @@ msgid ""
"itself. It's expressed as a percentage over nozzle diameter." "itself. It's expressed as a percentage over nozzle diameter."
msgstr "" msgstr ""
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "薄いソリッド インフィル検出" msgstr "薄いソリッド インフィル検出"
msgid "" msgid ""

View File

@@ -14809,7 +14809,8 @@ msgstr "상단 표면"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "최상단 표면" msgstr "최상단 표면"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "모든 꽉찬 레이어" msgstr "모든 꽉찬 레이어"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -15303,7 +15304,8 @@ msgstr ""
"원뿔형 재료로 채워지기 전에 모델 베이스에 있는 구멍의 최대 면적입니다. 값이 0" "원뿔형 재료로 채워지기 전에 모델 베이스에 있는 구멍의 최대 면적입니다. 값이 0"
"이면 모델 베이스의 모든 구멍이 채워집니다." "이면 모델 베이스의 모든 구멍이 채워집니다."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "오버행 벽 감지" msgstr "오버행 벽 감지"
#, c-format, boost-format #, c-format, boost-format
@@ -15962,8 +15964,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "최소 드문 채우기 임계값" msgstr "최소 드문 채우기 임계값"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "임계값보다 작은 드문 채우기 영역은 꽉찬 내부 채우기로 대체됩니다" msgstr "임계값보다 작은 드문 채우기 영역은 꽉찬 내부 채우기로 대체됩니다"
@@ -16671,12 +16674,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "초기 레이어 이후의 노즐 온도" msgstr "초기 레이어 이후의 노즐 온도"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "얇은 벽 감지" msgstr "얇은 벽 감지"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"두개의 선 너비를 포함할 수 없는 얇은 벽을 감지합니다. 그리고 한 선으로 출력합" "두개의 선 너비를 포함할 수 없는 얇은 벽을 감지합니다. 그리고 한 선으로 출력합"
"니다. 폐쇄 루프가 아니기 때문에 출력이 잘 되지 않을 수 있습니다" "니다. 폐쇄 루프가 아니기 때문에 출력이 잘 되지 않을 수 있습니다"
@@ -17246,7 +17251,8 @@ msgstr ""
"비가 형상의 두께보다 얇은 경우 벽은 형상 자체만큼 두꺼워집니다. 노즐 직경에 " "비가 형상의 두께보다 얇은 경우 벽은 형상 자체만큼 두꺼워집니다. 노즐 직경에 "
"대한 백분율로 표시됩니다" "대한 백분율로 표시됩니다"
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "좁은 꽉찬 내부 채우기 감지" msgstr "좁은 꽉찬 내부 채우기 감지"
msgid "" msgid ""

View File

@@ -15362,7 +15362,8 @@ msgstr "Viršutiniai paviršiai"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Aukščiausias paviršius" msgstr "Aukščiausias paviršius"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Visas vientisas sluoksnis" msgstr "Visas vientisas sluoksnis"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -15891,7 +15892,8 @@ msgstr ""
"Didžiausias modelio pagrindo skylės plotas prieš ją užpildant kūgine " "Didžiausias modelio pagrindo skylės plotas prieš ją užpildant kūgine "
"medžiaga. 0 reikšmė užpildys visas modelio pagrindo skyles." "medžiaga. 0 reikšmė užpildys visas modelio pagrindo skyles."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Aptikti išsikišusią sieną" msgstr "Aptikti išsikišusią sieną"
#, c-format, boost-format #, c-format, boost-format
@@ -16581,8 +16583,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Minimali reto užpildymo riba" msgstr "Minimali reto užpildymo riba"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"Reto užpildymo sritys, kurios yra mažesnės už šią ribinę vertę, pakeičiamos " "Reto užpildymo sritys, kurios yra mažesnės už šią ribinę vertę, pakeičiamos "
@@ -17342,12 +17345,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Po pradinio sluoksnio esančių sluoksnių purkštuko temperatūra." msgstr "Po pradinio sluoksnio esančių sluoksnių purkštuko temperatūra."
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Aptikti plonas sieneles" msgstr "Aptikti plonas sieneles"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Aptikti ploną sienelę, kurioje negali būti dviejų eilučių pločio. " "Aptikti ploną sienelę, kurioje negali būti dviejų eilučių pločio. "
"Spausdinimui naudoti vieną liniją. Gali būti, kad nebus išspausdinta labai " "Spausdinimui naudoti vieną liniją. Gali būti, kad nebus išspausdinta labai "
@@ -17975,7 +17980,8 @@ msgstr ""
"siena taps tokio pat storio kaip ir pats elementas. Jis išreiškiamas " "siena taps tokio pat storio kaip ir pats elementas. Jis išreiškiamas "
"procentais nuo purkštuko skersmens." "procentais nuo purkštuko skersmens."
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Aptikti siaurą vidinį vientisą užpildą" msgstr "Aptikti siaurą vidinį vientisą užpildą"
msgid "" msgid ""

View File

@@ -14479,7 +14479,8 @@ msgstr "Alle bovenoppervlakken"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Alleen het bovenste oppervlak" msgstr "Alleen het bovenste oppervlak"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Alle vaste lagen" msgstr "Alle vaste lagen"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -14942,7 +14943,8 @@ msgid ""
"conical material. A value of 0 will fill all the holes in the model base." "conical material. A value of 0 will fill all the holes in the model base."
msgstr "" msgstr ""
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Overhange wand detecteren" msgstr "Overhange wand detecteren"
#, c-format, boost-format #, c-format, boost-format
@@ -15538,8 +15540,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Minimale drempel voor dunne opvulling (infill)" msgstr "Minimale drempel voor dunne opvulling (infill)"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"Dunne opvullingen (infill) die kleiner zijn dan deze drempelwaarde worden " "Dunne opvullingen (infill) die kleiner zijn dan deze drempelwaarde worden "
@@ -16216,12 +16219,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Mondstuk temperatuur voor de lagen na de eerste laag" msgstr "Mondstuk temperatuur voor de lagen na de eerste laag"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Detecteer dunne wanden" msgstr "Detecteer dunne wanden"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Dit detecteert dunne wanden die geen twee lijnen kunnen bevatten en gebruikt " "Dit detecteert dunne wanden die geen twee lijnen kunnen bevatten en gebruikt "
"een enkele lijn tijdens het printen. Het kan zijn dat de kwaliteit minder " "een enkele lijn tijdens het printen. Het kan zijn dat de kwaliteit minder "
@@ -16772,7 +16777,8 @@ msgstr ""
"van het element, wordt de muur net zo dik als het object zelf. Dit wordt " "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 het mondstuk" "uitgedrukt als een percentage ten opzichte van de diameter van het mondstuk"
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Detecteer dichte interne solide vulling (infill)" msgstr "Detecteer dichte interne solide vulling (infill)"
msgid "" msgid ""

View File

@@ -15262,7 +15262,8 @@ msgstr "Górne powierzchnie"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Tylko ostatnia warstwa" msgstr "Tylko ostatnia warstwa"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Wszystkie jednolite warstwy" msgstr "Wszystkie jednolite warstwy"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -15789,7 +15790,8 @@ msgstr ""
"Maksymalna powierzchnia otworu w podstawie modelu przed jego wypełnieniem " "Maksymalna powierzchnia otworu w podstawie modelu przed jego wypełnieniem "
"materiałem stożkowym. Wartość 0 wypełni wszystkie otwory w podstawie modelu." "materiałem stożkowym. Wartość 0 wypełni wszystkie otwory w podstawie modelu."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Wykrywanie ścian nawisu" msgstr "Wykrywanie ścian nawisu"
#, c-format, boost-format #, c-format, boost-format
@@ -16486,8 +16488,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Minimalny próg wypełnienia" msgstr "Minimalny próg wypełnienia"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"Obszar wypełnienia, który jest mniejszy od wartości progowej zostaje " "Obszar wypełnienia, który jest mniejszy od wartości progowej zostaje "
@@ -17239,12 +17242,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Temperatura dyszy dla warstw po początkowej" msgstr "Temperatura dyszy dla warstw po początkowej"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Wykrywanie cienkich ścian" msgstr "Wykrywanie cienkich ścian"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Wykrywaj ściany o grubości jednego obrysu. Są to obszary, gdzie 2 obrysy nie " "Wykrywaj ściany o grubości jednego obrysu. Są to obszary, gdzie 2 obrysy nie "
"zmieszczą się i trzeba będzie połączyć je w jedną linię" "zmieszczą się i trzeba będzie połączyć je w jedną linię"
@@ -17850,7 +17855,8 @@ msgstr ""
"grubość detalu, obrys będzie miał taką samą grubość jak sam element. Jest " "grubość detalu, obrys będzie miał taką samą grubość jak sam element. Jest "
"wyrażona w procentach i zostanie obliczona na podstawie średnicy dyszy." "wyrażona w procentach i zostanie obliczona na podstawie średnicy dyszy."
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Wykryj wąskie wewnętrzne pełne wypełnienie" msgstr "Wykryj wąskie wewnętrzne pełne wypełnienie"
msgid "" msgid ""

View File

@@ -15957,7 +15957,7 @@ msgstr "Superfícies superiores"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Superfície superior mais alta" msgstr "Superfície superior mais alta"
msgid "All solid layer" msgid "All solid layers"
msgstr "Todas as camadas sólidas" msgstr "Todas as camadas sólidas"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -16497,7 +16497,7 @@ msgstr ""
"Área maxima de um furo na base do modelo antes que ele seja preenchido por " "Área maxima de um furo na base do modelo antes que ele seja preenchido por "
"uma forma cônica. Um valor 0 irá preencher todos os furos do modelo." "uma forma cônica. Um valor 0 irá preencher todos os furos do modelo."
msgid "Detect overhang wall" msgid "Detect overhang walls"
msgstr "Detectar paredes salientes" msgstr "Detectar paredes salientes"
#, c-format, boost-format #, c-format, boost-format
@@ -17197,11 +17197,11 @@ msgid "Minimum sparse infill threshold"
msgstr "Limiar mínimo de preenchimento esparso" msgstr "Limiar mínimo de preenchimento esparso"
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"A área de preenchimento esparso que é menor que o valor limiar é substituída " "Áreas de preenchimento esparso menores que este valor limiar são "
"por preenchimento sólido interno." "substituídas por preenchimento sólido interno."
msgid "Solid infill" msgid "Solid infill"
msgstr "Preenchimento sólido" msgstr "Preenchimento sólido"
@@ -17980,15 +17980,15 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Temperatura do bico para camadas após a inicial." msgstr "Temperatura do bico para camadas após a inicial."
msgid "Detect thin wall" msgid "Detect thin walls"
msgstr "Detectar parede fina" msgstr "Detectar paredes finas"
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Detecta paredes finas que não podem conter duas larguras de linha. E usa uma " "Detecta paredes finas que não podem conter duas larguras de linha, e usa uma "
"linha única para imprimir. Talvez seja impresso não muito bem, porque não é " "linha única para imprimir. Talvez não seja impresso muito bem, porque não é "
"uma volta fechada." "uma volta fechada."
msgid "" msgid ""
@@ -18625,8 +18625,8 @@ msgstr ""
"do que a espessura do elemento, a parede será tão espesso quanto o próprio " "do que a espessura do elemento, a parede será tão espesso quanto o próprio "
"elemento. É expresso como uma porcentagem sobre o diâmetro do bico." "elemento. É expresso como uma porcentagem sobre o diâmetro do bico."
msgid "Detect narrow internal solid infill" msgid "Detect narrow internal solid infills"
msgstr "Detectar preenchimento sólido interno estreito" msgstr "Detectar preenchimentos sólidos internos estreitos"
msgid "" msgid ""
"This option will auto-detect narrow internal solid infill areas. If enabled, " "This option will auto-detect narrow internal solid infill areas. If enabled, "

View File

@@ -16033,7 +16033,8 @@ msgstr "Поверхности"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Верхний слой" msgstr "Верхний слой"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Сплошные слои" msgstr "Сплошные слои"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -16587,7 +16588,8 @@ msgstr ""
"материалом конической геометрии. При 0 все отверстия в основании модели " "материалом конической геометрии. При 0 все отверстия в основании модели "
"будут заполнены." "будут заполнены."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Обнаруживать нависающие периметры" msgstr "Обнаруживать нависающие периметры"
#, c-format, boost-format #, c-format, boost-format
@@ -17325,8 +17327,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Мин. порог разреженного заполнения" msgstr "Мин. порог разреженного заполнения"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"Область с разреженным заполнением, размер которого меньше этого порогового " "Область с разреженным заполнением, размер которого меньше этого порогового "
@@ -18165,12 +18168,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Температура при печати последующих слоёв." msgstr "Температура при печати последующих слоёв."
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Обнаруживать тонкие стенки" msgstr "Обнаруживать тонкие стенки"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Обнаруживать стенки, которые можно напечатать только в одну линию. Возможно, " "Обнаруживать стенки, которые можно напечатать только в одну линию. Возможно, "
"будет напечатано не очень хорошо, так как это разомкнутый контур.\n" "будет напечатано не очень хорошо, так как это разомкнутый контур.\n"
@@ -18852,7 +18857,8 @@ msgstr ""
"подогнана под размер элемента, если значение этого параметра меньше его " "подогнана под размер элемента, если значение этого параметра меньше его "
"ширины. Можно указать процент от диаметра сопла." "ширины. Можно указать процент от диаметра сопла."
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Оптимизация заполнения узких мест" msgstr "Оптимизация заполнения узких мест"
msgid "" msgid ""

View File

@@ -14263,7 +14263,8 @@ msgstr "Top ytor"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Endast högsta ytan" msgstr "Endast högsta ytan"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Alla solida lager" msgstr "Alla solida lager"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -14704,7 +14705,8 @@ msgid ""
"conical material. A value of 0 will fill all the holes in the model base." "conical material. A value of 0 will fill all the holes in the model base."
msgstr "" msgstr ""
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Upptäck överhängs vägg" msgstr "Upptäck överhängs vägg"
#, c-format, boost-format #, c-format, boost-format
@@ -15283,8 +15285,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Min sparsam ifyllnads gräns" msgstr "Min sparsam ifyllnads gräns"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"Sparsam ifyllnads ytor som är mindre än detta gränsvärde ersätts med inre " "Sparsam ifyllnads ytor som är mindre än detta gränsvärde ersätts med inre "
@@ -15939,12 +15942,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Nozzel temperatur efter första lager" msgstr "Nozzel temperatur efter första lager"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Upptäck tunna väggar" msgstr "Upptäck tunna väggar"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Upptäck tunna väggar som inte kan ha två linjer och använder en linje för " "Upptäck tunna väggar som inte kan ha två linjer och använder en linje för "
"att skrivas ut. Utskrifts kvaliteten begränsas efter som det inte är en " "att skrivas ut. Utskrifts kvaliteten begränsas efter som det inte är en "
@@ -16472,7 +16477,8 @@ msgstr ""
"elementet blir väggen lika tjock som själva elementet. Den uttrycks i " "elementet blir väggen lika tjock som själva elementet. Den uttrycks i "
"procent av nozzel diametern." "procent av nozzel diametern."
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Upptäck tight inre solid ifyllnad" msgstr "Upptäck tight inre solid ifyllnad"
msgid "" msgid ""

View File

@@ -15259,7 +15259,8 @@ msgstr "Üst yüzeyler"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "En üst yüzey" msgstr "En üst yüzey"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Tamamı katı katman" msgstr "Tamamı katı katman"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -15787,7 +15788,8 @@ msgstr ""
"Modelin tabanındaki bir deliğin, konik malzemeyle doldurulmadan önce " "Modelin tabanındaki bir deliğin, konik malzemeyle doldurulmadan önce "
"maksimum alanı. 0 değeri, model tabanındaki tüm delikleri dolduracaktır." "maksimum alanı. 0 değeri, model tabanındaki tüm delikleri dolduracaktır."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Çıkıntılı duvarı algıla" msgstr "Çıkıntılı duvarı algıla"
#, c-format, boost-format #, c-format, boost-format
@@ -16482,8 +16484,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Minimum seyrek dolgu" msgstr "Minimum seyrek dolgu"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"Eşik değerinden küçük olan seyrek dolgu alanı, yerini iç katı dolguya " "Eşik değerinden küçük olan seyrek dolgu alanı, yerini iç katı dolguya "
@@ -17237,12 +17240,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "İlk katmandan sonraki katmanlar için nozul sıcaklığı." msgstr "İlk katmandan sonraki katmanlar için nozul sıcaklığı."
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "İnce duvarı algıla" msgstr "İnce duvarı algıla"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"İki çizgi genişliğini içeremeyen ince duvarı tespit edin. Ve yazdırmak için " "İki çizgi genişliğini içeremeyen ince duvarı tespit edin. Ve yazdırmak için "
"tek satır kullanın. Kapalı döngü olmadığından pek iyi basılmamış olabilir." "tek satır kullanın. Kapalı döngü olmadığından pek iyi basılmamış olabilir."
@@ -17867,7 +17872,8 @@ msgstr ""
"duvar, özelliğin kendisi kadar kalın olacaktır. Nozul çapına göre yüzde " "duvar, özelliğin kendisi kadar kalın olacaktır. Nozul çapına göre yüzde "
"olarak ifade edilir." "olarak ifade edilir."
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Dar iç katı dolguyu tespit et" msgstr "Dar iç katı dolguyu tespit et"
msgid "" msgid ""

View File

@@ -15263,7 +15263,8 @@ msgstr "Верхові поверхні"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Найвища поверхня" msgstr "Найвища поверхня"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Весь суцільний шар" msgstr "Весь суцільний шар"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -15780,7 +15781,8 @@ msgstr ""
"Максимальна площа отвору в основі моделі перед заповненням його конічним " "Максимальна площа отвору в основі моделі перед заповненням його конічним "
"матеріалом. Значення 0 заповнює всі отвори в основі моделі." "матеріалом. Значення 0 заповнює всі отвори в основі моделі."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Виявлення стінок що нависають" msgstr "Виявлення стінок що нависають"
#, c-format, boost-format #, c-format, boost-format
@@ -16468,8 +16470,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Мінімальний поріг часткового заповнення" msgstr "Мінімальний поріг часткового заповнення"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"Ділянки часткового заповнення, менші за порогове значення, замінюються " "Ділянки часткового заповнення, менші за порогове значення, замінюються "
@@ -17212,12 +17215,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Температура сопла для шарів після першого" msgstr "Температура сопла для шарів після першого"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Виявлення тонкої стінки" msgstr "Виявлення тонкої стінки"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Виявляти тонкі стінки, товщина яких менше ніж ширина двох ліній і " "Виявляти тонкі стінки, товщина яких менше ніж ширина двох ліній і "
"використовувати лише одну лінію для друку. Можуть бути надруковані не дуже " "використовувати лише одну лінію для друку. Можуть бути надруковані не дуже "
@@ -17815,7 +17820,8 @@ msgstr ""
"елемента, то товщина периметра дорівнюватиме товщині самого елемента. Він " "елемента, то товщина периметра дорівнюватиме товщині самого елемента. Він "
"виражається у відсотках від діаметра сопла" "виражається у відсотках від діаметра сопла"
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Виявлення вузького внутрішнього суцільного заповнення" msgstr "Виявлення вузького внутрішнього суцільного заповнення"
msgid "" msgid ""

View File

@@ -15026,7 +15026,8 @@ msgstr "Bề mặt trên"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "Bề mặt trên cùng" msgstr "Bề mặt trên cùng"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "Tất cả lớp đặc" msgstr "Tất cả lớp đặc"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -15542,7 +15543,8 @@ msgstr ""
"Diện tích tối đa của lỗ ở đáy model trước khi nó được lấp bởi vật liệu hình " "Diện tích tối đa của lỗ ở đáy model trước khi nó được lấp bởi vật liệu hình "
"nón. Giá trị 0 sẽ lấp tất cả các lỗ ở đáy model." "nón. Giá trị 0 sẽ lấp tất cả các lỗ ở đáy model."
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "Phát hiện thành nhô" msgstr "Phát hiện thành nhô"
#, c-format, boost-format #, c-format, boost-format
@@ -16213,8 +16215,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "Ngưỡng infill thưa tối thiểu" msgstr "Ngưỡng infill thưa tối thiểu"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "" msgstr ""
"Vùng infill thưa nhỏ hơn giá trị ngưỡng được thay thế bằng infill đặc bên " "Vùng infill thưa nhỏ hơn giá trị ngưỡng được thay thế bằng infill đặc bên "
@@ -16948,12 +16951,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "Nhiệt độ đầu phun cho các lớp sau lớp đầu tiên." msgstr "Nhiệt độ đầu phun cho các lớp sau lớp đầu tiên."
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "Phát hiện thành mỏng" msgstr "Phát hiện thành mỏng"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"Phát hiện thành mỏng không thể chứa hai độ rộng đường. Và sử dụng đường đơn " "Phát hiện thành mỏng không thể chứa hai độ rộng đường. Và sử dụng đường đơn "
"để in. Có thể in không tốt lắm, vì nó không phải vòng kín." "để in. Có thể in không tốt lắm, vì nó không phải vòng kín."
@@ -17560,7 +17565,8 @@ msgstr ""
"thành sẽ trở nên dày như tính năng đó. Nó được biểu thị dưới dạng phần trăm " "thành sẽ trở nên dày như tính năng đó. Nó được biểu thị dưới dạng phần trăm "
"trên đường kính đầu phun." "trên đường kính đầu phun."
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "Phát hiện infill đặc bên trong hẹp" msgstr "Phát hiện infill đặc bên trong hẹp"
msgid "" msgid ""

View File

@@ -14570,7 +14570,8 @@ msgstr "顶面"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "最顶面" msgstr "最顶面"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "所有实心层" msgstr "所有实心层"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -15044,7 +15045,8 @@ msgstr ""
"模型底部的孔洞在被圆锥形材料填充前所允许的最大面积。值为0将填充模型底部的所有" "模型底部的孔洞在被圆锥形材料填充前所允许的最大面积。值为0将填充模型底部的所有"
"孔洞。" "孔洞。"
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "识别悬垂外墙" msgstr "识别悬垂外墙"
#, c-format, boost-format #, c-format, boost-format
@@ -15654,8 +15656,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "稀疏填充最小阈值" msgstr "稀疏填充最小阈值"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "小于这个阈值的稀疏填充区域将会被内部实心填充替代。" msgstr "小于这个阈值的稀疏填充区域将会被内部实心填充替代。"
@@ -16342,12 +16345,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "除首层外的其它层的喷嘴温度" msgstr "除首层外的其它层的喷嘴温度"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "检查薄壁" msgstr "检查薄壁"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"检查无法容纳两条走线的薄壁。使用单条走线打印。可能会打地不是很好,因为走线不" "检查无法容纳两条走线的薄壁。使用单条走线打印。可能会打地不是很好,因为走线不"
"再闭合。" "再闭合。"
@@ -16910,7 +16915,8 @@ msgstr ""
"用于替换模型上的细小特征(根据最小特征尺寸决定)的墙线宽。如果最小墙宽度小于" "用于替换模型上的细小特征(根据最小特征尺寸决定)的墙线宽。如果最小墙宽度小于"
"最小特征宽度,则墙将变得和特征本身一样厚。本设置以喷嘴直径的百分比表示。" "最小特征宽度,则墙将变得和特征本身一样厚。本设置以喷嘴直径的百分比表示。"
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "识别狭窄的内部实心填充" msgstr "识别狭窄的内部实心填充"
msgid "" msgid ""

View File

@@ -14694,7 +14694,8 @@ msgstr "頂面"
msgid "Topmost surface" msgid "Topmost surface"
msgstr "最頂面" msgstr "最頂面"
msgid "All solid layer" #, fuzzy
msgid "All solid layers"
msgstr "所有實心層" msgstr "所有實心層"
msgid "Ironing Pattern" msgid "Ironing Pattern"
@@ -15174,7 +15175,8 @@ msgstr ""
"模型底部的孔洞在被圓錐形材料填充前所允許的最大面積。值為 0 將填充模型底部的所" "模型底部的孔洞在被圓錐形材料填充前所允許的最大面積。值為 0 將填充模型底部的所"
"有孔洞。" "有孔洞。"
msgid "Detect overhang wall" #, fuzzy
msgid "Detect overhang walls"
msgstr "檢測懸空外牆" msgstr "檢測懸空外牆"
#, c-format, boost-format #, c-format, boost-format
@@ -15786,8 +15788,9 @@ msgstr ""
msgid "Minimum sparse infill threshold" msgid "Minimum sparse infill threshold"
msgstr "稀疏填充最小臨界值" msgstr "稀疏填充最小臨界值"
#, fuzzy
msgid "" msgid ""
"Sparse infill area which is smaller than threshold value is replaced by " "Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill." "internal solid infill."
msgstr "小於設定閾值的稀疏填充區域將替換為內部實心填充" msgstr "小於設定閾值的稀疏填充區域將替換為內部實心填充"
@@ -16482,12 +16485,14 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one." msgid "Nozzle temperature for layers after the initial one."
msgstr "除首層外的其它層的噴嘴溫度" msgstr "除首層外的其它層的噴嘴溫度"
msgid "Detect thin wall" #, fuzzy
msgid "Detect thin walls"
msgstr "檢查薄壁" msgstr "檢查薄壁"
#, fuzzy
msgid "" msgid ""
"Detect thin wall which can't contain two line width. And use single line to " "Detect thin walls which can't contain two line widths, and use single line "
"print. Maybe printed not very well, because it's not closed loop." "to print. Maybe not printed very well, because it's not a closed loop."
msgstr "" msgstr ""
"檢查無法容納兩條走線的薄壁。使用單條走線列印。可能會打地不是很好,因為走線不" "檢查無法容納兩條走線的薄壁。使用單條走線列印。可能會打地不是很好,因為走線不"
"再閉合" "再閉合"
@@ -17045,7 +17050,8 @@ msgstr ""
"設定替代模型中細薄特徵(依據最小特徵尺寸)的牆體寬度。若最小牆寬小於特徵厚" "設定替代模型中細薄特徵(依據最小特徵尺寸)的牆體寬度。若最小牆寬小於特徵厚"
"度,牆體將與特徵的厚度一致。此值以噴嘴直徑的百分比表示" "度,牆體將與特徵的厚度一致。此值以噴嘴直徑的百分比表示"
msgid "Detect narrow internal solid infill" #, fuzzy
msgid "Detect narrow internal solid infills"
msgstr "識別狹窄內部實心填充" msgstr "識別狹窄內部實心填充"
msgid "" msgid ""

View File

@@ -4,7 +4,7 @@
"inherits": "fdm_filament_q_common", "inherits": "fdm_filament_q_common",
"from": "system", "from": "system",
"setting_id": "GFSA04", "setting_id": "GFSA04",
"filament_id": "GFB99", "filament_id": "QD_1_0_23",
"instantiation": "false", "instantiation": "false",
"box_temperature_range_high": [ "box_temperature_range_high": [
"65" "65"

View File

@@ -1,6 +1,6 @@
{ {
"type": "filament", "type": "filament",
"filament_id": "GFB99", "filament_id": "QD_2_0_23",
"setting_id": "GFSA04", "setting_id": "GFSA04",
"name": "Generic PC@Q2C-Series", "name": "Generic PC@Q2C-Series",
"from": "system", "from": "system",

View File

@@ -1,6 +1,6 @@
{ {
"type": "filament", "type": "filament",
"filament_id": "GFB99", "filament_id": "QD_3_0_23",
"setting_id": "GFSA04", "setting_id": "GFSA04",
"name": "Generic PC@X-Max 4-Series", "name": "Generic PC@X-Max 4-Series",
"from": "system", "from": "system",

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP024", "setting_id": "GP024",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.2 nozzle" "Qidi Q2 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP024", "setting_id": "GP024",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.2 nozzle" "Qidi Q2C 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP024", "setting_id": "GP024",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.2 nozzle" "Qidi X-Plus 4 0.2 nozzle"
] ]

View File

@@ -10,7 +10,7 @@
"bridge_flow": "1", "bridge_flow": "1",
"default_acceleration": ["4000"], "default_acceleration": ["4000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"initial_layer_infill_speed": ["70"], "initial_layer_infill_speed": ["70"],
"initial_layer_line_width": "0.25", "initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1", "initial_layer_print_height": "0.1",

View File

@@ -10,7 +10,7 @@
"bridge_flow": "1", "bridge_flow": "1",
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["350"], "gap_infill_speed": ["350"],
"initial_layer_infill_speed": ["105"], "initial_layer_infill_speed": ["105"],
"initial_layer_speed": ["50"], "initial_layer_speed": ["50"],

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP025", "setting_id": "GP025",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.2 nozzle" "Qidi Q2 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP025", "setting_id": "GP025",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.2 nozzle" "Qidi Q2C 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP025", "setting_id": "GP025",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.2 nozzle" "Qidi X-Plus 4 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP007", "setting_id": "GP007",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.2 nozzle" "Qidi Q2 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP007", "setting_id": "GP007",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.2 nozzle" "Qidi Q2C 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP007", "setting_id": "GP007",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.2 nozzle" "Qidi X-Plus 4 0.2 nozzle"
] ]

View File

@@ -10,7 +10,7 @@
"bridge_flow": "1", "bridge_flow": "1",
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"initial_layer_infill_speed": ["70"], "initial_layer_infill_speed": ["70"],
"initial_layer_line_width": "0.25", "initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1", "initial_layer_print_height": "0.1",

View File

@@ -10,7 +10,7 @@
"bridge_flow": "1", "bridge_flow": "1",
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"initial_layer_infill_speed": ["70"], "initial_layer_infill_speed": ["70"],
"initial_layer_line_width": "0.25", "initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1", "initial_layer_print_height": "0.1",

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.4 nozzle" "Qidi Q2 0.4 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.4 nozzle" "Qidi Q2C 0.4 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.4 nozzle" "Qidi X-Plus 4 0.4 nozzle"
] ]

View File

@@ -10,7 +10,7 @@
"bridge_flow": "1", "bridge_flow": "1",
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["350"], "gap_infill_speed": ["350"],
"initial_layer_infill_speed": ["105"], "initial_layer_infill_speed": ["105"],
"initial_layer_speed": ["50"], "initial_layer_speed": ["50"],

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP026", "setting_id": "GP026",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.2 nozzle" "Qidi Q2 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP026", "setting_id": "GP026",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.2 nozzle" "Qidi Q2C 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP026", "setting_id": "GP026",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.2 nozzle" "Qidi X-Plus 4 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP027", "setting_id": "GP027",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.2 nozzle" "Qidi Q2 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP027", "setting_id": "GP027",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.2 nozzle" "Qidi Q2C 0.2 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP027", "setting_id": "GP027",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.2 nozzle" "Qidi X-Plus 4 0.2 nozzle"
] ]

View File

@@ -10,7 +10,7 @@
"bridge_flow": "1", "bridge_flow": "1",
"default_acceleration": ["4000"], "default_acceleration": ["4000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["250"], "gap_infill_speed": ["250"],
"inner_wall_acceleration": ["5000"], "inner_wall_acceleration": ["5000"],
"internal_solid_infill_speed": ["200"], "internal_solid_infill_speed": ["200"],

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.4 nozzle" "Qidi Q2 0.4 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.4 nozzle" "Qidi Q2C 0.4 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.4 nozzle" "Qidi X-Plus 4 0.4 nozzle"
] ]

View File

@@ -10,7 +10,7 @@
"bridge_flow": "1", "bridge_flow": "1",
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["300"], "gap_infill_speed": ["300"],
"inner_wall_acceleration": ["5000"], "inner_wall_acceleration": ["5000"],
"inner_wall_speed": ["300"], "inner_wall_speed": ["300"],

View File

@@ -9,7 +9,7 @@
"bridge_speed": ["30"], "bridge_speed": ["30"],
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["50"], "gap_infill_speed": ["50"],
"initial_layer_infill_speed": ["55"], "initial_layer_infill_speed": ["55"],
"initial_layer_line_width": "0.62", "initial_layer_line_width": "0.62",

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP028", "setting_id": "GP028",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.6 nozzle" "Qidi Q2 0.6 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP028", "setting_id": "GP028",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.6 nozzle" "Qidi Q2C 0.6 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP028", "setting_id": "GP028",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.6 nozzle" "Qidi X-Plus 4 0.6 nozzle"
] ]

View File

@@ -9,7 +9,7 @@
"bridge_flow": "1", "bridge_flow": "1",
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["250"], "gap_infill_speed": ["250"],
"inner_wall_acceleration": ["5000"], "inner_wall_acceleration": ["5000"],
"inner_wall_speed": ["300"], "inner_wall_speed": ["300"],

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.4 nozzle" "Qidi Q2 0.4 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.4 nozzle" "Qidi Q2C 0.4 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.4 nozzle" "Qidi X-Plus 4 0.4 nozzle"
] ]

View File

@@ -8,7 +8,7 @@
"bridge_flow": "1", "bridge_flow": "1",
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["250"], "gap_infill_speed": ["250"],
"inner_wall_speed": ["300"], "inner_wall_speed": ["300"],
"inner_wall_acceleration": ["5000"], "inner_wall_acceleration": ["5000"],

View File

@@ -9,7 +9,7 @@
"bridge_speed": ["30"], "bridge_speed": ["30"],
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["50"], "gap_infill_speed": ["50"],
"initial_layer_infill_speed": ["55"], "initial_layer_infill_speed": ["55"],
"initial_layer_line_width": "0.82", "initial_layer_line_width": "0.82",

View File

@@ -9,7 +9,7 @@
"bridge_speed": ["30"], "bridge_speed": ["30"],
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["50"], "gap_infill_speed": ["50"],
"initial_layer_infill_speed": ["55"], "initial_layer_infill_speed": ["55"],
"initial_layer_line_width": "0.62", "initial_layer_line_width": "0.62",

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.4 nozzle" "Qidi Q2 0.4 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.4 nozzle" "Qidi Q2C 0.4 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.4 nozzle" "Qidi X-Plus 4 0.4 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP029", "setting_id": "GP029",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.6 nozzle" "Qidi Q2 0.6 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP032", "setting_id": "GP032",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.8 nozzle" "Qidi Q2 0.8 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP029", "setting_id": "GP029",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.6 nozzle" "Qidi Q2C 0.6 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP032", "setting_id": "GP032",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.8 nozzle" "Qidi Q2C 0.8 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP029", "setting_id": "GP029",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.6 nozzle" "Qidi X-Plus 4 0.6 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP032", "setting_id": "GP032",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.8 nozzle" "Qidi X-Plus 4 0.8 nozzle"
] ]

View File

@@ -8,7 +8,7 @@
"bridge_flow": "1", "bridge_flow": "1",
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["230"], "gap_infill_speed": ["230"],
"inner_wall_acceleration": ["5000"], "inner_wall_acceleration": ["5000"],
"inner_wall_speed": ["230"], "inner_wall_speed": ["230"],

View File

@@ -6,7 +6,7 @@
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"adaptive_layer_height": "1", "adaptive_layer_height": "1",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"reduce_crossing_wall": "0", "reduce_crossing_wall": "0",
"layer_height": "0.25", "layer_height": "0.25",
"max_travel_detour_distance": "0", "max_travel_detour_distance": "0",

View File

@@ -6,7 +6,7 @@
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"adaptive_layer_height": "1", "adaptive_layer_height": "1",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"reduce_crossing_wall": "0", "reduce_crossing_wall": "0",
"layer_height": "0.25", "layer_height": "0.25",
"max_travel_detour_distance": "0", "max_travel_detour_distance": "0",

View File

@@ -6,7 +6,7 @@
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"adaptive_layer_height": "1", "adaptive_layer_height": "1",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"reduce_crossing_wall": "0", "reduce_crossing_wall": "0",
"layer_height": "0.25", "layer_height": "0.25",
"max_travel_detour_distance": "0", "max_travel_detour_distance": "0",

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.4 nozzle" "Qidi Q2 0.4 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.4 nozzle" "Qidi Q2C 0.4 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.4 nozzle" "Qidi X-Plus 4 0.4 nozzle"
] ]

View File

@@ -6,7 +6,7 @@
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"adaptive_layer_height": "1", "adaptive_layer_height": "1",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"reduce_crossing_wall": "0", "reduce_crossing_wall": "0",
"layer_height": "0.3", "layer_height": "0.3",
"max_travel_detour_distance": "0", "max_travel_detour_distance": "0",

View File

@@ -6,7 +6,7 @@
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"adaptive_layer_height": "1", "adaptive_layer_height": "1",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"reduce_crossing_wall": "0", "reduce_crossing_wall": "0",
"layer_height": "0.3", "layer_height": "0.3",
"max_travel_detour_distance": "0", "max_travel_detour_distance": "0",

View File

@@ -6,7 +6,7 @@
"setting_id": "GP004", "setting_id": "GP004",
"instantiation": "true", "instantiation": "true",
"adaptive_layer_height": "1", "adaptive_layer_height": "1",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"reduce_crossing_wall": "0", "reduce_crossing_wall": "0",
"layer_height": "0.3", "layer_height": "0.3",
"max_travel_detour_distance": "0", "max_travel_detour_distance": "0",

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP010", "setting_id": "GP010",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.6 nozzle" "Qidi Q2 0.6 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP010", "setting_id": "GP010",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.6 nozzle" "Qidi Q2C 0.6 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP010", "setting_id": "GP010",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.6 nozzle" "Qidi X-Plus 4 0.6 nozzle"
] ]

View File

@@ -9,7 +9,7 @@
"bridge_speed": ["30"], "bridge_speed": ["30"],
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["50"], "gap_infill_speed": ["50"],
"initial_layer_infill_speed": ["55"], "initial_layer_infill_speed": ["55"],
"initial_layer_line_width": "0.62", "initial_layer_line_width": "0.62",

View File

@@ -9,7 +9,7 @@
"bridge_speed": ["50"], "bridge_speed": ["50"],
"default_acceleration": ["10000"], "default_acceleration": ["10000"],
"elefant_foot_compensation": "0.15", "elefant_foot_compensation": "0.15",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"gap_infill_speed": ["50"], "gap_infill_speed": ["50"],
"initial_layer_infill_speed": ["55"], "initial_layer_infill_speed": ["55"],
"initial_layer_line_width": "0.82", "initial_layer_line_width": "0.82",

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP033", "setting_id": "GP033",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.8 nozzle" "Qidi Q2 0.8 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP033", "setting_id": "GP033",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.8 nozzle" "Qidi Q2C 0.8 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP033", "setting_id": "GP033",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.8 nozzle" "Qidi X-Plus 4 0.8 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP030", "setting_id": "GP030",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.6 nozzle" "Qidi Q2 0.6 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP030", "setting_id": "GP030",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.6 nozzle" "Qidi Q2C 0.6 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP030", "setting_id": "GP030",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi X-Plus 4 0.6 nozzle" "Qidi X-Plus 4 0.6 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP009", "setting_id": "GP009",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2 0.8 nozzle" "Qidi Q2 0.8 nozzle"
] ]

View File

@@ -5,7 +5,7 @@
"from": "system", "from": "system",
"setting_id": "GP009", "setting_id": "GP009",
"instantiation": "true", "instantiation": "true",
"enable_arc_fitting": "1", "enable_arc_fitting": "0",
"compatible_printers": [ "compatible_printers": [
"Qidi Q2C 0.8 nozzle" "Qidi Q2C 0.8 nozzle"
] ]

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