Compare commits
37 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a4357d1e95 | ||
|
|
e0daca73ab | ||
|
|
2a8cf0ec86 | ||
|
|
c7f0fc86a7 | ||
|
|
1376556b0a | ||
|
|
2431429c49 | ||
|
|
63768cb87f | ||
|
|
aeac07b9c9 | ||
|
|
52cfa48168 | ||
|
|
8c00db6ace | ||
|
|
c72ef08275 | ||
|
|
eeae1b2c7e | ||
|
|
7e85eb0d7d | ||
|
|
63dcf82f15 | ||
|
|
091ec23795 | ||
|
|
a788b6360b | ||
|
|
89d627693f | ||
|
|
9a3671a87f | ||
|
|
76fc7e6d21 | ||
|
|
34ad17bcd2 | ||
|
|
5c9b82d6ec | ||
|
|
6c5cd0a31f | ||
|
|
bf646c3f29 | ||
|
|
c1a901e46c | ||
|
|
cd6cd0786f | ||
|
|
b7a0b30578 | ||
|
|
6a28bae6fd | ||
|
|
0af5b47028 | ||
|
|
87e77133ca | ||
|
|
a1d7c8baf8 | ||
|
|
02a4c9069c | ||
|
|
7788c5de22 | ||
|
|
1678127e2b | ||
|
|
7ed663135d | ||
|
|
c9c7ae62d6 | ||
|
|
9df712fd9e | ||
|
|
1445d0c501 |
4
.github/workflows/build_all.yml
vendored
@@ -49,9 +49,9 @@ jobs:
|
||||
include:
|
||||
- os: ubuntu-20.04
|
||||
- os: windows-latest
|
||||
- os: macos-12
|
||||
- os: macos-14
|
||||
arch: x86_64
|
||||
- os: macos-12
|
||||
- os: macos-14
|
||||
arch: arm64
|
||||
uses: ./.github/workflows/build_check_cache.yml
|
||||
with:
|
||||
|
||||
8
.github/workflows/build_check_cache.yml
vendored
@@ -30,12 +30,12 @@ jobs:
|
||||
- name: set outputs
|
||||
id: set_outputs
|
||||
env:
|
||||
underscore-arch: ${{ inputs.os == 'macos-12' && '_' || ''}}${{ inputs.os == 'macos-12' && inputs.arch || '' }} # if is macos, make a string that does "_{arch}", else output nothing
|
||||
dash-arch: ${{ inputs.os == 'macos-12' && '-' || ''}}${{ inputs.os == 'macos-12' && inputs.arch || '' }} # if is macos, make a string that does "-{arch}", else output nothing
|
||||
dep-folder-name: ${{ (inputs.os == 'windows-latest' || inputs.os == 'macos-12') && 'OrcaSlicer_dep' || 'destdir' }}
|
||||
underscore-arch: ${{ inputs.os == 'macos-14' && '_' || ''}}${{ inputs.os == 'macos-14' && inputs.arch || '' }} # if is macos, make a string that does "_{arch}", else output nothing
|
||||
dash-arch: ${{ inputs.os == 'macos-14' && '-' || ''}}${{ inputs.os == 'macos-14' && inputs.arch || '' }} # if is macos, make a string that does "-{arch}", else output nothing
|
||||
dep-folder-name: ${{ (inputs.os == 'windows-latest' || inputs.os == 'macos-14') && 'OrcaSlicer_dep' || 'destdir' }}
|
||||
output-cmd: ${{ inputs.os == 'windows-latest' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}}
|
||||
run: |
|
||||
echo cache-key=${{ runner.os }}${{ env.dash-arch }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }}
|
||||
echo cache-key=${{ inputs.os }}${{ env.dash-arch }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }}
|
||||
echo cache-path=${{ github.workspace }}/deps/build${{ env.underscore-arch }}/${{ env.dep-folder-name }}${{ env.underscore-arch }} >> ${{ env.output-cmd }}
|
||||
|
||||
- name: load cache
|
||||
|
||||
9
.github/workflows/build_deps.yml
vendored
@@ -69,15 +69,16 @@ jobs:
|
||||
cd ${{ github.workspace }}/deps/build
|
||||
|
||||
- name: Build on Mac ${{ inputs.arch }}
|
||||
if: inputs.os == 'macos-12'
|
||||
if: inputs.os == 'macos-14'
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
brew install cmake git gettext automake texinfo ninja
|
||||
brew install cmake
|
||||
brew install automake texinfo ninja libtool
|
||||
brew list
|
||||
mkdir -p ${{ github.workspace }}/deps/build_${{ inputs.arch }}
|
||||
mkdir -p ${{ github.workspace }}/deps/build_${{ inputs.arch }}/OrcaSlicer_dep_${{ inputs.arch }}
|
||||
brew uninstall --ignore-dependencies zstd
|
||||
./build_release_macos.sh -dpx -a ${{ inputs.arch }} -t 10.15
|
||||
./build_release_macos.sh -dpx -a ${{ inputs.arch }} -t 10.15 -1
|
||||
brew install zstd
|
||||
|
||||
|
||||
@@ -102,7 +103,7 @@ jobs:
|
||||
|
||||
# Upload Artifacts
|
||||
- name: Upload Mac ${{ inputs.arch }} artifacts
|
||||
if: inputs.os == 'macos-12'
|
||||
if: inputs.os == 'macos-14'
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: OrcaSlicer_dep_mac_${{ inputs.arch }}_${{ env.date }}
|
||||
|
||||
17
.github/workflows/build_orca.yml
vendored
@@ -75,23 +75,24 @@ jobs:
|
||||
|
||||
# Mac
|
||||
- name: Install tools mac
|
||||
if: inputs.os == 'macos-12'
|
||||
if: inputs.os == 'macos-14'
|
||||
run: |
|
||||
brew install cmake git gettext tree ninja
|
||||
brew install cmake
|
||||
brew install tree ninja libtool
|
||||
brew list
|
||||
mkdir -p ${{ github.workspace }}/deps/build_${{inputs.arch}}
|
||||
mkdir -p ${{ github.workspace }}/deps/build_${{inputs.arch}}/OrcaSlicer_dep_${{inputs.arch}}
|
||||
tree ${{ github.workspace }}/deps/build_${{inputs.arch}}/OrcaSlicer_dep_${{inputs.arch}}
|
||||
|
||||
- name: Build slicer mac
|
||||
if: inputs.os == 'macos-12'
|
||||
if: inputs.os == 'macos-14'
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
./build_release_macos.sh -s -n -x -a ${{inputs.arch}} -t 10.15
|
||||
./build_release_macos.sh -s -n -x -a ${{inputs.arch}} -t 10.15 -1
|
||||
|
||||
# Thanks to RaySajuuk, it's working now
|
||||
- name: Sign app and notary
|
||||
if: (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && inputs.os == 'macos-12'
|
||||
if: (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && inputs.os == 'macos-14'
|
||||
working-directory: ${{ github.workspace }}
|
||||
env:
|
||||
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
|
||||
@@ -117,21 +118,21 @@ jobs:
|
||||
xcrun stapler staple OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg
|
||||
|
||||
- name: Create DMG without notary
|
||||
if: github.ref != 'refs/heads/main' && inputs.os == 'macos-12'
|
||||
if: github.ref != 'refs/heads/main' && inputs.os == 'macos-14'
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
ln -s /Applications ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer/Applications
|
||||
hdiutil create -volname "OrcaSlicer" -srcfolder ${{ github.workspace }}/build_${{inputs.arch}}/OrcaSlicer -ov -format UDZO OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg
|
||||
|
||||
- name: Upload artifacts mac
|
||||
if: inputs.os == 'macos-12'
|
||||
if: inputs.os == 'macos-14'
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}
|
||||
path: ${{ github.workspace }}/OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg
|
||||
|
||||
- name: Deploy Mac release
|
||||
if: github.ref == 'refs/heads/main' && inputs.os == 'macos-12'
|
||||
if: github.ref == 'refs/heads/main' && inputs.os == 'macos-14'
|
||||
uses: WebFreak001/deploy-nightly@v3.1.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
|
||||
@@ -34,6 +34,9 @@ while getopts ":dpa:snt:xbc:h" opt; do
|
||||
c )
|
||||
export BUILD_CONFIG="$OPTARG"
|
||||
;;
|
||||
1 )
|
||||
export CMAKE_BUILD_PARALLEL_LEVEL=1
|
||||
;;
|
||||
h ) echo "Usage: ./build_release_macos.sh [-d]"
|
||||
echo " -d: Build deps only"
|
||||
echo " -a: Set ARCHITECTURE (arm64 or x86_64)"
|
||||
@@ -43,6 +46,7 @@ while getopts ":dpa:snt:xbc:h" opt; do
|
||||
echo " -x: Use Ninja CMake generator, default is Xcode"
|
||||
echo " -b: Build without reconfiguring CMake"
|
||||
echo " -c: Set CMake build configuration, default is Release"
|
||||
echo " -1: Use single job for building"
|
||||
exit 0
|
||||
;;
|
||||
* )
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+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"
|
||||
@@ -13164,6 +13164,9 @@ msgstr ""
|
||||
msgid "PETG"
|
||||
msgstr ""
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr ""
|
||||
|
||||
@@ -13248,6 +13251,9 @@ msgstr ""
|
||||
msgid "Upload to storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, possible-c-format, possible-boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr ""
|
||||
@@ -13851,6 +13857,12 @@ msgstr ""
|
||||
msgid "Refresh Printers"
|
||||
msgstr ""
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -14182,17 +14194,15 @@ msgstr ""
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: 2024-06-15 11:02+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -15244,6 +15244,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -15341,6 +15344,9 @@ msgstr ""
|
||||
msgid "Upload to storage"
|
||||
msgstr "Pujar a l'emmagatzematge"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "El nom del fitxer que vol pujar no acaba amb \"%s\". Voleu continuar?"
|
||||
@@ -16041,6 +16047,12 @@ msgstr "Estàs segur de tancar sessió?"
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Refrescar Impressores"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -16493,21 +16505,17 @@ msgstr "Connectat a SimplyPrint amb èxit!"
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr "No s'ha pogut connectar a SimplyPrint"
|
||||
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Error desconegut"
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
"No s'ha enllaçat el compte de SimplyPrint. Aneu a Opcions de Connexió per "
|
||||
"configurar-lo."
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
"La mida del fitxer supera el límit de pujada de 100 MB. Si us plau, "
|
||||
"carregueu el vostre fitxer a través del panell."
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Error desconegut"
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr "La connexió amb Flashforge funciona correctament."
|
||||
|
||||
@@ -16917,93 +16925,19 @@ msgstr ""
|
||||
"augmentar adequadament la temperatura del llit pot reduir la probabilitat de "
|
||||
"deformació."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
#~ "the panel."
|
||||
#~ msgstr ""
|
||||
#~ "La mida del fitxer supera el límit de pujada de 100 MB. Si us plau, "
|
||||
#~ "carregueu el vostre fitxer a través del panell."
|
||||
|
||||
#~ msgid "Please input a valid value (K in 0~0.3)"
|
||||
#~ msgstr "Introduïu un valor vàlid ( K en 0 ~ 0.3 )"
|
||||
|
||||
#~ msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)"
|
||||
#~ msgstr "Introduïu un valor vàlid ( K a 0 ~ 0.3, N a 0.6 ~ 2.0 )"
|
||||
|
||||
#~ msgid "Select connected printetrs (0/6)"
|
||||
#~ msgstr "Seleccionar impressores connectades (0/6)"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Select Connected Printetrs (%d/6)"
|
||||
#~ msgstr "Seleccionar Impressores Connectades (%d/6)"
|
||||
|
||||
#~ msgid "PrintingPause"
|
||||
#~ msgstr "Pausar Impressió"
|
||||
|
||||
#~ msgid "Printer local connection failed, please try again."
|
||||
#~ msgstr "La connexió local de la impressora ha fallat, torneu-ho a provar."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please find the details of Flow Dynamics Calibration from our wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Usually the calibration is unnecessary. When you start a single color/"
|
||||
#~ "material print, with the \"flow dynamics calibration\" option checked in "
|
||||
#~ "the print start menu, the printer will follow the old way, calibrate the "
|
||||
#~ "filament before the print; When you start a multi color/material print, "
|
||||
#~ "the printer will use the default compensation parameter for the filament "
|
||||
#~ "during every filament switch which will have a good result in most "
|
||||
#~ "cases.\n"
|
||||
#~ "\n"
|
||||
#~ "Please note there are a few cases that will make the calibration result "
|
||||
#~ "not reliable: using a texture plate to do the calibration; the build "
|
||||
#~ "plate does not have good adhesion (please wash the build plate or apply "
|
||||
#~ "gluestick!) ...You can find more from our wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "The calibration results have about 10 percent jitter in our test, which "
|
||||
#~ "may cause the result not exactly the same in each calibration. We are "
|
||||
#~ "still investigating the root cause to do improvements with new updates."
|
||||
#~ msgstr ""
|
||||
#~ "Consulteu els detalls del Calibratge de les Dinàmiques de Flux al nostre "
|
||||
#~ "wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Normalment el calibratge és innecessari. Quan inicieu una impressió d'un "
|
||||
#~ "sol color/material, amb l'opció \"Calibratge de les Dinàmiques de Flux\" "
|
||||
#~ "marcada al menú d'inici d'impressió, la impressora seguirà la forma "
|
||||
#~ "antiga, calibrarà el filament abans de la impressió; Quan s'inicia una "
|
||||
#~ "impressió multicolor/multimaterial, la impressora utilitzarà el paràmetre "
|
||||
#~ "de compensació predeterminat per al filament durant cada canvi de "
|
||||
#~ "filament, el qual tindrà un bon resultat en la majoria dels casos.\n"
|
||||
#~ "\n"
|
||||
#~ "Tingueu en compte que hi ha alguns casos que faran que el resultat del "
|
||||
#~ "calibratge no sigui fiable: utilitzar una placa de textura per fer el "
|
||||
#~ "calibratge; si la placa d'impressió no té una bona adherència ( renteu la "
|
||||
#~ "placa d'impressió o apliqueu adhesiu! ) ... Podeu trobar més informació a "
|
||||
#~ "la nostra wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Els resultats del calibratge tenen al voltant d'un 10 per cent de "
|
||||
#~ "fluctuació en la nostra prova, la qual cosa pot fer que el resultat no "
|
||||
#~ "sigui exactament el mateix en cada calibratge. Encara estem investigant "
|
||||
#~ "la causa arrel per fer millores amb noves actualitzacions."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Only one of the results with the same name will be saved. Are you sure "
|
||||
#~ "you want to overrides the other results?"
|
||||
#~ msgstr ""
|
||||
#~ "Només es desarà un dels resultats amb el mateix nom. Estàs segur que vols "
|
||||
#~ "sobreescriure els altres resultats?"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid ""
|
||||
#~ "There is already a historical calibration result with the same name: %s. "
|
||||
#~ "Only one of the results with the same name is saved. Are you sure you "
|
||||
#~ "want to overrides the historical result?"
|
||||
#~ msgstr ""
|
||||
#~ "Ja hi ha un resultat històric de calibratge amb el mateix nom: %s. Només "
|
||||
#~ "es pot guardar un dels resultats amb el mateix nom. Estàs segur que vols "
|
||||
#~ "sobreescriure el resultat històric?"
|
||||
|
||||
#~ msgid "Please find the cornor with perfect degree of extrusion"
|
||||
#~ msgstr "Busqueu la cantonada amb un grau d'extrusió perfecte"
|
||||
|
||||
#~ msgid "X"
|
||||
#~ msgstr "X"
|
||||
|
||||
#~ msgid "Y"
|
||||
#~ msgstr "Y"
|
||||
|
||||
#~ msgid "V"
|
||||
#~ msgstr "V"
|
||||
|
||||
@@ -17069,22 +17003,27 @@ msgstr ""
|
||||
#~ msgstr "HMS"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Unsaved Changes"
|
||||
#~ msgid "Actions For Unsaved Changes"
|
||||
#~ msgstr "Canvis no desats"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Reset scale"
|
||||
#~ msgid "Preset Value"
|
||||
#~ msgstr "Valor predefinit esquerre"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Modified G-codes"
|
||||
#~ msgid "Modified Value"
|
||||
#~ msgstr "Valor modificat"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "User Preset"
|
||||
#~ msgid "Use Preset Value"
|
||||
#~ msgstr "Perfil d'usuari"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Save file as:"
|
||||
#~ msgid "Save Modified Value"
|
||||
#~ msgstr "Desa el fitxer com a:"
|
||||
|
||||
@@ -17097,6 +17036,10 @@ msgstr ""
|
||||
#~ "Voleu desar aquests paràmetres canviats (valor modificat)?"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "You have changed some preset settings. \n"
|
||||
#~| "Would you like to keep these changed settings (new value) after "
|
||||
#~| "switching preset?"
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "Would you like to keep these changed settings(modified value) after "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: 2023-09-30 15:15+0200\n"
|
||||
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -14426,6 +14426,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -14522,6 +14525,9 @@ msgstr "Pokud je to nutné, použijte pro oddělení složek lomítko (/)."
|
||||
msgid "Upload to storage"
|
||||
msgstr "Nahrát do úložiště"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "Název nahrávaného souboru neskončí s \"%s\". Přejete si pokračovat?"
|
||||
@@ -15128,6 +15134,12 @@ msgstr ""
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Obnovit tiskárny"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -15478,17 +15490,15 @@ msgstr ""
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -2902,6 +2902,7 @@ msgstr ""
|
||||
#, c-format, boost-format
|
||||
msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)"
|
||||
msgstr ""
|
||||
"Bitte geben Sie einen gültigen Wert ein (K in %.1f~%.1f, N in %.1f~%.1f)"
|
||||
|
||||
msgid "Other Color"
|
||||
msgstr "Andere Farbe"
|
||||
@@ -3408,7 +3409,7 @@ msgid "Printing Failed"
|
||||
msgstr "Druck fehlgeschlagen"
|
||||
|
||||
msgid "Printing Pause"
|
||||
msgstr ""
|
||||
msgstr "Druck pausiert"
|
||||
|
||||
msgid "Prepare"
|
||||
msgstr "Vorbereiten"
|
||||
@@ -3508,7 +3509,7 @@ msgid "Send Options"
|
||||
msgstr "Senden-Optionen"
|
||||
|
||||
msgid "Send to"
|
||||
msgstr ""
|
||||
msgstr "Senden an"
|
||||
|
||||
msgid ""
|
||||
"printers at the same time.(It depends on how many devices can undergo "
|
||||
@@ -8601,27 +8602,40 @@ msgid ""
|
||||
"Windows Media Player is required for this task! Do you want to enable "
|
||||
"'Windows Media Player' for your operation system?"
|
||||
msgstr ""
|
||||
"Windows Media Player wird für diese Aufgabe benötigt! Möchten Sie 'Windows "
|
||||
"Media Player' für Ihr Betriebssystem aktivieren?"
|
||||
|
||||
msgid ""
|
||||
"BambuSource has not correctly been registered for media playing! Press Yes "
|
||||
"to re-register it. You will be promoted twice"
|
||||
msgstr ""
|
||||
"BambuSource wurde nicht korrekt für das Abspielen von Medien registriert! "
|
||||
"Drücken Sie Ja, um es erneut zu registrieren. Sie werden zweimal aufgefordert"
|
||||
|
||||
msgid ""
|
||||
"Missing BambuSource component registered for media playing! Please re-"
|
||||
"install BambuStutio or seek after-sales help."
|
||||
msgstr ""
|
||||
"Fehlendes BambuSource-Komponente für das Abspielen von Medien registriert! "
|
||||
"Bitte installieren Sie BambuStudio erneut oder suchen Sie nach "
|
||||
"Kundendiensthilfe."
|
||||
|
||||
msgid ""
|
||||
"Using a BambuSource from a different install, video play may not work "
|
||||
"correctly! Press Yes to fix it."
|
||||
msgstr ""
|
||||
"Verwendung eines BambuSource aus einer anderen Installation, das Abspielen "
|
||||
"von Videos funktioniert möglicherweise nicht korrekt! Drücken Sie Ja, um es "
|
||||
"zu beheben."
|
||||
|
||||
msgid ""
|
||||
"Your system is missing H.264 codecs for GStreamer, which are required to "
|
||||
"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-"
|
||||
"libav packages, then restart Orca Slicer?)"
|
||||
msgstr ""
|
||||
"Ihr System fehlt H.264-Codecs für GStreamer, die zum Abspielen von Videos "
|
||||
"erforderlich sind. (Versuchen Sie, die Pakete gstreamer1.0-plugins-bad oder "
|
||||
"gstreamer1.0-libav zu installieren und starten Sie Orca Slicer neu?)"
|
||||
|
||||
msgid "Bambu Network plug-in not detected."
|
||||
msgstr "Bambu Network Plugin nicht erkannt."
|
||||
@@ -10949,7 +10963,7 @@ msgstr ""
|
||||
"Ein- und Ausschaltens zu reduzieren"
|
||||
|
||||
msgid "Don't slow down outer walls"
|
||||
msgstr ""
|
||||
msgstr "Äußere Wände nicht verlangsamen"
|
||||
|
||||
msgid ""
|
||||
"If enabled, this setting will ensure external perimeters are not slowed down "
|
||||
@@ -10963,6 +10977,17 @@ msgid ""
|
||||
"external walls\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
"Wenn diese Einstellung aktiviert ist, wird sichergestellt, dass die externen "
|
||||
"Umfänge nicht verlangsamt werden, um die Mindestschichtzeit zu erreichen. "
|
||||
"Dies ist besonders hilfreich in den folgenden Szenarien:\n"
|
||||
"\n"
|
||||
" 1. Um Änderungen im Glanz beim Drucken von glänzenden Filamenten zu "
|
||||
"vermeiden\n"
|
||||
"2. Um Änderungen in der Geschwindigkeit der äußeren Wand zu vermeiden, die "
|
||||
"leichte Wandartefakte erzeugen können, die wie Z-Banding aussehen\n"
|
||||
"3. Um das Drucken mit Geschwindigkeiten zu vermeiden, die VFAs (feine "
|
||||
"Artefakte) an den äußeren Wänden verursachen\n"
|
||||
"\n"
|
||||
|
||||
msgid "Layer time"
|
||||
msgstr "Schichtdauer"
|
||||
@@ -11552,7 +11577,7 @@ msgstr ""
|
||||
"zulässiger Geschwindigkeit."
|
||||
|
||||
msgid "layer"
|
||||
msgstr ""
|
||||
msgstr "Schicht"
|
||||
|
||||
msgid "Support interface fan speed"
|
||||
msgstr "Stützstruktur-Schnittstelle"
|
||||
@@ -14912,6 +14937,26 @@ msgid ""
|
||||
"cause the result not exactly the same in each calibration. We are still "
|
||||
"investigating the root cause to do improvements with new updates."
|
||||
msgstr ""
|
||||
"Bitte finden Sie die Details zur Flussdynamik-Kalibrierung in unserem Wiki.\n"
|
||||
"\n"
|
||||
"Normalerweise ist die Kalibrierung nicht erforderlich. Wenn Sie einen Druck "
|
||||
"mit einer einzigen Farbe/einem einzigen Material starten und die Option "
|
||||
"\"Flussdynamik-Kalibrierung\" im Druckstartmenü aktiviert ist, folgt der "
|
||||
"Drucker dem alten Weg, kalibriert das Filament vor dem Druck; Wenn Sie einen "
|
||||
"Druck mit mehreren Farben/Materialien starten, verwendet der Drucker den "
|
||||
"Standardkompensationsparameter für das Filament bei jedem Filamentwechsel, "
|
||||
"was in den meisten Fällen zu einem guten Ergebnis führt.\n"
|
||||
"\n"
|
||||
"Bitte beachten Sie, dass es einige Fälle gibt, die die "
|
||||
"Kalibrierungsergebnisse unzuverlässig machen können, wie z.B. unzureichende "
|
||||
"Haftung auf dem Druckbett. Eine Verbesserung der Haftung kann durch Waschen "
|
||||
"des Druckbetts oder Auftragen von Klebstoff erreicht werden. Weitere "
|
||||
"Informationen zu diesem Thema finden Sie in unserem Wiki.\n"
|
||||
"\n"
|
||||
"Die Kalibrierungsergebnisse haben in unserem Test etwa 10 Prozent Jitter, "
|
||||
"was dazu führen kann, dass das Ergebnis bei jeder Kalibrierung nicht genau "
|
||||
"dasselbe ist. Wir untersuchen immer noch die Ursache, um mit neuen Updates "
|
||||
"Verbesserungen vorzunehmen."
|
||||
|
||||
msgid "When to use Flow Rate Calibration"
|
||||
msgstr "Wann soll die Flussratenkalibrierung verwendet werden"
|
||||
@@ -15313,6 +15358,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -15410,6 +15458,9 @@ msgstr ""
|
||||
msgid "Upload to storage"
|
||||
msgstr "Hochladen in den Speicher"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr ""
|
||||
@@ -16115,6 +16166,12 @@ msgstr "Sind Sie sicher, dass Sie sich abmelden möchten?"
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Drucker aktualisieren"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -16561,21 +16618,17 @@ msgstr "Erfolgreich mit SimplyPrint verbunden!"
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr "Konnte keine Verbindung zu SimplyPrint herstellen"
|
||||
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Unbekannter Fehler"
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
"SimplyPrint-Konto nicht verknüpft. Gehen Sie zu den Verbindungsoptionen, um "
|
||||
"es einzurichten."
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
"Die Dateigröße überschreitet das 100-MB-Upload-Limit. Bitte laden Sie Ihre "
|
||||
"Datei über das Panel hoch."
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Unbekannter Fehler"
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr "Verbindung zu Flashforge funktioniert korrekt."
|
||||
|
||||
@@ -16991,6 +17044,13 @@ msgstr ""
|
||||
"wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die "
|
||||
"Wahrscheinlichkeit von Verwerfungen verringert werden kann."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
#~ "the panel."
|
||||
#~ msgstr ""
|
||||
#~ "Die Dateigröße überschreitet das 100-MB-Upload-Limit. Bitte laden Sie "
|
||||
#~ "Ihre Datei über das Panel hoch."
|
||||
|
||||
#~ msgid "Please input a valid value (K in 0~0.3)"
|
||||
#~ msgstr "Bitte geben Sie einen gültigen Wert ein (K in 0~0.3)"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -14131,6 +14131,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -14215,6 +14218,9 @@ msgstr "Use forward slashes ( / ) as a directory separator if needed."
|
||||
msgid "Upload to storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
@@ -14875,6 +14881,12 @@ msgstr ""
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Refresh Printers"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -15304,17 +15316,15 @@ msgstr ""
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Guislain Cyril, Thomas Lété\n"
|
||||
@@ -2898,11 +2898,12 @@ msgstr "Vous devez d'abord sélectionner le type de matériau et sa couleur."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Please input a valid value (K in %.1f~%.1f)"
|
||||
msgstr ""
|
||||
msgstr "Veuillez saisir une valeur valide (K entre %.1f~%.1f)"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)"
|
||||
msgstr ""
|
||||
"Veuillez saisir une valeur valide (K entre %.1f~%.1f, N entre %.1f~%.1f)"
|
||||
|
||||
msgid "Other Color"
|
||||
msgstr "Autre couleur"
|
||||
@@ -3341,11 +3342,11 @@ msgid "Edit multiple printers"
|
||||
msgstr "Modifier plusieurs imprimantes"
|
||||
|
||||
msgid "Select connected printers (0/6)"
|
||||
msgstr ""
|
||||
msgstr "Sélection des imprimantes connectées (0/6)"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Select Connected Printers (%d/6)"
|
||||
msgstr ""
|
||||
msgstr "Sélection des imprimantes connectées (%d/6)"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "The maximum number of printers that can be selected is %d"
|
||||
@@ -3409,7 +3410,7 @@ msgid "Printing Failed"
|
||||
msgstr "Échec de l’impression"
|
||||
|
||||
msgid "Printing Pause"
|
||||
msgstr ""
|
||||
msgstr "Impression en pause"
|
||||
|
||||
msgid "Prepare"
|
||||
msgstr "Préparer"
|
||||
@@ -3509,7 +3510,7 @@ msgid "Send Options"
|
||||
msgstr "Options d’envoi"
|
||||
|
||||
msgid "Send to"
|
||||
msgstr ""
|
||||
msgstr "Envoyer à"
|
||||
|
||||
msgid ""
|
||||
"printers at the same time.(It depends on how many devices can undergo "
|
||||
@@ -7813,8 +7814,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 ""
|
||||
"Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé "
|
||||
"d’ajouter une \"Tour d’essuyage timelapse\".\n"
|
||||
@@ -7969,9 +7970,9 @@ msgid ""
|
||||
"Bed temperature when cool plate is installed. Value 0 means the filament "
|
||||
"does not support to print on the Cool Plate"
|
||||
msgstr ""
|
||||
"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool plate"
|
||||
"\") est installé. Une valeur à 0 signifie que ce filament ne peut pas être "
|
||||
"imprimé sur le plateau froid."
|
||||
"Il s'agit de la température du plateau lorsque le plateau froid (\"Cool "
|
||||
"plate\") est installé. Une valeur à 0 signifie que ce filament ne peut pas "
|
||||
"être imprimé sur le plateau froid."
|
||||
|
||||
msgid "Engineering plate"
|
||||
msgstr "Plaque Engineering"
|
||||
@@ -8630,27 +8631,40 @@ msgid ""
|
||||
"Windows Media Player is required for this task! Do you want to enable "
|
||||
"'Windows Media Player' for your operation system?"
|
||||
msgstr ""
|
||||
"Windows Media Player est nécessaire pour cette tâche ! Voulez-vous activer "
|
||||
"‘Windows Media Player’ pour votre système d’exploitation ?"
|
||||
|
||||
msgid ""
|
||||
"BambuSource has not correctly been registered for media playing! Press Yes "
|
||||
"to re-register it. You will be promoted twice"
|
||||
msgstr ""
|
||||
"BambuSource n’a pas été correctement enregistré pour la lecture de médias ! "
|
||||
"Appuyez sur Oui pour le réenregistrer. Vous recevrez deux fois la demande de "
|
||||
"permission."
|
||||
|
||||
msgid ""
|
||||
"Missing BambuSource component registered for media playing! Please re-"
|
||||
"install BambuStutio or seek after-sales help."
|
||||
msgstr ""
|
||||
"Composant BambuSource manquant enregistré pour la lecture des médias ! "
|
||||
"Veuillez réinstaller OrcaSlicer ou demander de l’aide au service après-vente."
|
||||
|
||||
msgid ""
|
||||
"Using a BambuSource from a different install, video play may not work "
|
||||
"correctly! Press Yes to fix it."
|
||||
msgstr ""
|
||||
"Si vous utilisez une BambuSource provenant d’une autre installation, la "
|
||||
"lecture de la vidéo peut ne pas fonctionner correctement ! Appuyez sur Oui "
|
||||
"pour résoudre le problème."
|
||||
|
||||
msgid ""
|
||||
"Your system is missing H.264 codecs for GStreamer, which are required to "
|
||||
"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-"
|
||||
"libav packages, then restart Orca Slicer?)"
|
||||
msgstr ""
|
||||
"Il manque à votre système les codecs H.264 pour GStreamer, qui sont "
|
||||
"nécessaires pour lire la vidéo. (Essayez d’installer les paquets "
|
||||
"gstreamer1.0-plugins-bad ou gstreamer1.0-libav, puis redémarrez Orca Slicer)."
|
||||
|
||||
msgid "Bambu Network plug-in not detected."
|
||||
msgstr "Le plug-in Bambu Network n’a pas été détecté."
|
||||
@@ -11013,7 +11027,7 @@ msgstr ""
|
||||
"réduire la fréquence de démarrage et d'arrêt"
|
||||
|
||||
msgid "Don't slow down outer walls"
|
||||
msgstr ""
|
||||
msgstr "Ne pas ralentir sur les parois extérieures"
|
||||
|
||||
msgid ""
|
||||
"If enabled, this setting will ensure external perimeters are not slowed down "
|
||||
@@ -11027,6 +11041,16 @@ msgid ""
|
||||
"external walls\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
"S’il est activé, ce paramètre garantit que les périmètres externes ne sont "
|
||||
"pas ralentis pour respecter la durée minimale de la couche. Ceci est "
|
||||
"particulièrement utile dans les scénarios suivants :\n"
|
||||
"\n"
|
||||
" 1. Pour éviter les changements de brillance lors de l’impression de "
|
||||
"filaments brillants \n"
|
||||
"2. Pour éviter les changements de vitesse des parois externes qui peuvent "
|
||||
"créer de légers artefacts de paroi qui apparaissent comme des bandes en z. \n"
|
||||
"3. Pour éviter d’imprimer à des vitesses qui provoquent des VFA (artefacts "
|
||||
"fins) sur les parois externes.\n"
|
||||
|
||||
msgid "Layer time"
|
||||
msgstr "Temps de couche"
|
||||
@@ -11606,10 +11630,10 @@ msgstr "Ventilateur à pleine vitesse à la couche"
|
||||
|
||||
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 vitesse du ventilateur augmentera de manière linéaire à partir de zéro à "
|
||||
"la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche "
|
||||
@@ -11619,7 +11643,7 @@ msgstr ""
|
||||
"\"close_fan_the_first_x_layers\" + 1."
|
||||
|
||||
msgid "layer"
|
||||
msgstr ""
|
||||
msgstr "couche"
|
||||
|
||||
msgid "Support interface fan speed"
|
||||
msgstr "Vitesse du ventilateur"
|
||||
@@ -13346,8 +13370,8 @@ msgid ""
|
||||
"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
|
||||
"close all holes in the model."
|
||||
msgstr ""
|
||||
"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « "
|
||||
"Fermer les trous » pour fermer tous les trous du modèle."
|
||||
"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez "
|
||||
"« Fermer les trous » pour fermer tous les trous du modèle."
|
||||
|
||||
msgid "Regular"
|
||||
msgstr "Standard"
|
||||
@@ -14156,8 +14180,8 @@ msgid ""
|
||||
"Wipe tower is only compatible with relative mode. It is recommended on most "
|
||||
"printers. Default is checked"
|
||||
msgstr ""
|
||||
"L’extrusion relative est recommandée lors de l’utilisation de l’option « "
|
||||
"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
|
||||
"L’extrusion relative est recommandée lors de l’utilisation de l’option "
|
||||
"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
|
||||
"non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est "
|
||||
"compatible qu’avec le mode relatif. Il est recommandé sur la plupart des "
|
||||
"imprimantes. L’option par défaut est cochée"
|
||||
@@ -15016,6 +15040,28 @@ msgid ""
|
||||
"cause the result not exactly the same in each calibration. We are still "
|
||||
"investigating the root cause to do improvements with new updates."
|
||||
msgstr ""
|
||||
"Vous trouverez les détails de l'étalonnage de la dynamique des flux dans "
|
||||
"notre wiki.\n"
|
||||
"\n"
|
||||
"En général, la calibration n’est pas nécessaire. Lorsque vous démarrez une "
|
||||
"impression mono-couleur/matériau, avec l’option « calibration de la "
|
||||
"dynamique de flux » cochée dans le menu de démarrage de l’impression, "
|
||||
"l’imprimante suivra l’ancienne méthode, en calibrant le filament avant "
|
||||
"l’impression ; Lorsque vous démarrez une impression multi-couleur/matériau, "
|
||||
"l’imprimante utilisera le paramètre de compensation par défaut pour le "
|
||||
"filament lors de chaque changement de filament, ce qui donnera un bon "
|
||||
"résultat dans la plupart des cas.\n"
|
||||
"\n"
|
||||
"Veuillez noter qu’il existe quelques cas qui peuvent rendre les résultats de "
|
||||
"la calibration peu fiables, tels qu’une adhérence insuffisante sur le "
|
||||
"plateau. Il est possible d’améliorer l’adhérence en lavant la plaque de "
|
||||
"construction ou en appliquant de la colle. Pour plus d’informations à ce "
|
||||
"sujet, veuillez consulter notre Wiki.\n"
|
||||
"\n"
|
||||
"Les résultats de la calibration présentent une fluctuation d’environ 10 % "
|
||||
"dans notre test, ce qui peut entraîner une différence entre les résultats de "
|
||||
"chaque calibration. Nous continuons d’étudier la cause première afin "
|
||||
"d’apporter des améliorations lors des nouvelles mises à jour."
|
||||
|
||||
msgid "When to use Flow Rate Calibration"
|
||||
msgstr "Nécessité de la calibration du débit"
|
||||
@@ -15423,6 +15469,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr "PCTG"
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -15521,6 +15570,9 @@ msgstr ""
|
||||
msgid "Upload to storage"
|
||||
msgstr "Envoyer vers le stockage"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr "Passer à l’onglet Appareil après le téléchargement."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr ""
|
||||
@@ -15760,8 +15812,8 @@ msgstr ""
|
||||
"Voulez-vous le réécrire ?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Nous renommerions les préréglages en « Vendor Type Serial @printer you "
|
||||
@@ -16233,6 +16285,13 @@ msgstr "Êtes-vous sûr de pouvoir vous déconnecter ?"
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Actualiser les imprimantes"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
"Afficher l’interface web de l’hôte d’impression dans l’onglet Périphérique"
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr "Remplacer l’onglet device de BambuLab par print host webui"
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -16697,21 +16756,17 @@ msgstr "Connexion à SimplyPrint réussie !"
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr "Impossible de se connecter à SimplyPrint"
|
||||
|
||||
msgid "Internel error"
|
||||
msgstr "Erreur interne"
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Erreur inconnue"
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
"Le compte SimplyPrint n’est pas lié. Allez dans les options de connexion "
|
||||
"pour le configurer."
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
"La taille du fichier dépasse la limite de téléchargement de 100 Mo. Veuillez "
|
||||
"télécharger votre fichier via le panneau."
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Erreur inconnue"
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr "La connexion à Flashforge fonctionne correctement."
|
||||
|
||||
@@ -17130,6 +17185,13 @@ msgstr ""
|
||||
"déformer, tels que l’ABS, une augmentation appropriée de la température du "
|
||||
"plateau chauffant peut réduire la probabilité de déformation."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
#~ "the panel."
|
||||
#~ msgstr ""
|
||||
#~ "La taille du fichier dépasse la limite de téléchargement de 100 Mo. "
|
||||
#~ "Veuillez télécharger votre fichier via le panneau."
|
||||
|
||||
#~ msgid "Please input a valid value (K in 0~0.3)"
|
||||
#~ msgstr "Veuillez saisir une valeur valide (K entre 0 et 0,3)"
|
||||
|
||||
@@ -17671,8 +17733,8 @@ msgstr ""
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour "
|
||||
#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure"
|
||||
#~ "+inférieure)."
|
||||
#~ "garantir l'épaisseur verticale de la coque (couches solides "
|
||||
#~ "supérieure+inférieure)."
|
||||
|
||||
#~ msgid "Further reduce solid infill on walls (beta)"
|
||||
#~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)"
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -14326,6 +14326,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -14410,6 +14413,9 @@ msgstr "Ha szükséges, használj perjeleket ( / ) könyvtárelválasztóként."
|
||||
msgid "Upload to storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "A feltöltendő fájlnév nem végződik „%s”-ra. Folytatod?"
|
||||
@@ -15071,6 +15077,12 @@ msgstr ""
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Nyomtatók frissítése"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -15502,17 +15514,15 @@ msgstr ""
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -15176,6 +15176,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU (TPU)"
|
||||
|
||||
@@ -15272,6 +15275,9 @@ msgstr "Usa la barra ( / ) come separatore di cartella se necessario."
|
||||
msgid "Upload to storage"
|
||||
msgstr "Carica nello spazio di archiviazione"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "Il nome del file caricato non finisce con \"%s\". Vuoi continuare?"
|
||||
@@ -15966,6 +15972,12 @@ msgstr "Sei sicuro di voler effettuare il logout?"
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Aggiorna Stampanti"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -16399,17 +16411,15 @@ msgstr ""
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -14024,6 +14024,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -14108,6 +14111,9 @@ msgstr "Use forward slashes ( / ) as a directory separator if needed."
|
||||
msgid "Upload to storage"
|
||||
msgstr "ストレージへのアップロード"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "Filename to upload doesn't end with \"%s\". Do you want to continue?"
|
||||
@@ -14766,6 +14772,12 @@ msgstr ""
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Refresh Printers"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -15196,17 +15208,15 @@ msgstr ""
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: 2024-05-31 23:33+0900\n"
|
||||
"Last-Translator: Hotsolidinfill <138652683+Hotsolidinfill@users.noreply."
|
||||
"github.com>, crwusiz <crwusiz@gmail.com>\n"
|
||||
@@ -1504,8 +1504,7 @@ msgstr "사용자가 로그아웃됨"
|
||||
|
||||
msgid "new or open project file is not allowed during the slicing process!"
|
||||
msgstr ""
|
||||
"슬라이싱 프로세스 중에는 새 프로젝트 파일이나 열린 프로젝트 파일이 허용되지 "
|
||||
"않습니다!"
|
||||
"슬라이싱 중에는 새 프로젝트를 만들거나 프로젝트 파일을 열 수 없습니다!"
|
||||
|
||||
msgid "Open Project"
|
||||
msgstr "프로젝트 열기"
|
||||
@@ -2816,11 +2815,11 @@ msgstr "재료 유형과 색상을 먼저 선택해야 합니다."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Please input a valid value (K in %.1f~%.1f)"
|
||||
msgstr ""
|
||||
msgstr "유효한 값을 입력하세요 (%.1f~%.1f 사이의 K)"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)"
|
||||
msgstr ""
|
||||
msgstr "유효한 값을 입력하세요 (%.1f~%.1f 사이의 K, %.1f~%.1f 사이의 N)"
|
||||
|
||||
msgid "Other Color"
|
||||
msgstr "기타 색상"
|
||||
@@ -3229,11 +3228,11 @@ msgid "Edit multiple printers"
|
||||
msgstr "여러 프린터 편집"
|
||||
|
||||
msgid "Select connected printers (0/6)"
|
||||
msgstr ""
|
||||
msgstr "연결된 프린터 선택 (0/6)"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Select Connected Printers (%d/6)"
|
||||
msgstr ""
|
||||
msgstr "연결된 프린터 선택 (%d/6)"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "The maximum number of printers that can be selected is %d"
|
||||
@@ -3255,16 +3254,16 @@ msgid "Edit Printers"
|
||||
msgstr "프린터 편집"
|
||||
|
||||
msgid "Device Name"
|
||||
msgstr "Device Name"
|
||||
msgstr "장치 이름"
|
||||
|
||||
msgid "Task Name"
|
||||
msgstr "Task Name"
|
||||
msgstr "작업 이름"
|
||||
|
||||
msgid "Device Status"
|
||||
msgstr "Device Status"
|
||||
msgstr "장치 상태"
|
||||
|
||||
msgid "Actions"
|
||||
msgstr "Actions"
|
||||
msgstr "동작"
|
||||
|
||||
msgid ""
|
||||
"Please select the devices you would like to manage here (up to 6 devices)"
|
||||
@@ -3295,7 +3294,7 @@ msgid "Printing Failed"
|
||||
msgstr "인쇄 실패"
|
||||
|
||||
msgid "Printing Pause"
|
||||
msgstr ""
|
||||
msgstr "인쇄 일시중지"
|
||||
|
||||
msgid "Prepare"
|
||||
msgstr "준비 하기"
|
||||
@@ -3334,22 +3333,22 @@ msgid "Stop"
|
||||
msgstr "정지"
|
||||
|
||||
msgid "Task Status"
|
||||
msgstr "Task Status"
|
||||
msgstr "작업 상태"
|
||||
|
||||
msgid "Sent Time"
|
||||
msgstr "Sent Time"
|
||||
msgstr "전송한 시간"
|
||||
|
||||
msgid "There are no tasks to be sent!"
|
||||
msgstr "There are no tasks to be sent!"
|
||||
msgstr "전송할 작업이 없습니다!"
|
||||
|
||||
msgid "No historical tasks!"
|
||||
msgstr "No historical tasks!"
|
||||
msgstr "작업 내역이 없습니다!"
|
||||
|
||||
msgid "Loading..."
|
||||
msgstr "로딩 중..."
|
||||
|
||||
msgid "No AMS"
|
||||
msgstr "No AMS"
|
||||
msgstr "AMS 없음"
|
||||
|
||||
msgid "Send to Multi-device"
|
||||
msgstr "여러 장치로 보내기"
|
||||
@@ -3367,19 +3366,19 @@ msgid "The number of printers in use simultaneously cannot be equal to 0."
|
||||
msgstr "동시에 사용 중인 프린터의 수는 0과 같을 수 없습니다."
|
||||
|
||||
msgid "Use External Spool"
|
||||
msgstr "Use External Spool"
|
||||
msgstr "외부 스풀 사용"
|
||||
|
||||
msgid "Use AMS"
|
||||
msgstr "Use AMS"
|
||||
msgstr "AMS 사용"
|
||||
|
||||
msgid "Select Printers"
|
||||
msgstr "Select Printers"
|
||||
msgstr "프린터 선택"
|
||||
|
||||
msgid "Ams Status"
|
||||
msgstr "AMS Status"
|
||||
msgstr "AMS 상태"
|
||||
|
||||
msgid "Printing Options"
|
||||
msgstr "Printing Options"
|
||||
msgstr "인쇄 옵션"
|
||||
|
||||
msgid "Bed Leveling"
|
||||
msgstr "베드 레벨링"
|
||||
@@ -3391,7 +3390,7 @@ msgid "Flow Dynamic Calibration"
|
||||
msgstr "흐름 동적 보정"
|
||||
|
||||
msgid "Send Options"
|
||||
msgstr "Send Options"
|
||||
msgstr "전송 옵션"
|
||||
|
||||
msgid "Send to"
|
||||
msgstr ""
|
||||
@@ -3970,10 +3969,10 @@ msgstr ""
|
||||
msgid ""
|
||||
"Invalid input format. Expected vector of dimensions in the following format: "
|
||||
"\"%1%\""
|
||||
msgstr ""
|
||||
msgstr "잘못된 입력 형식. 다음과 같은 벡터 형식의 치수를 입력하십시오: \"%1%\""
|
||||
|
||||
msgid "Input value is out of range"
|
||||
msgstr ""
|
||||
msgstr "입력된 값이 범위를 벗어납니다"
|
||||
|
||||
msgid "Some extension in the input is invalid"
|
||||
msgstr ""
|
||||
@@ -5904,18 +5903,17 @@ msgid "Loading file: %s"
|
||||
msgstr "파일 로드 중: %s"
|
||||
|
||||
msgid "The 3mf is not supported by OrcaSlicer, load geometry data only."
|
||||
msgstr "이 3mf는 OrcaSlicer에서 지원되지 않습니다. 형상 데이터만 로드합니다."
|
||||
msgstr "이 3mf는 OrcaSlicer에서 지원되지 않습니다. 형상 데이터만 불러옵니다."
|
||||
|
||||
msgid "Load 3mf"
|
||||
msgstr "3mf 로드"
|
||||
msgstr "3mf 불러오기"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid ""
|
||||
"The 3mf's version %s is newer than %s's version %s, Found following keys "
|
||||
"unrecognized:"
|
||||
msgstr ""
|
||||
"3mf의 버전 %s이(가) %s의 버전 %s보다 최신입니다. 인식할 수 없는 다음 키를 찾"
|
||||
"았습니다:"
|
||||
"3mf의 버전 %s이(가) %s의 버전 %s보다 높습니다. 다음 키를 인식할 수 없습니다:"
|
||||
|
||||
msgid "You'd better upgrade your software.\n"
|
||||
msgstr "소프트웨어를 업그레이드하는 것이 좋습니다.\n"
|
||||
@@ -6019,7 +6017,7 @@ msgid "Object too large"
|
||||
msgstr "개체가 너무 큼"
|
||||
|
||||
msgid "Export STL file:"
|
||||
msgstr "STL파일 내보내기:"
|
||||
msgstr "STL 파일 내보내기:"
|
||||
|
||||
msgid "Export AMF file:"
|
||||
msgstr "AMF 파일 내보내기:"
|
||||
@@ -6162,9 +6160,7 @@ msgstr "다운로드에 실패했습니다. 파일 크기 예외입니다."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Project downloaded %d%%"
|
||||
msgstr ""
|
||||
"프로젝트 다운로드 %d%%Bambu Studio로 가져오는 데 실패했습니다. 파일을 다운로"
|
||||
"드하여 수동으로 가져오세요."
|
||||
msgstr "프로젝트 %d%% 다운로드됨"
|
||||
|
||||
msgid ""
|
||||
"Importing to Orca Slicer failed. Please download the file and manually "
|
||||
@@ -6233,7 +6229,7 @@ msgstr ""
|
||||
"습니까?"
|
||||
|
||||
msgid "Number of copies:"
|
||||
msgstr "복제 수:"
|
||||
msgstr "복제본 수:"
|
||||
|
||||
msgid "Copies of the selected object"
|
||||
msgstr "선택한 개체의 복제본"
|
||||
@@ -6438,7 +6434,7 @@ msgid ""
|
||||
"This stops the transmission of data to Bambu's cloud services. Users who "
|
||||
"don't use BBL machines or use LAN mode only can safely turn on this function."
|
||||
msgstr ""
|
||||
"이 기능은 밤부의 클라우드 서비스로의 데이터 전송을 중지합니다. BBL 머신을 사"
|
||||
"이 기능은 뱀부의 클라우드 서비스로의 데이터 전송을 중지합니다. BBL 머신을 사"
|
||||
"용하지 않거나 LAN 모드만 사용하는 사용자는 이 기능을 안전하게 켤 수 있습니다."
|
||||
|
||||
msgid "Enable network plugin"
|
||||
@@ -6532,7 +6528,7 @@ msgid "Show \"Tip of the day\" notification after start"
|
||||
msgstr "시작 후 \"오늘의 팁\" 알림 표시"
|
||||
|
||||
msgid "If enabled, useful hints are displayed at startup."
|
||||
msgstr "활성화된 경우 시작 시 유용한 힌트가 표시됩니다."
|
||||
msgstr "활성화하면 시작 시 유용한 힌트가 표시됩니다."
|
||||
|
||||
msgid "Flushing volumes: Auto-calculate everytime the color changed."
|
||||
msgstr "플러시 볼륨: 색상이 변경될 때마다 자동 계산됩니다."
|
||||
@@ -6554,17 +6550,17 @@ msgid ""
|
||||
"If enabled, Orca will remember and switch filament/process configuration for "
|
||||
"each printer automatically."
|
||||
msgstr ""
|
||||
"활성화된 경우 Orca는 각 프린터의 필라멘트/프로세스 구성을 자동으로 기억하고 "
|
||||
"활성화하면 Orca는 각 프린터의 필라멘트/프로세스 구성을 자동으로 기억하고 "
|
||||
"전환합니다."
|
||||
|
||||
msgid "Multi-device Management(Take effect after restarting Orca)."
|
||||
msgstr "다중 장치 관리(Studio를 다시 시작한 후 적용)."
|
||||
msgstr "다중 장치 관리 (Orca를 다시 시작한 후 적용됨)."
|
||||
|
||||
msgid ""
|
||||
"With this option enabled, you can send a task to multiple devices at the "
|
||||
"same time and manage multiple devices."
|
||||
msgstr ""
|
||||
"이 옵션을 활성화하면 동시에 여러 장치에 작업을 보내고 여러 장치를 관리할 수 "
|
||||
"활성화하면 여러 장치에 동시에 작업을 보내고 여러 장치를 관리할 수 "
|
||||
"있습니다."
|
||||
|
||||
msgid "Network"
|
||||
@@ -6620,7 +6616,7 @@ msgid "Current association: "
|
||||
msgstr "현재 연결:"
|
||||
|
||||
msgid "Associate prusaslicer://"
|
||||
msgstr "프루사슬라이서://"
|
||||
msgstr "prusaslicer:// 연결"
|
||||
|
||||
msgid "Not associated to any application"
|
||||
msgstr "어떤 애플리케이션과도 연결되지 않음"
|
||||
@@ -6629,27 +6625,27 @@ msgid ""
|
||||
"Associate OrcaSlicer with prusaslicer:// links so that Orca can open models "
|
||||
"from Printable.com"
|
||||
msgstr ""
|
||||
"Orca가 Printable.com에서 모델을 열 수 있도록 OrcaSlicer를 prusaslicer:// 링크"
|
||||
"OrcaSlicer가 Printable.com에서 모델을 열 수 있도록 OrcaSlicer를 prusaslicer:// 링크"
|
||||
"와 연결합니다."
|
||||
|
||||
msgid "Associate bambustudio://"
|
||||
msgstr "연결 bambustudio://"
|
||||
msgstr "bambustudio:// 연결"
|
||||
|
||||
msgid ""
|
||||
"Associate OrcaSlicer with bambustudio:// links so that Orca can open models "
|
||||
"from makerworld.com"
|
||||
msgstr ""
|
||||
"Orca가 makerworld.com에서 모델을 열 수 있도록 OrcaSlicer를 bambustudio:// 링"
|
||||
"크와 연결하세요."
|
||||
"OrcaSlicer가 makerworld.com에서 모델을 열 수 있도록 OrcaSlicer를 bambustudio:// 링"
|
||||
"크와 연결합니다."
|
||||
|
||||
msgid "Associate cura://"
|
||||
msgstr "연결 cura://"
|
||||
msgstr "cura:// 연결"
|
||||
|
||||
msgid ""
|
||||
"Associate OrcaSlicer with cura:// links so that Orca can open models from "
|
||||
"thingiverse.com"
|
||||
msgstr ""
|
||||
"Orca가 thingiverse.com에서 모델을 열 수 있도록 OrcaSlicer를 cura:// 링크와 연"
|
||||
"OOrcaSlicer가 thingiverse.com에서 모델을 열 수 있도록 OrcaSlicer를 cura:// 링크와 연"
|
||||
"결합니다."
|
||||
|
||||
msgid "Maximum recent projects"
|
||||
@@ -6888,7 +6884,7 @@ msgid "Jump to model publish web page"
|
||||
msgstr "모델 게시 웹 페이지로 이동"
|
||||
|
||||
msgid "Note: The preparation may takes several minutes. Please be patiant."
|
||||
msgstr "참고: 준비하는 데 몇 분 정도 걸릴 수 있습니다. 조금만 기다려주십시오."
|
||||
msgstr "참고: 준비하는 데 몇 분 정도 걸릴 수 있습니다. 조금만 기다려 주십시오."
|
||||
|
||||
msgid "Publish"
|
||||
msgstr "게시"
|
||||
@@ -7275,7 +7271,7 @@ msgid "Please confirm on the printer screen"
|
||||
msgstr "프린터 화면에서 확인해주세요"
|
||||
|
||||
msgid "Log in failed. Please check the Pin Code."
|
||||
msgstr "로그인 실패. 핀코드를 확인해주세요."
|
||||
msgstr "로그인 실패. 핀 코드를 확인해주세요."
|
||||
|
||||
msgid "Log in printer"
|
||||
msgstr "프린터 로그인"
|
||||
@@ -7743,10 +7739,10 @@ msgstr "출력 가능 공간"
|
||||
#. TRN: First argument is parameter name, the second one is the value.
|
||||
#, boost-format
|
||||
msgid "Invalid value provided for parameter %1%: %2%"
|
||||
msgstr ""
|
||||
msgstr "%1% 매개변수에 잘못된 값이 입력됨: %2%"
|
||||
|
||||
msgid "G-code flavor is switched"
|
||||
msgstr ""
|
||||
msgstr "G코드 유형이 변경됨"
|
||||
|
||||
msgid "Cooling Fan"
|
||||
msgstr "냉각 팬"
|
||||
@@ -8016,7 +8012,7 @@ msgid "Capabilities"
|
||||
msgstr "성능"
|
||||
|
||||
msgid "Show all presets (including incompatible)"
|
||||
msgstr "모든 사전 설정 표시(미 호환 포함)"
|
||||
msgstr "모든 사전 설정 표시(호환되지 않는 설정 포함)"
|
||||
|
||||
msgid "Select presets to compare"
|
||||
msgstr "비교할 사전 설정 선택"
|
||||
@@ -8261,7 +8257,8 @@ msgstr "으로"
|
||||
msgid ""
|
||||
"Windows Media Player is required for this task! Do you want to enable "
|
||||
"'Windows Media Player' for your operation system?"
|
||||
msgstr ""
|
||||
msgstr "이 작업에는 Windows Media Player가 필요합니다! 운영 체제에서 Windows Media Player를 "
|
||||
"활성화하시겠습니까?"
|
||||
|
||||
msgid ""
|
||||
"BambuSource has not correctly been registered for media playing! Press Yes "
|
||||
@@ -8658,7 +8655,7 @@ msgid "Test"
|
||||
msgstr "테스트"
|
||||
|
||||
msgid "IP and Access Code Verified! You may close the window"
|
||||
msgstr "IP 및 접속코드가 확인되었습니다. 창을 닫아도 됩니다"
|
||||
msgstr "IP 및 액세스 코드가 확인되었습니다. 창을 닫아도 됩니다"
|
||||
|
||||
msgid "Connection failed, please double check IP and Access Code"
|
||||
msgstr "연결에 실패했습니다. IP와 액세스 코드를 다시 확인하세요"
|
||||
@@ -9073,8 +9070,8 @@ msgid ""
|
||||
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
|
||||
"RepRapFirmware and Repetier G-code flavors."
|
||||
msgstr ""
|
||||
"프라임 타워는 현재 Marlin, RepRap/Sprinter에만 지원됩니다.RepRapFirmware 및 "
|
||||
"Repetier G코드 유형."
|
||||
"프라임 타워는 현재 Marlin, RepRap/Sprinter, RepRapFirmware 및 Repetier G코드 "
|
||||
"유형에서만 지원됩니다."
|
||||
|
||||
msgid "The prime tower is not supported in \"By object\" print."
|
||||
msgstr "프라임 타워는 \"개체별\" 출력에서 지원되지 않습니다."
|
||||
@@ -9256,7 +9253,7 @@ msgid ""
|
||||
"Shrink the initial layer on build plate to compensate for elephant foot "
|
||||
"effect"
|
||||
msgstr ""
|
||||
"코끼리 발 효과를 보정하기 위해 빌드 플레이트의 초기 레이어를 축소합니다"
|
||||
"코끼리 발 효과를 보정하기 위해 빌드 플레이트에 닿는 첫 레이어를 축소합니다"
|
||||
|
||||
msgid "Elephant foot compensation layers"
|
||||
msgstr "코끼리 발 보정 레이어"
|
||||
@@ -9267,7 +9264,7 @@ msgid ""
|
||||
"the next layers will be linearly shrunk less, up to the layer indicated by "
|
||||
"this value."
|
||||
msgstr ""
|
||||
"코끼리 발 보정이 활성화될 레이어 수입니다. 첫 번째 레이어는 코끼리 발 보정 값"
|
||||
"코끼리 발 보정울 적용할 레이어의 수입니다. 첫 번째 레이어는 코끼리 발 보정 값"
|
||||
"만큼 축소되고, 다음 레이어부터 이 값으로 표시된 레이어까지 선형적으로 덜 축소"
|
||||
"됩니다."
|
||||
|
||||
@@ -9593,7 +9590,7 @@ msgid ""
|
||||
"calculated automatically. Otherwise the provided angle will be used for "
|
||||
"external bridges. Use 180°for zero angle."
|
||||
msgstr ""
|
||||
"브릿지출력 각도 재정의. 0°으로 두면 브릿지 출력 각도가 자동으로 계산됩니다. "
|
||||
"브릿지 출력 각도 재정의. 0°으로 두면 브릿지 출력 각도가 자동으로 계산됩니다. "
|
||||
"그렇지 않으면 제공된 각도가 외부 브릿지 출력에 사용됩니다. 0도에는 180°를 사"
|
||||
"용합니다."
|
||||
|
||||
@@ -9813,7 +9810,7 @@ msgstr ""
|
||||
"하세요"
|
||||
|
||||
msgid "mm/s or %"
|
||||
msgstr "mm/s or %"
|
||||
msgstr "mm/s 또는 %"
|
||||
|
||||
msgid "External"
|
||||
msgstr "외부"
|
||||
@@ -10104,14 +10101,13 @@ msgid "End G-code when finish the whole printing"
|
||||
msgstr "전체 출력이 끝날때의 종료 G코드"
|
||||
|
||||
msgid "Between Object Gcode"
|
||||
msgstr "개체와 G코드 사이"
|
||||
msgstr "개체 사이의 G코드"
|
||||
|
||||
msgid ""
|
||||
"Insert Gcode between objects. This parameter will only come into effect when "
|
||||
"you print your models object by object"
|
||||
msgstr ""
|
||||
"개체 사이에 G코드를 삽입하세요. 이 매개변수는 다음 경우에만 적용됩니다.모델 "
|
||||
"개체를 개체별로 출력합니다"
|
||||
"개체 사이에 G코드를 삽입하세요. 이 매개변수는 개체별 출력을 사용할 때만 적용됩니다."
|
||||
|
||||
msgid "End G-code when finish the printing of this filament"
|
||||
msgstr "이 필라멘트의 출력이 끝날때의 종료 G코드"
|
||||
@@ -10369,7 +10365,7 @@ msgstr ""
|
||||
"이 옵션은 허용되는 배드 메쉬 영역의 최소 지점을 설정합니다. 프로브의 XY 옵셋"
|
||||
"으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트"
|
||||
"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메쉬의 최소 및 최대 지점을 적절"
|
||||
"하게 설정해야 합니다. OrcaSlicer는adaptive_bed_mesh_min/"
|
||||
"하게 설정해야 합니다. OrcaSlicer는 adaptive_bed_mesh_min/"
|
||||
"adaptive_bed_mesh_max 값이 이러한 최소/최대 포인트를 초과하지 않도록 보장합니"
|
||||
"다. 이 정보는 일반적으로 프린터 제조업체로부터 얻을 수 있습니다. 기본 설정은 "
|
||||
"(-99999, -99999)입니다. 이는 제한이 없으므로 전체 베드에 걸쳐 프로빙이 가능함"
|
||||
@@ -10391,7 +10387,7 @@ msgstr ""
|
||||
"이 옵션은 허용되는 침대 메쉬 영역의 최대 지점을 설정합니다. 프로브의 XY 옵셋"
|
||||
"으로 인해 대부분의 프린터는 전체 베드를 프로브할 수 없습니다. 프로브 포인트"
|
||||
"가 베드 영역 밖으로 나가지 않도록 하려면 베드 메쉬의 최소 및 최대 지점을 적절"
|
||||
"하게 설정해야 합니다. OrcaSlicer는adaptive_bed_mesh_min/"
|
||||
"하게 설정해야 합니다. OrcaSlicer는 adaptive_bed_mesh_min/"
|
||||
"adaptive_bed_mesh_max 값이 이러한 최소/최대 포인트를 초과하지 않도록 보장합니"
|
||||
"다. 이 정보는 일반적으로 프린터 제조업체로부터 얻을 수 있습니다. 기본 설정은 "
|
||||
"(99999, 99999)입니다. 이는 제한이 없으므로 전체 베드에 걸쳐 프로빙이 가능함"
|
||||
@@ -10471,7 +10467,7 @@ msgstr ""
|
||||
"여 시동 및 정지 빈도를 줄입니다"
|
||||
|
||||
msgid "Don't slow down outer walls"
|
||||
msgstr ""
|
||||
msgstr "외벽 감속하지 않기"
|
||||
|
||||
msgid ""
|
||||
"If enabled, this setting will ensure external perimeters are not slowed down "
|
||||
@@ -10485,6 +10481,14 @@ msgid ""
|
||||
"external walls\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
"활성화되면 최소 레이어 시간을 충족하기 위한 외벽의 출력 속도 감속을 적용하지 "
|
||||
"않습니다. 이 기능은 아래의 경우에 도움이 될 수 있습니다:\n"
|
||||
"\n"
|
||||
"1. 유광 필라멘트로 인쇄할 때 일정한 광택을 유지하기 위한 경우 \n"
|
||||
"2. 외벽 출력 속도의 변화로 인한 외벽의 Z밴딩처럼 보이는 형상이 생성되는 것을 "
|
||||
"방지하기 위한 경우 \n"
|
||||
"3. 외벽을 VFA를 발생시키는 속도로 출력하는 것을 방지하기 위한 경우\n"
|
||||
"\n"
|
||||
|
||||
msgid "Layer time"
|
||||
msgstr "레이어 시간"
|
||||
@@ -10535,19 +10539,19 @@ msgid "Filament load time"
|
||||
msgstr "필라멘트 넣기 시간"
|
||||
|
||||
msgid "Time to load new filament when switch filament. For statistics only"
|
||||
msgstr "필라멘트 교체 시 새 필라멘트를 넣는 시간입니다. 통계 전용"
|
||||
msgstr "필라멘트 교체 시 새 필라멘트를 넣는 시간입니다. 통계에만 사용됩니다"
|
||||
|
||||
msgid "Filament unload time"
|
||||
msgstr "필라멘트 빼기 시간"
|
||||
|
||||
msgid "Time to unload old filament when switch filament. For statistics only"
|
||||
msgstr "필라멘트를 교체할 때 기존 필라멘트를 빼는 시간입니다. 통계 전용"
|
||||
msgstr "필라멘트를 교체할 때 기존 필라멘트를 빼는 시간입니다. 통계에만 사용됩니다"
|
||||
|
||||
msgid ""
|
||||
"Filament diameter is used to calculate extrusion in gcode, so it's important "
|
||||
"and should be accurate"
|
||||
msgstr ""
|
||||
"필라멘트 직경은 G코드에서 압출을 계산하는데 사용되므로 중요하며 정확해야 합니"
|
||||
"필라멘트 직경은 G코드에서 압출량을 계산하는데 사용되므로 중요하며 정확해야 합니"
|
||||
"다"
|
||||
|
||||
msgid "Shrinkage"
|
||||
@@ -10562,7 +10566,7 @@ msgid ""
|
||||
"after the checks."
|
||||
msgstr ""
|
||||
"냉각 후 필라멘트가 얻게 될 수축률을 입력합니다(100mm 대신 94mm를 측정하는 경"
|
||||
"우 94% i). 출력물은 xy로 보정됩니다. 외벽에 사용되는 필라멘트만 고려됩니다.\n"
|
||||
"우 94%). 출력물은 xy 방향으로 보정됩니다. 외벽에 사용되는 필라멘트에만 적용됩니다.\n"
|
||||
"이 보정은 확인 후 수행되므로 개체 사이에 충분한 공간을 허용해야 합니다."
|
||||
|
||||
msgid "Loading speed"
|
||||
@@ -10909,7 +10913,7 @@ msgstr ""
|
||||
"니다."
|
||||
|
||||
msgid "mm/s² or %"
|
||||
msgstr "mm/s² or %"
|
||||
msgstr "mm/s² 또는 %"
|
||||
|
||||
msgid ""
|
||||
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||
@@ -11027,7 +11031,7 @@ msgstr ""
|
||||
"\"close_fan_the_first_x_layers\" + 1 에서 최대 허용 속도로 가도됩니다."
|
||||
|
||||
msgid "layer"
|
||||
msgstr ""
|
||||
msgstr "레이어"
|
||||
|
||||
msgid "Support interface fan speed"
|
||||
msgstr "지지대 접점 팬 속도"
|
||||
@@ -11158,7 +11162,7 @@ msgstr ""
|
||||
"수 있는지를 결정합니다"
|
||||
|
||||
msgid "Undefine"
|
||||
msgstr "알수없음"
|
||||
msgstr "알 수 없음"
|
||||
|
||||
msgid "Hardened steel"
|
||||
msgstr "경화강"
|
||||
@@ -11167,7 +11171,7 @@ msgid "Stainless steel"
|
||||
msgstr "스테인레스강 노즐"
|
||||
|
||||
msgid "Brass"
|
||||
msgstr "동 노즐"
|
||||
msgstr "황동 노즐"
|
||||
|
||||
msgid "Nozzle HRC"
|
||||
msgstr "노즐 록웰 경도"
|
||||
@@ -13359,7 +13363,7 @@ msgstr ""
|
||||
"기"
|
||||
|
||||
msgid "Format of G-code thumbnails"
|
||||
msgstr "G코드 미리보기 포맷"
|
||||
msgstr "G코드 미리보기 형식"
|
||||
|
||||
msgid ""
|
||||
"Format of G-code thumbnails: PNG for best quality, JPG for smallest size, "
|
||||
@@ -13674,7 +13678,7 @@ msgid "Number of toolchanges during the print."
|
||||
msgstr "출력 중 도구 교환 횟수."
|
||||
|
||||
msgid "Total volume"
|
||||
msgstr "총량"
|
||||
msgstr "총 부피"
|
||||
|
||||
msgid "Total volume of filament used during the entire print."
|
||||
msgstr "전체 프린트 중에 사용된 필라멘트의 총량입니다."
|
||||
@@ -14295,14 +14299,13 @@ msgid ""
|
||||
"Only one of the results with the same name will be saved. Are you sure you "
|
||||
"want to override the other results?"
|
||||
msgstr ""
|
||||
"Only one of the results with the same name will be saved. Are you sure you "
|
||||
"want to replace the other results?"
|
||||
"단 하나의 결과만을 같은 이름으로 저장할 수 있습니다. 다른 결과들을 덮어쓸까요?"
|
||||
|
||||
msgid "Please find the best line on your plate"
|
||||
msgstr "당신의 플레이트에서 가장 좋은 선을 찾아보세요"
|
||||
|
||||
msgid "Please find the corner with perfect degree of extrusion"
|
||||
msgstr "Please find the corner with the perfect degree of extrusion"
|
||||
msgstr "사출 품질이 제일 좋은 모서리를 찾아보세요"
|
||||
|
||||
msgid "Input Value"
|
||||
msgstr "입력값"
|
||||
@@ -14468,7 +14471,7 @@ msgid "The filament must be selected."
|
||||
msgstr "필라멘트를 선택해야 합니다."
|
||||
|
||||
msgid "Network lookup"
|
||||
msgstr "네트워크 조회"
|
||||
msgstr "네트워크 검색"
|
||||
|
||||
msgid "Address"
|
||||
msgstr "주소"
|
||||
@@ -14555,6 +14558,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr "PCTG"
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -14651,6 +14657,9 @@ msgstr "필요한 경우 슬래시( / )를 디렉토리 구분 기호로 사용
|
||||
msgid "Upload to storage"
|
||||
msgstr "저장소에 업로드"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr "업로드 후 기기 탭으로 전환"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "업로드 파일 이름이 \"%s\"로 끝나지 않습니다. 계속하시겠습니까?"
|
||||
@@ -14930,13 +14939,13 @@ msgid "Hot Bed STL"
|
||||
msgstr "베드 STL"
|
||||
|
||||
msgid "Load stl"
|
||||
msgstr "STL 로드"
|
||||
msgstr "STL 불러오기"
|
||||
|
||||
msgid "Hot Bed SVG"
|
||||
msgstr "베드 SVG"
|
||||
|
||||
msgid "Load svg"
|
||||
msgstr "SVG 로드"
|
||||
msgstr "SVG 불러오기"
|
||||
|
||||
msgid "Max Print Height"
|
||||
msgstr "최대 출력 높이"
|
||||
@@ -15088,8 +15097,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"\n"
|
||||
"\n"
|
||||
"Studio에서는 사용자 사전 설정 동기화 기능이 활성화되어 있지 않아 장치 페이지"
|
||||
"에서 필라멘트 설정이 실패할 수 있음을 감지했습니다.\n"
|
||||
"Orca에서는 사용자 사전 설정 동기화 기능이 활성화되어 있지 않아 장치 페이지에"
|
||||
"서 필라멘트 설정이 실패할 수 있음을 감지했습니다.\n"
|
||||
"동기화 기능을 활성화하려면 \"사용자 사전 설정 동기화\"를 클릭하세요."
|
||||
|
||||
msgid "Printer Setting"
|
||||
@@ -15149,7 +15158,7 @@ msgid ""
|
||||
"User's fillment preset set. \n"
|
||||
"Can be shared with others."
|
||||
msgstr ""
|
||||
"사용자 채우기 사전 설정입니다.\n"
|
||||
"사용자의 필라멘트 사전 설정입니다.\n"
|
||||
"다른 사람과 공유할 수 있습니다."
|
||||
|
||||
msgid ""
|
||||
@@ -15316,6 +15325,12 @@ msgstr "정말 로그아웃하시겠습니까?"
|
||||
msgid "Refresh Printers"
|
||||
msgstr "프린터 새로 고침"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr "기기 탭에서 출력 호스트의 웹UI 표시"
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr "뱀부랩의 기기 탭을 출력 호스트의 웹UI로 교체"
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -15390,7 +15405,8 @@ msgid ""
|
||||
"Note: FlashAir with firmware 2.00.02 or newer and activated upload function "
|
||||
"is required."
|
||||
msgstr ""
|
||||
"참고: 펌웨어 2.00.02 이상이 있고 업로드 기능이 활성화된 FlashAir필수입니다."
|
||||
"참고: 펌웨어 2.00.02 또는 이후 버전을 사용중이며 업로드 기능이 활성화된 "
|
||||
"FlashAir가 필요합니다."
|
||||
|
||||
msgid "Connection to MKS works correctly."
|
||||
msgstr "MKS에 대한 연결이 올바르게 작동합니다."
|
||||
@@ -15729,20 +15745,16 @@ msgstr "SimplyPrint에 성공적으로 연결되었습니다!"
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr "SimplyPrint에 연결할 수 없습니다"
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
"SimplyPrint 계정이 연결되지 않았습니다. 연결 옵션으로 이동하여 설정합니다."
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
"파일 크기가 업로드 제한인 100MB를 초과했습니다. 패널을 통해 파일을 업로드하세"
|
||||
"요."
|
||||
msgid "Internal error"
|
||||
msgstr "내부 오류"
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "알 수 없는 오류"
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
"SimplyPrint 계정이 연결되지 않았습니다. 연결 옵션으로 이동하여 설정합니다."
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr "플래시포지 연결이 정상적으로 작동합니다."
|
||||
|
||||
@@ -15769,8 +15781,7 @@ msgid ""
|
||||
"consistency?"
|
||||
msgstr ""
|
||||
"정밀한 벽\n"
|
||||
"정확한 벽을 켜면 정밀도와 레이어 일관성이 향상될 수 있다는 사실을 알고 계셨습"
|
||||
"니까?"
|
||||
"정밀한 벽을 켜면 정밀도와 레이어 일관성이 향상될 수 있다는 사실을 알고 계셨나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Sandwich mode]
|
||||
msgid ""
|
||||
@@ -15789,7 +15800,7 @@ msgid ""
|
||||
"Did you know that OrcaSlicer supports chamber temperature?"
|
||||
msgstr ""
|
||||
"챔버 온도\n"
|
||||
"OrcaSlicer가 챔버 온도를 지원한다는 사실을 알고 계셨나요?"
|
||||
"OrcaSlicer가 챔버 온도 설정을 지원한다는 사실을 알고 계셨나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Calibration]
|
||||
msgid ""
|
||||
@@ -15815,7 +15826,7 @@ msgid ""
|
||||
"Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
|
||||
msgstr ""
|
||||
"공기 여과/배기 팬\n"
|
||||
"오르카 슬라이서가 공기 여과/배기 팬을 지원할 수 있다는 사실을 알고 계셨나요?"
|
||||
"오르카 슬라이서가 공기 여과/배기 팬을 지원한다는 사실을 알고 계셨나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:G-code window]
|
||||
msgid ""
|
||||
@@ -15842,7 +15853,7 @@ msgid ""
|
||||
"3D scene operations."
|
||||
msgstr ""
|
||||
"키보드 단축키를 사용하는 방법\n"
|
||||
"Orca Slicer가 다양한 키보드 단축키와 3D 장면 작업을 제공합니다."
|
||||
"Orca Slicer는 다양한 키보드 단축키와 3D 장면 작업을 제공합니다."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Reverse on odd]
|
||||
msgid ""
|
||||
@@ -15852,7 +15863,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"홀수에 반전\n"
|
||||
"<b>홀수면 반전</b> 기능이 오버행의 표면 품질을 크게 향상시킬 수 있다는 사실"
|
||||
"을 알고 계셨습니까?"
|
||||
"을 알고 계셨나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Cut Tool]
|
||||
msgid ""
|
||||
@@ -15861,7 +15872,7 @@ msgid ""
|
||||
"cutting tool?"
|
||||
msgstr ""
|
||||
"절단 도구\n"
|
||||
"커팅 툴로 원하는 각도와 위치에서 모델을 커팅할 수 있다는 사실을 알고 계셨나"
|
||||
"절단 도구로 원하는 각도와 위치에서 모델을 자를 수 있다는 사실을 알고 계셨나"
|
||||
"요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Fix Model]
|
||||
@@ -15872,7 +15883,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"모델 수정\n"
|
||||
"Windows 시스템에서 많은 슬라이싱 문제를 피하기 위해 손상된 3D 모델을 수정할 "
|
||||
"수 있다는 것을 알고 계셨습니까?"
|
||||
"수 있다는 것을 알고 계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Timelapse]
|
||||
msgid ""
|
||||
@@ -15880,7 +15891,7 @@ msgid ""
|
||||
"Did you know that you can generate a timelapse video during each print?"
|
||||
msgstr ""
|
||||
"타임랩스\n"
|
||||
"각 출력 중에 타임랩스 비디오를 생성할 수 있다는 것을 알고 계셨습니까?"
|
||||
"각 출력 중에 타임랩스 비디오를 생성할 수 있다는 것을 알고 계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Auto-Arrange]
|
||||
msgid ""
|
||||
@@ -15888,7 +15899,7 @@ msgid ""
|
||||
"Did you know that you can auto-arrange all objects in your project?"
|
||||
msgstr ""
|
||||
"자동 정렬\n"
|
||||
"프로젝트의 모든 개체를 자동 정렬할 수 있다는 것을 알고 계셨습니까?"
|
||||
"프로젝트의 모든 개체를 자동 정렬할 수 있다는 것을 알고 계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Auto-Orient]
|
||||
msgid ""
|
||||
@@ -15898,7 +15909,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"자동 방향 지정\n"
|
||||
"간단한 클릭만으로 개체를 최적의 출력 방향으로 회전할 수 있다는 것을 알고 계셨"
|
||||
"습니까?"
|
||||
"나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Lay on Face]
|
||||
msgid ""
|
||||
@@ -15909,7 +15920,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"면에 위치\n"
|
||||
"모델의 바닥 표면을 빠르게 지정하여 출력 베드에 놓을 수 있다는 것을 알고 계셨"
|
||||
"습니까? 면에 배치 기능을 선택하십시오. 또는<b>F</b> 키를 누르세요."
|
||||
"나요? 면에 배치 기능을 선택하십시오. 또는<b>F</b> 키를 누르세요."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Object List]
|
||||
msgid ""
|
||||
@@ -15919,7 +15930,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"개체 목록\n"
|
||||
"목록의 모든 개체/부품을 보고 각 개체/부품에 대한 설정을 변경할 수 있다는 것"
|
||||
"을 알고 있습니까?"
|
||||
"을 알고 계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Search Functionality]
|
||||
msgid ""
|
||||
@@ -15928,8 +15939,8 @@ msgid ""
|
||||
"Slicer setting?"
|
||||
msgstr ""
|
||||
"검색 기능\n"
|
||||
"특정 Orca Slicer 설정을 빠르게 찾기 위해 검색 도구를 사용한다는 사실을 알고 "
|
||||
"계셨습니까?"
|
||||
"검색 도구를 사용하여 원하는 Orca Slicer 설정을 빠르게 찾을 수 있다는 사실을 알고 "
|
||||
"계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Simplify Model]
|
||||
msgid ""
|
||||
@@ -15939,7 +15950,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"모델 단순화\n"
|
||||
"메쉬 단순화 기능을 사용하여 메쉬의 삼각형 수를 줄일 수 있다는 것을 알고 계셨"
|
||||
"습니까? 모델을 마우스 오른쪽 버튼으로 클릭하고 모델 단순화를 선택합니다."
|
||||
"나요? 모델을 마우스 오른쪽 버튼으로 클릭하고 모델 단순화를 선택하세요."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Slicing Parameter Table]
|
||||
msgid ""
|
||||
@@ -15949,7 +15960,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"슬라이싱 매개변수 테이블\n"
|
||||
"테이블의 모든 개체/부품을 보고 각 개체/부품에 대한 설정을 변경할 수 있다는 것"
|
||||
"을 알고 있습니까?"
|
||||
"을 알고 계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Split to Objects/Parts]
|
||||
msgid ""
|
||||
@@ -15959,7 +15970,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"개체/부품으로 분할\n"
|
||||
"쉽게 색칠하거나 출력하기 위해 큰 개체를 작은 개체로 나눌 수 있다는 것을 알고 "
|
||||
"있습니까?"
|
||||
"계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Subtract a Part]
|
||||
msgid ""
|
||||
@@ -15970,7 +15981,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"부품 빼기\n"
|
||||
"네거티브 부분 수정자를 사용하여 하나의 메시를 다른 메시에서 뺄 수 있다는 것"
|
||||
"을 알고 계셨습니까? 예를 들어, 이렇게 하면 Orca Slicer에서 직접 쉽게 크기 조"
|
||||
"을 알고 계섰나요? 예를 들어, 이렇게 하면 Orca Slicer에서 직접 쉽게 크기 조"
|
||||
"정이 가능한 구멍을 만들 수 있습니다."
|
||||
|
||||
#: resources/data/hints.ini: [hint:STEP]
|
||||
@@ -15983,7 +15994,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"STEP\n"
|
||||
"STL 대신 STEP 파일을 슬라이싱하여 출력 품질을 향상시킬 수 있다는 사실을 알고 "
|
||||
"있습니까?\n"
|
||||
"계섰나요?\n"
|
||||
"Orca Slicer는 STEP 파일 슬라이싱을 지원하여 저해상도 STL보다 부드러운 결과를 "
|
||||
"제공합니다. 시도해 보세요!"
|
||||
|
||||
@@ -15996,7 +16007,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Z 솔기 위치\n"
|
||||
"Z 솔기의 위치를 사용자 정의하고 출력물에 칠하여 잘 보이지 않는 위치에 배치할 "
|
||||
"수 있다는 사실을 알고 있습니까? 이렇게 하면 모델의 전반적인 모양이 향상됩니"
|
||||
"수 있다는 사실을 알고 계섰나요? 이렇게 하면 모델의 전반적인 모양이 향상됩니"
|
||||
"다. 확인해 보세요!"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Fine-tuning for flow rate]
|
||||
@@ -16020,7 +16031,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"출력을 플레이트로 분할\n"
|
||||
"부품이 많은 모델을 출력할 준비가 된 개별 플레이트로 분할할 수 있다는 사실을 "
|
||||
"알고 있습니까? 이렇게 하면 모든 부품을 추적하는 프로세스가 간소화됩니다."
|
||||
"알고 계섰나요? 이렇게 하면 모든 부품을 추적하는 프로세스가 간소화됩니다."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer
|
||||
#: Height]
|
||||
@@ -16031,7 +16042,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"적응형 레이어 높이로 출력 속도를 높이세요\n"
|
||||
"적응형 레이어를 사용하면 모델을 더욱 빠르게 프린트할 수 있다는 사실을 알고 계"
|
||||
"셨습니까?레이어 높이 옵션을 확인해 보세요!"
|
||||
"셨나요? 레이어 높이 옵션을 확인해 보세요!"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Support painting]
|
||||
msgid ""
|
||||
@@ -16041,7 +16052,7 @@ msgid ""
|
||||
"model that actually need it."
|
||||
msgstr ""
|
||||
"지지대 칠하기\n"
|
||||
"지지대의 위치를 칠할 수 있다는 것을 알고 있습니까? 이 기능을 사용하면 실제로 "
|
||||
"지지대의 위치를 칠할 수 있다는 것을 알고 계섰나요? 이 기능을 사용하면 실제로 "
|
||||
"필요한 모델 부위에만 지지대 재료를 쉽게 배치할 수 있습니다."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Different types of supports]
|
||||
@@ -16052,7 +16063,7 @@ msgid ""
|
||||
"print speed. Check them out!"
|
||||
msgstr ""
|
||||
"다양한 유형의 지지대\n"
|
||||
"여러 유형의 지지대 중에서 선택할 수 있다는 것을 알고 있습니까? 나무 지지대는 "
|
||||
"여러 유형의 지지대 중에서 선택할 수 있다는 것을 알고 계섰나요? 나무 지지대는 "
|
||||
"필라멘트를 절약하고 출력 속도를 향상시키면서 유기 모델에 적합합니다. 확인해 "
|
||||
"보세요!"
|
||||
|
||||
@@ -16064,7 +16075,7 @@ msgid ""
|
||||
"the best results."
|
||||
msgstr ""
|
||||
"실크 필라멘트 출력\n"
|
||||
"실크 필라멘트를 성공적으로 프린팅하려면 특별한 주의가 필요하다는 사실을 알고 "
|
||||
"실크 필라멘트를 성공적으로 출력하려면 특별한 주의가 필요하다는 사실을 알고 "
|
||||
"계셨나요? 최상의 결과를 얻으려면 항상 더 높은 온도와 더 낮은 속도를 권장합니"
|
||||
"다."
|
||||
|
||||
@@ -16076,7 +16087,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"접착력이 더 좋아지는 브림\n"
|
||||
"모델을 출력할 때 베드 표면과의 접촉면이 작을 경우 브림을 사용하는 것이 권장된"
|
||||
"다는 사실을 알고 계셨습니까?"
|
||||
"다는 사실을 알고 계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Set parameters for multiple objects]
|
||||
msgid ""
|
||||
@@ -16086,7 +16097,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"여러 개체에 대한 매개변수 설정\n"
|
||||
"선택한 모든 개체에 대한 슬라이싱 매개변수를 한 번에 설정할 수 있다는 사실을 "
|
||||
"알고 있습니까?"
|
||||
"알고 계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Stack objects]
|
||||
msgid ""
|
||||
@@ -16094,7 +16105,7 @@ msgid ""
|
||||
"Did you know that you can stack objects as a whole one?"
|
||||
msgstr ""
|
||||
"개체 쌓기\n"
|
||||
"물건을 통째로 쌓을 수 있다는 사실을 알고 있습니까?"
|
||||
"물건을 통째로 쌓을 수 있다는 사실을 알고 계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Flush into support/objects/infill]
|
||||
msgid ""
|
||||
@@ -16102,9 +16113,9 @@ msgid ""
|
||||
"Did you know that you can save the wasted filament by flushing them into "
|
||||
"support/objects/infill during filament change?"
|
||||
msgstr ""
|
||||
"지지대/개체/채우기에 버리기\n"
|
||||
"필라멘트를 교체하는 동안 낭비되는 필라멘트를 지지대/개체/채우기에 버리기하여 "
|
||||
"절약할 수 있다는 사실을 알고 있습니까?"
|
||||
"지지대/개체/채우기에 내보내기\n"
|
||||
"필라멘트를 교체하는 동안 낭비되는 필라멘트를 지지대/개체/채우기 출력에 활용할 "
|
||||
"수 있다는 사실을 알고 계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:Improve strength]
|
||||
msgid ""
|
||||
@@ -16114,7 +16125,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"강도 향상\n"
|
||||
"모델의 강도를 개선하기 위해 더 많은 벽 루프와 더 높은 드문 채우기 밀도를 사용"
|
||||
"할 수 있다는 것을 알고 있습니까?"
|
||||
"할 수 있다는 것을 알고 계섰나요?"
|
||||
|
||||
#: resources/data/hints.ini: [hint:When need to print with the printer door
|
||||
#: opened]
|
||||
@@ -16126,7 +16137,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"프린터 도어를 연 상태로 출력해야 하는 경우\n"
|
||||
"더 높은 프린터 내부 온도로 낮은 온도의 필라멘트를 출력할 때 프린터 도어를 열"
|
||||
"면 압출기/핫엔드가 막힐 가능성을 줄일 수 있다는 것을 알고 계셨습니까? 이에 대"
|
||||
"면 압출기/핫엔드가 막힐 가능성을 줄일 수 있다는 것을 알고 계섰나요? 이에 대"
|
||||
"한 자세한 내용은 Wiki에서 확인하세요."
|
||||
|
||||
#: resources/data/hints.ini: [hint:Avoid warping]
|
||||
@@ -16140,6 +16151,13 @@ msgstr ""
|
||||
"ABS 등 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이"
|
||||
"면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
#~ "the panel."
|
||||
#~ msgstr ""
|
||||
#~ "파일 크기가 업로드 제한인 100MB를 초과했습니다. 패널을 통해 파일을 업로드"
|
||||
#~ "하세요."
|
||||
|
||||
#~ msgid "Please input a valid value (K in 0~0.3)"
|
||||
#~ msgstr "유효한 값을 입력하세요(K는 0~0.3)"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -14455,6 +14455,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -14540,6 +14543,9 @@ msgstr ""
|
||||
msgid "Upload to storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "De bestandsnaam van de upload eindigt niet op \"%s\". Wilt u doorgaan?"
|
||||
@@ -15206,6 +15212,12 @@ msgstr ""
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Printers vernieuwen"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -15635,17 +15647,15 @@ msgstr ""
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer 2.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Krzysztof Morga <tlumaczeniebs@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -1772,10 +1772,10 @@ msgid "Set as individual objects"
|
||||
msgstr "Ustaw jako osobne obiekty"
|
||||
|
||||
msgid "Fill bed with copies"
|
||||
msgstr "Wypełnij stół kopiami modelu"
|
||||
msgstr "Wypełnij stół kopią modelu"
|
||||
|
||||
msgid "Fill the remaining area of bed with copies of the selected object"
|
||||
msgstr "Uzupełnij pozostałą powierzchnię stołu kopiami wybranego obiektu"
|
||||
msgstr "Uzupełnij pozostałą powierzchnię stołu kopią wybranego obiektu"
|
||||
|
||||
msgid "Printable"
|
||||
msgstr "Do druku"
|
||||
@@ -2872,11 +2872,12 @@ msgstr "Najpierw musisz wybrać typ i kolor filamentu."
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Please input a valid value (K in %.1f~%.1f)"
|
||||
msgstr ""
|
||||
msgstr "Proszę podać prawidłową wartość (K w zakresie %.1f~%.1f)"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)"
|
||||
msgstr ""
|
||||
"Proszę podać prawidłową wartość (K w zakresie %.1f~%.1f, N in %.1f~%.1f)"
|
||||
|
||||
msgid "Other Color"
|
||||
msgstr "Inny kolor"
|
||||
@@ -3310,11 +3311,11 @@ msgid "Edit multiple printers"
|
||||
msgstr "Edycja drukarek"
|
||||
|
||||
msgid "Select connected printers (0/6)"
|
||||
msgstr ""
|
||||
msgstr "Wybierz podłączone drukarki (0/6)"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Select Connected Printers (%d/6)"
|
||||
msgstr ""
|
||||
msgstr "Wybierz Podłączone Drukarki (%d/6)"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "The maximum number of printers that can be selected is %d"
|
||||
@@ -3377,7 +3378,7 @@ msgid "Printing Failed"
|
||||
msgstr "Drukowanie nie powiodło się"
|
||||
|
||||
msgid "Printing Pause"
|
||||
msgstr ""
|
||||
msgstr "Drukowanie wstrzymane"
|
||||
|
||||
msgid "Prepare"
|
||||
msgstr "Przygotowanie"
|
||||
@@ -4874,7 +4875,7 @@ msgid "Flow rate"
|
||||
msgstr "Natężenie przepływu"
|
||||
|
||||
msgid "Pressure advance"
|
||||
msgstr "Kalibracja PA"
|
||||
msgstr "Wzrost ciśnienia (PA)"
|
||||
|
||||
msgid "Retraction test"
|
||||
msgstr "Test Retrakcji"
|
||||
@@ -8359,54 +8360,58 @@ msgid "The configuration is up to date."
|
||||
msgstr "Konfiguracja jest aktualna."
|
||||
|
||||
msgid "Obj file Import color"
|
||||
msgstr ""
|
||||
msgstr "Importuj kolory z pliku .OBJ"
|
||||
|
||||
msgid "Specify number of colors:"
|
||||
msgstr ""
|
||||
msgstr "Podaj liczbę kolorów:"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "The color count should be in range [%d, %d]."
|
||||
msgstr ""
|
||||
msgstr "Liczba kolorów powinna mieścić się w zakresie [%d, %d]."
|
||||
|
||||
msgid "Recommended "
|
||||
msgstr ""
|
||||
msgstr "Zalecane "
|
||||
|
||||
msgid "Current filament colors:"
|
||||
msgstr ""
|
||||
msgstr "Aktualne kolory filamentów:"
|
||||
|
||||
msgid "Quick set:"
|
||||
msgstr ""
|
||||
msgstr "Szybkie ustawienie:"
|
||||
|
||||
msgid "Color match"
|
||||
msgstr ""
|
||||
msgstr "Dopasowanie koloru"
|
||||
|
||||
msgid "Approximate color matching."
|
||||
msgstr ""
|
||||
msgstr "Przybliżone dopasowanie kolorów."
|
||||
|
||||
msgid "Append"
|
||||
msgstr ""
|
||||
msgstr "Dołącz"
|
||||
|
||||
msgid "Add consumable extruder after existing extruders."
|
||||
msgstr ""
|
||||
msgstr "Dodaj ekstruder do użycia po już istniejących ekstruderach"
|
||||
|
||||
msgid "Reset mapped extruders."
|
||||
msgstr ""
|
||||
msgstr "Zresetuj przypisane ekstrudery."
|
||||
|
||||
msgid "Cluster colors"
|
||||
msgstr ""
|
||||
msgstr "Klasteryzacja kolorów"
|
||||
|
||||
msgid "Map Filament"
|
||||
msgstr ""
|
||||
msgstr "Przypisz filament"
|
||||
|
||||
msgid ""
|
||||
"Note:The color has been selected, you can choose OK \n"
|
||||
" to continue or manually adjust it."
|
||||
msgstr ""
|
||||
"Uwaga: Kolor został wybrany. Możesz kliknąć OK \n"
|
||||
"aby kontynuować, lub dostosować go ręcznie."
|
||||
|
||||
msgid ""
|
||||
"Waring:The count of newly added and \n"
|
||||
" current extruders exceeds 16."
|
||||
msgstr ""
|
||||
"Ostrzeżenie: Suma nowo dodanych i \n"
|
||||
" obecnych ekstruderów przekracza 16."
|
||||
|
||||
msgid "Ramming customization"
|
||||
msgstr "Dostosowanie wyciskania"
|
||||
@@ -8512,7 +8517,8 @@ msgid ""
|
||||
"install BambuStutio or seek after-sales help."
|
||||
msgstr ""
|
||||
"Brakujący komponent BambuSource zarejestrowany do odtwarzania mediów! Proszę "
|
||||
"ponownie zainstalować OrcaSlicer lub skonsultować się z pomocą posprzedażową."
|
||||
"ponownie zainstalować OrcaSlicer lub skonsultować się z pomocą po-"
|
||||
"sprzedażową."
|
||||
|
||||
msgid ""
|
||||
"Using a BambuSource from a different install, video play may not work "
|
||||
@@ -10816,19 +10822,19 @@ msgstr ""
|
||||
"powierzchnię, gdy występuje lekkie przelewanie lub niedomiar"
|
||||
|
||||
msgid "Enable pressure advance"
|
||||
msgstr "Włącz przyspieszenie ciśnienia"
|
||||
msgstr "Włącz wzrost ciśnienia (PA)"
|
||||
|
||||
msgid ""
|
||||
"Enable pressure advance, auto calibration result will be overwriten once "
|
||||
"enabled."
|
||||
msgstr ""
|
||||
"Włącz przyspieszenie ciśnienia, wynik automatycznej kalibracji zostanie "
|
||||
"Włącz wzrost ciśnienia (PA), wynik automatycznej kalibracji zostanie "
|
||||
"nadpisany po włączeniu."
|
||||
|
||||
msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)"
|
||||
msgstr ""
|
||||
"Przyspieszenie ciśnienia (Klipper), znane również jako współczynnik "
|
||||
"przyspieszenia liniowego (Marlin)."
|
||||
"Pressure advance (Klipper), znane również jako współczynnik przyspieszenia "
|
||||
"liniowego (Marlin)."
|
||||
|
||||
msgid ""
|
||||
"Default line width if other line widths are set to 0. If expressed as a %, "
|
||||
@@ -10849,7 +10855,7 @@ msgstr ""
|
||||
"zmniejszyć częstotliwość włączania i wyłączania"
|
||||
|
||||
msgid "Don't slow down outer walls"
|
||||
msgstr ""
|
||||
msgstr "Nie spowalniaj zewnętrznych ścian"
|
||||
|
||||
msgid ""
|
||||
"If enabled, this setting will ensure external perimeters are not slowed down "
|
||||
@@ -10863,6 +10869,15 @@ msgid ""
|
||||
"external walls\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
"Jeśli ta opcja jest włączona, zapewni to, że zewnętrzne obwody nie będą "
|
||||
"spowalniane, aby spełnić minimalny czas warstwy. Jest to szczególnie pomocne "
|
||||
"w poniższych sytuacjach:\n"
|
||||
"\n"
|
||||
"1. Aby uniknąć zmian połysku podczas drukowania filamentami z połuskiem.\n"
|
||||
"2. Aby uniknąć zmian prędkości zewnętrznych ścian, które mogą powodować "
|
||||
"drobne artefakty ścian, przypominające zygzaki.\n"
|
||||
"3. Aby uniknąć drukowania z prędkościami, które powodują powstawanie "
|
||||
"drobnych artefaktów (VFA) na zewnętrznych ścianach.\n"
|
||||
|
||||
msgid "Layer time"
|
||||
msgstr "Czas warstwy"
|
||||
@@ -14775,6 +14790,26 @@ msgid ""
|
||||
"cause the result not exactly the same in each calibration. We are still "
|
||||
"investigating the root cause to do improvements with new updates."
|
||||
msgstr ""
|
||||
"Proszę znaleźć szczegóły dotyczące kalibracji dynamiki przepływu w naszej "
|
||||
"wiki.\n"
|
||||
"\n"
|
||||
"Zazwyczaj kalibracja nie jest konieczna. Gdy rozpoczynasz druk w jednym "
|
||||
"kolorze/materiale i zaznaczasz opcję \"kalibracja dynamiki przepływu\" w "
|
||||
"menu rozpoczęcia druku - drukarka będzie postępować w tradycyjny sposób, "
|
||||
"kalibrując filament przed rozpoczęciem druku. W przypadku druku w wielu "
|
||||
"kolorach/materiałach drukarka będzie używać domyślnego parametru kompensacji "
|
||||
"dla filamentu podczas każdej jego zmiany, co w większości przypadków daje "
|
||||
"dobre rezultaty.\n"
|
||||
"\n"
|
||||
"Proszę jednak zauważyć, że istnieją pewne przypadki, w których wynik "
|
||||
"kalibracji może być niesolidny: korzystanie z Texture PEI do kalibracji; "
|
||||
"brak dobrej przyczepności podłoża (proszę umyć płytę lub nałożyć klej!)... "
|
||||
"Więcej informacji można znaleźć w naszej wiki.\n"
|
||||
"\n"
|
||||
"Wyniki kalibracji mają około 10 procent fluktuacji w naszych testach, co "
|
||||
"może powodować, że wynik nie będzie dokładnie taki sam w każdej kalibracji. "
|
||||
"Wciąż badamy źródło tych fluktuacji i pracujemy nad wprowadzeniem ulepszeń w "
|
||||
"nowych aktualizacjach."
|
||||
|
||||
msgid "When to use Flow Rate Calibration"
|
||||
msgstr "Kiedy użyć Kalibracji Natężenia Przepływu"
|
||||
@@ -14910,12 +14945,14 @@ msgid ""
|
||||
"Only one of the results with the same name will be saved. Are you sure you "
|
||||
"want to override the other results?"
|
||||
msgstr ""
|
||||
"Tylko jeden z wyników o tej samej nazwie zostanie zapisany. Czy na pewno "
|
||||
"chcesz zastąpić inne wyniki?"
|
||||
|
||||
msgid "Please find the best line on your plate"
|
||||
msgstr "Znajdź najlepszą linię na swojej płycie"
|
||||
|
||||
msgid "Please find the corner with perfect degree of extrusion"
|
||||
msgstr ""
|
||||
msgstr "Znajdź róg z idealnym stopniem ekstruzji"
|
||||
|
||||
msgid "Input Value"
|
||||
msgstr "Wartość wejściowa"
|
||||
@@ -15171,6 +15208,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -15269,6 +15309,9 @@ msgstr ""
|
||||
msgid "Upload to storage"
|
||||
msgstr "Prześlij do pamięci"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr ""
|
||||
@@ -15958,6 +16001,12 @@ msgstr "Czy na pewno chcesz się wylogować?"
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Odśwież drukarki"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -16404,21 +16453,17 @@ msgstr "Pomyślnie połączono z SimplyPrint!"
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr "Nie można połączyć się z SimplyPrint"
|
||||
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Nieznany błąd"
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
"Nie połączono z kontem SimplyPrint. Przejdź do opcji Połącz, aby go "
|
||||
"skonfigurować."
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
"Rozmiar pliku przekracza limit przesyłania 100 MB. Proszę przesłać plik za "
|
||||
"pomocą panelu."
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Nieznany błąd"
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr "Połączenie z Flashforge działa poprawnie."
|
||||
|
||||
@@ -16825,76 +16870,97 @@ msgstr ""
|
||||
"takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może "
|
||||
"zmniejszyć prawdopodobieństwo odkształceń."
|
||||
|
||||
#~ msgid "Please input a valid value (K in 0~0.3)"
|
||||
#~ msgstr "Proszę podać prawidłową wartość (K w zakresie od 0 do 0.3)"
|
||||
|
||||
#~ msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)"
|
||||
#~ msgid ""
|
||||
#~ "File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
#~ "the panel."
|
||||
#~ msgstr ""
|
||||
#~ "Proszę podać prawidłową wartość (K w zakresie od 0 do 0.3, N w zakresie "
|
||||
#~ "od 0.6 do 2.0)"
|
||||
#~ "Rozmiar pliku przekracza limit przesyłania 100 MB. Proszę przesłać plik "
|
||||
#~ "za pomocą panelu."
|
||||
|
||||
#~ msgid "Select connected printetrs (0/6)"
|
||||
#~ msgstr "Wybierz podłączone drukarki (0/6)"
|
||||
#~ msgid "Enable adaptive pressure advance (beta)"
|
||||
#~ msgstr "Włącz adaptacyjny wzrost ciśnienia (beta)"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid "Select Connected Printetrs (%d/6)"
|
||||
#~ msgstr "Wybierz Podłączone Drukarki (%d/6)"
|
||||
#~ msgid ""
|
||||
#~ "With increasing print speeds, it has been observed that the effective PA "
|
||||
#~ "value typically decreases. This means that a single PA value is not 100% "
|
||||
#~ "optimal for all features and a compromise value is usually used, that "
|
||||
#~ "does not cause too much bulging on slower features while also not causing "
|
||||
#~ "gaps on faster features.\n"
|
||||
#~ "\n"
|
||||
#~ "This feature aims to address this limitation by modeling the response of "
|
||||
#~ "your printer's extrusion system depending on the speed it is printing at. "
|
||||
#~ "Internally it generates a fitted model that can extrapolate the needed "
|
||||
#~ "pressure advance for any given print speed, which is then emmited to the "
|
||||
#~ "printer depending on the current print speed.\n"
|
||||
#~ "\n"
|
||||
#~ "When enabled the pressure advance value above is overriden. However, a "
|
||||
#~ "reasonable default value above isstrongly recomended to act as a fallback "
|
||||
#~ "in case the model calculations fail."
|
||||
#~ msgstr ""
|
||||
#~ "Wraz ze wzrostem prędkości druku zaobserwowano, że efektywna wartość PA "
|
||||
#~ "zazwyczaj maleje. Oznacza to, że pojedyncza wartość PA nie jest w 100% "
|
||||
#~ "optymalna dla wszystkich elementów i zwykle stosowana jest wartość "
|
||||
#~ "kompromisowa, która nie powoduje zbyt dużego \"wypuklenia\" na elementach "
|
||||
#~ "drukowanych wolniej, a jednocześnie nie powoduje przerw na elementach "
|
||||
#~ "drukowanych szybciej.\n"
|
||||
#~ "\n"
|
||||
#~ "Ta funkcja ma na celu rozwiązanie tego ograniczenia poprzez modelowanie "
|
||||
#~ "reakcji ekstrudera w zależności od prędkości drukowania. Wewnętrznie "
|
||||
#~ "generuje dopasowany model, który może przewidzieć jakie będzie wymagane "
|
||||
#~ "ciśnienie dla dowolnej prędkości drukowania, który jest następnie "
|
||||
#~ "przekazywany do drukarki w zależności od bieżącej prędkości druku.\n"
|
||||
#~ "\n"
|
||||
#~ "Po włączeniu powyższa wartość PA jest nadpisywana. Zdecydowanie zaleca "
|
||||
#~ "się jednak przyjęcie rozsądnej wartości domyślnej, która będzie działać "
|
||||
#~ "jako rozwiązanie awaryjne w przypadku nieprawidłowych obliczeń dla modelu."
|
||||
|
||||
#~ msgid "PrintingPause"
|
||||
#~ msgstr "Drukowanie zatrzymane"
|
||||
#~ msgid "Adaptive pressure advance measurements (beta)"
|
||||
#~ msgstr "Adaptacyjny pomiar ciśnienia (beta)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add pairs of pressure advance values and the speed they were measured at, "
|
||||
#~ "separated by a coma. One set of values per line. For example\n"
|
||||
#~ "0.03,100\n"
|
||||
#~ "0.027,150 etc.\n"
|
||||
#~ "\n"
|
||||
#~ "How to calibrate:\n"
|
||||
#~ "1. Run the pressure advance test for at least 3 speeds per filament. It "
|
||||
#~ "is recommended that the test is runfor at least the speed of the external "
|
||||
#~ "perimeters, the speed of the internal perimeters and the fastest feature "
|
||||
#~ "print speed in your profile (usually its the sparse or solid infill\n"
|
||||
#~ "2. Take note of the optimal Pressure advance value for each speed. The PA "
|
||||
#~ "ideal PA value should be decreasing the faster the speed is. If it is "
|
||||
#~ "not, confirm that your extruder is functioning correctly3. Enter the "
|
||||
#~ "pairs of PA values and Speeds in the text box here and save your filament "
|
||||
#~ "profile"
|
||||
#~ msgstr ""
|
||||
#~ "Dodaj pary wartości przyspieszenia ciśnienia i prędkości, przy których "
|
||||
#~ "zostały zmierzone, oddzielone przecinkiem. Jeden zestaw wartości na "
|
||||
#~ "wiersz. Na przykład\n"
|
||||
#~ "0.03,100\n"
|
||||
#~ "0.027,150 itd.\n"
|
||||
#~ "\n"
|
||||
#~ "Jak skalibrować:\n"
|
||||
#~ "1. Przeprowadź test PA dla co najmniej 3 prędkości na filament. Zaleca "
|
||||
#~ "się przeprowadzenie testu PA co najmniej dla zewnętrznych obwodów, "
|
||||
#~ "wewnętrznych obwodów i najszybszej prędkości drukowania cechy w profilu "
|
||||
#~ "(zwykle jest to rzadkie lub pełne wypełnienie).\n"
|
||||
#~ "2. Zanotuj optymalną wartość PA dla każdej prędkości. Idealna wartość PA "
|
||||
#~ "powinna maleć wraz ze wzrostem prędkości. Jeśli tak nie jest, sprawdź, "
|
||||
#~ "czy ekstruder działa prawidłowo. \n"
|
||||
#~ "3.Wprowadź pary wartości PA i prędkości w polu tekstowym i zapisz profil "
|
||||
#~ "filamentu."
|
||||
|
||||
#~ msgid "Flow ratio and Pressure Advance"
|
||||
#~ msgstr "Współczynnik przepływu i Wzrost ciśnienia (PA)"
|
||||
|
||||
#~ msgid "param_information"
|
||||
#~ msgstr "param_information"
|
||||
|
||||
#~ msgid "Printer local connection failed, please try again."
|
||||
#~ msgstr ""
|
||||
#~ "Nie udało się nawiązać lokalnego połączenia z drukarką, spróbuj ponownie."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please find the details of Flow Dynamics Calibration from our wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Usually the calibration is unnecessary. When you start a single color/"
|
||||
#~ "material print, with the \"flow dynamics calibration\" option checked in "
|
||||
#~ "the print start menu, the printer will follow the old way, calibrate the "
|
||||
#~ "filament before the print; When you start a multi color/material print, "
|
||||
#~ "the printer will use the default compensation parameter for the filament "
|
||||
#~ "during every filament switch which will have a good result in most "
|
||||
#~ "cases.\n"
|
||||
#~ "\n"
|
||||
#~ "Please note there are a few cases that will make the calibration result "
|
||||
#~ "not reliable: using a texture plate to do the calibration; the build "
|
||||
#~ "plate does not have good adhesion (please wash the build plate or apply "
|
||||
#~ "gluestick!) ...You can find more from our wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "The calibration results have about 10 percent jitter in our test, which "
|
||||
#~ "may cause the result not exactly the same in each calibration. We are "
|
||||
#~ "still investigating the root cause to do improvements with new updates."
|
||||
#~ msgstr ""
|
||||
#~ "Proszę znaleźć szczegóły dotyczące kalibracji dynamiki przepływu w naszej "
|
||||
#~ "wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Zazwyczaj kalibracja nie jest konieczna. Gdy rozpoczynasz druk w jednym "
|
||||
#~ "kolorze/materiale i zaznaczasz opcję \"kalibracja dynamiki przepływu\" w "
|
||||
#~ "menu rozpoczęcia druku - drukarka będzie postępować w tradycyjny sposób, "
|
||||
#~ "kalibrując filament przed rozpoczęciem druku. W przypadku druku w wielu "
|
||||
#~ "kolorach/materiałach drukarka będzie używać domyślnego parametru "
|
||||
#~ "kompensacji dla filamentu podczas każdej jego zmiany, co w większości "
|
||||
#~ "przypadków daje dobre rezultaty.\n"
|
||||
#~ "\n"
|
||||
#~ "Proszę jednak zauważyć, że istnieją pewne przypadki, w których wynik "
|
||||
#~ "kalibracji może być niesolidny: korzystanie z Texture PEI do kalibracji; "
|
||||
#~ "brak dobrej przyczepności podłoża (proszę umyć płytę lub nałożyć "
|
||||
#~ "klej!)... Więcej informacji można znaleźć w naszej wiki.\n"
|
||||
#~ "\n"
|
||||
#~ "Wyniki kalibracji mają około 10 procent fluktuacji w naszych testach, co "
|
||||
#~ "może powodować, że wynik nie będzie dokładnie taki sam w każdej "
|
||||
#~ "kalibracji. Wciąż badamy źródło tych fluktuacji i pracujemy nad "
|
||||
#~ "wprowadzeniem ulepszeń w nowych aktualizacjach."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Only one of the results with the same name will be saved. Are you sure "
|
||||
#~ "you want to overrides the other results?"
|
||||
#~ msgstr ""
|
||||
#~ "Tylko jeden z wyników o tej samej nazwie zostanie zapisany. Czy na pewno "
|
||||
#~ "chcesz zastąpić inne wyniki?"
|
||||
|
||||
#, c-format, boost-format
|
||||
#~ msgid ""
|
||||
#~ "There is already a historical calibration result with the same name: %s. "
|
||||
@@ -16905,9 +16971,6 @@ msgstr ""
|
||||
#~ "jeden z wyników o tej samej nazwie zostanie zapisany. Czy na pewno chcesz "
|
||||
#~ "zastąpić ten wynik?"
|
||||
|
||||
#~ msgid "Please find the cornor with perfect degree of extrusion"
|
||||
#~ msgstr "Znajdź róg z idealnym stopniem ekstruzji"
|
||||
|
||||
#~ msgid "X"
|
||||
#~ msgstr "X"
|
||||
|
||||
@@ -17854,9 +17917,6 @@ msgstr ""
|
||||
#~ msgid "Balanced"
|
||||
#~ msgstr "Zrównoważone"
|
||||
|
||||
#~ msgid "Quick"
|
||||
#~ msgstr "Szybkie"
|
||||
|
||||
#~ msgid "Movement:"
|
||||
#~ msgstr "Ruch:"
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: 2024-06-01 21:51-0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
@@ -15139,6 +15139,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -15236,6 +15239,9 @@ msgstr ""
|
||||
msgid "Upload to storage"
|
||||
msgstr "Enviar para armazenamento"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "O nome do arquivo enviado não termina com \"%s\". Deseja continuar?"
|
||||
@@ -15928,6 +15934,12 @@ msgstr "Tem certeza de que deseja sair?"
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Atualizar Impressoras"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -16370,21 +16382,17 @@ msgstr "Conectado ao SimplyPrint com sucesso!"
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr "Não é possível conectar a SimplyPrint"
|
||||
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Erro desconhecido"
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
"Conta SimplyPrint não vinculada. Vá para as opções de conexão para configurá-"
|
||||
"la."
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
"O tamanho do arquivo excede o limite de envio de 100MB. Por favor, envie seu "
|
||||
"arquivo através do painel."
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Erro desconhecido"
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr "A conexão com a Flashforge está funcionando corretamente."
|
||||
|
||||
@@ -16792,6 +16800,13 @@ msgstr ""
|
||||
"aumentar adequadamente a temperatura da mesa aquecida pode reduzir a "
|
||||
"probabilidade de empenamento?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
#~ "the panel."
|
||||
#~ msgstr ""
|
||||
#~ "O tamanho do arquivo excede o limite de envio de 100MB. Por favor, envie "
|
||||
#~ "seu arquivo através do painel."
|
||||
|
||||
#~ msgid "Please input a valid value (K in 0~0.3)"
|
||||
#~ msgstr "Por favor, insira um valor válido (K entre 0~0.3)"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -14156,6 +14156,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -14240,6 +14243,9 @@ msgstr "Använd snedstreck ( / ) som katalog avgränsare om det behövs."
|
||||
msgid "Upload to storage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "Filnamnet slutar inte med \"%s\". Vill du fortsätta?"
|
||||
@@ -14904,6 +14910,12 @@ msgstr ""
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Uppdatera skrivare"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -15334,17 +15346,15 @@ msgstr ""
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: 2024-05-30 12:35+0300\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -15063,6 +15063,9 @@ msgstr "ABS/ASA"
|
||||
msgid "PETG"
|
||||
msgstr "PETG"
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr "TPU"
|
||||
|
||||
@@ -15160,6 +15163,9 @@ msgstr ""
|
||||
msgid "Upload to storage"
|
||||
msgstr "Завантажити до сховища"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr ""
|
||||
@@ -15861,6 +15867,12 @@ msgstr "Ви впевнені, що вийшли?"
|
||||
msgid "Refresh Printers"
|
||||
msgstr "Оновити принтери"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -16301,21 +16313,17 @@ msgstr "Успішне підключення до SimplyPrint!"
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr "Не вдалося підключитися до SimplyPrint"
|
||||
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Невідома помилка"
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
"Обліковий запис SimplyPrint не пов’язано. Щоб налаштувати його, перейдіть до "
|
||||
"параметрів підключення."
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgstr ""
|
||||
"Розмір файлу перевищує ліміт завантаження в 100 Мб. Будь ласка, завантажте "
|
||||
"свій файл через панель."
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr "Невідома помилка"
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr "Підключення до Flashforge працює правильно."
|
||||
|
||||
@@ -16720,6 +16728,13 @@ msgstr ""
|
||||
"ABS, відповідне підвищення температури гарячого ліжка може зменшити "
|
||||
"ймовірність деформації."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
#~ "the panel."
|
||||
#~ msgstr ""
|
||||
#~ "Розмір файлу перевищує ліміт завантаження в 100 Мб. Будь ласка, "
|
||||
#~ "завантажте свій файл через панель."
|
||||
|
||||
#~ msgid "Please input a valid value (K in 0~0.3)"
|
||||
#~ msgstr "Введіть допустиме значення (K в діапазоні 0~0.3)"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Slic3rPE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: 2023-04-01 13:21+0800\n"
|
||||
"Last-Translator: SoftFever <softfeverever@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -10094,8 +10094,8 @@ msgid ""
|
||||
"external walls\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
"如果启用,此设置将确保外墙不会为了满足最小层时间而减速。这在以下情况下特别有帮"
|
||||
"助:\n"
|
||||
"如果启用,此设置将确保外墙不会为了满足最小层时间而减速。这在以下情况下特别有"
|
||||
"帮助:\n"
|
||||
"\n"
|
||||
"1. 避免在打印光滑耗材时改变光泽\n"
|
||||
"2. 避免改变外墙速度,可能会产生轻微的墙壁伪影,看起来像z条纹\n"
|
||||
@@ -13882,6 +13882,9 @@ msgstr ""
|
||||
msgid "PETG"
|
||||
msgstr ""
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr ""
|
||||
|
||||
@@ -13978,6 +13981,9 @@ msgstr "如有需要,请使用正斜杠( / )作为目录分隔符。"
|
||||
msgid "Upload to storage"
|
||||
msgstr "上传到存储单位"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr "上传后跳转到设备页。"
|
||||
|
||||
#, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "上传文件名不以\"%s\"结尾。您是否要继续?"
|
||||
@@ -14605,6 +14611,12 @@ msgstr ""
|
||||
msgid "Refresh Printers"
|
||||
msgstr "刷新打印机"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
"signed certificate."
|
||||
@@ -14990,17 +15002,15 @@ msgstr ""
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-06-16 23:01+0800\n"
|
||||
"POT-Creation-Date: 2024-06-21 20:03+0800\n"
|
||||
"PO-Revision-Date: 2023-11-06 14:37+0800\n"
|
||||
"Last-Translator: ablegods <ablegods@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
@@ -14267,6 +14267,9 @@ msgstr ""
|
||||
msgid "PETG"
|
||||
msgstr ""
|
||||
|
||||
msgid "PCTG"
|
||||
msgstr ""
|
||||
|
||||
msgid "TPU"
|
||||
msgstr ""
|
||||
|
||||
@@ -14367,6 +14370,9 @@ msgstr "如有需要,請使用正斜槓( / )作為目錄分隔符號。"
|
||||
msgid "Upload to storage"
|
||||
msgstr "上傳到儲存單位"
|
||||
|
||||
msgid "Switch to Device tab after upload."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format, boost-format
|
||||
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
|
||||
msgstr "上傳的檔名不以 \"%s\" 結尾。確定要繼續嗎?"
|
||||
@@ -14975,6 +14981,12 @@ msgstr ""
|
||||
msgid "Refresh Printers"
|
||||
msgstr "重新整理列印設備"
|
||||
|
||||
msgid "View print host webui in Device tab"
|
||||
msgstr ""
|
||||
|
||||
msgid "Replace the BambuLab's device tab with print host webui"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
|
||||
@@ -15317,17 +15329,15 @@ msgstr ""
|
||||
msgid "Could not connect to SimplyPrint"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"File size exceeds the 100MB upload limit. Please upload your file through "
|
||||
"the panel."
|
||||
msgid "Internal error"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||
msgstr ""
|
||||
|
||||
msgid "Connection to Flashforge works correctly."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Anker",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "Anker configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Anycubic",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "Anycubic configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Artillery",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "Artillery configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Bambulab",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "01.09.00.12",
|
||||
"version": "01.09.00.14",
|
||||
"force_update": "0",
|
||||
"description": "the initial version of BBL configurations",
|
||||
"machine_model_list": [
|
||||
@@ -625,6 +625,10 @@
|
||||
"name": "fdm_filament_pc",
|
||||
"sub_path": "filament/fdm_filament_pc.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pctg",
|
||||
"sub_path": "filament/fdm_filament_pctg.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_asa",
|
||||
"sub_path": "filament/fdm_filament_asa.json"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "Generic PCTG @base",
|
||||
"inherits": "fdm_filament_pet",
|
||||
"inherits": "fdm_filament_pctg",
|
||||
"from": "system",
|
||||
"filament_id": "GFG97",
|
||||
"instantiation": "false",
|
||||
|
||||
64
resources/profiles/BBL/filament/fdm_filament_pctg.json
Normal file
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"type": "filament",
|
||||
"name": "fdm_filament_pctg",
|
||||
"inherits": "fdm_filament_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"eng_plate_temp": [
|
||||
"0"
|
||||
],
|
||||
"eng_plate_temp_initial_layer": [
|
||||
"0"
|
||||
],
|
||||
"fan_cooling_layer_time": [
|
||||
"20"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"20"
|
||||
],
|
||||
"filament_cost": [
|
||||
"30"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.27"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"25"
|
||||
],
|
||||
"filament_type": [
|
||||
"PCTG"
|
||||
],
|
||||
"hot_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"hot_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"nozzle_temperature": [
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_initial_layer": [
|
||||
"255"
|
||||
],
|
||||
"nozzle_temperature_range_high": [
|
||||
"260"
|
||||
],
|
||||
"nozzle_temperature_range_low": [
|
||||
"220"
|
||||
],
|
||||
"reduce_fan_stop_start_freq": [
|
||||
"1"
|
||||
],
|
||||
"temperature_vitrification": [
|
||||
"70"
|
||||
],
|
||||
"textured_plate_temp": [
|
||||
"80"
|
||||
],
|
||||
"textured_plate_temp_initial_layer": [
|
||||
"80"
|
||||
],
|
||||
"filament_start_gcode": [
|
||||
"; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
|
||||
]
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "BIQU",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "BIQU configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "CONSTRUCT3D",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "Construct3D configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Comgrow",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "Comgrow configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Creality",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "Creality configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 13 KiB |
@@ -33,8 +33,8 @@
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
"6000",
|
||||
"6000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"20000",
|
||||
@@ -45,57 +45,57 @@
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"500"
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"800",
|
||||
"800"
|
||||
"600",
|
||||
"600"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"800",
|
||||
"800"
|
||||
"600",
|
||||
"600"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"30",
|
||||
"30"
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"12",
|
||||
"12"
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"12",
|
||||
"12"
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"2",
|
||||
"2"
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.3"
|
||||
"0.35"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.1"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
"70%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.6"
|
||||
@@ -109,11 +109,14 @@
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"extruder_clearance_height_to_lid": "101",
|
||||
"extruder_clearance_height_to_rod": "45",
|
||||
"extruder_clearance_radius": "45",
|
||||
"extruder_clearance_height_to_lid": "250",
|
||||
"extruder_clearance_height_to_rod": "14",
|
||||
"extruder_clearance_radius": "70",
|
||||
"z_hop": [
|
||||
"0.12"
|
||||
"0.2"
|
||||
],
|
||||
"z_hop_types": [
|
||||
"Auto Lift"
|
||||
],
|
||||
"wipe_distance": [
|
||||
"2"
|
||||
@@ -129,6 +132,6 @@
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"scan_first_layer": "0",
|
||||
"thumbnails": [
|
||||
"320x320"
|
||||
"96x96/PNG, 300x300/PNG"
|
||||
]
|
||||
}
|
||||
@@ -33,8 +33,8 @@
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"5000",
|
||||
"5000"
|
||||
"6000",
|
||||
"6000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"20000",
|
||||
@@ -45,57 +45,57 @@
|
||||
"20000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"20000",
|
||||
"20000"
|
||||
"5000",
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500",
|
||||
"500"
|
||||
"20000",
|
||||
"20000"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"800",
|
||||
"800"
|
||||
"600",
|
||||
"600"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"800",
|
||||
"800"
|
||||
"600",
|
||||
"600"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"30",
|
||||
"30"
|
||||
"500",
|
||||
"500"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.5",
|
||||
"2.5"
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"12",
|
||||
"12"
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"12",
|
||||
"12"
|
||||
"10",
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"2",
|
||||
"2"
|
||||
"20",
|
||||
"20"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.3"
|
||||
"0.35"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
"0.1"
|
||||
],
|
||||
"printer_settings_id": "Creality",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
"1"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
"70%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.6"
|
||||
@@ -109,11 +109,14 @@
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"extruder_clearance_height_to_lid": "101",
|
||||
"extruder_clearance_height_to_rod": "45",
|
||||
"extruder_clearance_radius": "45",
|
||||
"extruder_clearance_height_to_lid": "250",
|
||||
"extruder_clearance_height_to_rod": "14",
|
||||
"extruder_clearance_radius": "70",
|
||||
"z_hop": [
|
||||
"0.12"
|
||||
"0.2"
|
||||
],
|
||||
"z_hop_types": [
|
||||
"Auto Lift"
|
||||
],
|
||||
"wipe_distance": [
|
||||
"2"
|
||||
@@ -129,6 +132,6 @@
|
||||
"machine_end_gcode": "END_PRINT",
|
||||
"scan_first_layer": "0",
|
||||
"thumbnails": [
|
||||
"320x320"
|
||||
"96x96/PNG, 300x300/PNG"
|
||||
]
|
||||
}
|
||||
@@ -114,7 +114,7 @@
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"manual_filament_change": "1",
|
||||
"change_filament_gcode": "PAUSE",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"default_filament_profile": [
|
||||
"Creality Generic PLA @Ender-3V3-all"
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "5",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_flow": "0.95",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "65",
|
||||
"brim_type": "no_brim",
|
||||
"brim_width": "5",
|
||||
@@ -23,17 +23,17 @@
|
||||
"top_surface_acceleration": "5000",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0",
|
||||
"elefant_foot_compensation": "0.05",
|
||||
"outer_wall_line_width": "0.42",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.45",
|
||||
"line_width": "0.42",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "crosshatch",
|
||||
"initial_layer_acceleration": "1000",
|
||||
"travel_acceleration": "5000",
|
||||
"inner_wall_acceleration": "5000",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"outer_wall_acceleration": "4000",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "1",
|
||||
@@ -60,7 +60,7 @@
|
||||
"skirt_height": "2",
|
||||
"skirt_loops": "0",
|
||||
"minimum_sparse_infill_area": "10",
|
||||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
@@ -104,7 +104,7 @@
|
||||
"role_based_wipe_speed" : "0",
|
||||
"wipe_speed": "200",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_hole_compensation": "0.025",
|
||||
"xy_contour_compensation": "0",
|
||||
"default_jerk": "7",
|
||||
"outer_wall_jerk": "7",
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "4",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_flow": "0.95",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "65",
|
||||
"brim_type": "no_brim",
|
||||
"brim_width": "5",
|
||||
@@ -23,17 +23,17 @@
|
||||
"top_surface_acceleration": "5000",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0",
|
||||
"elefant_foot_compensation": "0.05",
|
||||
"outer_wall_line_width": "0.42",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.45",
|
||||
"line_width": "0.42",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "crosshatch",
|
||||
"initial_layer_acceleration": "1000",
|
||||
"travel_acceleration": "5000",
|
||||
"inner_wall_acceleration": "5000",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"outer_wall_acceleration": "4000",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "1",
|
||||
@@ -60,7 +60,7 @@
|
||||
"skirt_height": "2",
|
||||
"skirt_loops": "0",
|
||||
"minimum_sparse_infill_area": "10",
|
||||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
@@ -104,7 +104,7 @@
|
||||
"role_based_wipe_speed" : "0",
|
||||
"wipe_speed": "200",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_hole_compensation": "0.025",
|
||||
"xy_contour_compensation": "0",
|
||||
"default_jerk": "7",
|
||||
"outer_wall_jerk": "7",
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "4",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_flow": "0.95",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "65",
|
||||
"brim_type": "no_brim",
|
||||
"brim_width": "5",
|
||||
@@ -24,17 +24,17 @@
|
||||
"top_surface_acceleration": "5000",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0",
|
||||
"elefant_foot_compensation": "0.05",
|
||||
"outer_wall_line_width": "0.42",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.45",
|
||||
"line_width": "0.42",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "crosshatch",
|
||||
"initial_layer_acceleration": "1000",
|
||||
"travel_acceleration": "5000",
|
||||
"inner_wall_acceleration": "5000",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"outer_wall_acceleration": "4000",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "0",
|
||||
@@ -61,7 +61,7 @@
|
||||
"skirt_height": "2",
|
||||
"skirt_loops": "0",
|
||||
"minimum_sparse_infill_area": "10",
|
||||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
@@ -105,7 +105,7 @@
|
||||
"role_based_wipe_speed": "0",
|
||||
"wipe_speed": "200",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_hole_compensation": "0.025",
|
||||
"xy_contour_compensation": "0",
|
||||
"default_jerk": "7",
|
||||
"outer_wall_jerk": "7",
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_layers": "4",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_flow": "0.95",
|
||||
"bridge_flow": "1",
|
||||
"bridge_speed": "65",
|
||||
"brim_type": "no_brim",
|
||||
"brim_width": "5",
|
||||
@@ -23,17 +23,17 @@
|
||||
"top_surface_acceleration": "5000",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0",
|
||||
"elefant_foot_compensation": "0.05",
|
||||
"outer_wall_line_width": "0.42",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"line_width": "0.45",
|
||||
"line_width": "0.42",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "crosshatch",
|
||||
"initial_layer_acceleration": "1000",
|
||||
"travel_acceleration": "5000",
|
||||
"inner_wall_acceleration": "5000",
|
||||
"outer_wall_acceleration": "5000",
|
||||
"outer_wall_acceleration": "4000",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "0",
|
||||
@@ -60,7 +60,7 @@
|
||||
"skirt_height": "2",
|
||||
"skirt_loops": "0",
|
||||
"minimum_sparse_infill_area": "10",
|
||||
"internal_solid_infill_line_width": "0.42",
|
||||
"internal_solid_infill_line_width": "0.45",
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
@@ -104,7 +104,7 @@
|
||||
"role_based_wipe_speed" : "0",
|
||||
"wipe_speed": "200",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_hole_compensation": "0.025",
|
||||
"xy_contour_compensation": "0",
|
||||
"default_jerk": "7",
|
||||
"outer_wall_jerk": "7",
|
||||
|
||||
@@ -112,6 +112,6 @@
|
||||
"xy_contour_compensation": "0",
|
||||
"gcode_label_objects": "0",
|
||||
"compatible_printers": [
|
||||
"Creality K1C (0.6 nozzle)"
|
||||
"Creality K1C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -112,6 +112,6 @@
|
||||
"xy_contour_compensation": "0",
|
||||
"gcode_label_objects": "0",
|
||||
"compatible_printers": [
|
||||
"Creality K1C (0.6 nozzle)"
|
||||
"Creality K1C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -112,6 +112,6 @@
|
||||
"xy_contour_compensation": "0",
|
||||
"gcode_label_objects": "0",
|
||||
"compatible_printers": [
|
||||
"Creality K1C (0.8 nozzle)"
|
||||
"Creality K1C 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -112,6 +112,6 @@
|
||||
"xy_contour_compensation": "0",
|
||||
"gcode_label_objects": "0",
|
||||
"compatible_printers": [
|
||||
"Creality K1C (0.6 nozzle)"
|
||||
"Creality K1C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -112,6 +112,6 @@
|
||||
"xy_contour_compensation": "0",
|
||||
"gcode_label_objects": "0",
|
||||
"compatible_printers": [
|
||||
"Creality K1C (0.8 nozzle)"
|
||||
"Creality K1C 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.48mm Draft @Creality K1C (0.8 nozzle)",
|
||||
"name": "0.48mm Draft @Creality K1C",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_common_klipper",
|
||||
"instantiation": "true",
|
||||
@@ -112,6 +112,6 @@
|
||||
"xy_contour_compensation": "0",
|
||||
"gcode_label_objects": "0",
|
||||
"compatible_printers": [
|
||||
"Creality K1C (0.8 nozzle)"
|
||||
"Creality K1C 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Custom Printer",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "My configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Dremel",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "Dremel configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"inherits": "fdm_dremel_common",
|
||||
"printer_model": "Dremel 3D20",
|
||||
"printer_variant": "0.4",
|
||||
"printer_structure": "Hbot",
|
||||
"printer_structure": "hbot",
|
||||
"gcode_flavor": "marlin",
|
||||
"default_filament_profile": [
|
||||
"Dremel Generic PLA @3D20 all"
|
||||
@@ -52,7 +52,7 @@
|
||||
"0"
|
||||
],
|
||||
"retract_lift_enforce": [
|
||||
"Top Surfaces"
|
||||
"Top Only"
|
||||
],
|
||||
"retract_restart_extra": [
|
||||
"0"
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"inherits": "fdm_dremel_common",
|
||||
"printer_model": "Dremel 3D40",
|
||||
"printer_variant": "0.4",
|
||||
"printer_structure": "Hbot",
|
||||
"printer_structure": "hbot",
|
||||
"gcode_flavor": "marlin",
|
||||
"default_filament_profile": [
|
||||
"Dremel Generic PLA @3D40 all"
|
||||
@@ -61,7 +61,7 @@
|
||||
"1"
|
||||
],
|
||||
"retract_lift_enforce": [
|
||||
"Top Surfaces"
|
||||
"Top Only"
|
||||
],
|
||||
"wipe": [
|
||||
"1"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Elegoo",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "Elegoo configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "FLSun",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "FLSun configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "Flashforge",
|
||||
"url": "",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "Flashforge configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
|
Before Width: | Height: | Size: 221 KiB After Width: | Height: | Size: 19 KiB |
@@ -56,5 +56,5 @@
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"wipe_distance": "2",
|
||||
"nozzle_type": "undefined"
|
||||
"nozzle_type": "undefine"
|
||||
}
|
||||
|
||||
@@ -100,7 +100,7 @@
|
||||
"top_shell_thickness": "0.8",
|
||||
"wall_loops": "3",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"wall_generator": "archane",
|
||||
"wall_generator": "arachne",
|
||||
"compatible_printers": [
|
||||
"Flashforge Guider 2s 0.4 nozzle"
|
||||
]
|
||||
|
||||
@@ -100,7 +100,7 @@
|
||||
"top_shell_thickness": "0.8",
|
||||
"wall_loops": "2",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"wall_generator": "archane",
|
||||
"wall_generator": "arachne",
|
||||
"compatible_printers": [
|
||||
"Flashforge Guider 2s 0.4 nozzle"
|
||||
]
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
"top_shell_thickness": "0.8",
|
||||
"wall_loops": "2",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"wall_generator": "archane",
|
||||
"wall_generator": "arachne",
|
||||
"compatible_printers": [
|
||||
"Flashforge Guider 2s 0.4 nozzle"
|
||||
]
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
"top_shell_thickness": "0.8",
|
||||
"wall_loops": "2",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"wall_generator": "archane",
|
||||
"wall_generator": "arachne",
|
||||
"compatible_printers": [
|
||||
"Flashforge Guider 2s 0.4 nozzle"
|
||||
]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "FlyingBear",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "1",
|
||||
"description": "FlyingBear configurations",
|
||||
"machine_model_list": [
|
||||
@@ -11,14 +11,25 @@
|
||||
{
|
||||
"name": "FlyingBear S1",
|
||||
"sub_path": "machine/S1/FlyingBear S1.json"
|
||||
},
|
||||
{
|
||||
"name": "FlyingBear Ghost 6",
|
||||
"sub_path": "machine/FlyingBear Ghost 6.json"
|
||||
}
|
||||
|
||||
],
|
||||
"process_list": [
|
||||
{
|
||||
"name": "fdm_process_common",
|
||||
"sub_path": "process/fdm_process_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_marlin_common",
|
||||
"sub_path": "process/fdm_process_marlin_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_ghost_6",
|
||||
"sub_path": "process/fdm_process_ghost_6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.08mm Extra Fine @FlyingBear Reborn3",
|
||||
"sub_path": "process/0.08mm Extra Fine @FlyingBear Reborn3.json"
|
||||
@@ -40,7 +51,22 @@
|
||||
"sub_path": "process/0.24mm Draft @FlyingBear Reborn3.json"
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"name": "0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle",
|
||||
"sub_path": "process/0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle",
|
||||
"sub_path": "process/0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle",
|
||||
"sub_path": "process/0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle",
|
||||
"sub_path": "process/0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle.json"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "fdm_process_common_S1",
|
||||
@@ -254,6 +280,10 @@
|
||||
|
||||
],
|
||||
"machine_list": [
|
||||
{
|
||||
"name": "fdm_marlin_common",
|
||||
"sub_path": "machine/fdm_marlin_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_machine_common",
|
||||
"sub_path": "machine/fdm_machine_common.json"
|
||||
@@ -266,13 +296,13 @@
|
||||
"name": "FlyingBear Reborn3 0.4 nozzle",
|
||||
"sub_path": "machine/FlyingBear Reborn3 0.4 nozzle.json"
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
"name": "FlyingBear S1 0.4 nozzle",
|
||||
"sub_path": "machine/S1/FlyingBear S1 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "FlyingBear Ghost 6 0.4",
|
||||
"sub_path": "machine/FlyingBear Ghost 6 0.4 nozzle.json"
|
||||
}
|
||||
|
||||
|
||||
]
|
||||
}
|
||||
|
||||
BIN
resources/profiles/FlyingBear/FlyingBear Ghost 6-bed.stl
Normal file
BIN
resources/profiles/FlyingBear/FlyingBear Ghost 6-texture.png
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
resources/profiles/FlyingBear/FlyingBear Ghost 6_cover.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
@@ -22,6 +22,7 @@
|
||||
"0.8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"FlyingBear Reborn3 0.4 nozzle"
|
||||
"FlyingBear Reborn3 0.4 nozzle",
|
||||
"FlyingBear Ghost 6 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
"0.8"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"FlyingBear Reborn3 0.4 nozzle"
|
||||
|
||||
"FlyingBear Reborn3 0.4 nozzle",
|
||||
"FlyingBear Ghost 6 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
"0.058"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"FlyingBear Reborn3 0.4 nozzle"
|
||||
"FlyingBear Reborn3 0.4 nozzle",
|
||||
"FlyingBear Ghost 6 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -49,6 +49,7 @@
|
||||
"0.084"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"FlyingBear Reborn3 0.4 nozzle"
|
||||
"FlyingBear Reborn3 0.4 nozzle",
|
||||
"FlyingBear Ghost 6 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
"0.084"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"FlyingBear Reborn3 0.4 nozzle"
|
||||
"FlyingBear Reborn3 0.4 nozzle",
|
||||
"FlyingBear Ghost 6 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
"0.13"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"FlyingBear Reborn3 0.4 nozzle"
|
||||
"FlyingBear Reborn3 0.4 nozzle",
|
||||
"FlyingBear Ghost 6 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
"0.02"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"FlyingBear Reborn3 0.4 nozzle"
|
||||
"FlyingBear Reborn3 0.4 nozzle",
|
||||
"FlyingBear Ghost 6 0.4 nozzle"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,134 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"setting_id": "GM001",
|
||||
"name": "FlyingBear Ghost 6 0.4 nozzle",
|
||||
"from": "system",
|
||||
"instantiation": "true",
|
||||
"inherits": "fdm_marlin_common",
|
||||
"printer_model": "FlyingBear Ghost 6",
|
||||
"gcode_flavor": "marlin2",
|
||||
"default_print_profile": "0.20mm Standard @FlyingBear Ghost 6",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_variant": "0.4",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"255x0",
|
||||
"255x210",
|
||||
"0x210"
|
||||
],
|
||||
"printable_height": "210",
|
||||
"nozzle_type": "brass",
|
||||
"auxiliary_fan": "1",
|
||||
"support_air_filtration": "1",
|
||||
"support_multi_bed_types": "1",
|
||||
"machine_max_acceleration_extruding": [
|
||||
"1500",
|
||||
"1500"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"3000",
|
||||
"3000"
|
||||
],
|
||||
"machine_max_acceleration_travel": [
|
||||
"2000",
|
||||
"2000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"1500",
|
||||
"1500"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"1500",
|
||||
"1500"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"100",
|
||||
"100"
|
||||
],
|
||||
"machine_max_acceleration_e": [
|
||||
"2000",
|
||||
"2000"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"200",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"200",
|
||||
"200"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"4",
|
||||
"4"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"45",
|
||||
"45"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"15",
|
||||
"15"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"15",
|
||||
"15"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.4",
|
||||
"0.4"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"2.0",
|
||||
"2.0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.3"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.05"
|
||||
],
|
||||
"printer_settings_id": "",
|
||||
"retraction_minimum_travel": [
|
||||
"3"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"0%"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"35"
|
||||
],
|
||||
"deretraction_speed": [
|
||||
"35"
|
||||
],
|
||||
"extruder_clearance_height_to_lid": "80",
|
||||
"extruder_clearance_height_to_rod": "64",
|
||||
"extruder_clearance_radius": "40",
|
||||
"z_hop": [
|
||||
"0.2"
|
||||
],
|
||||
"wipe_distance": [
|
||||
"2"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"manual_filament_change": "1",
|
||||
"change_filament_gcode": "M600",
|
||||
"machine_pause_gcode": "M25",
|
||||
"default_filament_profile": [
|
||||
"FlyingBear Generic PLA"
|
||||
],
|
||||
"machine_start_gcode": "M220 S100 ;reset feedrate\nM221 S100 ;reset flowrate\nG21 ;set units to millimeters\nG90 ;use absolute coordinates\nM82 ;absolute extrusion mode\nM107 ;turn off colling fan\n\nM140 S[bed_temperature_initial_layer] ;set bed temperature continue without waiting\nM104 S[nozzle_temperature_initial_layer] ;set hotend temperature continue without waiting\n\nG28 ;home\nG1 Z2 F1500 ;raise z\nG92 E0 ;reset extruder\n\nM190 S[bed_temperature_initial_layer] ;wait for bed temperature\nM109 S[nozzle_temperature_initial_layer] ;wait for hotend temperature\n\nG1 X20 Y20 F5000 ;start position \nG1 Z0.28 F1500 ;lower z\nG1 E4 F500 ;prime the filament\n\nG1 X20 Y20.0 Z0.28 F3000.0 ;start position \nG1 X20 Y170.0 Z0.28 F1500.0 E12 ;1st line\nG1 X20.3 F1500\nG1 X20.3 Y20.0 Z0.28 F1500.0 E18 ;2nd line\n\nG92 E0 ;reset extruder\nG1 Z2 F1500 ;raise z\nG92 E0 ;reset extruder\n",
|
||||
"machine_end_gcode": "G91 ;use relative coordinates\nG1 E-4 F1500 ;retract the filament\nG1 X5 Y5 Z0.2 F5000 ;wipe\nG1 Z5 F1500 ;raise z\nG90 ;use absolute coordinates\nG1 X10 Y210 F5000 ;park print head\n\nM107 ;turn off fan\nM104 S0 ;turn off hotend\nM140 S0 ;turn off heatbed\nM84 ;disable motors",
|
||||
"scan_first_layer": "0",
|
||||
"thumbnails": [
|
||||
"100x100",
|
||||
"320x320"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"type": "machine_model",
|
||||
"name": "FlyingBear Ghost 6",
|
||||
"model_id": "FlyingBear Ghost 6",
|
||||
"nozzle_diameter": "0.4",
|
||||
"machine_tech": "FFF",
|
||||
"family": "FlyingBearDesign",
|
||||
"bed_model": "FlyingBear Ghost 6-bed.stl",
|
||||
"bed_texture": "FlyingBear Ghost 6-texture.png",
|
||||
"hotend_model": "",
|
||||
"default_materials": "FlyingBear Generic ABS;FlyingBear Generic PA-CF;FlyingBear Generic PC;FlyingBear Generic PETG;FlyingBear Generic PLA;FlyingBear Generic TPU"
|
||||
}
|
||||
@@ -115,7 +115,7 @@
|
||||
"0"
|
||||
],
|
||||
"machine_pause_gcode": "PAUSE",
|
||||
"machine_start_gcode": ";v2.9-20240311;\n;wiping nozzle start\nM106 P3 S0\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F6000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F6000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[0] + 60,print_bed_max[0])} F6000 \nG1 Z0.2 F600\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\nG1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\nG92 E0 ;reset extruder\nG1 E4 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[0] + 60,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
|
||||
"machine_start_gcode": ";v2.9.1-20240620;\n;wiping nozzle start\nM106 P3 S0\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F6000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F6000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[0] + 60,print_bed_max[0])} F6000 \nG1 Z0.2 F600\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\nG1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\nG92 E0 ;reset extruder\nG1 E4 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 60,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
|
||||
"machine_unload_filament_time": "0",
|
||||
"max_layer_height": [
|
||||
"0.28"
|
||||
|
||||
119
resources/profiles/FlyingBear/machine/fdm_marlin_common.json
Normal file
@@ -0,0 +1,119 @@
|
||||
{
|
||||
"type": "machine",
|
||||
"name": "fdm_marlin_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"printer_technology": "FFF",
|
||||
"deretraction_speed": [
|
||||
"40"
|
||||
],
|
||||
"extruder_colour": [
|
||||
"#FCE94F"
|
||||
],
|
||||
"extruder_offset": [
|
||||
"0x0"
|
||||
],
|
||||
"gcode_flavor": "marlin",
|
||||
"silent_mode": "0",
|
||||
"machine_max_acceleration_e": [
|
||||
"5000"
|
||||
],
|
||||
"machine_max_acceleration_extruding": [
|
||||
"10000"
|
||||
],
|
||||
"machine_max_acceleration_retracting": [
|
||||
"1000"
|
||||
],
|
||||
"machine_max_acceleration_x": [
|
||||
"10000"
|
||||
],
|
||||
"machine_max_acceleration_y": [
|
||||
"10000"
|
||||
],
|
||||
"machine_max_acceleration_z": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_e": [
|
||||
"60"
|
||||
],
|
||||
"machine_max_speed_x": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_y": [
|
||||
"500"
|
||||
],
|
||||
"machine_max_speed_z": [
|
||||
"10"
|
||||
],
|
||||
"machine_max_jerk_e": [
|
||||
"5"
|
||||
],
|
||||
"machine_max_jerk_x": [
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_y": [
|
||||
"8"
|
||||
],
|
||||
"machine_max_jerk_z": [
|
||||
"0.4"
|
||||
],
|
||||
"machine_min_extruding_rate": [
|
||||
"0"
|
||||
],
|
||||
"machine_min_travel_rate": [
|
||||
"0"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.32"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.08"
|
||||
],
|
||||
"printable_height": "250",
|
||||
"extruder_clearance_radius": "65",
|
||||
"extruder_clearance_height_to_rod": "36",
|
||||
"extruder_clearance_height_to_lid": "140",
|
||||
"nozzle_diameter": [
|
||||
"0.4"
|
||||
],
|
||||
"printer_settings_id": "",
|
||||
"printer_variant": "0.4",
|
||||
"retraction_minimum_travel": [
|
||||
"2"
|
||||
],
|
||||
"retract_before_wipe": [
|
||||
"70%"
|
||||
],
|
||||
"retract_when_changing_layer": [
|
||||
"1"
|
||||
],
|
||||
"retraction_length": [
|
||||
"5"
|
||||
],
|
||||
"retract_length_toolchange": [
|
||||
"1"
|
||||
],
|
||||
"z_hop": [
|
||||
"0"
|
||||
],
|
||||
"retract_restart_extra": [
|
||||
"0"
|
||||
],
|
||||
"retract_restart_extra_toolchange": [
|
||||
"0"
|
||||
],
|
||||
"retraction_speed": [
|
||||
"60"
|
||||
],
|
||||
"single_extruder_multi_material": "1",
|
||||
"change_filament_gcode": "",
|
||||
"wipe": [
|
||||
"1"
|
||||
],
|
||||
"default_print_profile": "",
|
||||
"machine_start_gcode": "G0 Z20 F9000\nG92 E0; G1 E-10 F1200\nG28\nM970 Q1 A10 B10 C130 K0\nM970 Q1 A10 B131 C250 K1\nM974 Q1 S1 P0\nM970 Q0 A10 B10 C130 H20 K0\nM970 Q0 A10 B131 C250 K1\nM974 Q0 S1 P0\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nG29 ;Home\nG90;\nG92 E0 ;Reset Extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM109 S205;\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder \nG1 X110 Y110 Z2.0 F3000 ;Move Z Axis up",
|
||||
"machine_end_gcode": "M400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-4.0 F3600; retract \nG91\nG1 Z3;\nM104 S0 ; turn off hotend\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nG90 \nG0 X110 Y200 F3600 \nprint_end",
|
||||
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
|
||||
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
|
||||
"machine_pause_gcode": "M601"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_ghost_6",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": ["FlyingBear Ghost 6 0.4 nozzle"],
|
||||
"layer_height": "0.12",
|
||||
"initial_layer_print_height": "0.12",
|
||||
"bottom_shell_layers": "5",
|
||||
"top_shell_layers": "5"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_ghost_6",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": ["FlyingBear Ghost 6 0.4 nozzle"],
|
||||
"layer_height": "0.16",
|
||||
"initial_layer_print_height": "0.16",
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "4"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_ghost_6",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": ["FlyingBear Ghost 6 0.4 nozzle"],
|
||||
"layer_height": "0.2",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "3"
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP004",
|
||||
"name": "0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_ghost_6",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": ["FlyingBear Ghost 6 0.4 nozzle"],
|
||||
"layer_height": "0.24",
|
||||
"initial_layer_print_height": "0.24",
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "3"
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "fdm_process_ghost_6",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_process_marlin_common",
|
||||
"wall_generator": "arachne",
|
||||
"elefant_foot_compensation": "0.15",
|
||||
"elefant_foot_compensation_layers": "1",
|
||||
"infill_wall_overlap": "15%",
|
||||
"top_shell_thickness": "0.6",
|
||||
"internal_bridge_speed": "150%",
|
||||
|
||||
"layer_height": "0.2",
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "3",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"initial_layer_speed": "45",
|
||||
"initial_layer_infill_speed": "60",
|
||||
"outer_wall_speed": "60",
|
||||
"inner_wall_speed": "80",
|
||||
"sparse_infill_speed": "80",
|
||||
"internal_solid_infill_speed": "80",
|
||||
"top_surface_speed": "50",
|
||||
"gap_infill_speed": "80",
|
||||
"ironing_speed": "30",
|
||||
"overhang_1_4_speed": "0",
|
||||
"overhang_2_4_speed": "50",
|
||||
"overhang_3_4_speed": "30",
|
||||
"overhang_4_4_speed": "10",
|
||||
"bridge_speed": "50",
|
||||
"travel_speed": "150",
|
||||
"support_interface_speed": "40",
|
||||
"support_speed": "60",
|
||||
"default_acceleration": "1000",
|
||||
"outer_wall_acceleration": "1000",
|
||||
"inner_wall_acceleration": "1000",
|
||||
"initial_layer_acceleration": "500",
|
||||
"top_surface_acceleration": "1000",
|
||||
"travel_acceleration": "1500"
|
||||
}
|
||||
@@ -0,0 +1,109 @@
|
||||
{
|
||||
"type": "process",
|
||||
"name": "fdm_process_marlin_common",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"adaptive_layer_height": "0",
|
||||
"reduce_crossing_wall": "0",
|
||||
"max_travel_detour_distance": "0",
|
||||
"bottom_surface_pattern": "monotonic",
|
||||
"bottom_shell_thickness": "0",
|
||||
"bridge_speed": "50",
|
||||
"brim_width": "5",
|
||||
"brim_object_gap": "0.1",
|
||||
"compatible_printers_condition": "",
|
||||
"print_sequence": "by layer",
|
||||
"default_acceleration": "1000",
|
||||
"initial_layer_acceleration": "500",
|
||||
"top_surface_acceleration": "1000",
|
||||
"travel_acceleration": "1000",
|
||||
"inner_wall_acceleration": "1000",
|
||||
"outer_wall_acceleration": "1000",
|
||||
"bridge_no_support": "0",
|
||||
"draft_shield": "disabled",
|
||||
"elefant_foot_compensation": "0",
|
||||
"enable_arc_fitting": "0",
|
||||
"wall_infill_order": "inner wall/outer wall/infill",
|
||||
"infill_direction": "45",
|
||||
"sparse_infill_density": "15%",
|
||||
"sparse_infill_pattern": "crosshatch",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"infill_combination": "0",
|
||||
"infill_wall_overlap": "25%",
|
||||
"interface_shells": "0",
|
||||
"ironing_flow": "10%",
|
||||
"ironing_spacing": "0.15",
|
||||
"ironing_speed": "30",
|
||||
"ironing_type": "no ironing",
|
||||
"reduce_infill_retraction": "1",
|
||||
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
|
||||
"detect_overhang_wall": "1",
|
||||
"slowdown_for_curled_perimeters": "1",
|
||||
"overhang_1_4_speed": "0",
|
||||
"overhang_2_4_speed": "50",
|
||||
"overhang_3_4_speed": "30",
|
||||
"overhang_4_4_speed": "10",
|
||||
"line_width": "0.42",
|
||||
"inner_wall_line_width": "0.45",
|
||||
"outer_wall_line_width": "0.42",
|
||||
"top_surface_line_width": "0.42",
|
||||
"sparse_infill_line_width": "0.45",
|
||||
"initial_layer_line_width": "0.5",
|
||||
"internal_solid_infill_line_width": "0.42",
|
||||
"support_line_width": "0.42",
|
||||
"wall_loops": "3",
|
||||
"print_settings_id": "",
|
||||
"raft_layers": "0",
|
||||
"seam_position": "aligned",
|
||||
"skirt_distance": "2",
|
||||
"skirt_height": "1",
|
||||
"min_skirt_length": "4",
|
||||
"skirt_loops": "0",
|
||||
"minimum_sparse_infill_area": "15",
|
||||
"spiral_mode": "0",
|
||||
"standby_temperature_delta": "-5",
|
||||
"enable_support": "0",
|
||||
"resolution": "0.012",
|
||||
"support_type": "normal(auto)",
|
||||
"support_on_build_plate_only": "0",
|
||||
"support_top_z_distance": "0.2",
|
||||
"support_bottom_z_distance": "0.2",
|
||||
"support_filament": "0",
|
||||
"support_interface_loop_pattern": "0",
|
||||
"support_interface_filament": "0",
|
||||
"support_interface_top_layers": "2",
|
||||
"support_interface_bottom_layers": "2",
|
||||
"support_interface_spacing": "0.5",
|
||||
"support_interface_speed": "40",
|
||||
"support_base_pattern": "rectilinear",
|
||||
"support_base_pattern_spacing": "2.5",
|
||||
"support_speed": "60",
|
||||
"support_threshold_angle": "30",
|
||||
"support_object_xy_distance": "0.35",
|
||||
"tree_support_branch_angle": "45",
|
||||
"tree_support_wall_count": "0",
|
||||
"tree_support_with_infill": "0",
|
||||
"detect_thin_wall": "0",
|
||||
"top_surface_pattern": "monotonicline",
|
||||
"top_shell_thickness": "0.8",
|
||||
"enable_prime_tower": "0",
|
||||
"wipe_tower_no_sparse_layers": "0",
|
||||
"prime_tower_width": "60",
|
||||
"xy_hole_compensation": "0",
|
||||
"xy_contour_compensation": "0",
|
||||
"layer_height": "0.2",
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "3",
|
||||
"bridge_flow": "0.95",
|
||||
"initial_layer_speed": "45",
|
||||
"initial_layer_infill_speed": "60",
|
||||
"outer_wall_speed": "60",
|
||||
"inner_wall_speed": "80",
|
||||
"sparse_infill_speed": "80",
|
||||
"internal_solid_infill_speed": "80",
|
||||
"top_surface_speed": "50",
|
||||
"gap_infill_speed": "80",
|
||||
"travel_speed": "150",
|
||||
"inherits": "fdm_process_common",
|
||||
"support_style": "default"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "Folgertech",
|
||||
"version": "02.01.00.01",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "Folgertech configurations",
|
||||
"machine_model_list": [
|
||||
|
||||
618
resources/profiles/Geeetech.json
Normal file
@@ -0,0 +1,618 @@
|
||||
{
|
||||
"name": "Geeetech",
|
||||
"version": "02.01.01.00",
|
||||
"force_update": "0",
|
||||
"description": "Geeetech configurations",
|
||||
"machine_model_list": [
|
||||
{
|
||||
"name": "Geeetech Thunder",
|
||||
"sub_path": "machine/Geeetech Thunder.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar M",
|
||||
"sub_path": "machine/Geeetech Mizar M.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar S",
|
||||
"sub_path": "machine/Geeetech Mizar S.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar Pro",
|
||||
"sub_path": "machine/Geeetech Mizar Pro.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar Max",
|
||||
"sub_path": "machine/Geeetech Mizar Max.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar",
|
||||
"sub_path": "machine/Geeetech Mizar.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A10 Pro",
|
||||
"sub_path": "machine/Geeetech A10 Pro.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A10 M",
|
||||
"sub_path": "machine/Geeetech A10 M.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A10 T",
|
||||
"sub_path": "machine/Geeetech A10 T.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A20",
|
||||
"sub_path": "machine/Geeetech A20.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A20 M",
|
||||
"sub_path": "machine/Geeetech A20 M.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A20 T",
|
||||
"sub_path": "machine/Geeetech A20 T.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A30 Pro",
|
||||
"sub_path": "machine/Geeetech A30 Pro.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A30 M",
|
||||
"sub_path": "machine/Geeetech A30 M.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A30 T",
|
||||
"sub_path": "machine/Geeetech A30 T.json"
|
||||
}
|
||||
],
|
||||
"process_list": [
|
||||
{
|
||||
"name": "fdm_process_common",
|
||||
"sub_path": "process/fdm_process_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_common",
|
||||
"sub_path": "process/fdm_process_geeetech_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.08",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.08.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.08_nozzle_0.2",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.08_nozzle_0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.10",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.10.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.10_nozzle_0.2",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.10_nozzle_0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.12_nozzle_0.2",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.12_nozzle_0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.14_nozzle_0.2",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.14_nozzle_0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.16",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.16.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.20",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.20.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.24_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.24_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.30_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.30_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.25",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.25.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.36_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.36_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.36_nozzle_0.8",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.36_nozzle_0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_Geeetech_HS_0.44_nozzle_0.8",
|
||||
"sub_path": "process/fdm_process_Geeetech_HS_0.44_nozzle_0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.06_nozzle_0.2",
|
||||
"sub_path": "process/fdm_process_geeetech_0.06_nozzle_0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.08",
|
||||
"sub_path": "process/fdm_process_geeetech_0.08.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.08_nozzle_0.2",
|
||||
"sub_path": "process/fdm_process_geeetech_0.08_nozzle_0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.10_nozzle_0.2",
|
||||
"sub_path": "process/fdm_process_geeetech_0.10_nozzle_0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.12",
|
||||
"sub_path": "process/fdm_process_geeetech_0.12.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.12_nozzle_0.2",
|
||||
"sub_path": "process/fdm_process_geeetech_0.12_nozzle_0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.14_nozzle_0.2",
|
||||
"sub_path": "process/fdm_process_geeetech_0.14_nozzle_0.2.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.16",
|
||||
"sub_path": "process/fdm_process_geeetech_0.16.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.18_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_geeetech_0.18_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.20",
|
||||
"sub_path": "process/fdm_process_geeetech_0.20.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.24",
|
||||
"sub_path": "process/fdm_process_geeetech_0.24.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.24_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_geeetech_0.24_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.24_nozzle_0.8",
|
||||
"sub_path": "process/fdm_process_geeetech_0.24_nozzle_0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.28",
|
||||
"sub_path": "process/fdm_process_geeetech_0.28.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.30_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_geeetech_0.30_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.32_nozzle_0.8",
|
||||
"sub_path": "process/fdm_process_geeetech_0.32_nozzle_0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.36_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_geeetech_0.36_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.40_nozzle_0.8",
|
||||
"sub_path": "process/fdm_process_geeetech_0.40_nozzle_0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.42_nozzle_0.6",
|
||||
"sub_path": "process/fdm_process_geeetech_0.42_nozzle_0.6.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.48_nozzle_0.8",
|
||||
"sub_path": "process/fdm_process_geeetech_0.48_nozzle_0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_geeetech_0.56_nozzle_0.8",
|
||||
"sub_path": "process/fdm_process_geeetech_0.56_nozzle_0.8.json"
|
||||
},
|
||||
{
|
||||
"name": "0.06mm Fine @Geeetech common 0.2 nozzle",
|
||||
"sub_path": "process/0.06mm Fine @Geeetech common 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.08mm Extra Fine @Geeetech common",
|
||||
"sub_path": "process/0.08mm Extra Fine @Geeetech common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.08mm Extra Fine @Geeetech Thunder",
|
||||
"sub_path": "process/0.08mm Extra Fine @Geeetech Thunder.json"
|
||||
},
|
||||
{
|
||||
"name": "0.08mm Optimal @Geeetech common 0.2 nozzle",
|
||||
"sub_path": "process/0.08mm Optimal @Geeetech common 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.08mm Optimal @Geeetech Thunder 0.2 nozzle",
|
||||
"sub_path": "process/0.08mm Optimal @Geeetech Thunder 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.10mm Fine @Geeetech Thunder",
|
||||
"sub_path": "process/0.10mm Fine @Geeetech Thunder.json"
|
||||
},
|
||||
{
|
||||
"name": "0.10mm Standard @Geeetech common 0.2 nozzle",
|
||||
"sub_path": "process/0.10mm Standard @Geeetech common 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.10mm Standard @Geeetech Thunder 0.2 nozzle",
|
||||
"sub_path": "process/0.10mm Standard @Geeetech Thunder 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Draft @Geeetech common 0.2 nozzle",
|
||||
"sub_path": "process/0.12mm Draft @Geeetech common 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Draft @Geeetech Thunder 0.2 nozzle",
|
||||
"sub_path": "process/0.12mm Draft @Geeetech Thunder 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.12mm Fine @Geeetech common",
|
||||
"sub_path": "process/0.12mm Fine @Geeetech common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.14mm Extra Draft @Geeetech common 0.2 nozzle",
|
||||
"sub_path": "process/0.14mm Extra Draft @Geeetech common 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle",
|
||||
"sub_path": "process/0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Geeetech common",
|
||||
"sub_path": "process/0.16mm Optimal @Geeetech common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.16mm Optimal @Geeetech Thunder",
|
||||
"sub_path": "process/0.16mm Optimal @Geeetech Thunder.json"
|
||||
},
|
||||
{
|
||||
"name": "0.18mm Fine @Geeetech common 0.6 nozzle",
|
||||
"sub_path": "process/0.18mm Fine @Geeetech common 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Geeetech common",
|
||||
"sub_path": "process/0.20mm Standard @Geeetech common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Geeetech Thunder",
|
||||
"sub_path": "process/0.20mm Standard @Geeetech Thunder.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Strength @Geeetech common",
|
||||
"sub_path": "process/0.20mm Strength @Geeetech common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Draft @Geeetech common",
|
||||
"sub_path": "process/0.24mm Draft @Geeetech common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Fine @Geeetech common 0.8 nozzle",
|
||||
"sub_path": "process/0.24mm Fine @Geeetech common 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Optimal @Geeetech common 0.6 nozzle",
|
||||
"sub_path": "process/0.24mm Optimal @Geeetech common 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.24mm Optimal @Geeetech Thunder 0.6 nozzle",
|
||||
"sub_path": "process/0.24mm Optimal @Geeetech Thunder 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Draft @Geeetech Thunder",
|
||||
"sub_path": "process/0.25mm Draft @Geeetech Thunder.json"
|
||||
},
|
||||
{
|
||||
"name": "0.28mm Extra Draft @Geeetech common",
|
||||
"sub_path": "process/0.28mm Extra Draft @Geeetech common.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Standard @Geeetech common 0.6 nozzle",
|
||||
"sub_path": "process/0.30mm Standard @Geeetech common 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Standard @Geeetech Thunder 0.6 nozzle",
|
||||
"sub_path": "process/0.30mm Standard @Geeetech Thunder 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Strength @Geeetech common 0.6 nozzle",
|
||||
"sub_path": "process/0.30mm Strength @Geeetech common 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.32mm Optimal @Geeetech common 0.8 nozzle",
|
||||
"sub_path": "process/0.32mm Optimal @Geeetech common 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.36mm Draft @Geeetech common 0.6 nozzle",
|
||||
"sub_path": "process/0.36mm Draft @Geeetech common 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.36mm Draft @Geeetech Thunder 0.6 nozzle",
|
||||
"sub_path": "process/0.36mm Draft @Geeetech Thunder 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.36mm Optimal @Geeetech Thunder 0.8 nozzle",
|
||||
"sub_path": "process/0.36mm Optimal @Geeetech Thunder 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.40mm Standard @Geeetech common 0.8 nozzle",
|
||||
"sub_path": "process/0.40mm Standard @Geeetech common 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.42mm Extra Draft @Geeetech common 0.6 nozzle",
|
||||
"sub_path": "process/0.42mm Extra Draft @Geeetech common 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.44mm Draft @Geeetech Thunder 0.8 nozzle",
|
||||
"sub_path": "process/0.44mm Draft @Geeetech Thunder 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.48mm Draft @Geeetech common 0.8 nozzle",
|
||||
"sub_path": "process/0.48mm Draft @Geeetech common 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "0.56mm Extra Draft @Geeetech common 0.8 nozzle",
|
||||
"sub_path": "process/0.56mm Extra Draft @Geeetech common 0.8 nozzle.json"
|
||||
}
|
||||
],
|
||||
"filament_list": [
|
||||
{
|
||||
"name": "fdm_filament_common",
|
||||
"sub_path": "filament/fdm_filament_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_abs",
|
||||
"sub_path": "filament/fdm_filament_abs.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_asa",
|
||||
"sub_path": "filament/fdm_filament_asa.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pa",
|
||||
"sub_path": "filament/fdm_filament_pa.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pc",
|
||||
"sub_path": "filament/fdm_filament_pc.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pet",
|
||||
"sub_path": "filament/fdm_filament_pet.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pva",
|
||||
"sub_path": "filament/fdm_filament_pva.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_pla",
|
||||
"sub_path": "filament/fdm_filament_pla.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_filament_tpu",
|
||||
"sub_path": "filament/fdm_filament_tpu.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic ABS @Geeetech",
|
||||
"sub_path": "filament/Generic ABS @Geeetech.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic ASA @Geeetech",
|
||||
"sub_path": "filament/Generic ASA @Geeetech.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PA @Geeetech",
|
||||
"sub_path": "filament/Generic PA @Geeetech.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PC @Geeetech",
|
||||
"sub_path": "filament/Generic PC @Geeetech.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PETG @Geeetech",
|
||||
"sub_path": "filament/Generic PETG @Geeetech.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PLA @Geeetech",
|
||||
"sub_path": "filament/Generic PLA @Geeetech.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PLA @Geeetech_FastSpeed",
|
||||
"sub_path": "filament/Generic PLA @Geeetech_FastSpeed.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PLA-CF @Geeetech",
|
||||
"sub_path": "filament/Generic PLA-CF @Geeetech.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic PVA @Geeetech",
|
||||
"sub_path": "filament/Generic PVA @Geeetech.json"
|
||||
},
|
||||
{
|
||||
"name": "Generic TPU @Geeetech",
|
||||
"sub_path": "filament/Generic TPU @Geeetech.json"
|
||||
}
|
||||
],
|
||||
"machine_list": [
|
||||
{
|
||||
"name": "fdm_machine_common",
|
||||
"sub_path": "machine/fdm_machine_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_geeetech_common",
|
||||
"sub_path": "machine/fdm_geeetech_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_Geeetech_HS_common",
|
||||
"sub_path": "machine/fdm_Geeetech_HS_common.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Thunder 0.2 nozzle",
|
||||
"sub_path": "machine/Geeetech Thunder 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Thunder 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech Thunder 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Thunder 0.6 nozzle",
|
||||
"sub_path": "machine/Geeetech Thunder 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Thunder 0.8 nozzle",
|
||||
"sub_path": "machine/Geeetech Thunder 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar 0.2 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar 0.6 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar 0.8 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar S 0.2 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar S 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar S 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar S 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar S 0.6 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar S 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar S 0.8 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar S 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar Pro 0.2 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar Pro 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar Pro 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar Pro 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar Pro 0.6 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar Pro 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar Pro 0.8 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar Pro 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar Max 0.2 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar Max 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar Max 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar Max 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar Max 0.6 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar Max 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar Max 0.8 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar Max 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech Mizar M 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech Mizar M 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A10 Pro 0.2 nozzle",
|
||||
"sub_path": "machine/Geeetech A10 Pro 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A10 Pro 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech A10 Pro 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A10 Pro 0.6 nozzle",
|
||||
"sub_path": "machine/Geeetech A10 Pro 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A10 Pro 0.8 nozzle",
|
||||
"sub_path": "machine/Geeetech A10 Pro 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A10 M 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech A10 M 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A10 T 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech A10 T 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A20 0.2 nozzle",
|
||||
"sub_path": "machine/Geeetech A20 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A20 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech A20 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A20 0.6 nozzle",
|
||||
"sub_path": "machine/Geeetech A20 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A20 0.8 nozzle",
|
||||
"sub_path": "machine/Geeetech A20 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A20 M 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech A20 M 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A20 T 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech A20 T 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A30 Pro 0.2 nozzle",
|
||||
"sub_path": "machine/Geeetech A30 Pro 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A30 Pro 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech A30 Pro 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A30 Pro 0.6 nozzle",
|
||||
"sub_path": "machine/Geeetech A30 Pro 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A30 Pro 0.8 nozzle",
|
||||
"sub_path": "machine/Geeetech A30 Pro 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A30 M 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech A30 M 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Geeetech A30 T 0.4 nozzle",
|
||||
"sub_path": "machine/Geeetech A30 T 0.4 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
resources/profiles/Geeetech/220x220.stl
Normal file
110
resources/profiles/Geeetech/220x220.svg
Normal file
@@ -0,0 +1,110 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_1" data-name=" 图层 1" xmlns="http://www.w3.org/2000/svg" width="220mm" height="220mm" viewBox="0 0 623.6 623.6">
|
||||
<g>
|
||||
<rect x="501.8" y="570.2" width="105.6" height="33.3" style="fill: none;"/>
|
||||
<g>
|
||||
<path d="M534.9,596.6h0l-12.3-21.2c0-.3-.3-.3-.6-.3s-.5,.2-.6,.3l-12.3,21.2c0,.3,0,.5,0,.7,0,.3,.3,.3,.6,.3h24.5c.3,0,.5-.2,.6-.3,0-.3,0-.5,0-.7h0Zm-23.9-.3l11-19,11,19h-22Z" style="fill: #fff;"/>
|
||||
<rect x="516.7" y="593.9" width="10.8" height="1.1" style="fill: #fff;"/>
|
||||
<path d="M520,593.1l-.6-.4c1.1-1.6,.5-2.5,0-3.6-.7-1.1-1.4-2.5,0-4.4l.6,.4c-1.1,1.5-.6,2.5,0,3.6,.7,1.1,1.4,2.5,0,4.4h0Z" style="fill: #fff;"/>
|
||||
<path d="M522.6,593.1l-.6-.4c1.1-1.6,.5-2.5,0-3.6-.7-1.1-1.4-2.5,0-4.3l.6,.4c-1.1,1.5-.6,2.5,0,3.6,.7,1.1,1.4,2.5,0,4.3h0Z" style="fill: #fff;"/>
|
||||
<path d="M525.2,593.1l-.6-.4c1.1-1.6,.6-2.5,0-3.6-.7-1.2-1.4-2.5,0-4.4l.6,.4c-1.1,1.6-.6,2.5,0,3.6,.7,1.2,1.4,2.5,0,4.4Z" style="fill: #fff;"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M541.3,584.3c-.5,0-.9,0-1.4-.2-.4,0-.8-.3-1-.6-.3-.3-.5-.7-.7-1.1-.2-.5-.3-1.1-.3-1.9s0-1.3,.3-1.7c.2-.5,.3-.8,.7-1.1,.3-.3,.6-.5,1-.6,.4,0,.8-.2,1.4-.2h.8c.3,0,.5,0,.7,.2v.8c-.2,0-.4-.2-.7-.2h-.8c-.3,0-.8,0-1,.2-.3,0-.5,.3-.8,.5-.2,.3-.3,.5-.4,.8s-.2,.8-.2,1.4,0,1,.2,1.4c0,.3,.3,.7,.4,.8s.4,.3,.7,.4,.6,.2,1,.2h.8c.3,0,.5,0,.8-.2v.8c-.2,0-.4,.2-.8,.3-.3,0-.6,0-1,0l.3-.2Z" style="fill: #fff;"/>
|
||||
<path d="M546.5,578.6c.4,0,.8,0,1.1,.2,.3,0,.5,.2,.7,.3s.3,.3,.3,.5c0,.2,0,.4,0,.7v3.9h-.8l-.2-.8c0,.2-.2,.3-.3,.4s-.3,.3-.4,.3-.3,.2-.6,.2h-.6c-.7,0-1.1-.2-1.4-.4s-.4-.7-.4-1.2,0-.6,.2-.8c0-.3,.3-.4,.4-.5,.2-.2,.4-.3,.7-.3s.6,0,.9,0h1.7v-.8c0-.2,0-.3-.2-.3s-.3-.2-.4-.3h-1.3c-.2,0-.4,0-.6,0v-.8h1.2v-.2Zm-.7,5c.4,0,.8,0,1.2-.3s.6-.4,.7-.8v-.9h-2.2c-.2,0-.3,0-.4,.2s-.2,.2-.3,.3v.5c0,.3,0,.5,.3,.7s.4,.3,.8,.3h0Z" style="fill: #fff;"/>
|
||||
<path d="M555,578.7v5.5h-.8v-.8l-.4,.4c0,0-.3,.2-.4,.3-.2,0-.3,0-.5,.2h-.5c-.3,0-.7,0-.9-.2-.3,0-.4-.2-.6-.3s-.3-.3-.3-.6,0-.4,0-.8v-3.8h.8v4.1c0,.2,0,.3,.2,.4s.2,.2,.3,.3,.3,0,.5,0h.5c.2,0,.3,0,.4-.2s.3-.2,.3-.3c0-.2,.2-.3,.3-.6v-3.7h1.1Z" style="fill: #fff;"/>
|
||||
<path d="M558.6,583.5h.6v.8h-1.4c-.2,0-.3-.2-.5-.3-.2-.2-.3-.3-.3-.5,0-.3,0-.5,0-.8v-3.1h-.8v-.8h.8v-1.3h.8v1.3h1.4v.8h-1.4v3.6c0,0,0,.3,0,.3s.2,.2,.3,.2h.5Z" style="fill: #fff;"/>
|
||||
<path d="M560.8,577.7c-.2,0-.3,0-.4,0,0,0,0-.2,0-.4s0-.3,0-.4c0,0,.3,0,.4,0s.3,0,.4,0c0,0,0,.2,0,.4s0,.3,0,.4c0,0-.3,0-.4,0Zm-.4,1h.8v5.5h-.8v-5.5Z" style="fill: #fff;"/>
|
||||
<path d="M565.3,584.3c-.4,0-.8,0-1.1-.2-.3,0-.6-.3-.8-.5-.3-.3-.4-.5-.5-.8s-.2-.8-.2-1.4,0-1,.2-1.4c0-.3,.3-.7,.5-.8,.3-.3,.5-.3,.8-.5,.3,0,.7-.2,1.1-.2s.8,0,1.1,.2c.3,0,.6,.3,.8,.5,.3,.3,.3,.5,.5,.8,0,.3,.2,.8,.2,1.4s0,1-.2,1.4c0,.3-.3,.7-.5,.8-.3,.3-.5,.3-.8,.5-.3,0-.7,.2-1.1,.2Zm0-.8c.3,0,.6,0,.8,0s.3-.2,.5-.3c0-.2,.2-.3,.3-.7s0-.6,0-1v-1c0-.3-.2-.5-.3-.7s-.3-.3-.5-.3c-.2,0-.4,0-.8,0s-.6,0-.8,0c-.2,0-.3,.2-.5,.3,0,.2-.3,.4-.3,.7v2c0,.3,.2,.5,.3,.7,.2,.2,.3,.3,.5,.3s.4,0,.8,0Z" style="fill: #fff;"/>
|
||||
<path d="M572,578.6c.3,0,.7,0,.9,.2,.3,0,.4,.3,.6,.3,.2,.2,.3,.3,.3,.6,0,.3,0,.4,0,.8v3.8h-.8v-4.1c0-.2,0-.3-.2-.4,0,0-.2-.2-.3-.3s-.3,0-.5,0h-.5c-.2,0-.3,0-.5,.2s-.3,.2-.4,.3-.3,.3-.3,.6v3.7h-.8v-5.5h.8v.8c0-.2,.2-.3,.3-.4s.3-.2,.4-.3,.3,0,.5-.2,.3,0,.5,0h-.2Z" style="fill: #fff;"/>
|
||||
<path d="M583.7,577.1v7.1h-.9v-3.5h-3.5v3.5h-.9v-7.1h.9v2.9h3.5v-2.9h.9Z" style="fill: #fff;"/>
|
||||
<path d="M586,577.7c-.2,0-.3,0-.4,0,0,0,0-.2,0-.4s0-.3,0-.4c0,0,.3,0,.4,0s.3,0,.4,0c0,0,0,.2,0,.4s0,.3,0,.4c0,0-.3,0-.4,0Zm-.4,1h.8v5.5h-.8v-5.5Z" style="fill: #fff;"/>
|
||||
<path d="M592.9,578.7v5.2c0,.8-.3,1.4-.7,1.8s-1.1,.7-2,.7-.5,0-.7,0c-.3,0-.4,0-.6,0v-.8c.4,0,.8,0,1.4,0s1.1-.2,1.4-.4,.4-.8,.4-1.4v-.6c0,.3-.3,.6-.6,.8s-.7,.3-1.2,.3-.8,0-1.1-.2-.5-.3-.7-.6-.3-.5-.3-.8c0-.3,0-.8,0-1.2s0-.8,0-1.1c0-.3,.2-.7,.3-.9s.4-.4,.7-.6,.7-.3,1.1-.3,.5,0,.8,0c.2,0,.3,.2,.5,.3,.2,0,.3,.3,.3,.3,0,.2,.2,.3,.3,.4v-1h.8Zm-2.5,4.8c.3,0,.6,0,.8-.2,.3,0,.4-.3,.5-.4s.3-.4,.3-.7v-1.7c0-.3-.2-.5-.3-.7s-.3-.3-.5-.4-.5-.2-.8-.2-.6,0-.8,.2c-.2,0-.3,.3-.4,.4s-.2,.4-.2,.7v1.6c0,.3,0,.5,.2,.7,0,.2,.3,.3,.4,.4s.4,.2,.8,.2h0Z" style="fill: #fff;"/>
|
||||
<path d="M597.4,578.6c.3,0,.7,0,.9,.2,.3,0,.4,.3,.6,.3,.2,.2,.3,.3,.3,.6,0,.3,0,.4,0,.8v3.8h-.8v-4.1c0-.2,0-.3-.2-.4,0,0-.2-.2-.3-.3s-.3,0-.5,0h-.5c-.2,0-.3,0-.5,.2s-.3,.2-.4,.3-.3,.3-.3,.6v3.7h-.8v-7.8h.8v3c0-.2,.2-.3,.3-.4s.3-.2,.4-.3,.3,0,.5-.2,.3,0,.5,0h-.2Z" style="fill: #fff;"/>
|
||||
<path d="M542.6,590.2h-2v6.3h-.9v-6.3h-2v-.8h5.1v.8h0Z" style="fill: #fff;"/>
|
||||
<path d="M547.7,593.1v.6l-3.7,.3c0,.3,0,.6,0,.8,0,.3,.2,.4,.3,.5,.2,.2,.3,.3,.5,.3,.3,0,.5,0,.8,0s.6,0,.9,0,.6-.2,.8-.3v.8s-.2,0-.3,0c-.2,0-.3,0-.4,0h-1.1c-.4,0-.8,0-1.1-.2-.3,0-.6-.3-.8-.5-.3-.3-.4-.5-.5-.8s-.2-.8-.2-1.4,0-1,.2-1.4c0-.3,.3-.7,.5-.8,.3-.3,.5-.3,.8-.5,.3,0,.7-.2,1-.2s.8,0,1.1,.2,.5,.3,.7,.5c.2,.3,.3,.5,.3,.8v.8l.2,.3Zm-.8,0v-.6c0-.2,0-.3-.2-.5s-.3-.3-.4-.3c-.2,0-.4-.2-.7-.2s-.6,0-.8,0c-.2,0-.3,.2-.5,.3,0,.2-.2,.3-.3,.6v.8l2.9-.3h0Z" style="fill: #fff;"/>
|
||||
<path d="M555.3,590.8c.3,0,.6,0,.8,.2,.3,0,.4,.3,.6,.3,.2,.2,.3,.3,.3,.6,0,.3,0,.4,0,.8v3.8h-.8v-3.5c0-.4,0-.8-.3-1-.2-.3-.4-.3-.8-.3h-.4c0,0-.3,0-.4,.2,0,0-.3,.2-.3,.3,0,0-.2,.3-.3,.5h0v3.9h-.8v-3.5c0-.4,0-.8-.2-1s-.4-.3-.8-.3h-.5c-.2,0-.3,0-.4,.2,0,0-.3,.2-.3,.3,0,.2-.2,.3-.3,.5v3.8h-.8v-5.5h.8v.8c.2-.3,.4-.5,.7-.7,.3,0,.6-.2,.9-.2s.8,0,1,.3c.3,.2,.4,.3,.6,.7,0-.2,.2-.3,.3-.4,0,0,.3-.2,.4-.3,.2,0,.3,0,.5-.2s.3,0,.5,0v-.2Z" style="fill: #fff;"/>
|
||||
<path d="M561.8,590.8c.4,0,.8,0,1.1,.2s.5,.3,.7,.6,.3,.6,.3,.9c0,.3,0,.8,0,1.2s0,.8,0,1.1c0,.3-.2,.7-.3,.9s-.4,.5-.7,.6c-.3,.2-.7,.3-1.1,.3s-.9,0-1.2-.3c-.3-.2-.4-.4-.6-.8v3h-.8v-7.5h.8v1c0-.3,.3-.6,.6-.8s.7-.3,1.2-.3h0Zm0,4.9c.3,0,.6,0,.8-.2s.3-.3,.4-.5c0-.2,.2-.4,.2-.7v-1.6c0-.3,0-.5-.2-.7,0-.2-.3-.3-.4-.4s-.4-.2-.8-.2-.6,0-.8,.2-.4,.3-.5,.4c-.2,.2-.3,.4-.3,.7v1.7c0,.3,.2,.5,.3,.7,.2,.2,.3,.3,.5,.4,.3,0,.5,.2,.8,.2Z" style="fill: #fff;"/>
|
||||
<path d="M570.2,593.1v.6l-3.7,.3c0,.3,0,.6,0,.8,0,.3,.2,.4,.3,.5,.2,.2,.3,.3,.5,.3,.3,0,.5,0,.8,0s.6,0,.9,0,.6-.2,.8-.3v.8s-.2,0-.3,0c-.2,0-.3,0-.4,0h-1.1c-.4,0-.8,0-1.1-.2-.3,0-.6-.3-.8-.5-.3-.3-.4-.5-.5-.8s-.2-.8-.2-1.4,0-1,.2-1.4c0-.3,.3-.7,.5-.8,.3-.3,.5-.3,.8-.5,.3,0,.7-.2,1-.2s.8,0,1.1,.2,.5,.3,.7,.5c.2,.3,.3,.5,.3,.8v.8l.2,.3Zm-.8,0v-.6c0-.2,0-.3-.2-.5s-.3-.3-.4-.3c-.2,0-.4-.2-.7-.2s-.6,0-.8,0c-.2,0-.3,.2-.5,.3,0,.2-.2,.3-.3,.6v.8l2.9-.3h0Z" style="fill: #fff;"/>
|
||||
<path d="M574.7,590.8v.8h-.7c-.2,0-.3,0-.5,.2-.2,0-.3,.3-.4,.3,0,.2-.3,.3-.3,.6v3.6h-.8v-5.5h.8v1c0-.3,.2-.4,.3-.6s.3-.3,.4-.3c.2,0,.3-.2,.5-.2h.6Z" style="fill: #fff;"/>
|
||||
<path d="M577.9,590.8c.4,0,.8,0,1.1,.2,.3,0,.5,.2,.7,.3s.3,.3,.3,.5c0,.2,0,.4,0,.7v3.9h-.8l-.2-.8c0,.2-.2,.3-.3,.4s-.3,.3-.4,.3-.3,.2-.6,.2h-.6c-.7,0-1.1-.2-1.4-.4s-.4-.7-.4-1.2,0-.6,.2-.8c0-.3,.3-.4,.4-.5,.2-.2,.4-.3,.7-.3s.6,0,.9,0h1.7v-.8c0-.2,0-.3-.2-.3s-.3-.2-.4-.3h-1.3c-.2,0-.4,0-.6,0v-.8h1.2v-.2Zm-.7,5c.4,0,.8,0,1.2-.3s.6-.4,.7-.8v-.9h-2.2c-.2,0-.3,0-.4,.2s-.2,.2-.3,.3v.5c0,.3,0,.5,.3,.7s.4,.3,.8,.3h0Z" style="fill: #fff;"/>
|
||||
<path d="M583.9,595.8h.6v.8h-1.4c-.2,0-.3-.2-.5-.3-.2-.2-.3-.3-.3-.5,0-.3,0-.5,0-.8v-3.1h-.8v-.8h.8v-1.3h.8v1.3h1.4v.8h-1.4v3.6c0,0,0,.3,0,.3s.2,.2,.3,.2h.5Z" style="fill: #fff;"/>
|
||||
<path d="M590.2,590.9v5.5h-.8v-.8l-.4,.4c0,0-.3,.2-.4,.3-.2,0-.3,0-.5,.2h-.5c-.3,0-.7,0-.9-.2-.3,0-.4-.2-.6-.3s-.3-.3-.3-.6,0-.4,0-.8v-3.8h.8v4.1c0,.2,0,.3,.2,.4s.2,.2,.3,.3,.3,0,.5,0h.5c.2,0,.3,0,.4-.2s.3-.2,.3-.3c0-.2,.2-.3,.3-.6v-3.7h1.1Z" style="fill: #fff;"/>
|
||||
<path d="M595,590.8v.8h-.7c-.2,0-.3,0-.5,.2-.2,0-.3,.3-.4,.3,0,.2-.3,.3-.3,.6v3.6h-.8v-5.5h.8v1c0-.3,.2-.4,.3-.6s.3-.3,.4-.3c.2,0,.3-.2,.5-.2h.6Z" style="fill: #fff;"/>
|
||||
<path d="M600.6,593.1v.6l-3.7,.3c0,.3,0,.6,0,.8,0,.3,.2,.4,.3,.5,.2,.2,.3,.3,.5,.3,.3,0,.5,0,.8,0s.6,0,.9,0,.6-.2,.8-.3v.8s-.2,0-.3,0c-.2,0-.3,0-.4,0h-1.1c-.4,0-.8,0-1.1-.2-.3,0-.6-.3-.8-.5-.3-.3-.4-.5-.5-.8s-.2-.8-.2-1.4,0-1,.2-1.4c0-.3,.3-.7,.5-.8,.3-.3,.5-.3,.8-.5,.3,0,.7-.2,1-.2s.8,0,1.1,.2,.5,.3,.7,.5c.2,.3,.3,.5,.3,.8v.8l.2,.3Zm-.8,0v-.6c0-.2,0-.3-.2-.5s-.3-.3-.4-.3c-.2,0-.4-.2-.7-.2s-.6,0-.8,0c-.2,0-.3,.2-.5,.3,0,.2-.2,.3-.3,.6v.8l2.9-.3h0Z" style="fill: #fff;"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M498,608.7h.6l1.7,6.3h0l2-6.3h.8l2.1,6.3h0l1.7-6.3h.6l-1.9,6.9h-.7l-2.1-6.3h0l-2.1,6.3h-.7l-1.9-6.9h0Z" style="fill: #fff;"/>
|
||||
<path d="M508,608.7h.6l1.7,6.3h0l2-6.3h.8l2.1,6.3h0l1.7-6.3h.6l-1.9,6.9h-.7l-2.1-6.3h0l-2.1,6.3h-.7l-1.9-6.9h0Z" style="fill: #fff;"/>
|
||||
<path d="M517.9,608.7h.6l1.7,6.3h0l2-6.3h.8l2.1,6.3h0l1.7-6.3h.6l-1.9,6.9h-.7l-2.1-6.3h0l-2.1,6.3h-.7l-1.9-6.9h0Z" style="fill: #fff;"/>
|
||||
<path d="M528.5,615.7c-.2,0-.3,0-.4,0,0,0,0-.3,0-.5s0-.4,0-.4c0,0,.3,0,.4,0s.3,0,.4,0c0,0,0,.3,0,.4s0,.4,0,.5c0,0-.3,0-.4,0Z" style="fill: #fff;"/>
|
||||
<path d="M536.7,608.7v6.4c0,.9-.3,1.7-.8,2.2-.5,.5-1.4,.8-2.4,.8s-.6,0-.8,0-.5,0-.7,0v-.6c.3,0,.5,0,.8,.2h.8c.9,0,1.5-.3,1.9-.7s.6-1.1,.6-1.9v-.9c-.2,.5-.4,.8-.8,1.1s-.9,.4-1.7,.4-.9,0-1.3-.3c-.3-.2-.6-.3-.8-.7-.2-.3-.3-.7-.4-1.1s-.2-.9-.2-1.5,0-1,.2-1.4c0-.4,.3-.8,.4-1.1,.2-.3,.5-.5,.8-.7s.8-.3,1.3-.3,.7,0,1,0c.3,0,.5,.2,.7,.3l.5,.5c.2,.2,.3,.4,.3,.7v-1.4h.5Zm-3,6.4c.5,0,.8,0,1.2-.3s.6-.3,.8-.6,.3-.6,.4-.9,0-.8,0-1.2,0-.8,0-1.2c0-.3-.2-.7-.4-.9s-.4-.5-.8-.6-.7-.3-1.2-.3-.8,0-1.1,.2-.5,.3-.7,.6-.3,.6-.3,.9c0,.3,0,.8,0,1.3s0,.9,0,1.3c0,.3,.2,.7,.3,.9s.4,.4,.7,.6,.7,.2,1.1,.2Z" style="fill: #fff;"/>
|
||||
<path d="M544.2,611.4v.7l-4.9,.3c0,.5,0,.9,.2,1.3,0,.3,.3,.7,.4,.8,.2,.3,.4,.4,.8,.5s.7,.2,1.2,.2,.8,0,1.1,0c.4,0,.8-.2,1-.3v.6c0,0-.3,0-.4,.2-.2,0-.3,0-.5,.2-.2,0-.4,0-.6,0h-.7c-.5,0-1,0-1.4-.2-.4,0-.7-.3-.9-.6s-.4-.7-.5-1.1-.2-1-.2-1.7,0-1.3,.2-1.7,.3-.8,.5-1.1,.5-.5,.9-.6c.3,0,.8-.2,1.4-.2s1,0,1.4,.3c.3,.2,.6,.4,.8,.7s.3,.6,.3,.9,0,.7,0,1v-.2Zm-.6,.2v-1c0-.3-.2-.6-.3-.8-.2-.3-.3-.4-.6-.5s-.6-.2-1.1-.2-.8,0-1.1,.2c-.3,0-.5,.3-.7,.5s-.3,.5-.4,.8c0,.3,0,.8-.2,1.3l4.3-.3h0Z" style="fill: #fff;"/>
|
||||
<path d="M551.3,611.4v.7l-4.9,.3c0,.5,0,.9,.2,1.3,0,.3,.3,.7,.4,.8,.2,.3,.4,.4,.8,.5s.7,.2,1.2,.2,.8,0,1.1,0c.4,0,.8-.2,1-.3v.6c0,0-.3,0-.4,.2-.2,0-.3,0-.5,.2-.2,0-.4,0-.6,0h-.7c-.5,0-1,0-1.4-.2-.4,0-.7-.3-.9-.6s-.4-.7-.5-1.1-.2-1-.2-1.7,0-1.3,.2-1.7,.3-.8,.5-1.1,.5-.5,.9-.6c.3,0,.8-.2,1.4-.2s1,0,1.4,.3c.3,.2,.6,.4,.8,.7s.3,.6,.3,.9,0,.7,0,1v-.2Zm-.6,.2v-1c0-.3-.2-.6-.3-.8-.2-.3-.3-.4-.6-.5s-.6-.2-1.1-.2-.8,0-1.1,.2c-.3,0-.5,.3-.7,.5s-.3,.5-.4,.8c0,.3,0,.8-.2,1.3l4.3-.3h0Z" style="fill: #fff;"/>
|
||||
<path d="M558.3,611.4v.7l-4.9,.3c0,.5,0,.9,.2,1.3,0,.3,.3,.7,.4,.8,.2,.3,.4,.4,.8,.5s.7,.2,1.2,.2,.8,0,1.1,0c.4,0,.8-.2,1-.3v.6c0,0-.3,0-.4,.2-.2,0-.3,0-.5,.2-.2,0-.4,0-.6,0h-.7c-.5,0-1,0-1.4-.2-.4,0-.7-.3-.9-.6s-.4-.7-.5-1.1-.2-1-.2-1.7,0-1.3,.2-1.7,.3-.8,.5-1.1,.5-.5,.9-.6c.3,0,.8-.2,1.4-.2s1,0,1.4,.3c.3,.2,.6,.4,.8,.7s.3,.6,.3,.9,0,.7,0,1v-.2Zm-.6,.2v-1c0-.3-.2-.6-.3-.8-.2-.3-.3-.4-.6-.5s-.6-.2-1.1-.2-.8,0-1.1,.2c-.3,0-.5,.3-.7,.5s-.3,.5-.4,.8c0,.3,0,.8-.2,1.3l4.3-.3h0Z" style="fill: #fff;"/>
|
||||
<path d="M562.1,615.1h.9v.5h-1.7c-.3,0-.4-.2-.5-.3-.2-.2-.3-.3-.3-.7s0-.7,0-1.1v-4.3h-1.1v-.5h1.1v-1.6h.6v1.6h1.9v.5h-1.9v5.1c0,.2,0,.3,.2,.5s.2,.2,.3,.3h.5Z" style="fill: #fff;"/>
|
||||
<path d="M569.3,611.4v.7l-4.9,.3c0,.5,0,.9,.2,1.3,0,.3,.3,.7,.4,.8,.2,.3,.4,.4,.8,.5s.7,.2,1.2,.2,.8,0,1.1,0c.4,0,.8-.2,1-.3v.6c0,0-.3,0-.4,.2-.2,0-.3,0-.5,.2-.2,0-.4,0-.6,0h-.7c-.5,0-1,0-1.4-.2-.4,0-.7-.3-.9-.6s-.4-.7-.5-1.1-.2-1-.2-1.7,0-1.3,.2-1.7,.3-.8,.5-1.1,.5-.5,.9-.6c.3,0,.8-.2,1.4-.2s1,0,1.4,.3c.3,.2,.6,.4,.8,.7s.3,.6,.3,.9,0,.7,0,1v-.2Zm-.6,.2v-1c0-.3-.2-.6-.3-.8-.2-.3-.3-.4-.6-.5s-.6-.2-1.1-.2-.8,0-1.1,.2c-.3,0-.5,.3-.7,.5s-.3,.5-.4,.8c0,.3,0,.8-.2,1.3l4.3-.3h0Z" style="fill: #fff;"/>
|
||||
<path d="M573.8,615.7c-.5,0-.9,0-1.4-.2-.3,0-.7-.3-.9-.6s-.4-.7-.5-1.1-.2-1-.2-1.7,0-1.3,.2-1.7c0-.4,.3-.8,.5-1.1s.5-.5,.9-.6c.3,0,.8-.2,1.4-.2h1c.3,0,.6,0,.8,.2v.6c-.3,0-.5-.2-.8-.2h-.9c-.3,0-.8,0-1.1,.2-.3,0-.5,.3-.7,.5s-.3,.5-.4,.9c0,.4,0,.8,0,1.4s0,1,0,1.4c0,.4,.2,.7,.4,.9,.2,.3,.4,.4,.7,.5s.7,.2,1.1,.2,.7,0,1,0c.3,0,.6-.2,.8-.3v.6c-.2,0-.4,.2-.8,.3-.3,0-.7,0-1,0v-.2Z" style="fill: #fff;"/>
|
||||
<path d="M580.2,608.5c.4,0,.8,0,1.1,.2,.3,0,.5,.3,.7,.4s.3,.4,.3,.7c0,.3,0,.6,0,.9v4.8h-.6v-5.4c0-.3-.2-.5-.3-.6-.2-.2-.3-.3-.5-.3s-.5,0-.8,0h-.7c-.3,0-.4,0-.7,.3s-.4,.3-.6,.5-.3,.5-.3,.8v4.8h-.6v-9.7h.6v4c0-.3,.2-.4,.3-.6s.3-.3,.6-.4,.4-.2,.7-.3,.5,0,.8,0h0Z" style="fill: #fff;"/>
|
||||
<path d="M585.3,615.7c-.2,0-.3,0-.4,0,0,0,0-.3,0-.5s0-.4,0-.4c0,0,.3,0,.4,0s.3,0,.4,0c0,0,0,.3,0,.4s0,.4,0,.5c0,0-.3,0-.4,0Z" style="fill: #fff;"/>
|
||||
<path d="M590.1,615.7c-.5,0-.9,0-1.4-.2-.3,0-.7-.3-.9-.6s-.4-.7-.5-1.1-.2-1-.2-1.7,0-1.3,.2-1.7c0-.4,.3-.8,.5-1.1s.5-.5,.9-.6c.3,0,.8-.2,1.4-.2h1c.3,0,.6,0,.8,.2v.6c-.3,0-.5-.2-.8-.2h-.9c-.3,0-.8,0-1.1,.2-.3,0-.5,.3-.7,.5s-.3,.5-.4,.9c0,.4,0,.8,0,1.4s0,1,0,1.4c0,.4,.2,.7,.4,.9,.2,.3,.4,.4,.7,.5s.7,.2,1.1,.2,.7,0,1,0c.3,0,.6-.2,.8-.3v.6c-.2,0-.4,.2-.8,.3-.3,0-.7,0-1,0v-.2Z" style="fill: #fff;"/>
|
||||
<path d="M596.1,615.7c-.5,0-1,0-1.4-.2-.3,0-.7-.3-.9-.6s-.4-.7-.5-1.1-.2-1-.2-1.7,0-1.3,.2-1.7c0-.4,.3-.8,.5-1.1s.5-.5,.9-.6,.8-.2,1.4-.2,.9,0,1.4,.2c.3,0,.7,.3,.9,.6s.4,.7,.5,1.1,.2,1,.2,1.7,0,1.3-.2,1.7c0,.4-.3,.8-.5,1.1s-.6,.5-.9,.6c-.3,0-.8,.2-1.4,.2Zm0-.5c.4,0,.8,0,1.2-.2,.3,0,.5-.3,.8-.5,.2-.3,.3-.6,.4-.9s0-.8,0-1.4,0-1,0-1.4-.2-.7-.4-.9-.4-.4-.8-.5-.7-.2-1.1-.2-.8,0-1.1,.2c-.3,0-.5,.3-.8,.5-.2,.3-.3,.6-.3,.9s0,.8,0,1.4,0,1,0,1.4c0,.4,.2,.7,.3,.9s.4,.4,.8,.5,.7,.2,1.1,.2h0Z" style="fill: #fff;"/>
|
||||
<path d="M608.1,608.5c.4,0,.8,0,1,.2,.3,0,.5,.3,.7,.4s.3,.4,.3,.7c0,.3,0,.6,0,.9v4.8h-.6v-5.4c0-.3,0-.5-.3-.6,0-.2-.3-.3-.5-.3-.2,0-.5,0-.8,0h-.7c-.3,0-.4,0-.6,.3-.2,0-.3,.3-.5,.5-.2,.3-.3,.5-.3,.8h0v4.8h-.6v-5.4c0-.3,0-.5-.3-.6,0-.2-.3-.3-.5-.3s-.5,0-.8,0h-.7c-.3,0-.4,0-.6,.3-.2,0-.3,.3-.5,.5-.2,.2-.3,.5-.3,.8v4.9h-.6v-6.9h.6v1.2c0-.3,.2-.4,.3-.6s.3-.3,.5-.4c.2,0,.4-.2,.6-.3s.5,0,.7,0c.6,0,1.1,0,1.4,.3,.3,.3,.5,.6,.6,1,0-.3,.2-.4,.3-.6s.3-.3,.5-.4,.4-.2,.7-.3,.5,0,.8,0v-.2Z" style="fill: #fff;"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M20.2,605.8c-.3,0-.5,0-.6,0h0c-.3,0-.5-.1-.8-.2l-1.4-.5c-.2-.1-.6-.3-1-.6l-.9-.8c-.8-.8-1.5-2-1.9-3.5-.4-1.3-.5-2.9-.5-4.8s.3-3.7,.9-5.1c.7-1.8,1.9-3.1,3.6-4.1,.5-.3,1.1-.5,2-.6,.8-.1,4.4-.2,10.6-.2v3.6h-8.3c-1.6,0-2.8,.7-3.5,2-.6,1-.8,2.4-.8,4.1v2.1c.1,.3,.1,.5,.2,.7h0c0,.4,0,.7,.1,.9,.2,1,.6,1.8,1.3,2.4,.7,.6,3,.9,7.2,.9v-4.8h-5.2v-3.6h9.1v12.1h-9.8Z" style="fill: #fff; fill-rule: evenodd;"/>
|
||||
<path d="M40.7,605.8h-1.6c0,0-.6-.1-.6-.1-.1,0-.3,0-.5,0-.1,0-.2,0-.2,0-.1,0-.2,0-.2,0-1.8-.5-3.2-1.7-4.2-3.6-.4-.8-.7-1.6-.9-2.5-.2-.9-.3-1.8-.3-2.8,0-1.9,.1-3.5,.4-4.7,.3-1.3,.7-2.5,1.4-3.4,.8-1.1,1.7-1.9,2.8-2.3,.5-.2,1.1-.4,2-.5,.8-.1,3.6-.2,8.6-.2v3.6h-6.4c-2.9,0-4.4,1.6-4.4,4.8h10.8v3.6h-10.8c0,.8,0,1.5,.2,2,0,.3,.1,.6,.2,.9,0,.2,.2,.4,.4,.7l.7,.7c.2,.2,.5,.3,.8,.5,.3,.1,.7,.2,1,.2h7.4v3.6h-6.5Z" style="fill: #fff; fill-rule: evenodd;"/>
|
||||
<path d="M58.1,605.8h-1.6c0,0-.6-.1-.6-.1-.1,0-.3,0-.5,0-.1,0-.2,0-.2,0-.1,0-.2,0-.2,0-1.8-.5-3.2-1.7-4.2-3.6-.4-.8-.7-1.6-.9-2.5-.2-.9-.3-1.8-.3-2.8,0-1.9,.1-3.5,.4-4.7,.3-1.3,.7-2.5,1.4-3.4,.8-1.1,1.7-1.9,2.8-2.3,.5-.2,1.1-.4,2-.5,.8-.1,3.6-.2,8.6-.2v3.6h-6.4c-2.9,0-4.4,1.6-4.4,4.8h10.7v3.6h-10.7c0,.8,0,1.5,.2,2,0,.3,.1,.6,.2,.9,0,.2,.2,.4,.4,.7l.7,.7c.2,.2,.5,.3,.8,.5,.3,.1,.7,.2,1,.2h7.4v3.6h-6.5Z" style="fill: #fff; fill-rule: evenodd;"/>
|
||||
<path d="M75.4,605.8h-1.6c0,0-.6-.1-.6-.1-.1,0-.3,0-.5,0-.1,0-.2,0-.2,0-.1,0-.2,0-.2,0-1.8-.5-3.2-1.7-4.2-3.6-.4-.8-.7-1.6-.9-2.5-.2-.9-.3-1.8-.3-2.8,0-1.9,.1-3.5,.4-4.7,.3-1.3,.7-2.5,1.4-3.4,.8-1.1,1.7-1.9,2.8-2.3,.5-.2,1.1-.4,2-.5,.8-.1,3.6-.2,8.6-.2v3.6h-6.4c-2.9,0-4.4,1.6-4.4,4.8h10.8v3.6h-10.8c0,.8,0,1.5,.2,2,0,.3,.1,.6,.2,.9,0,.2,.2,.4,.4,.7l.7,.7c.2,.2,.5,.3,.8,.5,.3,.1,.7,.2,1,.2h7.4v3.6h-6.5Z" style="fill: #fff; fill-rule: evenodd;"/>
|
||||
<polygon points="93.4 589 93.4 605.8 89.4 605.8 89.4 589 83.5 589 83.5 585.4 99.4 585.4 99.4 589 93.4 589" style="fill: #fff; fill-rule: evenodd;"/>
|
||||
<path d="M108.7,605.8h-1.6c0,0-.6-.1-.6-.1-.1,0-.3,0-.5,0-.1,0-.2,0-.2,0-.1,0-.2,0-.2,0-1.8-.5-3.2-1.7-4.2-3.6-.4-.8-.7-1.6-.9-2.5-.2-.9-.3-1.8-.3-2.8,0-1.9,.1-3.5,.4-4.7,.3-1.3,.7-2.5,1.4-3.4,.8-1.1,1.7-1.9,2.8-2.3,.5-.2,1.1-.4,2-.5,.8-.1,3.6-.2,8.6-.2v3.6h-6.4c-2.9,0-4.4,1.6-4.4,4.8h10.7v3.6h-10.7c0,.8,0,1.5,.2,2,0,.3,.1,.6,.2,.9,0,.2,.2,.4,.4,.7l.7,.7c.2,.2,.5,.3,.8,.5,.3,.1,.7,.2,1,.2h7.4v3.6h-6.5Z" style="fill: #fff; fill-rule: evenodd;"/>
|
||||
<path d="M126.1,605.8h-1.6c0,0-.6-.1-.6-.1-.1,0-.3,0-.5,0-.1,0-.2,0-.2,0-.1,0-.2,0-.2,0-1.8-.5-3.2-1.7-4.2-3.6-.8-1.6-1.3-3.4-1.3-5.2s.1-3.5,.4-4.8c.3-1.3,.7-2.5,1.4-3.4,.8-1.1,1.7-1.9,2.8-2.3,.7-.2,1.3-.4,2-.5,.7-.1,3.6-.2,8.6-.2v3.5h-6.4c-1.2,0-2.2,.4-3,1.1-.6,.6-1,1.5-1.2,2.6-.2,1.2-.4,2.4-.4,3.6s.2,2.5,.5,3.5c.4,1.3,1.2,2.1,2.2,2.4h.4c0,.1,.5,.1,.5,.1h7.4v3.6h-6.5Z" style="fill: #fff; fill-rule: evenodd;"/>
|
||||
<polygon points="146.5 605.8 146.5 597.2 139.4 597.2 139.4 605.8 135.5 605.8 135.5 585.4 139.4 585.4 139.4 593.6 146.5 593.6 146.5 585.4 150.4 585.4 150.4 605.8 146.5 605.8" style="fill: #fff; fill-rule: evenodd;"/>
|
||||
</g>
|
||||
<rect x="1.4" y="1.4" width="620.8" height="620.8" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="163.4" y1="595.2" x2="487.3" y2="595.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="568.2" x2="622.2" y2="568.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="541.2" x2="622.2" y2="541.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="514.2" x2="622.2" y2="514.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="487.3" x2="622.2" y2="487.3" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="460.3" x2="622.2" y2="460.3" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="433.3" x2="622.2" y2="433.3" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="406.3" x2="622.2" y2="406.3" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="379.3" x2="622.2" y2="379.3" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="352.3" x2="622.2" y2="352.3" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="325.3" x2="622.2" y2="325.3" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="298.3" x2="622.2" y2="298.3" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="271.3" x2="622.2" y2="271.3" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="244.3" x2="622.2" y2="244.3" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="217.3" x2="622.2" y2="217.3" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="190.4" x2="622.2" y2="190.4" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="163.4" x2="622.2" y2="163.4" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="136.4" x2="622.2" y2="136.4" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="109.4" x2="622.2" y2="109.4" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="82.4" x2="622.2" y2="82.4" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="55.4" x2="622.2" y2="55.4" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="1.4" y1="28.4" x2="622.2" y2="28.4" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="595.2" y1="1.4" x2="595.2" y2="568.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="568.2" y1="1.4" x2="568.2" y2="568.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="541.2" y1="1.4" x2="541.2" y2="568.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="514.2" y1="1.4" x2="514.2" y2="568.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="487.3" y1="1.4" x2="487.3" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="460.3" y1="1.4" x2="460.3" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="433.3" y1="1.4" x2="433.3" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="406.3" y1="1.4" x2="406.3" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="379.3" y1="1.4" x2="379.3" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="352.3" y1="1.4" x2="352.3" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="325.3" y1="1.4" x2="325.3" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="298.3" y1="1.4" x2="298.3" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="271.3" y1="1.4" x2="271.3" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="244.3" y1="1.4" x2="244.3" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="217.3" y1="1.4" x2="217.3" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="190.4" y1="1.4" x2="190.4" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="163.4" y1="1.4" x2="163.4" y2="622.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="136.4" y1="1.4" x2="136.4" y2="568.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="109.4" y1="1.4" x2="109.4" y2="568.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="82.4" y1="1.4" x2="82.4" y2="568.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="55.4" y1="1.4" x2="55.4" y2="568.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
<line x1="28.4" y1="1.4" x2="28.4" y2="568.2" style="fill: none; stroke: #fff; stroke-miterlimit: 10; stroke-width: .8px;"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 22 KiB |